@aws-sdk/client-codepipeline 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ export declare const JobStatus: {
15
15
  };
16
16
  export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
17
17
  export interface AcknowledgeJobOutput {
18
- status?: JobStatus;
18
+ status?: JobStatus | undefined;
19
19
  }
20
20
  export declare class InvalidNonceException extends __BaseException {
21
21
  readonly name: "InvalidNonceException";
@@ -44,7 +44,7 @@ export interface AcknowledgeThirdPartyJobInput {
44
44
  clientToken: string | undefined;
45
45
  }
46
46
  export interface AcknowledgeThirdPartyJobOutput {
47
- status?: JobStatus;
47
+ status?: JobStatus | undefined;
48
48
  }
49
49
  export declare class InvalidClientTokenException extends __BaseException {
50
50
  readonly name: "InvalidClientTokenException";
@@ -65,7 +65,7 @@ export declare const ActionCategory: {
65
65
  export type ActionCategory =
66
66
  (typeof ActionCategory)[keyof typeof ActionCategory];
67
67
  export interface ActionConfiguration {
68
- configuration?: Record<string, string>;
68
+ configuration?: Record<string, string> | undefined;
69
69
  }
70
70
  export declare const ActionConfigurationPropertyType: {
71
71
  readonly Boolean: "Boolean";
@@ -79,13 +79,13 @@ export interface ActionConfigurationProperty {
79
79
  required: boolean | undefined;
80
80
  key: boolean | undefined;
81
81
  secret: boolean | undefined;
82
- queryable?: boolean;
83
- description?: string;
84
- type?: ActionConfigurationPropertyType;
82
+ queryable?: boolean | undefined;
83
+ description?: string | undefined;
84
+ type?: ActionConfigurationPropertyType | undefined;
85
85
  }
86
86
  export interface ActionContext {
87
- name?: string;
88
- actionExecutionId?: string;
87
+ name?: string | undefined;
88
+ actionExecutionId?: string | undefined;
89
89
  }
90
90
  export declare const ActionOwner: {
91
91
  readonly AWS: "AWS";
@@ -104,25 +104,25 @@ export interface InputArtifact {
104
104
  }
105
105
  export interface OutputArtifact {
106
106
  name: string | undefined;
107
- files?: string[];
107
+ files?: string[] | undefined;
108
108
  }
109
109
  export interface ActionDeclaration {
110
110
  name: string | undefined;
111
111
  actionTypeId: ActionTypeId | undefined;
112
- runOrder?: number;
113
- configuration?: Record<string, string>;
114
- commands?: string[];
115
- outputArtifacts?: OutputArtifact[];
116
- inputArtifacts?: InputArtifact[];
117
- outputVariables?: string[];
118
- roleArn?: string;
119
- region?: string;
120
- namespace?: string;
121
- timeoutInMinutes?: number;
112
+ runOrder?: number | undefined;
113
+ configuration?: Record<string, string> | undefined;
114
+ commands?: string[] | undefined;
115
+ outputArtifacts?: OutputArtifact[] | undefined;
116
+ inputArtifacts?: InputArtifact[] | undefined;
117
+ outputVariables?: string[] | undefined;
118
+ roleArn?: string | undefined;
119
+ region?: string | undefined;
120
+ namespace?: string | undefined;
121
+ timeoutInMinutes?: number | undefined;
122
122
  }
123
123
  export interface ErrorDetails {
124
- code?: string;
125
- message?: string;
124
+ code?: string | undefined;
125
+ message?: string | undefined;
126
126
  }
127
127
  export declare const ActionExecutionStatus: {
128
128
  readonly Abandoned: "Abandoned";
@@ -133,57 +133,57 @@ export declare const ActionExecutionStatus: {
133
133
  export type ActionExecutionStatus =
134
134
  (typeof ActionExecutionStatus)[keyof typeof ActionExecutionStatus];
135
135
  export interface ActionExecution {
136
- actionExecutionId?: string;
137
- status?: ActionExecutionStatus;
138
- summary?: string;
139
- lastStatusChange?: Date;
140
- token?: string;
141
- lastUpdatedBy?: string;
142
- externalExecutionId?: string;
143
- externalExecutionUrl?: string;
144
- percentComplete?: number;
145
- errorDetails?: ErrorDetails;
136
+ actionExecutionId?: string | undefined;
137
+ status?: ActionExecutionStatus | undefined;
138
+ summary?: string | undefined;
139
+ lastStatusChange?: Date | undefined;
140
+ token?: string | undefined;
141
+ lastUpdatedBy?: string | undefined;
142
+ externalExecutionId?: string | undefined;
143
+ externalExecutionUrl?: string | undefined;
144
+ percentComplete?: number | undefined;
145
+ errorDetails?: ErrorDetails | undefined;
146
146
  }
147
147
  export interface S3Location {
148
- bucket?: string;
149
- key?: string;
148
+ bucket?: string | undefined;
149
+ key?: string | undefined;
150
150
  }
151
151
  export interface ArtifactDetail {
152
- name?: string;
153
- s3location?: S3Location;
152
+ name?: string | undefined;
153
+ s3location?: S3Location | undefined;
154
154
  }
155
155
  export interface ActionExecutionInput {
156
- actionTypeId?: ActionTypeId;
157
- configuration?: Record<string, string>;
158
- resolvedConfiguration?: Record<string, string>;
159
- roleArn?: string;
160
- region?: string;
161
- inputArtifacts?: ArtifactDetail[];
162
- namespace?: string;
156
+ actionTypeId?: ActionTypeId | undefined;
157
+ configuration?: Record<string, string> | undefined;
158
+ resolvedConfiguration?: Record<string, string> | undefined;
159
+ roleArn?: string | undefined;
160
+ region?: string | undefined;
161
+ inputArtifacts?: ArtifactDetail[] | undefined;
162
+ namespace?: string | undefined;
163
163
  }
164
164
  export interface ActionExecutionResult {
165
- externalExecutionId?: string;
166
- externalExecutionSummary?: string;
167
- externalExecutionUrl?: string;
168
- errorDetails?: ErrorDetails;
165
+ externalExecutionId?: string | undefined;
166
+ externalExecutionSummary?: string | undefined;
167
+ externalExecutionUrl?: string | undefined;
168
+ errorDetails?: ErrorDetails | undefined;
169
169
  }
170
170
  export interface ActionExecutionOutput {
171
- outputArtifacts?: ArtifactDetail[];
172
- executionResult?: ActionExecutionResult;
173
- outputVariables?: Record<string, string>;
171
+ outputArtifacts?: ArtifactDetail[] | undefined;
172
+ executionResult?: ActionExecutionResult | undefined;
173
+ outputVariables?: Record<string, string> | undefined;
174
174
  }
175
175
  export interface ActionExecutionDetail {
176
- pipelineExecutionId?: string;
177
- actionExecutionId?: string;
178
- pipelineVersion?: number;
179
- stageName?: string;
180
- actionName?: string;
181
- startTime?: Date;
182
- lastUpdateTime?: Date;
183
- updatedBy?: string;
184
- status?: ActionExecutionStatus;
185
- input?: ActionExecutionInput;
186
- output?: ActionExecutionOutput;
176
+ pipelineExecutionId?: string | undefined;
177
+ actionExecutionId?: string | undefined;
178
+ pipelineVersion?: number | undefined;
179
+ stageName?: string | undefined;
180
+ actionName?: string | undefined;
181
+ startTime?: Date | undefined;
182
+ lastUpdateTime?: Date | undefined;
183
+ updatedBy?: string | undefined;
184
+ status?: ActionExecutionStatus | undefined;
185
+ input?: ActionExecutionInput | undefined;
186
+ output?: ActionExecutionOutput | undefined;
187
187
  }
188
188
  export declare const StartTimeRange: {
189
189
  readonly All: "All";
@@ -196,8 +196,8 @@ export interface LatestInPipelineExecutionFilter {
196
196
  startTimeRange: StartTimeRange | undefined;
197
197
  }
198
198
  export interface ActionExecutionFilter {
199
- pipelineExecutionId?: string;
200
- latestInPipelineExecution?: LatestInPipelineExecutionFilter;
199
+ pipelineExecutionId?: string | undefined;
200
+ latestInPipelineExecution?: LatestInPipelineExecutionFilter | undefined;
201
201
  }
202
202
  export declare class ActionNotFoundException extends __BaseException {
203
203
  readonly name: "ActionNotFoundException";
@@ -212,26 +212,26 @@ export interface ActionRevision {
212
212
  created: Date | undefined;
213
213
  }
214
214
  export interface ActionState {
215
- actionName?: string;
216
- currentRevision?: ActionRevision;
217
- latestExecution?: ActionExecution;
218
- entityUrl?: string;
219
- revisionUrl?: string;
215
+ actionName?: string | undefined;
216
+ currentRevision?: ActionRevision | undefined;
217
+ latestExecution?: ActionExecution | undefined;
218
+ entityUrl?: string | undefined;
219
+ revisionUrl?: string | undefined;
220
220
  }
221
221
  export interface ArtifactDetails {
222
222
  minimumCount: number | undefined;
223
223
  maximumCount: number | undefined;
224
224
  }
225
225
  export interface ActionTypeSettings {
226
- thirdPartyConfigurationUrl?: string;
227
- entityUrlTemplate?: string;
228
- executionUrlTemplate?: string;
229
- revisionUrlTemplate?: string;
226
+ thirdPartyConfigurationUrl?: string | undefined;
227
+ entityUrlTemplate?: string | undefined;
228
+ executionUrlTemplate?: string | undefined;
229
+ revisionUrlTemplate?: string | undefined;
230
230
  }
231
231
  export interface ActionType {
232
232
  id: ActionTypeId | undefined;
233
- settings?: ActionTypeSettings;
234
- actionConfigurationProperties?: ActionConfigurationProperty[];
233
+ settings?: ActionTypeSettings | undefined;
234
+ actionConfigurationProperties?: ActionConfigurationProperty[] | undefined;
235
235
  inputArtifactDetails: ArtifactDetails | undefined;
236
236
  outputArtifactDetails: ArtifactDetails | undefined;
237
237
  }
@@ -240,15 +240,15 @@ export interface ActionTypeArtifactDetails {
240
240
  maximumCount: number | undefined;
241
241
  }
242
242
  export interface JobWorkerExecutorConfiguration {
243
- pollingAccounts?: string[];
244
- pollingServicePrincipals?: string[];
243
+ pollingAccounts?: string[] | undefined;
244
+ pollingServicePrincipals?: string[] | undefined;
245
245
  }
246
246
  export interface LambdaExecutorConfiguration {
247
247
  lambdaFunctionArn: string | undefined;
248
248
  }
249
249
  export interface ExecutorConfiguration {
250
- lambdaExecutorConfiguration?: LambdaExecutorConfiguration;
251
- jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration;
250
+ lambdaExecutorConfiguration?: LambdaExecutorConfiguration | undefined;
251
+ jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration | undefined;
252
252
  }
253
253
  export declare const ExecutorType: {
254
254
  readonly JobWorker: "JobWorker";
@@ -258,8 +258,8 @@ export type ExecutorType = (typeof ExecutorType)[keyof typeof ExecutorType];
258
258
  export interface ActionTypeExecutor {
259
259
  configuration: ExecutorConfiguration | undefined;
260
260
  type: ExecutorType | undefined;
261
- policyStatementsTemplate?: string;
262
- jobTimeout?: number;
261
+ policyStatementsTemplate?: string | undefined;
262
+ jobTimeout?: number | undefined;
263
263
  }
264
264
  export interface ActionTypeIdentifier {
265
265
  category: ActionCategory | undefined;
@@ -275,24 +275,24 @@ export interface ActionTypeProperty {
275
275
  optional: boolean | undefined;
276
276
  key: boolean | undefined;
277
277
  noEcho: boolean | undefined;
278
- queryable?: boolean;
279
- description?: string;
278
+ queryable?: boolean | undefined;
279
+ description?: string | undefined;
280
280
  }
281
281
  export interface ActionTypeUrls {
282
- configurationUrl?: string;
283
- entityUrlTemplate?: string;
284
- executionUrlTemplate?: string;
285
- revisionUrlTemplate?: string;
282
+ configurationUrl?: string | undefined;
283
+ entityUrlTemplate?: string | undefined;
284
+ executionUrlTemplate?: string | undefined;
285
+ revisionUrlTemplate?: string | undefined;
286
286
  }
287
287
  export interface ActionTypeDeclaration {
288
- description?: string;
288
+ description?: string | undefined;
289
289
  executor: ActionTypeExecutor | undefined;
290
290
  id: ActionTypeIdentifier | undefined;
291
291
  inputArtifactDetails: ActionTypeArtifactDetails | undefined;
292
292
  outputArtifactDetails: ActionTypeArtifactDetails | undefined;
293
- permissions?: ActionTypePermissions;
294
- properties?: ActionTypeProperty[];
295
- urls?: ActionTypeUrls;
293
+ permissions?: ActionTypePermissions | undefined;
294
+ properties?: ActionTypeProperty[] | undefined;
295
+ urls?: ActionTypeUrls | undefined;
296
296
  }
297
297
  export declare class ActionTypeNotFoundException extends __BaseException {
298
298
  readonly name: "ActionTypeNotFoundException";
@@ -331,21 +331,21 @@ export declare const ArtifactLocationType: {
331
331
  export type ArtifactLocationType =
332
332
  (typeof ArtifactLocationType)[keyof typeof ArtifactLocationType];
333
333
  export interface ArtifactLocation {
334
- type?: ArtifactLocationType;
335
- s3Location?: S3ArtifactLocation;
334
+ type?: ArtifactLocationType | undefined;
335
+ s3Location?: S3ArtifactLocation | undefined;
336
336
  }
337
337
  export interface Artifact {
338
- name?: string;
339
- revision?: string;
340
- location?: ArtifactLocation;
338
+ name?: string | undefined;
339
+ revision?: string | undefined;
340
+ location?: ArtifactLocation | undefined;
341
341
  }
342
342
  export interface ArtifactRevision {
343
- name?: string;
344
- revisionId?: string;
345
- revisionChangeIdentifier?: string;
346
- revisionSummary?: string;
347
- created?: Date;
348
- revisionUrl?: string;
343
+ name?: string | undefined;
344
+ revisionId?: string | undefined;
345
+ revisionChangeIdentifier?: string | undefined;
346
+ revisionSummary?: string | undefined;
347
+ created?: Date | undefined;
348
+ revisionUrl?: string | undefined;
349
349
  }
350
350
  export declare const EncryptionKeyType: {
351
351
  readonly KMS: "KMS";
@@ -364,7 +364,7 @@ export type ArtifactStoreType =
364
364
  export interface ArtifactStore {
365
365
  type: ArtifactStoreType | undefined;
366
366
  location: string | undefined;
367
- encryptionKey?: EncryptionKey;
367
+ encryptionKey?: EncryptionKey | undefined;
368
368
  }
369
369
  export interface AWSSessionCredentials {
370
370
  accessKeyId: string | undefined;
@@ -388,22 +388,22 @@ export declare const RuleOwner: {
388
388
  export type RuleOwner = (typeof RuleOwner)[keyof typeof RuleOwner];
389
389
  export interface RuleTypeId {
390
390
  category: RuleCategory | undefined;
391
- owner?: RuleOwner;
391
+ owner?: RuleOwner | undefined;
392
392
  provider: string | undefined;
393
- version?: string;
393
+ version?: string | undefined;
394
394
  }
395
395
  export interface RuleDeclaration {
396
396
  name: string | undefined;
397
397
  ruleTypeId: RuleTypeId | undefined;
398
- configuration?: Record<string, string>;
399
- inputArtifacts?: InputArtifact[];
400
- roleArn?: string;
401
- region?: string;
402
- timeoutInMinutes?: number;
398
+ configuration?: Record<string, string> | undefined;
399
+ inputArtifacts?: InputArtifact[] | undefined;
400
+ roleArn?: string | undefined;
401
+ region?: string | undefined;
402
+ timeoutInMinutes?: number | undefined;
403
403
  }
404
404
  export interface Condition {
405
- result?: Result;
406
- rules?: RuleDeclaration[];
405
+ result?: Result | undefined;
406
+ rules?: RuleDeclaration[] | undefined;
407
407
  }
408
408
  export interface BeforeEntryConditions {
409
409
  conditions: Condition[] | undefined;
@@ -434,15 +434,15 @@ export interface CreateCustomActionTypeInput {
434
434
  category: ActionCategory | undefined;
435
435
  provider: string | undefined;
436
436
  version: string | undefined;
437
- settings?: ActionTypeSettings;
438
- configurationProperties?: ActionConfigurationProperty[];
437
+ settings?: ActionTypeSettings | undefined;
438
+ configurationProperties?: ActionConfigurationProperty[] | undefined;
439
439
  inputArtifactDetails: ArtifactDetails | undefined;
440
440
  outputArtifactDetails: ArtifactDetails | undefined;
441
- tags?: Tag[];
441
+ tags?: Tag[] | undefined;
442
442
  }
443
443
  export interface CreateCustomActionTypeOutput {
444
444
  actionType: ActionType | undefined;
445
- tags?: Tag[];
445
+ tags?: Tag[] | undefined;
446
446
  }
447
447
  export declare class InvalidTagsException extends __BaseException {
448
448
  readonly name: "InvalidTagsException";
@@ -483,27 +483,27 @@ export declare const StageRetryMode: {
483
483
  export type StageRetryMode =
484
484
  (typeof StageRetryMode)[keyof typeof StageRetryMode];
485
485
  export interface RetryConfiguration {
486
- retryMode?: StageRetryMode;
486
+ retryMode?: StageRetryMode | undefined;
487
487
  }
488
488
  export interface FailureConditions {
489
- result?: Result;
490
- retryConfiguration?: RetryConfiguration;
491
- conditions?: Condition[];
489
+ result?: Result | undefined;
490
+ retryConfiguration?: RetryConfiguration | undefined;
491
+ conditions?: Condition[] | undefined;
492
492
  }
493
493
  export interface SuccessConditions {
494
494
  conditions: Condition[] | undefined;
495
495
  }
496
496
  export interface StageDeclaration {
497
497
  name: string | undefined;
498
- blockers?: BlockerDeclaration[];
498
+ blockers?: BlockerDeclaration[] | undefined;
499
499
  actions: ActionDeclaration[] | undefined;
500
- onFailure?: FailureConditions;
501
- onSuccess?: SuccessConditions;
502
- beforeEntry?: BeforeEntryConditions;
500
+ onFailure?: FailureConditions | undefined;
501
+ onSuccess?: SuccessConditions | undefined;
502
+ beforeEntry?: BeforeEntryConditions | undefined;
503
503
  }
504
504
  export interface GitBranchFilterCriteria {
505
- includes?: string[];
506
- excludes?: string[];
505
+ includes?: string[] | undefined;
506
+ excludes?: string[] | undefined;
507
507
  }
508
508
  export declare const GitPullRequestEventType: {
509
509
  readonly CLOSED: "CLOSED";
@@ -513,27 +513,27 @@ export declare const GitPullRequestEventType: {
513
513
  export type GitPullRequestEventType =
514
514
  (typeof GitPullRequestEventType)[keyof typeof GitPullRequestEventType];
515
515
  export interface GitFilePathFilterCriteria {
516
- includes?: string[];
517
- excludes?: string[];
516
+ includes?: string[] | undefined;
517
+ excludes?: string[] | undefined;
518
518
  }
519
519
  export interface GitPullRequestFilter {
520
- events?: GitPullRequestEventType[];
521
- branches?: GitBranchFilterCriteria;
522
- filePaths?: GitFilePathFilterCriteria;
520
+ events?: GitPullRequestEventType[] | undefined;
521
+ branches?: GitBranchFilterCriteria | undefined;
522
+ filePaths?: GitFilePathFilterCriteria | undefined;
523
523
  }
524
524
  export interface GitTagFilterCriteria {
525
- includes?: string[];
526
- excludes?: string[];
525
+ includes?: string[] | undefined;
526
+ excludes?: string[] | undefined;
527
527
  }
528
528
  export interface GitPushFilter {
529
- tags?: GitTagFilterCriteria;
530
- branches?: GitBranchFilterCriteria;
531
- filePaths?: GitFilePathFilterCriteria;
529
+ tags?: GitTagFilterCriteria | undefined;
530
+ branches?: GitBranchFilterCriteria | undefined;
531
+ filePaths?: GitFilePathFilterCriteria | undefined;
532
532
  }
533
533
  export interface GitConfiguration {
534
534
  sourceActionName: string | undefined;
535
- push?: GitPushFilter[];
536
- pullRequest?: GitPullRequestFilter[];
535
+ push?: GitPushFilter[] | undefined;
536
+ pullRequest?: GitPullRequestFilter[] | undefined;
537
537
  }
538
538
  export declare const PipelineTriggerProviderType: {
539
539
  readonly CodeStarSourceConnection: "CodeStarSourceConnection";
@@ -546,28 +546,28 @@ export interface PipelineTriggerDeclaration {
546
546
  }
547
547
  export interface PipelineVariableDeclaration {
548
548
  name: string | undefined;
549
- defaultValue?: string;
550
- description?: string;
549
+ defaultValue?: string | undefined;
550
+ description?: string | undefined;
551
551
  }
552
552
  export interface PipelineDeclaration {
553
553
  name: string | undefined;
554
554
  roleArn: string | undefined;
555
- artifactStore?: ArtifactStore;
556
- artifactStores?: Record<string, ArtifactStore>;
555
+ artifactStore?: ArtifactStore | undefined;
556
+ artifactStores?: Record<string, ArtifactStore> | undefined;
557
557
  stages: StageDeclaration[] | undefined;
558
- version?: number;
559
- executionMode?: ExecutionMode;
560
- pipelineType?: PipelineType;
561
- variables?: PipelineVariableDeclaration[];
562
- triggers?: PipelineTriggerDeclaration[];
558
+ version?: number | undefined;
559
+ executionMode?: ExecutionMode | undefined;
560
+ pipelineType?: PipelineType | undefined;
561
+ variables?: PipelineVariableDeclaration[] | undefined;
562
+ triggers?: PipelineTriggerDeclaration[] | undefined;
563
563
  }
564
564
  export interface CreatePipelineInput {
565
565
  pipeline: PipelineDeclaration | undefined;
566
- tags?: Tag[];
566
+ tags?: Tag[] | undefined;
567
567
  }
568
568
  export interface CreatePipelineOutput {
569
- pipeline?: PipelineDeclaration;
570
- tags?: Tag[];
569
+ pipeline?: PipelineDeclaration | undefined;
570
+ tags?: Tag[] | undefined;
571
571
  }
572
572
  export declare class InvalidActionDeclarationException extends __BaseException {
573
573
  readonly name: "InvalidActionDeclarationException";
@@ -626,7 +626,7 @@ export interface DeleteWebhookInput {
626
626
  }
627
627
  export interface DeleteWebhookOutput {}
628
628
  export interface DeregisterWebhookWithThirdPartyInput {
629
- webhookName?: string;
629
+ webhookName?: string | undefined;
630
630
  }
631
631
  export interface DeregisterWebhookWithThirdPartyOutput {}
632
632
  export declare class WebhookNotFoundException extends __BaseException {
@@ -674,52 +674,52 @@ export interface GetActionTypeInput {
674
674
  version: string | undefined;
675
675
  }
676
676
  export interface GetActionTypeOutput {
677
- actionType?: ActionTypeDeclaration;
677
+ actionType?: ActionTypeDeclaration | undefined;
678
678
  }
679
679
  export interface GetJobDetailsInput {
680
680
  jobId: string | undefined;
681
681
  }
682
682
  export interface StageContext {
683
- name?: string;
683
+ name?: string | undefined;
684
684
  }
685
685
  export interface PipelineContext {
686
- pipelineName?: string;
687
- stage?: StageContext;
688
- action?: ActionContext;
689
- pipelineArn?: string;
690
- pipelineExecutionId?: string;
686
+ pipelineName?: string | undefined;
687
+ stage?: StageContext | undefined;
688
+ action?: ActionContext | undefined;
689
+ pipelineArn?: string | undefined;
690
+ pipelineExecutionId?: string | undefined;
691
691
  }
692
692
  export interface JobData {
693
- actionTypeId?: ActionTypeId;
694
- actionConfiguration?: ActionConfiguration;
695
- pipelineContext?: PipelineContext;
696
- inputArtifacts?: Artifact[];
697
- outputArtifacts?: Artifact[];
698
- artifactCredentials?: AWSSessionCredentials;
699
- continuationToken?: string;
700
- encryptionKey?: EncryptionKey;
693
+ actionTypeId?: ActionTypeId | undefined;
694
+ actionConfiguration?: ActionConfiguration | undefined;
695
+ pipelineContext?: PipelineContext | undefined;
696
+ inputArtifacts?: Artifact[] | undefined;
697
+ outputArtifacts?: Artifact[] | undefined;
698
+ artifactCredentials?: AWSSessionCredentials | undefined;
699
+ continuationToken?: string | undefined;
700
+ encryptionKey?: EncryptionKey | undefined;
701
701
  }
702
702
  export interface JobDetails {
703
- id?: string;
704
- data?: JobData;
705
- accountId?: string;
703
+ id?: string | undefined;
704
+ data?: JobData | undefined;
705
+ accountId?: string | undefined;
706
706
  }
707
707
  export interface GetJobDetailsOutput {
708
- jobDetails?: JobDetails;
708
+ jobDetails?: JobDetails | undefined;
709
709
  }
710
710
  export interface GetPipelineInput {
711
711
  name: string | undefined;
712
- version?: number;
712
+ version?: number | undefined;
713
713
  }
714
714
  export interface PipelineMetadata {
715
- pipelineArn?: string;
716
- created?: Date;
717
- updated?: Date;
718
- pollingDisabledAt?: Date;
715
+ pipelineArn?: string | undefined;
716
+ created?: Date | undefined;
717
+ updated?: Date | undefined;
718
+ pollingDisabledAt?: Date | undefined;
719
719
  }
720
720
  export interface GetPipelineOutput {
721
- pipeline?: PipelineDeclaration;
722
- metadata?: PipelineMetadata;
721
+ pipeline?: PipelineDeclaration | undefined;
722
+ metadata?: PipelineMetadata | undefined;
723
723
  }
724
724
  export declare class PipelineVersionNotFoundException extends __BaseException {
725
725
  readonly name: "PipelineVersionNotFoundException";
@@ -741,7 +741,7 @@ export declare const ExecutionType: {
741
741
  };
742
742
  export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
743
743
  export interface PipelineRollbackMetadata {
744
- rollbackTargetPipelineExecutionId?: string;
744
+ rollbackTargetPipelineExecutionId?: string | undefined;
745
745
  }
746
746
  export declare const PipelineExecutionStatus: {
747
747
  readonly Cancelled: "Cancelled";
@@ -767,28 +767,28 @@ export declare const TriggerType: {
767
767
  };
768
768
  export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
769
769
  export interface ExecutionTrigger {
770
- triggerType?: TriggerType;
771
- triggerDetail?: string;
770
+ triggerType?: TriggerType | undefined;
771
+ triggerDetail?: string | undefined;
772
772
  }
773
773
  export interface ResolvedPipelineVariable {
774
- name?: string;
775
- resolvedValue?: string;
774
+ name?: string | undefined;
775
+ resolvedValue?: string | undefined;
776
776
  }
777
777
  export interface PipelineExecution {
778
- pipelineName?: string;
779
- pipelineVersion?: number;
780
- pipelineExecutionId?: string;
781
- status?: PipelineExecutionStatus;
782
- statusSummary?: string;
783
- artifactRevisions?: ArtifactRevision[];
784
- variables?: ResolvedPipelineVariable[];
785
- trigger?: ExecutionTrigger;
786
- executionMode?: ExecutionMode;
787
- executionType?: ExecutionType;
788
- rollbackMetadata?: PipelineRollbackMetadata;
778
+ pipelineName?: string | undefined;
779
+ pipelineVersion?: number | undefined;
780
+ pipelineExecutionId?: string | undefined;
781
+ status?: PipelineExecutionStatus | undefined;
782
+ statusSummary?: string | undefined;
783
+ artifactRevisions?: ArtifactRevision[] | undefined;
784
+ variables?: ResolvedPipelineVariable[] | undefined;
785
+ trigger?: ExecutionTrigger | undefined;
786
+ executionMode?: ExecutionMode | undefined;
787
+ executionType?: ExecutionType | undefined;
788
+ rollbackMetadata?: PipelineRollbackMetadata | undefined;
789
789
  }
790
790
  export interface GetPipelineExecutionOutput {
791
- pipelineExecution?: PipelineExecution;
791
+ pipelineExecution?: PipelineExecution | undefined;
792
792
  }
793
793
  export declare class PipelineExecutionNotFoundException extends __BaseException {
794
794
  readonly name: "PipelineExecutionNotFoundException";
@@ -815,9 +815,9 @@ export declare const ConditionExecutionStatus: {
815
815
  export type ConditionExecutionStatus =
816
816
  (typeof ConditionExecutionStatus)[keyof typeof ConditionExecutionStatus];
817
817
  export interface ConditionExecution {
818
- status?: ConditionExecutionStatus;
819
- summary?: string;
820
- lastStatusChange?: Date;
818
+ status?: ConditionExecutionStatus | undefined;
819
+ summary?: string | undefined;
820
+ lastStatusChange?: Date | undefined;
821
821
  }
822
822
  export interface RuleRevision {
823
823
  revisionId: string | undefined;
@@ -833,34 +833,34 @@ export declare const RuleExecutionStatus: {
833
833
  export type RuleExecutionStatus =
834
834
  (typeof RuleExecutionStatus)[keyof typeof RuleExecutionStatus];
835
835
  export interface RuleExecution {
836
- ruleExecutionId?: string;
837
- status?: RuleExecutionStatus;
838
- summary?: string;
839
- lastStatusChange?: Date;
840
- token?: string;
841
- lastUpdatedBy?: string;
842
- externalExecutionId?: string;
843
- externalExecutionUrl?: string;
844
- errorDetails?: ErrorDetails;
836
+ ruleExecutionId?: string | undefined;
837
+ status?: RuleExecutionStatus | undefined;
838
+ summary?: string | undefined;
839
+ lastStatusChange?: Date | undefined;
840
+ token?: string | undefined;
841
+ lastUpdatedBy?: string | undefined;
842
+ externalExecutionId?: string | undefined;
843
+ externalExecutionUrl?: string | undefined;
844
+ errorDetails?: ErrorDetails | undefined;
845
845
  }
846
846
  export interface RuleState {
847
- ruleName?: string;
848
- currentRevision?: RuleRevision;
849
- latestExecution?: RuleExecution;
850
- entityUrl?: string;
851
- revisionUrl?: string;
847
+ ruleName?: string | undefined;
848
+ currentRevision?: RuleRevision | undefined;
849
+ latestExecution?: RuleExecution | undefined;
850
+ entityUrl?: string | undefined;
851
+ revisionUrl?: string | undefined;
852
852
  }
853
853
  export interface ConditionState {
854
- latestExecution?: ConditionExecution;
855
- ruleStates?: RuleState[];
854
+ latestExecution?: ConditionExecution | undefined;
855
+ ruleStates?: RuleState[] | undefined;
856
856
  }
857
857
  export interface StageConditionsExecution {
858
- status?: ConditionExecutionStatus;
859
- summary?: string;
858
+ status?: ConditionExecutionStatus | undefined;
859
+ summary?: string | undefined;
860
860
  }
861
861
  export interface StageConditionState {
862
- latestExecution?: StageConditionsExecution;
863
- conditionStates?: ConditionState[];
862
+ latestExecution?: StageConditionsExecution | undefined;
863
+ conditionStates?: ConditionState[] | undefined;
864
864
  }
865
865
  export declare const StageExecutionStatus: {
866
866
  readonly Cancelled: "Cancelled";
@@ -876,13 +876,13 @@ export type StageExecutionStatus =
876
876
  export interface StageExecution {
877
877
  pipelineExecutionId: string | undefined;
878
878
  status: StageExecutionStatus | undefined;
879
- type?: ExecutionType;
879
+ type?: ExecutionType | undefined;
880
880
  }
881
881
  export interface TransitionState {
882
- enabled?: boolean;
883
- lastChangedBy?: string;
884
- lastChangedAt?: Date;
885
- disabledReason?: string;
882
+ enabled?: boolean | undefined;
883
+ lastChangedBy?: string | undefined;
884
+ lastChangedAt?: Date | undefined;
885
+ disabledReason?: string | undefined;
886
886
  }
887
887
  export declare const RetryTrigger: {
888
888
  readonly AutomatedStageRetry: "AutomatedStageRetry";
@@ -890,50 +890,50 @@ export declare const RetryTrigger: {
890
890
  };
891
891
  export type RetryTrigger = (typeof RetryTrigger)[keyof typeof RetryTrigger];
892
892
  export interface RetryStageMetadata {
893
- autoStageRetryAttempt?: number;
894
- manualStageRetryAttempt?: number;
895
- latestRetryTrigger?: RetryTrigger;
893
+ autoStageRetryAttempt?: number | undefined;
894
+ manualStageRetryAttempt?: number | undefined;
895
+ latestRetryTrigger?: RetryTrigger | undefined;
896
896
  }
897
897
  export interface StageState {
898
- stageName?: string;
899
- inboundExecution?: StageExecution;
900
- inboundExecutions?: StageExecution[];
901
- inboundTransitionState?: TransitionState;
902
- actionStates?: ActionState[];
903
- latestExecution?: StageExecution;
904
- beforeEntryConditionState?: StageConditionState;
905
- onSuccessConditionState?: StageConditionState;
906
- onFailureConditionState?: StageConditionState;
907
- retryStageMetadata?: RetryStageMetadata;
898
+ stageName?: string | undefined;
899
+ inboundExecution?: StageExecution | undefined;
900
+ inboundExecutions?: StageExecution[] | undefined;
901
+ inboundTransitionState?: TransitionState | undefined;
902
+ actionStates?: ActionState[] | undefined;
903
+ latestExecution?: StageExecution | undefined;
904
+ beforeEntryConditionState?: StageConditionState | undefined;
905
+ onSuccessConditionState?: StageConditionState | undefined;
906
+ onFailureConditionState?: StageConditionState | undefined;
907
+ retryStageMetadata?: RetryStageMetadata | undefined;
908
908
  }
909
909
  export interface GetPipelineStateOutput {
910
- pipelineName?: string;
911
- pipelineVersion?: number;
912
- stageStates?: StageState[];
913
- created?: Date;
914
- updated?: Date;
910
+ pipelineName?: string | undefined;
911
+ pipelineVersion?: number | undefined;
912
+ stageStates?: StageState[] | undefined;
913
+ created?: Date | undefined;
914
+ updated?: Date | undefined;
915
915
  }
916
916
  export interface GetThirdPartyJobDetailsInput {
917
917
  jobId: string | undefined;
918
918
  clientToken: string | undefined;
919
919
  }
920
920
  export interface ThirdPartyJobData {
921
- actionTypeId?: ActionTypeId;
922
- actionConfiguration?: ActionConfiguration;
923
- pipelineContext?: PipelineContext;
924
- inputArtifacts?: Artifact[];
925
- outputArtifacts?: Artifact[];
926
- artifactCredentials?: AWSSessionCredentials;
927
- continuationToken?: string;
928
- encryptionKey?: EncryptionKey;
921
+ actionTypeId?: ActionTypeId | undefined;
922
+ actionConfiguration?: ActionConfiguration | undefined;
923
+ pipelineContext?: PipelineContext | undefined;
924
+ inputArtifacts?: Artifact[] | undefined;
925
+ outputArtifacts?: Artifact[] | undefined;
926
+ artifactCredentials?: AWSSessionCredentials | undefined;
927
+ continuationToken?: string | undefined;
928
+ encryptionKey?: EncryptionKey | undefined;
929
929
  }
930
930
  export interface ThirdPartyJobDetails {
931
- id?: string;
932
- data?: ThirdPartyJobData;
933
- nonce?: string;
931
+ id?: string | undefined;
932
+ data?: ThirdPartyJobData | undefined;
933
+ nonce?: string | undefined;
934
934
  }
935
935
  export interface GetThirdPartyJobDetailsOutput {
936
- jobDetails?: ThirdPartyJobDetails;
936
+ jobDetails?: ThirdPartyJobDetails | undefined;
937
937
  }
938
938
  export declare class InvalidJobException extends __BaseException {
939
939
  readonly name: "InvalidJobException";
@@ -951,124 +951,124 @@ export declare class InvalidNextTokenException extends __BaseException {
951
951
  }
952
952
  export interface ListActionExecutionsInput {
953
953
  pipelineName: string | undefined;
954
- filter?: ActionExecutionFilter;
955
- maxResults?: number;
956
- nextToken?: string;
954
+ filter?: ActionExecutionFilter | undefined;
955
+ maxResults?: number | undefined;
956
+ nextToken?: string | undefined;
957
957
  }
958
958
  export interface ListActionExecutionsOutput {
959
- actionExecutionDetails?: ActionExecutionDetail[];
960
- nextToken?: string;
959
+ actionExecutionDetails?: ActionExecutionDetail[] | undefined;
960
+ nextToken?: string | undefined;
961
961
  }
962
962
  export interface ListActionTypesInput {
963
- actionOwnerFilter?: ActionOwner;
964
- nextToken?: string;
965
- regionFilter?: string;
963
+ actionOwnerFilter?: ActionOwner | undefined;
964
+ nextToken?: string | undefined;
965
+ regionFilter?: string | undefined;
966
966
  }
967
967
  export interface ListActionTypesOutput {
968
968
  actionTypes: ActionType[] | undefined;
969
- nextToken?: string;
969
+ nextToken?: string | undefined;
970
970
  }
971
971
  export interface SucceededInStageFilter {
972
- stageName?: string;
972
+ stageName?: string | undefined;
973
973
  }
974
974
  export interface PipelineExecutionFilter {
975
- succeededInStage?: SucceededInStageFilter;
975
+ succeededInStage?: SucceededInStageFilter | undefined;
976
976
  }
977
977
  export interface ListPipelineExecutionsInput {
978
978
  pipelineName: string | undefined;
979
- maxResults?: number;
980
- filter?: PipelineExecutionFilter;
981
- nextToken?: string;
979
+ maxResults?: number | undefined;
980
+ filter?: PipelineExecutionFilter | undefined;
981
+ nextToken?: string | undefined;
982
982
  }
983
983
  export interface SourceRevision {
984
984
  actionName: string | undefined;
985
- revisionId?: string;
986
- revisionSummary?: string;
987
- revisionUrl?: string;
985
+ revisionId?: string | undefined;
986
+ revisionSummary?: string | undefined;
987
+ revisionUrl?: string | undefined;
988
988
  }
989
989
  export interface StopExecutionTrigger {
990
- reason?: string;
990
+ reason?: string | undefined;
991
991
  }
992
992
  export interface PipelineExecutionSummary {
993
- pipelineExecutionId?: string;
994
- status?: PipelineExecutionStatus;
995
- statusSummary?: string;
996
- startTime?: Date;
997
- lastUpdateTime?: Date;
998
- sourceRevisions?: SourceRevision[];
999
- trigger?: ExecutionTrigger;
1000
- stopTrigger?: StopExecutionTrigger;
1001
- executionMode?: ExecutionMode;
1002
- executionType?: ExecutionType;
1003
- rollbackMetadata?: PipelineRollbackMetadata;
993
+ pipelineExecutionId?: string | undefined;
994
+ status?: PipelineExecutionStatus | undefined;
995
+ statusSummary?: string | undefined;
996
+ startTime?: Date | undefined;
997
+ lastUpdateTime?: Date | undefined;
998
+ sourceRevisions?: SourceRevision[] | undefined;
999
+ trigger?: ExecutionTrigger | undefined;
1000
+ stopTrigger?: StopExecutionTrigger | undefined;
1001
+ executionMode?: ExecutionMode | undefined;
1002
+ executionType?: ExecutionType | undefined;
1003
+ rollbackMetadata?: PipelineRollbackMetadata | undefined;
1004
1004
  }
1005
1005
  export interface ListPipelineExecutionsOutput {
1006
- pipelineExecutionSummaries?: PipelineExecutionSummary[];
1007
- nextToken?: string;
1006
+ pipelineExecutionSummaries?: PipelineExecutionSummary[] | undefined;
1007
+ nextToken?: string | undefined;
1008
1008
  }
1009
1009
  export interface ListPipelinesInput {
1010
- nextToken?: string;
1011
- maxResults?: number;
1010
+ nextToken?: string | undefined;
1011
+ maxResults?: number | undefined;
1012
1012
  }
1013
1013
  export interface PipelineSummary {
1014
- name?: string;
1015
- version?: number;
1016
- pipelineType?: PipelineType;
1017
- executionMode?: ExecutionMode;
1018
- created?: Date;
1019
- updated?: Date;
1014
+ name?: string | undefined;
1015
+ version?: number | undefined;
1016
+ pipelineType?: PipelineType | undefined;
1017
+ executionMode?: ExecutionMode | undefined;
1018
+ created?: Date | undefined;
1019
+ updated?: Date | undefined;
1020
1020
  }
1021
1021
  export interface ListPipelinesOutput {
1022
- pipelines?: PipelineSummary[];
1023
- nextToken?: string;
1022
+ pipelines?: PipelineSummary[] | undefined;
1023
+ nextToken?: string | undefined;
1024
1024
  }
1025
1025
  export interface RuleExecutionFilter {
1026
- pipelineExecutionId?: string;
1027
- latestInPipelineExecution?: LatestInPipelineExecutionFilter;
1026
+ pipelineExecutionId?: string | undefined;
1027
+ latestInPipelineExecution?: LatestInPipelineExecutionFilter | undefined;
1028
1028
  }
1029
1029
  export interface ListRuleExecutionsInput {
1030
1030
  pipelineName: string | undefined;
1031
- filter?: RuleExecutionFilter;
1032
- maxResults?: number;
1033
- nextToken?: string;
1031
+ filter?: RuleExecutionFilter | undefined;
1032
+ maxResults?: number | undefined;
1033
+ nextToken?: string | undefined;
1034
1034
  }
1035
1035
  export interface RuleExecutionInput {
1036
- ruleTypeId?: RuleTypeId;
1037
- configuration?: Record<string, string>;
1038
- resolvedConfiguration?: Record<string, string>;
1039
- roleArn?: string;
1040
- region?: string;
1041
- inputArtifacts?: ArtifactDetail[];
1036
+ ruleTypeId?: RuleTypeId | undefined;
1037
+ configuration?: Record<string, string> | undefined;
1038
+ resolvedConfiguration?: Record<string, string> | undefined;
1039
+ roleArn?: string | undefined;
1040
+ region?: string | undefined;
1041
+ inputArtifacts?: ArtifactDetail[] | undefined;
1042
1042
  }
1043
1043
  export interface RuleExecutionResult {
1044
- externalExecutionId?: string;
1045
- externalExecutionSummary?: string;
1046
- externalExecutionUrl?: string;
1047
- errorDetails?: ErrorDetails;
1044
+ externalExecutionId?: string | undefined;
1045
+ externalExecutionSummary?: string | undefined;
1046
+ externalExecutionUrl?: string | undefined;
1047
+ errorDetails?: ErrorDetails | undefined;
1048
1048
  }
1049
1049
  export interface RuleExecutionOutput {
1050
- executionResult?: RuleExecutionResult;
1050
+ executionResult?: RuleExecutionResult | undefined;
1051
1051
  }
1052
1052
  export interface RuleExecutionDetail {
1053
- pipelineExecutionId?: string;
1054
- ruleExecutionId?: string;
1055
- pipelineVersion?: number;
1056
- stageName?: string;
1057
- ruleName?: string;
1058
- startTime?: Date;
1059
- lastUpdateTime?: Date;
1060
- updatedBy?: string;
1061
- status?: RuleExecutionStatus;
1062
- input?: RuleExecutionInput;
1063
- output?: RuleExecutionOutput;
1053
+ pipelineExecutionId?: string | undefined;
1054
+ ruleExecutionId?: string | undefined;
1055
+ pipelineVersion?: number | undefined;
1056
+ stageName?: string | undefined;
1057
+ ruleName?: string | undefined;
1058
+ startTime?: Date | undefined;
1059
+ lastUpdateTime?: Date | undefined;
1060
+ updatedBy?: string | undefined;
1061
+ status?: RuleExecutionStatus | undefined;
1062
+ input?: RuleExecutionInput | undefined;
1063
+ output?: RuleExecutionOutput | undefined;
1064
1064
  }
1065
1065
  export interface ListRuleExecutionsOutput {
1066
- ruleExecutionDetails?: RuleExecutionDetail[];
1067
- nextToken?: string;
1066
+ ruleExecutionDetails?: RuleExecutionDetail[] | undefined;
1067
+ nextToken?: string | undefined;
1068
1068
  }
1069
1069
  export interface ListRuleTypesInput {
1070
- ruleOwnerFilter?: RuleOwner;
1071
- regionFilter?: string;
1070
+ ruleOwnerFilter?: RuleOwner | undefined;
1071
+ regionFilter?: string | undefined;
1072
1072
  }
1073
1073
  export declare const RuleConfigurationPropertyType: {
1074
1074
  readonly Boolean: "Boolean";
@@ -1082,20 +1082,20 @@ export interface RuleConfigurationProperty {
1082
1082
  required: boolean | undefined;
1083
1083
  key: boolean | undefined;
1084
1084
  secret: boolean | undefined;
1085
- queryable?: boolean;
1086
- description?: string;
1087
- type?: RuleConfigurationPropertyType;
1085
+ queryable?: boolean | undefined;
1086
+ description?: string | undefined;
1087
+ type?: RuleConfigurationPropertyType | undefined;
1088
1088
  }
1089
1089
  export interface RuleTypeSettings {
1090
- thirdPartyConfigurationUrl?: string;
1091
- entityUrlTemplate?: string;
1092
- executionUrlTemplate?: string;
1093
- revisionUrlTemplate?: string;
1090
+ thirdPartyConfigurationUrl?: string | undefined;
1091
+ entityUrlTemplate?: string | undefined;
1092
+ executionUrlTemplate?: string | undefined;
1093
+ revisionUrlTemplate?: string | undefined;
1094
1094
  }
1095
1095
  export interface RuleType {
1096
1096
  id: RuleTypeId | undefined;
1097
- settings?: RuleTypeSettings;
1098
- ruleConfigurationProperties?: RuleConfigurationProperty[];
1097
+ settings?: RuleTypeSettings | undefined;
1098
+ ruleConfigurationProperties?: RuleConfigurationProperty[] | undefined;
1099
1099
  inputArtifactDetails: ArtifactDetails | undefined;
1100
1100
  }
1101
1101
  export interface ListRuleTypesOutput {
@@ -1110,12 +1110,12 @@ export declare class InvalidArnException extends __BaseException {
1110
1110
  }
1111
1111
  export interface ListTagsForResourceInput {
1112
1112
  resourceArn: string | undefined;
1113
- nextToken?: string;
1114
- maxResults?: number;
1113
+ nextToken?: string | undefined;
1114
+ maxResults?: number | undefined;
1115
1115
  }
1116
1116
  export interface ListTagsForResourceOutput {
1117
- tags?: Tag[];
1118
- nextToken?: string;
1117
+ tags?: Tag[] | undefined;
1118
+ nextToken?: string | undefined;
1119
1119
  }
1120
1120
  export declare class ResourceNotFoundException extends __BaseException {
1121
1121
  readonly name: "ResourceNotFoundException";
@@ -1125,8 +1125,8 @@ export declare class ResourceNotFoundException extends __BaseException {
1125
1125
  );
1126
1126
  }
1127
1127
  export interface ListWebhooksInput {
1128
- NextToken?: string;
1129
- MaxResults?: number;
1128
+ NextToken?: string | undefined;
1129
+ MaxResults?: number | undefined;
1130
1130
  }
1131
1131
  export declare const WebhookAuthenticationType: {
1132
1132
  readonly GITHUB_HMAC: "GITHUB_HMAC";
@@ -1136,12 +1136,12 @@ export declare const WebhookAuthenticationType: {
1136
1136
  export type WebhookAuthenticationType =
1137
1137
  (typeof WebhookAuthenticationType)[keyof typeof WebhookAuthenticationType];
1138
1138
  export interface WebhookAuthConfiguration {
1139
- AllowedIPRange?: string;
1140
- SecretToken?: string;
1139
+ AllowedIPRange?: string | undefined;
1140
+ SecretToken?: string | undefined;
1141
1141
  }
1142
1142
  export interface WebhookFilterRule {
1143
1143
  jsonPath: string | undefined;
1144
- matchEquals?: string;
1144
+ matchEquals?: string | undefined;
1145
1145
  }
1146
1146
  export interface WebhookDefinition {
1147
1147
  name: string | undefined;
@@ -1154,15 +1154,15 @@ export interface WebhookDefinition {
1154
1154
  export interface ListWebhookItem {
1155
1155
  definition: WebhookDefinition | undefined;
1156
1156
  url: string | undefined;
1157
- errorMessage?: string;
1158
- errorCode?: string;
1159
- lastTriggered?: Date;
1160
- arn?: string;
1161
- tags?: Tag[];
1157
+ errorMessage?: string | undefined;
1158
+ errorCode?: string | undefined;
1159
+ lastTriggered?: Date | undefined;
1160
+ arn?: string | undefined;
1161
+ tags?: Tag[] | undefined;
1162
1162
  }
1163
1163
  export interface ListWebhooksOutput {
1164
- webhooks?: ListWebhookItem[];
1165
- NextToken?: string;
1164
+ webhooks?: ListWebhookItem[] | undefined;
1165
+ NextToken?: string | undefined;
1166
1166
  }
1167
1167
  export declare class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
1168
1168
  readonly name: "ConcurrentPipelineExecutionsLimitExceededException";
@@ -1212,28 +1212,28 @@ export interface OverrideStageConditionInput {
1212
1212
  }
1213
1213
  export interface PollForJobsInput {
1214
1214
  actionTypeId: ActionTypeId | undefined;
1215
- maxBatchSize?: number;
1216
- queryParam?: Record<string, string>;
1215
+ maxBatchSize?: number | undefined;
1216
+ queryParam?: Record<string, string> | undefined;
1217
1217
  }
1218
1218
  export interface Job {
1219
- id?: string;
1220
- data?: JobData;
1221
- nonce?: string;
1222
- accountId?: string;
1219
+ id?: string | undefined;
1220
+ data?: JobData | undefined;
1221
+ nonce?: string | undefined;
1222
+ accountId?: string | undefined;
1223
1223
  }
1224
1224
  export interface PollForJobsOutput {
1225
- jobs?: Job[];
1225
+ jobs?: Job[] | undefined;
1226
1226
  }
1227
1227
  export interface PollForThirdPartyJobsInput {
1228
1228
  actionTypeId: ActionTypeId | undefined;
1229
- maxBatchSize?: number;
1229
+ maxBatchSize?: number | undefined;
1230
1230
  }
1231
1231
  export interface ThirdPartyJob {
1232
- clientId?: string;
1233
- jobId?: string;
1232
+ clientId?: string | undefined;
1233
+ jobId?: string | undefined;
1234
1234
  }
1235
1235
  export interface PollForThirdPartyJobsOutput {
1236
- jobs?: ThirdPartyJob[];
1236
+ jobs?: ThirdPartyJob[] | undefined;
1237
1237
  }
1238
1238
  export interface PutActionRevisionInput {
1239
1239
  pipelineName: string | undefined;
@@ -1242,8 +1242,8 @@ export interface PutActionRevisionInput {
1242
1242
  actionRevision: ActionRevision | undefined;
1243
1243
  }
1244
1244
  export interface PutActionRevisionOutput {
1245
- newRevision?: boolean;
1246
- pipelineExecutionId?: string;
1245
+ newRevision?: boolean | undefined;
1246
+ pipelineExecutionId?: string | undefined;
1247
1247
  }
1248
1248
  export declare class InvalidApprovalTokenException extends __BaseException {
1249
1249
  readonly name: "InvalidApprovalTokenException";
@@ -1260,7 +1260,7 @@ export interface PutApprovalResultInput {
1260
1260
  token: string | undefined;
1261
1261
  }
1262
1262
  export interface PutApprovalResultOutput {
1263
- approvedAt?: Date;
1263
+ approvedAt?: Date | undefined;
1264
1264
  }
1265
1265
  export declare class InvalidJobStateException extends __BaseException {
1266
1266
  readonly name: "InvalidJobStateException";
@@ -1281,7 +1281,7 @@ export type FailureType = (typeof FailureType)[keyof typeof FailureType];
1281
1281
  export interface FailureDetails {
1282
1282
  type: FailureType | undefined;
1283
1283
  message: string | undefined;
1284
- externalExecutionId?: string;
1284
+ externalExecutionId?: string | undefined;
1285
1285
  }
1286
1286
  export interface PutJobFailureResultInput {
1287
1287
  jobId: string | undefined;
@@ -1300,20 +1300,20 @@ export declare class OutputVariablesSizeExceededException extends __BaseExceptio
1300
1300
  export interface CurrentRevision {
1301
1301
  revision: string | undefined;
1302
1302
  changeIdentifier: string | undefined;
1303
- created?: Date;
1304
- revisionSummary?: string;
1303
+ created?: Date | undefined;
1304
+ revisionSummary?: string | undefined;
1305
1305
  }
1306
1306
  export interface ExecutionDetails {
1307
- summary?: string;
1308
- externalExecutionId?: string;
1309
- percentComplete?: number;
1307
+ summary?: string | undefined;
1308
+ externalExecutionId?: string | undefined;
1309
+ percentComplete?: number | undefined;
1310
1310
  }
1311
1311
  export interface PutJobSuccessResultInput {
1312
1312
  jobId: string | undefined;
1313
- currentRevision?: CurrentRevision;
1314
- continuationToken?: string;
1315
- executionDetails?: ExecutionDetails;
1316
- outputVariables?: Record<string, string>;
1313
+ currentRevision?: CurrentRevision | undefined;
1314
+ continuationToken?: string | undefined;
1315
+ executionDetails?: ExecutionDetails | undefined;
1316
+ outputVariables?: Record<string, string> | undefined;
1317
1317
  }
1318
1318
  export interface PutThirdPartyJobFailureResultInput {
1319
1319
  jobId: string | undefined;
@@ -1323,9 +1323,9 @@ export interface PutThirdPartyJobFailureResultInput {
1323
1323
  export interface PutThirdPartyJobSuccessResultInput {
1324
1324
  jobId: string | undefined;
1325
1325
  clientToken: string | undefined;
1326
- currentRevision?: CurrentRevision;
1327
- continuationToken?: string;
1328
- executionDetails?: ExecutionDetails;
1326
+ currentRevision?: CurrentRevision | undefined;
1327
+ continuationToken?: string | undefined;
1328
+ executionDetails?: ExecutionDetails | undefined;
1329
1329
  }
1330
1330
  export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
1331
1331
  readonly name: "InvalidWebhookAuthenticationParametersException";
@@ -1349,13 +1349,13 @@ export declare class InvalidWebhookFilterPatternException extends __BaseExceptio
1349
1349
  }
1350
1350
  export interface PutWebhookInput {
1351
1351
  webhook: WebhookDefinition | undefined;
1352
- tags?: Tag[];
1352
+ tags?: Tag[] | undefined;
1353
1353
  }
1354
1354
  export interface PutWebhookOutput {
1355
- webhook?: ListWebhookItem;
1355
+ webhook?: ListWebhookItem | undefined;
1356
1356
  }
1357
1357
  export interface RegisterWebhookWithThirdPartyInput {
1358
- webhookName?: string;
1358
+ webhookName?: string | undefined;
1359
1359
  }
1360
1360
  export interface RegisterWebhookWithThirdPartyOutput {}
1361
1361
  export interface RetryStageExecutionInput {
@@ -1365,7 +1365,7 @@ export interface RetryStageExecutionInput {
1365
1365
  retryMode: StageRetryMode | undefined;
1366
1366
  }
1367
1367
  export interface RetryStageExecutionOutput {
1368
- pipelineExecutionId?: string;
1368
+ pipelineExecutionId?: string | undefined;
1369
1369
  }
1370
1370
  export declare class StageNotRetryableException extends __BaseException {
1371
1371
  readonly name: "StageNotRetryableException";
@@ -1418,12 +1418,12 @@ export interface PipelineVariable {
1418
1418
  }
1419
1419
  export interface StartPipelineExecutionInput {
1420
1420
  name: string | undefined;
1421
- variables?: PipelineVariable[];
1422
- clientRequestToken?: string;
1423
- sourceRevisions?: SourceRevisionOverride[];
1421
+ variables?: PipelineVariable[] | undefined;
1422
+ clientRequestToken?: string | undefined;
1423
+ sourceRevisions?: SourceRevisionOverride[] | undefined;
1424
1424
  }
1425
1425
  export interface StartPipelineExecutionOutput {
1426
- pipelineExecutionId?: string;
1426
+ pipelineExecutionId?: string | undefined;
1427
1427
  }
1428
1428
  export declare class DuplicatedStopRequestException extends __BaseException {
1429
1429
  readonly name: "DuplicatedStopRequestException";
@@ -1445,11 +1445,11 @@ export declare class PipelineExecutionNotStoppableException extends __BaseExcept
1445
1445
  export interface StopPipelineExecutionInput {
1446
1446
  pipelineName: string | undefined;
1447
1447
  pipelineExecutionId: string | undefined;
1448
- abandon?: boolean;
1449
- reason?: string;
1448
+ abandon?: boolean | undefined;
1449
+ reason?: string | undefined;
1450
1450
  }
1451
1451
  export interface StopPipelineExecutionOutput {
1452
- pipelineExecutionId?: string;
1452
+ pipelineExecutionId?: string | undefined;
1453
1453
  }
1454
1454
  export interface TagResourceInput {
1455
1455
  resourceArn: string | undefined;
@@ -1475,7 +1475,7 @@ export interface UpdatePipelineInput {
1475
1475
  pipeline: PipelineDeclaration | undefined;
1476
1476
  }
1477
1477
  export interface UpdatePipelineOutput {
1478
- pipeline?: PipelineDeclaration;
1478
+ pipeline?: PipelineDeclaration | undefined;
1479
1479
  }
1480
1480
  export declare const AWSSessionCredentialsFilterSensitiveLog: (
1481
1481
  obj: AWSSessionCredentials