@aws-sdk/client-codepipeline 3.687.0 → 3.692.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.
- package/dist-types/models/models_0.d.ts +386 -386
- package/dist-types/ts3.4/models/models_0.d.ts +386 -386
- package/package.json +35 -35
|
@@ -45,7 +45,7 @@ export interface AcknowledgeJobOutput {
|
|
|
45
45
|
* <p>Whether the job worker has received the specified job.</p>
|
|
46
46
|
* @public
|
|
47
47
|
*/
|
|
48
|
-
status?: JobStatus;
|
|
48
|
+
status?: JobStatus | undefined;
|
|
49
49
|
}
|
|
50
50
|
/**
|
|
51
51
|
* <p>The nonce was specified in an invalid format.</p>
|
|
@@ -116,7 +116,7 @@ export interface AcknowledgeThirdPartyJobOutput {
|
|
|
116
116
|
* <p>The status information for the third party job, if any.</p>
|
|
117
117
|
* @public
|
|
118
118
|
*/
|
|
119
|
-
status?: JobStatus;
|
|
119
|
+
status?: JobStatus | undefined;
|
|
120
120
|
}
|
|
121
121
|
/**
|
|
122
122
|
* <p>The client token was specified in an invalid format</p>
|
|
@@ -156,7 +156,7 @@ export interface ActionConfiguration {
|
|
|
156
156
|
* <p>The configuration data for the action.</p>
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
|
-
configuration?: Record<string, string
|
|
159
|
+
configuration?: Record<string, string> | undefined;
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
162
|
* @public
|
|
@@ -210,18 +210,18 @@ export interface ActionConfigurationProperty {
|
|
|
210
210
|
* can contain only alphanumeric characters, underscores, and hyphens.</p>
|
|
211
211
|
* @public
|
|
212
212
|
*/
|
|
213
|
-
queryable?: boolean;
|
|
213
|
+
queryable?: boolean | undefined;
|
|
214
214
|
/**
|
|
215
215
|
* <p>The description of the action configuration property that is displayed to
|
|
216
216
|
* users.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
description?: string;
|
|
219
|
+
description?: string | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* <p>The type of the configuration property.</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
type?: ActionConfigurationPropertyType;
|
|
224
|
+
type?: ActionConfigurationPropertyType | undefined;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* <p>Represents the context of an action in the stage of a pipeline to a job
|
|
@@ -233,12 +233,12 @@ export interface ActionContext {
|
|
|
233
233
|
* <p>The name of the action in the context of a job.</p>
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
name?: string;
|
|
236
|
+
name?: string | undefined;
|
|
237
237
|
/**
|
|
238
238
|
* <p>The system-generated unique ID that corresponds to an action's execution.</p>
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
actionExecutionId?: string;
|
|
241
|
+
actionExecutionId?: string | undefined;
|
|
242
242
|
}
|
|
243
243
|
/**
|
|
244
244
|
* @public
|
|
@@ -349,7 +349,7 @@ export interface OutputArtifact {
|
|
|
349
349
|
* from the compute action.</p>
|
|
350
350
|
* @public
|
|
351
351
|
*/
|
|
352
|
-
files?: string[];
|
|
352
|
+
files?: string[] | undefined;
|
|
353
353
|
}
|
|
354
354
|
/**
|
|
355
355
|
* <p>Represents information about an action declaration.</p>
|
|
@@ -370,7 +370,7 @@ export interface ActionDeclaration {
|
|
|
370
370
|
* <p>The order in which actions are run.</p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
runOrder?: number;
|
|
373
|
+
runOrder?: number | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* <p>The action's configuration. These are key-value pairs that specify input values for
|
|
376
376
|
* an action. For more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements">Action Structure Requirements in CodePipeline</a>. For the list of
|
|
@@ -387,7 +387,7 @@ export interface ActionDeclaration {
|
|
|
387
387
|
* </p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
configuration?: Record<string, string
|
|
390
|
+
configuration?: Record<string, string> | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p>The shell commands to run with your compute action in CodePipeline. All commands
|
|
393
393
|
* are supported except multi-line formats. While CodeBuild logs and permissions
|
|
@@ -397,49 +397,49 @@ export interface ActionDeclaration {
|
|
|
397
397
|
* </note>
|
|
398
398
|
* @public
|
|
399
399
|
*/
|
|
400
|
-
commands?: string[];
|
|
400
|
+
commands?: string[] | undefined;
|
|
401
401
|
/**
|
|
402
402
|
* <p>The name or ID of the result of the action declaration, such as a test or build
|
|
403
403
|
* artifact.</p>
|
|
404
404
|
* @public
|
|
405
405
|
*/
|
|
406
|
-
outputArtifacts?: OutputArtifact[];
|
|
406
|
+
outputArtifacts?: OutputArtifact[] | undefined;
|
|
407
407
|
/**
|
|
408
408
|
* <p>The name or ID of the artifact consumed by the action, such as a test or build
|
|
409
409
|
* artifact.</p>
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
inputArtifacts?: InputArtifact[];
|
|
412
|
+
inputArtifacts?: InputArtifact[] | undefined;
|
|
413
413
|
/**
|
|
414
414
|
* <p>The list of variables that are to be exported from the compute action. This is
|
|
415
415
|
* specifically CodeBuild environment variables as used for that action.</p>
|
|
416
416
|
* @public
|
|
417
417
|
*/
|
|
418
|
-
outputVariables?: string[];
|
|
418
|
+
outputVariables?: string[] | undefined;
|
|
419
419
|
/**
|
|
420
420
|
* <p>The ARN of the IAM service role that performs the declared action. This is assumed
|
|
421
421
|
* through the roleArn for the pipeline.</p>
|
|
422
422
|
* @public
|
|
423
423
|
*/
|
|
424
|
-
roleArn?: string;
|
|
424
|
+
roleArn?: string | undefined;
|
|
425
425
|
/**
|
|
426
426
|
* <p>The action declaration's Amazon Web Services Region, such as us-east-1.</p>
|
|
427
427
|
* @public
|
|
428
428
|
*/
|
|
429
|
-
region?: string;
|
|
429
|
+
region?: string | undefined;
|
|
430
430
|
/**
|
|
431
431
|
* <p>The variable namespace associated with the action. All variables produced as output by
|
|
432
432
|
* this action fall under this namespace.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
namespace?: string;
|
|
435
|
+
namespace?: string | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>A timeout duration in minutes that can be applied against the ActionType’s default
|
|
438
438
|
* timeout value specified in <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html">Quotas for CodePipeline
|
|
439
439
|
* </a>. This attribute is available only to the manual approval ActionType.</p>
|
|
440
440
|
* @public
|
|
441
441
|
*/
|
|
442
|
-
timeoutInMinutes?: number;
|
|
442
|
+
timeoutInMinutes?: number | undefined;
|
|
443
443
|
}
|
|
444
444
|
/**
|
|
445
445
|
* <p>Represents information about an error in CodePipeline.</p>
|
|
@@ -450,12 +450,12 @@ export interface ErrorDetails {
|
|
|
450
450
|
* <p>The system ID or number code of the error.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
code?: string;
|
|
453
|
+
code?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The text of the error message.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
message?: string;
|
|
458
|
+
message?: string | undefined;
|
|
459
459
|
}
|
|
460
460
|
/**
|
|
461
461
|
* @public
|
|
@@ -485,23 +485,23 @@ export interface ActionExecution {
|
|
|
485
485
|
* </note>
|
|
486
486
|
* @public
|
|
487
487
|
*/
|
|
488
|
-
actionExecutionId?: string;
|
|
488
|
+
actionExecutionId?: string | undefined;
|
|
489
489
|
/**
|
|
490
490
|
* <p>The status of the action, or for a completed action, the last status of the
|
|
491
491
|
* action.</p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
status?: ActionExecutionStatus;
|
|
494
|
+
status?: ActionExecutionStatus | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>A summary of the run of the action.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
summary?: string;
|
|
499
|
+
summary?: string | undefined;
|
|
500
500
|
/**
|
|
501
501
|
* <p>The last status change of the action.</p>
|
|
502
502
|
* @public
|
|
503
503
|
*/
|
|
504
|
-
lastStatusChange?: Date;
|
|
504
|
+
lastStatusChange?: Date | undefined;
|
|
505
505
|
/**
|
|
506
506
|
* <p>The system-generated token used to identify a unique approval request. The token
|
|
507
507
|
* for each open approval request can be obtained using the <code>GetPipelineState</code>
|
|
@@ -509,33 +509,33 @@ export interface ActionExecution {
|
|
|
509
509
|
* still valid.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
token?: string;
|
|
512
|
+
token?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>The ARN of the user who last changed the pipeline.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
lastUpdatedBy?: string;
|
|
517
|
+
lastUpdatedBy?: string | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>The external ID of the run of the action.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
externalExecutionId?: string;
|
|
522
|
+
externalExecutionId?: string | undefined;
|
|
523
523
|
/**
|
|
524
524
|
* <p>The URL of a resource external to Amazon Web Services that is used when running the
|
|
525
525
|
* action (for example, an external repository URL).</p>
|
|
526
526
|
* @public
|
|
527
527
|
*/
|
|
528
|
-
externalExecutionUrl?: string;
|
|
528
|
+
externalExecutionUrl?: string | undefined;
|
|
529
529
|
/**
|
|
530
530
|
* <p>A percentage of completeness of the action as it runs.</p>
|
|
531
531
|
* @public
|
|
532
532
|
*/
|
|
533
|
-
percentComplete?: number;
|
|
533
|
+
percentComplete?: number | undefined;
|
|
534
534
|
/**
|
|
535
535
|
* <p>The details of an error returned by a URL external to Amazon Web Services.</p>
|
|
536
536
|
* @public
|
|
537
537
|
*/
|
|
538
|
-
errorDetails?: ErrorDetails;
|
|
538
|
+
errorDetails?: ErrorDetails | undefined;
|
|
539
539
|
}
|
|
540
540
|
/**
|
|
541
541
|
* <p>The Amazon S3 artifact location for an action's artifacts.</p>
|
|
@@ -546,12 +546,12 @@ export interface S3Location {
|
|
|
546
546
|
* <p>The Amazon S3 artifact bucket for an action's artifacts.</p>
|
|
547
547
|
* @public
|
|
548
548
|
*/
|
|
549
|
-
bucket?: string;
|
|
549
|
+
bucket?: string | undefined;
|
|
550
550
|
/**
|
|
551
551
|
* <p>The artifact name.</p>
|
|
552
552
|
* @public
|
|
553
553
|
*/
|
|
554
|
-
key?: string;
|
|
554
|
+
key?: string | undefined;
|
|
555
555
|
}
|
|
556
556
|
/**
|
|
557
557
|
* <p>Artifact details for the action execution, such as the artifact location.</p>
|
|
@@ -562,12 +562,12 @@ export interface ArtifactDetail {
|
|
|
562
562
|
* <p>The artifact object name for the action execution.</p>
|
|
563
563
|
* @public
|
|
564
564
|
*/
|
|
565
|
-
name?: string;
|
|
565
|
+
name?: string | undefined;
|
|
566
566
|
/**
|
|
567
567
|
* <p>The Amazon S3 artifact location for the action execution.</p>
|
|
568
568
|
* @public
|
|
569
569
|
*/
|
|
570
|
-
s3location?: S3Location;
|
|
570
|
+
s3location?: S3Location | undefined;
|
|
571
571
|
}
|
|
572
572
|
/**
|
|
573
573
|
* <p>Input information used for an action execution.</p>
|
|
@@ -578,41 +578,41 @@ export interface ActionExecutionInput {
|
|
|
578
578
|
* <p>Represents information about an action type.</p>
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
actionTypeId?: ActionTypeId;
|
|
581
|
+
actionTypeId?: ActionTypeId | undefined;
|
|
582
582
|
/**
|
|
583
583
|
* <p>Configuration data for an action execution.</p>
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
configuration?: Record<string, string
|
|
586
|
+
configuration?: Record<string, string> | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* <p>Configuration data for an action execution with all variable references replaced with
|
|
589
589
|
* their real values for the execution.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
resolvedConfiguration?: Record<string, string
|
|
592
|
+
resolvedConfiguration?: Record<string, string> | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>The ARN of the IAM service role that performs the declared action. This is assumed
|
|
595
595
|
* through the roleArn for the pipeline. </p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
roleArn?: string;
|
|
598
|
+
roleArn?: string | undefined;
|
|
599
599
|
/**
|
|
600
600
|
* <p>The Amazon Web Services Region for the action, such as us-east-1.</p>
|
|
601
601
|
* @public
|
|
602
602
|
*/
|
|
603
|
-
region?: string;
|
|
603
|
+
region?: string | undefined;
|
|
604
604
|
/**
|
|
605
605
|
* <p>Details of input artifacts of the action that correspond to the action
|
|
606
606
|
* execution.</p>
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
inputArtifacts?: ArtifactDetail[];
|
|
609
|
+
inputArtifacts?: ArtifactDetail[] | undefined;
|
|
610
610
|
/**
|
|
611
611
|
* <p>The variable namespace associated with the action. All variables produced as output by
|
|
612
612
|
* this action fall under this namespace.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
namespace?: string;
|
|
615
|
+
namespace?: string | undefined;
|
|
616
616
|
}
|
|
617
617
|
/**
|
|
618
618
|
* <p>Execution result information, such as the external execution ID.</p>
|
|
@@ -623,23 +623,23 @@ export interface ActionExecutionResult {
|
|
|
623
623
|
* <p>The action provider's external ID for the action execution.</p>
|
|
624
624
|
* @public
|
|
625
625
|
*/
|
|
626
|
-
externalExecutionId?: string;
|
|
626
|
+
externalExecutionId?: string | undefined;
|
|
627
627
|
/**
|
|
628
628
|
* <p>The action provider's summary for the action execution.</p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
externalExecutionSummary?: string;
|
|
631
|
+
externalExecutionSummary?: string | undefined;
|
|
632
632
|
/**
|
|
633
633
|
* <p>The deepest external link to the external resource (for example, a repository URL or
|
|
634
634
|
* deployment endpoint) that is used when running the action.</p>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
externalExecutionUrl?: string;
|
|
637
|
+
externalExecutionUrl?: string | undefined;
|
|
638
638
|
/**
|
|
639
639
|
* <p>Represents information about an error in CodePipeline.</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
errorDetails?: ErrorDetails;
|
|
642
|
+
errorDetails?: ErrorDetails | undefined;
|
|
643
643
|
}
|
|
644
644
|
/**
|
|
645
645
|
* <p>Output details listed for an action execution, such as the action execution
|
|
@@ -652,19 +652,19 @@ export interface ActionExecutionOutput {
|
|
|
652
652
|
* execution.</p>
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
outputArtifacts?: ArtifactDetail[];
|
|
655
|
+
outputArtifacts?: ArtifactDetail[] | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* <p>Execution result information listed in the output details for an action
|
|
658
658
|
* execution.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
executionResult?: ActionExecutionResult;
|
|
661
|
+
executionResult?: ActionExecutionResult | undefined;
|
|
662
662
|
/**
|
|
663
663
|
* <p>The outputVariables field shows the key-value pairs that were output as part of that
|
|
664
664
|
* execution.</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
outputVariables?: Record<string, string
|
|
667
|
+
outputVariables?: Record<string, string> | undefined;
|
|
668
668
|
}
|
|
669
669
|
/**
|
|
670
670
|
* <p>Returns information about an execution of an action, including the action execution
|
|
@@ -676,59 +676,59 @@ export interface ActionExecutionDetail {
|
|
|
676
676
|
* <p>The pipeline execution ID for the action execution.</p>
|
|
677
677
|
* @public
|
|
678
678
|
*/
|
|
679
|
-
pipelineExecutionId?: string;
|
|
679
|
+
pipelineExecutionId?: string | undefined;
|
|
680
680
|
/**
|
|
681
681
|
* <p>The action execution ID.</p>
|
|
682
682
|
* @public
|
|
683
683
|
*/
|
|
684
|
-
actionExecutionId?: string;
|
|
684
|
+
actionExecutionId?: string | undefined;
|
|
685
685
|
/**
|
|
686
686
|
* <p>The version of the pipeline where the action was run.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
pipelineVersion?: number;
|
|
689
|
+
pipelineVersion?: number | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>The name of the stage that contains the action.</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
stageName?: string;
|
|
694
|
+
stageName?: string | undefined;
|
|
695
695
|
/**
|
|
696
696
|
* <p>The name of the action.</p>
|
|
697
697
|
* @public
|
|
698
698
|
*/
|
|
699
|
-
actionName?: string;
|
|
699
|
+
actionName?: string | undefined;
|
|
700
700
|
/**
|
|
701
701
|
* <p>The start time of the action execution.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
startTime?: Date;
|
|
704
|
+
startTime?: Date | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* <p>The last update time of the action execution.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
lastUpdateTime?: Date;
|
|
709
|
+
lastUpdateTime?: Date | undefined;
|
|
710
710
|
/**
|
|
711
711
|
* <p>The ARN of the user who changed the pipeline execution details.</p>
|
|
712
712
|
* @public
|
|
713
713
|
*/
|
|
714
|
-
updatedBy?: string;
|
|
714
|
+
updatedBy?: string | undefined;
|
|
715
715
|
/**
|
|
716
716
|
* <p> The status of the action execution. Status categories are <code>InProgress</code>,
|
|
717
717
|
* <code>Succeeded</code>, and <code>Failed</code>.</p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
status?: ActionExecutionStatus;
|
|
720
|
+
status?: ActionExecutionStatus | undefined;
|
|
721
721
|
/**
|
|
722
722
|
* <p>Input details for the action execution, such as role ARN, Region, and input
|
|
723
723
|
* artifacts.</p>
|
|
724
724
|
* @public
|
|
725
725
|
*/
|
|
726
|
-
input?: ActionExecutionInput;
|
|
726
|
+
input?: ActionExecutionInput | undefined;
|
|
727
727
|
/**
|
|
728
728
|
* <p>Output details for the action execution, such as the action execution result.</p>
|
|
729
729
|
* @public
|
|
730
730
|
*/
|
|
731
|
-
output?: ActionExecutionOutput;
|
|
731
|
+
output?: ActionExecutionOutput | undefined;
|
|
732
732
|
}
|
|
733
733
|
/**
|
|
734
734
|
* @public
|
|
@@ -781,7 +781,7 @@ export interface ActionExecutionFilter {
|
|
|
781
781
|
* <p>The pipeline execution ID used to filter action execution history.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
pipelineExecutionId?: string;
|
|
784
|
+
pipelineExecutionId?: string | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* <p>The latest execution in the pipeline.</p>
|
|
787
787
|
* <note>
|
|
@@ -790,7 +790,7 @@ export interface ActionExecutionFilter {
|
|
|
790
790
|
* </note>
|
|
791
791
|
* @public
|
|
792
792
|
*/
|
|
793
|
-
latestInPipelineExecution?: LatestInPipelineExecutionFilter;
|
|
793
|
+
latestInPipelineExecution?: LatestInPipelineExecutionFilter | undefined;
|
|
794
794
|
}
|
|
795
795
|
/**
|
|
796
796
|
* <p>The specified action cannot be found.</p>
|
|
@@ -837,29 +837,29 @@ export interface ActionState {
|
|
|
837
837
|
* <p>The name of the action.</p>
|
|
838
838
|
* @public
|
|
839
839
|
*/
|
|
840
|
-
actionName?: string;
|
|
840
|
+
actionName?: string | undefined;
|
|
841
841
|
/**
|
|
842
842
|
* <p>Represents information about the version (or revision) of an action.</p>
|
|
843
843
|
* @public
|
|
844
844
|
*/
|
|
845
|
-
currentRevision?: ActionRevision;
|
|
845
|
+
currentRevision?: ActionRevision | undefined;
|
|
846
846
|
/**
|
|
847
847
|
* <p>Represents information about the run of an action.</p>
|
|
848
848
|
* @public
|
|
849
849
|
*/
|
|
850
|
-
latestExecution?: ActionExecution;
|
|
850
|
+
latestExecution?: ActionExecution | undefined;
|
|
851
851
|
/**
|
|
852
852
|
* <p>A URL link for more information about the state of the action, such as a deployment
|
|
853
853
|
* group details page.</p>
|
|
854
854
|
* @public
|
|
855
855
|
*/
|
|
856
|
-
entityUrl?: string;
|
|
856
|
+
entityUrl?: string | undefined;
|
|
857
857
|
/**
|
|
858
858
|
* <p>A URL link for more information about the revision, such as a commit details
|
|
859
859
|
* page.</p>
|
|
860
860
|
* @public
|
|
861
861
|
*/
|
|
862
|
-
revisionUrl?: string;
|
|
862
|
+
revisionUrl?: string | undefined;
|
|
863
863
|
}
|
|
864
864
|
/**
|
|
865
865
|
* <p>Returns information about the details of an artifact.</p>
|
|
@@ -887,7 +887,7 @@ export interface ActionTypeSettings {
|
|
|
887
887
|
* perform initial configuration of the action provided by that service.</p>
|
|
888
888
|
* @public
|
|
889
889
|
*/
|
|
890
|
-
thirdPartyConfigurationUrl?: string;
|
|
890
|
+
thirdPartyConfigurationUrl?: string | undefined;
|
|
891
891
|
/**
|
|
892
892
|
* <p>The URL returned to the CodePipeline console that provides a deep link to the
|
|
893
893
|
* resources of the external system, such as the configuration page for a CodeDeploy
|
|
@@ -895,7 +895,7 @@ export interface ActionTypeSettings {
|
|
|
895
895
|
* pipeline.</p>
|
|
896
896
|
* @public
|
|
897
897
|
*/
|
|
898
|
-
entityUrlTemplate?: string;
|
|
898
|
+
entityUrlTemplate?: string | undefined;
|
|
899
899
|
/**
|
|
900
900
|
* <p>The URL returned to the CodePipeline console that contains a link to the
|
|
901
901
|
* top-level landing page for the external system, such as the console page for CodeDeploy.
|
|
@@ -903,13 +903,13 @@ export interface ActionTypeSettings {
|
|
|
903
903
|
* provides a link to the execution entity of the external action.</p>
|
|
904
904
|
* @public
|
|
905
905
|
*/
|
|
906
|
-
executionUrlTemplate?: string;
|
|
906
|
+
executionUrlTemplate?: string | undefined;
|
|
907
907
|
/**
|
|
908
908
|
* <p>The URL returned to the CodePipeline console that contains a link to the page
|
|
909
909
|
* where customers can update or change the configuration of the external action.</p>
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
revisionUrlTemplate?: string;
|
|
912
|
+
revisionUrlTemplate?: string | undefined;
|
|
913
913
|
}
|
|
914
914
|
/**
|
|
915
915
|
* <p>Returns information about the details of an action type.</p>
|
|
@@ -925,12 +925,12 @@ export interface ActionType {
|
|
|
925
925
|
* <p>The settings for the action type.</p>
|
|
926
926
|
* @public
|
|
927
927
|
*/
|
|
928
|
-
settings?: ActionTypeSettings;
|
|
928
|
+
settings?: ActionTypeSettings | undefined;
|
|
929
929
|
/**
|
|
930
930
|
* <p>The configuration properties for the action type.</p>
|
|
931
931
|
* @public
|
|
932
932
|
*/
|
|
933
|
-
actionConfigurationProperties?: ActionConfigurationProperty[];
|
|
933
|
+
actionConfigurationProperties?: ActionConfigurationProperty[] | undefined;
|
|
934
934
|
/**
|
|
935
935
|
* <p>The details of the input artifact for the action, such as its commit ID.</p>
|
|
936
936
|
* @public
|
|
@@ -974,13 +974,13 @@ export interface JobWorkerExecutorConfiguration {
|
|
|
974
974
|
* the action execution.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
pollingAccounts?: string[];
|
|
977
|
+
pollingAccounts?: string[] | undefined;
|
|
978
978
|
/**
|
|
979
979
|
* <p>The service Principals in which the job worker is configured and might poll for jobs
|
|
980
980
|
* as part of the action execution.</p>
|
|
981
981
|
* @public
|
|
982
982
|
*/
|
|
983
|
-
pollingServicePrincipals?: string[];
|
|
983
|
+
pollingServicePrincipals?: string[] | undefined;
|
|
984
984
|
}
|
|
985
985
|
/**
|
|
986
986
|
* <p>Details about the configuration for the <code>Lambda</code> action engine, or
|
|
@@ -1005,12 +1005,12 @@ export interface ExecutorConfiguration {
|
|
|
1005
1005
|
* <p>Details about the <code>Lambda</code> executor of the action type.</p>
|
|
1006
1006
|
* @public
|
|
1007
1007
|
*/
|
|
1008
|
-
lambdaExecutorConfiguration?: LambdaExecutorConfiguration;
|
|
1008
|
+
lambdaExecutorConfiguration?: LambdaExecutorConfiguration | undefined;
|
|
1009
1009
|
/**
|
|
1010
1010
|
* <p>Details about the <code>JobWorker</code> executor of the action type.</p>
|
|
1011
1011
|
* @public
|
|
1012
1012
|
*/
|
|
1013
|
-
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration;
|
|
1013
|
+
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration | undefined;
|
|
1014
1014
|
}
|
|
1015
1015
|
/**
|
|
1016
1016
|
* @public
|
|
@@ -1055,13 +1055,13 @@ export interface ActionTypeExecutor {
|
|
|
1055
1055
|
* </note>
|
|
1056
1056
|
* @public
|
|
1057
1057
|
*/
|
|
1058
|
-
policyStatementsTemplate?: string;
|
|
1058
|
+
policyStatementsTemplate?: string | undefined;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* <p>The timeout in seconds for the job. An action execution can have multiple jobs. This
|
|
1061
1061
|
* is the timeout for a single job, not the entire action execution.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
jobTimeout?: number;
|
|
1064
|
+
jobTimeout?: number | undefined;
|
|
1065
1065
|
}
|
|
1066
1066
|
/**
|
|
1067
1067
|
* <p>Specifies the category, owner, provider, and version of the action type.</p>
|
|
@@ -1170,12 +1170,12 @@ export interface ActionTypeProperty {
|
|
|
1170
1170
|
* secret.</p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
queryable?: boolean;
|
|
1173
|
+
queryable?: boolean | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* <p>The description of the property that is displayed to users.</p>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
description?: string;
|
|
1178
|
+
description?: string | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
/**
|
|
1181
1181
|
* <p>Returns information about URLs for web pages that display to customers as links on the
|
|
@@ -1188,26 +1188,26 @@ export interface ActionTypeUrls {
|
|
|
1188
1188
|
* where customers can configure the external action.</p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
configurationUrl?: string;
|
|
1191
|
+
configurationUrl?: string | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p>The URL returned to the CodePipeline console that provides a deep link to the
|
|
1194
1194
|
* resources of the external system, such as a status page. This link is provided as part
|
|
1195
1195
|
* of the action display in the pipeline.</p>
|
|
1196
1196
|
* @public
|
|
1197
1197
|
*/
|
|
1198
|
-
entityUrlTemplate?: string;
|
|
1198
|
+
entityUrlTemplate?: string | undefined;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* <p>The link to an execution page for the action type in progress. For example, for a
|
|
1201
1201
|
* CodeDeploy action, this link is shown on the pipeline view page in the CodePipeline console, and it links to a CodeDeploy status page.</p>
|
|
1202
1202
|
* @public
|
|
1203
1203
|
*/
|
|
1204
|
-
executionUrlTemplate?: string;
|
|
1204
|
+
executionUrlTemplate?: string | undefined;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* <p>The URL returned to the CodePipeline console that contains a link to the page
|
|
1207
1207
|
* where customers can update or change the configuration of the external action.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
revisionUrlTemplate?: string;
|
|
1210
|
+
revisionUrlTemplate?: string | undefined;
|
|
1211
1211
|
}
|
|
1212
1212
|
/**
|
|
1213
1213
|
* <p>The parameters for the action type definition that are provided when the action type
|
|
@@ -1219,7 +1219,7 @@ export interface ActionTypeDeclaration {
|
|
|
1219
1219
|
* <p>The description for the action type to be updated.</p>
|
|
1220
1220
|
* @public
|
|
1221
1221
|
*/
|
|
1222
|
-
description?: string;
|
|
1222
|
+
description?: string | undefined;
|
|
1223
1223
|
/**
|
|
1224
1224
|
* <p>Information about the executor for an action type that was created with any supported
|
|
1225
1225
|
* integration model.</p>
|
|
@@ -1249,17 +1249,17 @@ export interface ActionTypeDeclaration {
|
|
|
1249
1249
|
* <p>Details identifying the accounts with permissions to use the action type.</p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
permissions?: ActionTypePermissions;
|
|
1252
|
+
permissions?: ActionTypePermissions | undefined;
|
|
1253
1253
|
/**
|
|
1254
1254
|
* <p>The properties of the action type to be updated.</p>
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
properties?: ActionTypeProperty[];
|
|
1257
|
+
properties?: ActionTypeProperty[] | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* <p>The links associated with the action type to be updated.</p>
|
|
1260
1260
|
* @public
|
|
1261
1261
|
*/
|
|
1262
|
-
urls?: ActionTypeUrls;
|
|
1262
|
+
urls?: ActionTypeUrls | undefined;
|
|
1263
1263
|
}
|
|
1264
1264
|
/**
|
|
1265
1265
|
* <p>The specified action type cannot be found.</p>
|
|
@@ -1351,12 +1351,12 @@ export interface ArtifactLocation {
|
|
|
1351
1351
|
* <p>The type of artifact in the location.</p>
|
|
1352
1352
|
* @public
|
|
1353
1353
|
*/
|
|
1354
|
-
type?: ArtifactLocationType;
|
|
1354
|
+
type?: ArtifactLocationType | undefined;
|
|
1355
1355
|
/**
|
|
1356
1356
|
* <p>The S3 bucket that contains the artifact.</p>
|
|
1357
1357
|
* @public
|
|
1358
1358
|
*/
|
|
1359
|
-
s3Location?: S3ArtifactLocation;
|
|
1359
|
+
s3Location?: S3ArtifactLocation | undefined;
|
|
1360
1360
|
}
|
|
1361
1361
|
/**
|
|
1362
1362
|
* <p>Artifacts are the files that are worked on by actions in the pipeline. See the
|
|
@@ -1370,18 +1370,18 @@ export interface Artifact {
|
|
|
1370
1370
|
* <p>The artifact's name.</p>
|
|
1371
1371
|
* @public
|
|
1372
1372
|
*/
|
|
1373
|
-
name?: string;
|
|
1373
|
+
name?: string | undefined;
|
|
1374
1374
|
/**
|
|
1375
1375
|
* <p>The artifact's revision ID. Depending on the type of object, this could be a commit
|
|
1376
1376
|
* ID (GitHub) or a revision ID (Amazon S3).</p>
|
|
1377
1377
|
* @public
|
|
1378
1378
|
*/
|
|
1379
|
-
revision?: string;
|
|
1379
|
+
revision?: string | undefined;
|
|
1380
1380
|
/**
|
|
1381
1381
|
* <p>The location of an artifact.</p>
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
location?: ArtifactLocation;
|
|
1384
|
+
location?: ArtifactLocation | undefined;
|
|
1385
1385
|
}
|
|
1386
1386
|
/**
|
|
1387
1387
|
* <p>Represents revision details of an artifact. </p>
|
|
@@ -1393,18 +1393,18 @@ export interface ArtifactRevision {
|
|
|
1393
1393
|
* defined by the user when an action is created.</p>
|
|
1394
1394
|
* @public
|
|
1395
1395
|
*/
|
|
1396
|
-
name?: string;
|
|
1396
|
+
name?: string | undefined;
|
|
1397
1397
|
/**
|
|
1398
1398
|
* <p>The revision ID of the artifact.</p>
|
|
1399
1399
|
* @public
|
|
1400
1400
|
*/
|
|
1401
|
-
revisionId?: string;
|
|
1401
|
+
revisionId?: string | undefined;
|
|
1402
1402
|
/**
|
|
1403
1403
|
* <p>An additional identifier for a revision, such as a commit date or, for artifacts
|
|
1404
1404
|
* stored in Amazon S3 buckets, the ETag value.</p>
|
|
1405
1405
|
* @public
|
|
1406
1406
|
*/
|
|
1407
|
-
revisionChangeIdentifier?: string;
|
|
1407
|
+
revisionChangeIdentifier?: string | undefined;
|
|
1408
1408
|
/**
|
|
1409
1409
|
* <p>Summary information about the most recent revision of the artifact. For GitHub and
|
|
1410
1410
|
* CodeCommit repositories, the commit message. For Amazon S3 buckets or actions, the
|
|
@@ -1412,19 +1412,19 @@ export interface ArtifactRevision {
|
|
|
1412
1412
|
* specified in the object metadata.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
revisionSummary?: string;
|
|
1415
|
+
revisionSummary?: string | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* <p>The date and time when the most recent revision of the artifact was created, in
|
|
1418
1418
|
* timestamp format.</p>
|
|
1419
1419
|
* @public
|
|
1420
1420
|
*/
|
|
1421
|
-
created?: Date;
|
|
1421
|
+
created?: Date | undefined;
|
|
1422
1422
|
/**
|
|
1423
1423
|
* <p>The commit ID for the artifact revision. For artifacts stored in GitHub or
|
|
1424
1424
|
* CodeCommit repositories, the commit ID is linked to a commit details page.</p>
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
revisionUrl?: string;
|
|
1427
|
+
revisionUrl?: string | undefined;
|
|
1428
1428
|
}
|
|
1429
1429
|
/**
|
|
1430
1430
|
* @public
|
|
@@ -1506,7 +1506,7 @@ export interface ArtifactStore {
|
|
|
1506
1506
|
* for Amazon S3 is used.</p>
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
encryptionKey?: EncryptionKey;
|
|
1509
|
+
encryptionKey?: EncryptionKey | undefined;
|
|
1510
1510
|
}
|
|
1511
1511
|
/**
|
|
1512
1512
|
* <p>Represents an Amazon Web Services session credentials object. These credentials are
|
|
@@ -1585,7 +1585,7 @@ export interface RuleTypeId {
|
|
|
1585
1585
|
* in the rule category is <code>AWS</code>. </p>
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
owner?: RuleOwner;
|
|
1588
|
+
owner?: RuleOwner | undefined;
|
|
1589
1589
|
/**
|
|
1590
1590
|
* <p>The rule provider, such as the <code>DeploymentWindow</code> rule.</p>
|
|
1591
1591
|
* @public
|
|
@@ -1595,7 +1595,7 @@ export interface RuleTypeId {
|
|
|
1595
1595
|
* <p>A string that describes the rule version.</p>
|
|
1596
1596
|
* @public
|
|
1597
1597
|
*/
|
|
1598
|
-
version?: string;
|
|
1598
|
+
version?: string | undefined;
|
|
1599
1599
|
}
|
|
1600
1600
|
/**
|
|
1601
1601
|
* <p>Represents information about the rule to be created for an associated condition. An
|
|
@@ -1620,28 +1620,28 @@ export interface RuleDeclaration {
|
|
|
1620
1620
|
* <p>The action configuration fields for the rule.</p>
|
|
1621
1621
|
* @public
|
|
1622
1622
|
*/
|
|
1623
|
-
configuration?: Record<string, string
|
|
1623
|
+
configuration?: Record<string, string> | undefined;
|
|
1624
1624
|
/**
|
|
1625
1625
|
* <p>The input artifacts fields for the rule, such as specifying an input file for the
|
|
1626
1626
|
* rule.</p>
|
|
1627
1627
|
* @public
|
|
1628
1628
|
*/
|
|
1629
|
-
inputArtifacts?: InputArtifact[];
|
|
1629
|
+
inputArtifacts?: InputArtifact[] | undefined;
|
|
1630
1630
|
/**
|
|
1631
1631
|
* <p>The pipeline role ARN associated with the rule.</p>
|
|
1632
1632
|
* @public
|
|
1633
1633
|
*/
|
|
1634
|
-
roleArn?: string;
|
|
1634
|
+
roleArn?: string | undefined;
|
|
1635
1635
|
/**
|
|
1636
1636
|
* <p>The Region for the condition associated with the rule.</p>
|
|
1637
1637
|
* @public
|
|
1638
1638
|
*/
|
|
1639
|
-
region?: string;
|
|
1639
|
+
region?: string | undefined;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>The action timeout for the rule.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
timeoutInMinutes?: number;
|
|
1644
|
+
timeoutInMinutes?: number | undefined;
|
|
1645
1645
|
}
|
|
1646
1646
|
/**
|
|
1647
1647
|
* <p>The condition for the stage. A condition is made up of the rules and the result for
|
|
@@ -1654,12 +1654,12 @@ export interface Condition {
|
|
|
1654
1654
|
* execution for a failure condition.</p>
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
result?: Result;
|
|
1657
|
+
result?: Result | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* <p>The rules that make up the condition.</p>
|
|
1660
1660
|
* @public
|
|
1661
1661
|
*/
|
|
1662
|
-
rules?: RuleDeclaration[];
|
|
1662
|
+
rules?: RuleDeclaration[] | undefined;
|
|
1663
1663
|
}
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>The conditions for making checks for entry to a stage. </p>
|
|
@@ -1753,7 +1753,7 @@ export interface CreateCustomActionTypeInput {
|
|
|
1753
1753
|
* <p>URLs that provide users information about this custom action.</p>
|
|
1754
1754
|
* @public
|
|
1755
1755
|
*/
|
|
1756
|
-
settings?: ActionTypeSettings;
|
|
1756
|
+
settings?: ActionTypeSettings | undefined;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* <p>The configuration properties for the custom action.</p>
|
|
1759
1759
|
* <note>
|
|
@@ -1765,7 +1765,7 @@ export interface CreateCustomActionTypeInput {
|
|
|
1765
1765
|
* </note>
|
|
1766
1766
|
* @public
|
|
1767
1767
|
*/
|
|
1768
|
-
configurationProperties?: ActionConfigurationProperty[];
|
|
1768
|
+
configurationProperties?: ActionConfigurationProperty[] | undefined;
|
|
1769
1769
|
/**
|
|
1770
1770
|
* <p>The details of the input artifact for the action, such as its commit ID.</p>
|
|
1771
1771
|
* @public
|
|
@@ -1780,7 +1780,7 @@ export interface CreateCustomActionTypeInput {
|
|
|
1780
1780
|
* <p>The tags for the custom action.</p>
|
|
1781
1781
|
* @public
|
|
1782
1782
|
*/
|
|
1783
|
-
tags?: Tag[];
|
|
1783
|
+
tags?: Tag[] | undefined;
|
|
1784
1784
|
}
|
|
1785
1785
|
/**
|
|
1786
1786
|
* <p>Represents the output of a <code>CreateCustomActionType</code> operation.</p>
|
|
@@ -1796,7 +1796,7 @@ export interface CreateCustomActionTypeOutput {
|
|
|
1796
1796
|
* <p>Specifies the tags applied to the custom action.</p>
|
|
1797
1797
|
* @public
|
|
1798
1798
|
*/
|
|
1799
|
-
tags?: Tag[];
|
|
1799
|
+
tags?: Tag[] | undefined;
|
|
1800
1800
|
}
|
|
1801
1801
|
/**
|
|
1802
1802
|
* <p>The specified resource tags are invalid.</p>
|
|
@@ -1884,7 +1884,7 @@ export interface RetryConfiguration {
|
|
|
1884
1884
|
* stage.</p>
|
|
1885
1885
|
* @public
|
|
1886
1886
|
*/
|
|
1887
|
-
retryMode?: StageRetryMode;
|
|
1887
|
+
retryMode?: StageRetryMode | undefined;
|
|
1888
1888
|
}
|
|
1889
1889
|
/**
|
|
1890
1890
|
* <p>The configuration that specifies the result, such as rollback, to occur upon stage
|
|
@@ -1897,18 +1897,18 @@ export interface FailureConditions {
|
|
|
1897
1897
|
* stage.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
result?: Result;
|
|
1900
|
+
result?: Result | undefined;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* <p>The retry configuration specifies automatic retry for a failed stage, along with the
|
|
1903
1903
|
* configured retry mode.</p>
|
|
1904
1904
|
* @public
|
|
1905
1905
|
*/
|
|
1906
|
-
retryConfiguration?: RetryConfiguration;
|
|
1906
|
+
retryConfiguration?: RetryConfiguration | undefined;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* <p>The conditions that are configured as failure conditions.</p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
conditions?: Condition[];
|
|
1911
|
+
conditions?: Condition[] | undefined;
|
|
1912
1912
|
}
|
|
1913
1913
|
/**
|
|
1914
1914
|
* <p>The conditions for making checks that, if met, succeed a stage.</p>
|
|
@@ -1935,7 +1935,7 @@ export interface StageDeclaration {
|
|
|
1935
1935
|
* <p>Reserved for future use.</p>
|
|
1936
1936
|
* @public
|
|
1937
1937
|
*/
|
|
1938
|
-
blockers?: BlockerDeclaration[];
|
|
1938
|
+
blockers?: BlockerDeclaration[] | undefined;
|
|
1939
1939
|
/**
|
|
1940
1940
|
* <p>The actions included in a stage.</p>
|
|
1941
1941
|
* @public
|
|
@@ -1947,19 +1947,19 @@ export interface StageDeclaration {
|
|
|
1947
1947
|
* last successful pipeline execution in the stage.</p>
|
|
1948
1948
|
* @public
|
|
1949
1949
|
*/
|
|
1950
|
-
onFailure?: FailureConditions;
|
|
1950
|
+
onFailure?: FailureConditions | undefined;
|
|
1951
1951
|
/**
|
|
1952
1952
|
* <p>The method to use when a stage has succeeded. For example, configuring this field for
|
|
1953
1953
|
* conditions will allow the stage to succeed when the conditions are met.</p>
|
|
1954
1954
|
* @public
|
|
1955
1955
|
*/
|
|
1956
|
-
onSuccess?: SuccessConditions;
|
|
1956
|
+
onSuccess?: SuccessConditions | undefined;
|
|
1957
1957
|
/**
|
|
1958
1958
|
* <p>The method to use when a stage allows entry. For example, configuring this field for
|
|
1959
1959
|
* conditions will allow entry to the stage when the conditions are met.</p>
|
|
1960
1960
|
* @public
|
|
1961
1961
|
*/
|
|
1962
|
-
beforeEntry?: BeforeEntryConditions;
|
|
1962
|
+
beforeEntry?: BeforeEntryConditions | undefined;
|
|
1963
1963
|
}
|
|
1964
1964
|
/**
|
|
1965
1965
|
* <p>The Git repository branches specified as filter criteria to start the
|
|
@@ -1972,13 +1972,13 @@ export interface GitBranchFilterCriteria {
|
|
|
1972
1972
|
* included as criteria that starts the pipeline.</p>
|
|
1973
1973
|
* @public
|
|
1974
1974
|
*/
|
|
1975
|
-
includes?: string[];
|
|
1975
|
+
includes?: string[] | undefined;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* <p>The list of patterns of Git branches that, when a commit is pushed, are to be
|
|
1978
1978
|
* excluded from starting the pipeline.</p>
|
|
1979
1979
|
* @public
|
|
1980
1980
|
*/
|
|
1981
|
-
excludes?: string[];
|
|
1981
|
+
excludes?: string[] | undefined;
|
|
1982
1982
|
}
|
|
1983
1983
|
/**
|
|
1984
1984
|
* @public
|
|
@@ -2004,13 +2004,13 @@ export interface GitFilePathFilterCriteria {
|
|
|
2004
2004
|
* are to be included as criteria that starts the pipeline.</p>
|
|
2005
2005
|
* @public
|
|
2006
2006
|
*/
|
|
2007
|
-
includes?: string[];
|
|
2007
|
+
includes?: string[] | undefined;
|
|
2008
2008
|
/**
|
|
2009
2009
|
* <p>The list of patterns of Git repository file paths that, when a commit is pushed,
|
|
2010
2010
|
* are to be excluded from starting the pipeline.</p>
|
|
2011
2011
|
* @public
|
|
2012
2012
|
*/
|
|
2013
|
-
excludes?: string[];
|
|
2013
|
+
excludes?: string[] | undefined;
|
|
2014
2014
|
}
|
|
2015
2015
|
/**
|
|
2016
2016
|
* <p>The event criteria for the pull request trigger configuration, such as the lists of
|
|
@@ -2023,19 +2023,19 @@ export interface GitPullRequestFilter {
|
|
|
2023
2023
|
* closed) for the trigger configuration.</p>
|
|
2024
2024
|
* @public
|
|
2025
2025
|
*/
|
|
2026
|
-
events?: GitPullRequestEventType[];
|
|
2026
|
+
events?: GitPullRequestEventType[] | undefined;
|
|
2027
2027
|
/**
|
|
2028
2028
|
* <p>The field that specifies to filter on branches for the pull request trigger
|
|
2029
2029
|
* configuration.</p>
|
|
2030
2030
|
* @public
|
|
2031
2031
|
*/
|
|
2032
|
-
branches?: GitBranchFilterCriteria;
|
|
2032
|
+
branches?: GitBranchFilterCriteria | undefined;
|
|
2033
2033
|
/**
|
|
2034
2034
|
* <p>The field that specifies to filter on file paths for the pull request trigger
|
|
2035
2035
|
* configuration.</p>
|
|
2036
2036
|
* @public
|
|
2037
2037
|
*/
|
|
2038
|
-
filePaths?: GitFilePathFilterCriteria;
|
|
2038
|
+
filePaths?: GitFilePathFilterCriteria | undefined;
|
|
2039
2039
|
}
|
|
2040
2040
|
/**
|
|
2041
2041
|
* <p>The Git tags specified as filter criteria for whether a Git tag repository event
|
|
@@ -2048,13 +2048,13 @@ export interface GitTagFilterCriteria {
|
|
|
2048
2048
|
* that starts the pipeline.</p>
|
|
2049
2049
|
* @public
|
|
2050
2050
|
*/
|
|
2051
|
-
includes?: string[];
|
|
2051
|
+
includes?: string[] | undefined;
|
|
2052
2052
|
/**
|
|
2053
2053
|
* <p>The list of patterns of Git tags that, when pushed, are to be excluded from
|
|
2054
2054
|
* starting the pipeline.</p>
|
|
2055
2055
|
* @public
|
|
2056
2056
|
*/
|
|
2057
|
-
excludes?: string[];
|
|
2057
|
+
excludes?: string[] | undefined;
|
|
2058
2058
|
}
|
|
2059
2059
|
/**
|
|
2060
2060
|
* <p>The event criteria that specify when a specified repository event will start the
|
|
@@ -2068,19 +2068,19 @@ export interface GitPushFilter {
|
|
|
2068
2068
|
* configuration.</p>
|
|
2069
2069
|
* @public
|
|
2070
2070
|
*/
|
|
2071
|
-
tags?: GitTagFilterCriteria;
|
|
2071
|
+
tags?: GitTagFilterCriteria | undefined;
|
|
2072
2072
|
/**
|
|
2073
2073
|
* <p>The field that specifies to filter on branches for the push trigger
|
|
2074
2074
|
* configuration.</p>
|
|
2075
2075
|
* @public
|
|
2076
2076
|
*/
|
|
2077
|
-
branches?: GitBranchFilterCriteria;
|
|
2077
|
+
branches?: GitBranchFilterCriteria | undefined;
|
|
2078
2078
|
/**
|
|
2079
2079
|
* <p>The field that specifies to filter on file paths for the push trigger
|
|
2080
2080
|
* configuration.</p>
|
|
2081
2081
|
* @public
|
|
2082
2082
|
*/
|
|
2083
|
-
filePaths?: GitFilePathFilterCriteria;
|
|
2083
|
+
filePaths?: GitFilePathFilterCriteria | undefined;
|
|
2084
2084
|
}
|
|
2085
2085
|
/**
|
|
2086
2086
|
* <p>A type of trigger configuration for Git-based source actions.</p>
|
|
@@ -2107,13 +2107,13 @@ export interface GitConfiguration {
|
|
|
2107
2107
|
* Git tags, is specified with details.</p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
push?: GitPushFilter[];
|
|
2110
|
+
push?: GitPushFilter[] | undefined;
|
|
2111
2111
|
/**
|
|
2112
2112
|
* <p>The field where the repository event that will start the pipeline is specified as
|
|
2113
2113
|
* pull requests.</p>
|
|
2114
2114
|
* @public
|
|
2115
2115
|
*/
|
|
2116
|
-
pullRequest?: GitPullRequestFilter[];
|
|
2116
|
+
pullRequest?: GitPullRequestFilter[] | undefined;
|
|
2117
2117
|
}
|
|
2118
2118
|
/**
|
|
2119
2119
|
* @public
|
|
@@ -2167,13 +2167,13 @@ export interface PipelineVariableDeclaration {
|
|
|
2167
2167
|
* <p>The value of a pipeline-level variable.</p>
|
|
2168
2168
|
* @public
|
|
2169
2169
|
*/
|
|
2170
|
-
defaultValue?: string;
|
|
2170
|
+
defaultValue?: string | undefined;
|
|
2171
2171
|
/**
|
|
2172
2172
|
* <p>The description of a pipeline-level variable. It's used to add additional context
|
|
2173
2173
|
* about the variable, and not being used at time when pipeline executes.</p>
|
|
2174
2174
|
* @public
|
|
2175
2175
|
*/
|
|
2176
|
-
description?: string;
|
|
2176
|
+
description?: string | undefined;
|
|
2177
2177
|
}
|
|
2178
2178
|
/**
|
|
2179
2179
|
* <p>Represents the structure of actions and stages to be performed in the
|
|
@@ -2204,7 +2204,7 @@ export interface PipelineDeclaration {
|
|
|
2204
2204
|
* </note>
|
|
2205
2205
|
* @public
|
|
2206
2206
|
*/
|
|
2207
|
-
artifactStore?: ArtifactStore;
|
|
2207
|
+
artifactStore?: ArtifactStore | undefined;
|
|
2208
2208
|
/**
|
|
2209
2209
|
* <p>A mapping of <code>artifactStore</code> objects and their corresponding Amazon Web Services Regions. There must be an artifact store for the pipeline Region and for
|
|
2210
2210
|
* each cross-region action in the pipeline.</p>
|
|
@@ -2216,7 +2216,7 @@ export interface PipelineDeclaration {
|
|
|
2216
2216
|
* </note>
|
|
2217
2217
|
* @public
|
|
2218
2218
|
*/
|
|
2219
|
-
artifactStores?: Record<string, ArtifactStore
|
|
2219
|
+
artifactStores?: Record<string, ArtifactStore> | undefined;
|
|
2220
2220
|
/**
|
|
2221
2221
|
* <p>The stage in which to perform the action.</p>
|
|
2222
2222
|
* @public
|
|
@@ -2227,13 +2227,13 @@ export interface PipelineDeclaration {
|
|
|
2227
2227
|
* 1. This number is incremented when a pipeline is updated.</p>
|
|
2228
2228
|
* @public
|
|
2229
2229
|
*/
|
|
2230
|
-
version?: number;
|
|
2230
|
+
version?: number | undefined;
|
|
2231
2231
|
/**
|
|
2232
2232
|
* <p>The method that the pipeline will use to handle multiple executions. The default
|
|
2233
2233
|
* mode is SUPERSEDED.</p>
|
|
2234
2234
|
* @public
|
|
2235
2235
|
*/
|
|
2236
|
-
executionMode?: ExecutionMode;
|
|
2236
|
+
executionMode?: ExecutionMode | undefined;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* <p>CodePipeline provides the following pipeline types, which differ in
|
|
2239
2239
|
* characteristics and price, so that you can tailor your pipeline features and cost to the
|
|
@@ -2258,14 +2258,14 @@ export interface PipelineDeclaration {
|
|
|
2258
2258
|
* pipeline is right for me?</a>.</p>
|
|
2259
2259
|
* @public
|
|
2260
2260
|
*/
|
|
2261
|
-
pipelineType?: PipelineType;
|
|
2261
|
+
pipelineType?: PipelineType | undefined;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* <p>A list that defines the pipeline variables for a pipeline resource. Variable names can
|
|
2264
2264
|
* have alphanumeric and underscore characters, and the values must match
|
|
2265
2265
|
* <code>[A-Za-z0-9@\-_]+</code>.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
variables?: PipelineVariableDeclaration[];
|
|
2268
|
+
variables?: PipelineVariableDeclaration[] | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>The trigger configuration specifying a type of event, such as Git tags, that starts
|
|
2271
2271
|
* the pipeline.</p>
|
|
@@ -2275,7 +2275,7 @@ export interface PipelineDeclaration {
|
|
|
2275
2275
|
* </note>
|
|
2276
2276
|
* @public
|
|
2277
2277
|
*/
|
|
2278
|
-
triggers?: PipelineTriggerDeclaration[];
|
|
2278
|
+
triggers?: PipelineTriggerDeclaration[] | undefined;
|
|
2279
2279
|
}
|
|
2280
2280
|
/**
|
|
2281
2281
|
* <p>Represents the input of a <code>CreatePipeline</code> action.</p>
|
|
@@ -2292,7 +2292,7 @@ export interface CreatePipelineInput {
|
|
|
2292
2292
|
* <p>The tags for the pipeline.</p>
|
|
2293
2293
|
* @public
|
|
2294
2294
|
*/
|
|
2295
|
-
tags?: Tag[];
|
|
2295
|
+
tags?: Tag[] | undefined;
|
|
2296
2296
|
}
|
|
2297
2297
|
/**
|
|
2298
2298
|
* <p>Represents the output of a <code>CreatePipeline</code> action.</p>
|
|
@@ -2304,12 +2304,12 @@ export interface CreatePipelineOutput {
|
|
|
2304
2304
|
* </p>
|
|
2305
2305
|
* @public
|
|
2306
2306
|
*/
|
|
2307
|
-
pipeline?: PipelineDeclaration;
|
|
2307
|
+
pipeline?: PipelineDeclaration | undefined;
|
|
2308
2308
|
/**
|
|
2309
2309
|
* <p>Specifies the tags applied to the pipeline.</p>
|
|
2310
2310
|
* @public
|
|
2311
2311
|
*/
|
|
2312
|
-
tags?: Tag[];
|
|
2312
|
+
tags?: Tag[] | undefined;
|
|
2313
2313
|
}
|
|
2314
2314
|
/**
|
|
2315
2315
|
* <p>The action declaration was specified in an invalid format.</p>
|
|
@@ -2429,7 +2429,7 @@ export interface DeregisterWebhookWithThirdPartyInput {
|
|
|
2429
2429
|
* <p>The name of the webhook you want to deregister.</p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
webhookName?: string;
|
|
2432
|
+
webhookName?: string | undefined;
|
|
2433
2433
|
}
|
|
2434
2434
|
/**
|
|
2435
2435
|
* @public
|
|
@@ -2612,7 +2612,7 @@ export interface GetActionTypeOutput {
|
|
|
2612
2612
|
* ID.</p>
|
|
2613
2613
|
* @public
|
|
2614
2614
|
*/
|
|
2615
|
-
actionType?: ActionTypeDeclaration;
|
|
2615
|
+
actionType?: ActionTypeDeclaration | undefined;
|
|
2616
2616
|
}
|
|
2617
2617
|
/**
|
|
2618
2618
|
* <p>Represents the input of a <code>GetJobDetails</code> action.</p>
|
|
@@ -2634,7 +2634,7 @@ export interface StageContext {
|
|
|
2634
2634
|
* <p>The name of the stage.</p>
|
|
2635
2635
|
* @public
|
|
2636
2636
|
*/
|
|
2637
|
-
name?: string;
|
|
2637
|
+
name?: string | undefined;
|
|
2638
2638
|
}
|
|
2639
2639
|
/**
|
|
2640
2640
|
* <p>Represents information about a pipeline to a job worker.</p>
|
|
@@ -2652,27 +2652,27 @@ export interface PipelineContext {
|
|
|
2652
2652
|
* unique across all pipeline names under an Amazon Web Services account.</p>
|
|
2653
2653
|
* @public
|
|
2654
2654
|
*/
|
|
2655
|
-
pipelineName?: string;
|
|
2655
|
+
pipelineName?: string | undefined;
|
|
2656
2656
|
/**
|
|
2657
2657
|
* <p>The stage of the pipeline.</p>
|
|
2658
2658
|
* @public
|
|
2659
2659
|
*/
|
|
2660
|
-
stage?: StageContext;
|
|
2660
|
+
stage?: StageContext | undefined;
|
|
2661
2661
|
/**
|
|
2662
2662
|
* <p>The context of an action to a job worker in the stage of a pipeline.</p>
|
|
2663
2663
|
* @public
|
|
2664
2664
|
*/
|
|
2665
|
-
action?: ActionContext;
|
|
2665
|
+
action?: ActionContext | undefined;
|
|
2666
2666
|
/**
|
|
2667
2667
|
* <p>The Amazon Resource Name (ARN) of the pipeline.</p>
|
|
2668
2668
|
* @public
|
|
2669
2669
|
*/
|
|
2670
|
-
pipelineArn?: string;
|
|
2670
|
+
pipelineArn?: string | undefined;
|
|
2671
2671
|
/**
|
|
2672
2672
|
* <p>The execution ID of the pipeline.</p>
|
|
2673
2673
|
* @public
|
|
2674
2674
|
*/
|
|
2675
|
-
pipelineExecutionId?: string;
|
|
2675
|
+
pipelineExecutionId?: string | undefined;
|
|
2676
2676
|
}
|
|
2677
2677
|
/**
|
|
2678
2678
|
* <p>Represents other information about a job required for a job worker to complete the
|
|
@@ -2684,12 +2684,12 @@ export interface JobData {
|
|
|
2684
2684
|
* <p>Represents information about an action type.</p>
|
|
2685
2685
|
* @public
|
|
2686
2686
|
*/
|
|
2687
|
-
actionTypeId?: ActionTypeId;
|
|
2687
|
+
actionTypeId?: ActionTypeId | undefined;
|
|
2688
2688
|
/**
|
|
2689
2689
|
* <p>Represents information about an action configuration.</p>
|
|
2690
2690
|
* @public
|
|
2691
2691
|
*/
|
|
2692
|
-
actionConfiguration?: ActionConfiguration;
|
|
2692
|
+
actionConfiguration?: ActionConfiguration | undefined;
|
|
2693
2693
|
/**
|
|
2694
2694
|
* <p>Represents information about a pipeline to a job worker.</p>
|
|
2695
2695
|
* <note>
|
|
@@ -2698,17 +2698,17 @@ export interface JobData {
|
|
|
2698
2698
|
* </note>
|
|
2699
2699
|
* @public
|
|
2700
2700
|
*/
|
|
2701
|
-
pipelineContext?: PipelineContext;
|
|
2701
|
+
pipelineContext?: PipelineContext | undefined;
|
|
2702
2702
|
/**
|
|
2703
2703
|
* <p>The artifact supplied to the job.</p>
|
|
2704
2704
|
* @public
|
|
2705
2705
|
*/
|
|
2706
|
-
inputArtifacts?: Artifact[];
|
|
2706
|
+
inputArtifacts?: Artifact[] | undefined;
|
|
2707
2707
|
/**
|
|
2708
2708
|
* <p>The output of the job.</p>
|
|
2709
2709
|
* @public
|
|
2710
2710
|
*/
|
|
2711
|
-
outputArtifacts?: Artifact[];
|
|
2711
|
+
outputArtifacts?: Artifact[] | undefined;
|
|
2712
2712
|
/**
|
|
2713
2713
|
* <p>Represents an Amazon Web Services session credentials object. These credentials are
|
|
2714
2714
|
* temporary credentials that are issued by Amazon Web Services Secure Token Service (STS).
|
|
@@ -2716,19 +2716,19 @@ export interface JobData {
|
|
|
2716
2716
|
* artifacts for the pipeline in CodePipeline.</p>
|
|
2717
2717
|
* @public
|
|
2718
2718
|
*/
|
|
2719
|
-
artifactCredentials?: AWSSessionCredentials;
|
|
2719
|
+
artifactCredentials?: AWSSessionCredentials | undefined;
|
|
2720
2720
|
/**
|
|
2721
2721
|
* <p>A system-generated token, such as a deployment ID, required by a job to continue
|
|
2722
2722
|
* the job asynchronously.</p>
|
|
2723
2723
|
* @public
|
|
2724
2724
|
*/
|
|
2725
|
-
continuationToken?: string;
|
|
2725
|
+
continuationToken?: string | undefined;
|
|
2726
2726
|
/**
|
|
2727
2727
|
* <p>Represents information about the key used to encrypt data in the artifact store,
|
|
2728
2728
|
* such as an KMS key. </p>
|
|
2729
2729
|
* @public
|
|
2730
2730
|
*/
|
|
2731
|
-
encryptionKey?: EncryptionKey;
|
|
2731
|
+
encryptionKey?: EncryptionKey | undefined;
|
|
2732
2732
|
}
|
|
2733
2733
|
/**
|
|
2734
2734
|
* <p>Represents information about the details of a job.</p>
|
|
@@ -2739,18 +2739,18 @@ export interface JobDetails {
|
|
|
2739
2739
|
* <p>The unique system-generated ID of the job.</p>
|
|
2740
2740
|
* @public
|
|
2741
2741
|
*/
|
|
2742
|
-
id?: string;
|
|
2742
|
+
id?: string | undefined;
|
|
2743
2743
|
/**
|
|
2744
2744
|
* <p>Represents other information about a job required for a job worker to complete the
|
|
2745
2745
|
* job. </p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
data?: JobData;
|
|
2748
|
+
data?: JobData | undefined;
|
|
2749
2749
|
/**
|
|
2750
2750
|
* <p>The Amazon Web Services account ID associated with the job.</p>
|
|
2751
2751
|
* @public
|
|
2752
2752
|
*/
|
|
2753
|
-
accountId?: string;
|
|
2753
|
+
accountId?: string | undefined;
|
|
2754
2754
|
}
|
|
2755
2755
|
/**
|
|
2756
2756
|
* <p>Represents the output of a <code>GetJobDetails</code> action.</p>
|
|
@@ -2765,7 +2765,7 @@ export interface GetJobDetailsOutput {
|
|
|
2765
2765
|
* </note>
|
|
2766
2766
|
* @public
|
|
2767
2767
|
*/
|
|
2768
|
-
jobDetails?: JobDetails;
|
|
2768
|
+
jobDetails?: JobDetails | undefined;
|
|
2769
2769
|
}
|
|
2770
2770
|
/**
|
|
2771
2771
|
* <p>Represents the input of a <code>GetPipeline</code> action.</p>
|
|
@@ -2783,7 +2783,7 @@ export interface GetPipelineInput {
|
|
|
2783
2783
|
* the current version.</p>
|
|
2784
2784
|
* @public
|
|
2785
2785
|
*/
|
|
2786
|
-
version?: number;
|
|
2786
|
+
version?: number | undefined;
|
|
2787
2787
|
}
|
|
2788
2788
|
/**
|
|
2789
2789
|
* <p>Information about a pipeline.</p>
|
|
@@ -2794,17 +2794,17 @@ export interface PipelineMetadata {
|
|
|
2794
2794
|
* <p>The Amazon Resource Name (ARN) of the pipeline.</p>
|
|
2795
2795
|
* @public
|
|
2796
2796
|
*/
|
|
2797
|
-
pipelineArn?: string;
|
|
2797
|
+
pipelineArn?: string | undefined;
|
|
2798
2798
|
/**
|
|
2799
2799
|
* <p>The date and time the pipeline was created, in timestamp format.</p>
|
|
2800
2800
|
* @public
|
|
2801
2801
|
*/
|
|
2802
|
-
created?: Date;
|
|
2802
|
+
created?: Date | undefined;
|
|
2803
2803
|
/**
|
|
2804
2804
|
* <p>The date and time the pipeline was last updated, in timestamp format.</p>
|
|
2805
2805
|
* @public
|
|
2806
2806
|
*/
|
|
2807
|
-
updated?: Date;
|
|
2807
|
+
updated?: Date | undefined;
|
|
2808
2808
|
/**
|
|
2809
2809
|
* <p>The date and time that polling for source changes (periodic checks) was stopped for
|
|
2810
2810
|
* the pipeline, in timestamp format. You can migrate (update) a polling pipeline to use
|
|
@@ -2815,7 +2815,7 @@ export interface PipelineMetadata {
|
|
|
2815
2815
|
* User Guide.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
pollingDisabledAt?: Date;
|
|
2818
|
+
pollingDisabledAt?: Date | undefined;
|
|
2819
2819
|
}
|
|
2820
2820
|
/**
|
|
2821
2821
|
* <p>Represents the output of a <code>GetPipeline</code> action.</p>
|
|
@@ -2827,13 +2827,13 @@ export interface GetPipelineOutput {
|
|
|
2827
2827
|
* </p>
|
|
2828
2828
|
* @public
|
|
2829
2829
|
*/
|
|
2830
|
-
pipeline?: PipelineDeclaration;
|
|
2830
|
+
pipeline?: PipelineDeclaration | undefined;
|
|
2831
2831
|
/**
|
|
2832
2832
|
* <p>Represents the pipeline metadata information returned as part of the output of a
|
|
2833
2833
|
* <code>GetPipeline</code> action.</p>
|
|
2834
2834
|
* @public
|
|
2835
2835
|
*/
|
|
2836
|
-
metadata?: PipelineMetadata;
|
|
2836
|
+
metadata?: PipelineMetadata | undefined;
|
|
2837
2837
|
}
|
|
2838
2838
|
/**
|
|
2839
2839
|
* <p>The pipeline version was specified in an invalid format or cannot be
|
|
@@ -2886,7 +2886,7 @@ export interface PipelineRollbackMetadata {
|
|
|
2886
2886
|
* <p>The pipeline execution ID to which the stage will be rolled back.</p>
|
|
2887
2887
|
* @public
|
|
2888
2888
|
*/
|
|
2889
|
-
rollbackTargetPipelineExecutionId?: string;
|
|
2889
|
+
rollbackTargetPipelineExecutionId?: string | undefined;
|
|
2890
2890
|
}
|
|
2891
2891
|
/**
|
|
2892
2892
|
* @public
|
|
@@ -2934,14 +2934,14 @@ export interface ExecutionTrigger {
|
|
|
2934
2934
|
* pipeline execution.</p>
|
|
2935
2935
|
* @public
|
|
2936
2936
|
*/
|
|
2937
|
-
triggerType?: TriggerType;
|
|
2937
|
+
triggerType?: TriggerType | undefined;
|
|
2938
2938
|
/**
|
|
2939
2939
|
* <p>Detail related to the event that started a pipeline execution, such as the webhook ARN
|
|
2940
2940
|
* of the webhook that triggered the pipeline execution or the user ARN for a
|
|
2941
2941
|
* user-initiated <code>start-pipeline-execution</code> CLI command.</p>
|
|
2942
2942
|
* @public
|
|
2943
2943
|
*/
|
|
2944
|
-
triggerDetail?: string;
|
|
2944
|
+
triggerDetail?: string | undefined;
|
|
2945
2945
|
}
|
|
2946
2946
|
/**
|
|
2947
2947
|
* <p>A pipeline-level variable used for a pipeline execution.</p>
|
|
@@ -2952,12 +2952,12 @@ export interface ResolvedPipelineVariable {
|
|
|
2952
2952
|
* <p>The name of a pipeline-level variable.</p>
|
|
2953
2953
|
* @public
|
|
2954
2954
|
*/
|
|
2955
|
-
name?: string;
|
|
2955
|
+
name?: string | undefined;
|
|
2956
2956
|
/**
|
|
2957
2957
|
* <p>The resolved value of a pipeline-level variable.</p>
|
|
2958
2958
|
* @public
|
|
2959
2959
|
*/
|
|
2960
|
-
resolvedValue?: string;
|
|
2960
|
+
resolvedValue?: string | undefined;
|
|
2961
2961
|
}
|
|
2962
2962
|
/**
|
|
2963
2963
|
* <p>Represents information about an execution of a pipeline.</p>
|
|
@@ -2968,17 +2968,17 @@ export interface PipelineExecution {
|
|
|
2968
2968
|
* <p>The name of the pipeline with the specified pipeline execution.</p>
|
|
2969
2969
|
* @public
|
|
2970
2970
|
*/
|
|
2971
|
-
pipelineName?: string;
|
|
2971
|
+
pipelineName?: string | undefined;
|
|
2972
2972
|
/**
|
|
2973
2973
|
* <p>The version number of the pipeline with the specified pipeline execution.</p>
|
|
2974
2974
|
* @public
|
|
2975
2975
|
*/
|
|
2976
|
-
pipelineVersion?: number;
|
|
2976
|
+
pipelineVersion?: number | undefined;
|
|
2977
2977
|
/**
|
|
2978
2978
|
* <p>The ID of the pipeline execution.</p>
|
|
2979
2979
|
* @public
|
|
2980
2980
|
*/
|
|
2981
|
-
pipelineExecutionId?: string;
|
|
2981
|
+
pipelineExecutionId?: string | undefined;
|
|
2982
2982
|
/**
|
|
2983
2983
|
* <p>The status of the pipeline execution.</p>
|
|
2984
2984
|
* <ul>
|
|
@@ -3012,44 +3012,44 @@ export interface PipelineExecution {
|
|
|
3012
3012
|
* </ul>
|
|
3013
3013
|
* @public
|
|
3014
3014
|
*/
|
|
3015
|
-
status?: PipelineExecutionStatus;
|
|
3015
|
+
status?: PipelineExecutionStatus | undefined;
|
|
3016
3016
|
/**
|
|
3017
3017
|
* <p>A summary that contains a description of the pipeline execution status.</p>
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
|
-
statusSummary?: string;
|
|
3020
|
+
statusSummary?: string | undefined;
|
|
3021
3021
|
/**
|
|
3022
3022
|
* <p>A list of <code>ArtifactRevision</code> objects included in a pipeline
|
|
3023
3023
|
* execution.</p>
|
|
3024
3024
|
* @public
|
|
3025
3025
|
*/
|
|
3026
|
-
artifactRevisions?: ArtifactRevision[];
|
|
3026
|
+
artifactRevisions?: ArtifactRevision[] | undefined;
|
|
3027
3027
|
/**
|
|
3028
3028
|
* <p>A list of pipeline variables used for the pipeline execution.</p>
|
|
3029
3029
|
* @public
|
|
3030
3030
|
*/
|
|
3031
|
-
variables?: ResolvedPipelineVariable[];
|
|
3031
|
+
variables?: ResolvedPipelineVariable[] | undefined;
|
|
3032
3032
|
/**
|
|
3033
3033
|
* <p>The interaction or event that started a pipeline execution.</p>
|
|
3034
3034
|
* @public
|
|
3035
3035
|
*/
|
|
3036
|
-
trigger?: ExecutionTrigger;
|
|
3036
|
+
trigger?: ExecutionTrigger | undefined;
|
|
3037
3037
|
/**
|
|
3038
3038
|
* <p>The method that the pipeline will use to handle multiple executions. The default
|
|
3039
3039
|
* mode is SUPERSEDED.</p>
|
|
3040
3040
|
* @public
|
|
3041
3041
|
*/
|
|
3042
|
-
executionMode?: ExecutionMode;
|
|
3042
|
+
executionMode?: ExecutionMode | undefined;
|
|
3043
3043
|
/**
|
|
3044
3044
|
* <p>The type of the pipeline execution.</p>
|
|
3045
3045
|
* @public
|
|
3046
3046
|
*/
|
|
3047
|
-
executionType?: ExecutionType;
|
|
3047
|
+
executionType?: ExecutionType | undefined;
|
|
3048
3048
|
/**
|
|
3049
3049
|
* <p>The metadata about the execution pertaining to stage rollback.</p>
|
|
3050
3050
|
* @public
|
|
3051
3051
|
*/
|
|
3052
|
-
rollbackMetadata?: PipelineRollbackMetadata;
|
|
3052
|
+
rollbackMetadata?: PipelineRollbackMetadata | undefined;
|
|
3053
3053
|
}
|
|
3054
3054
|
/**
|
|
3055
3055
|
* <p>Represents the output of a <code>GetPipelineExecution</code> action.</p>
|
|
@@ -3060,7 +3060,7 @@ export interface GetPipelineExecutionOutput {
|
|
|
3060
3060
|
* <p>Represents information about the execution of a pipeline.</p>
|
|
3061
3061
|
* @public
|
|
3062
3062
|
*/
|
|
3063
|
-
pipelineExecution?: PipelineExecution;
|
|
3063
|
+
pipelineExecution?: PipelineExecution | undefined;
|
|
3064
3064
|
}
|
|
3065
3065
|
/**
|
|
3066
3066
|
* <p>The pipeline execution was specified in an invalid format or cannot be found, or an
|
|
@@ -3112,17 +3112,17 @@ export interface ConditionExecution {
|
|
|
3112
3112
|
* <p>The status of the run for a condition.</p>
|
|
3113
3113
|
* @public
|
|
3114
3114
|
*/
|
|
3115
|
-
status?: ConditionExecutionStatus;
|
|
3115
|
+
status?: ConditionExecutionStatus | undefined;
|
|
3116
3116
|
/**
|
|
3117
3117
|
* <p>The summary of information about a run for a condition.</p>
|
|
3118
3118
|
* @public
|
|
3119
3119
|
*/
|
|
3120
|
-
summary?: string;
|
|
3120
|
+
summary?: string | undefined;
|
|
3121
3121
|
/**
|
|
3122
3122
|
* <p>The last status change of the condition.</p>
|
|
3123
3123
|
* @public
|
|
3124
3124
|
*/
|
|
3125
|
-
lastStatusChange?: Date;
|
|
3125
|
+
lastStatusChange?: Date | undefined;
|
|
3126
3126
|
}
|
|
3127
3127
|
/**
|
|
3128
3128
|
* <p>The change to a rule that creates a revision of the rule.</p>
|
|
@@ -3171,48 +3171,48 @@ export interface RuleExecution {
|
|
|
3171
3171
|
* <p>The execution ID for the run of the rule.</p>
|
|
3172
3172
|
* @public
|
|
3173
3173
|
*/
|
|
3174
|
-
ruleExecutionId?: string;
|
|
3174
|
+
ruleExecutionId?: string | undefined;
|
|
3175
3175
|
/**
|
|
3176
3176
|
* <p>The status of the run of the rule, such as FAILED.</p>
|
|
3177
3177
|
* @public
|
|
3178
3178
|
*/
|
|
3179
|
-
status?: RuleExecutionStatus;
|
|
3179
|
+
status?: RuleExecutionStatus | undefined;
|
|
3180
3180
|
/**
|
|
3181
3181
|
* <p>A summary of the run of the rule.</p>
|
|
3182
3182
|
* @public
|
|
3183
3183
|
*/
|
|
3184
|
-
summary?: string;
|
|
3184
|
+
summary?: string | undefined;
|
|
3185
3185
|
/**
|
|
3186
3186
|
* <p>The last status change of the rule.</p>
|
|
3187
3187
|
* @public
|
|
3188
3188
|
*/
|
|
3189
|
-
lastStatusChange?: Date;
|
|
3189
|
+
lastStatusChange?: Date | undefined;
|
|
3190
3190
|
/**
|
|
3191
3191
|
* <p>The system-generated token used to identify a unique request.</p>
|
|
3192
3192
|
* @public
|
|
3193
3193
|
*/
|
|
3194
|
-
token?: string;
|
|
3194
|
+
token?: string | undefined;
|
|
3195
3195
|
/**
|
|
3196
3196
|
* <p>The ARN of the user who last changed the rule.</p>
|
|
3197
3197
|
* @public
|
|
3198
3198
|
*/
|
|
3199
|
-
lastUpdatedBy?: string;
|
|
3199
|
+
lastUpdatedBy?: string | undefined;
|
|
3200
3200
|
/**
|
|
3201
3201
|
* <p>The external ID of the run of the rule.</p>
|
|
3202
3202
|
* @public
|
|
3203
3203
|
*/
|
|
3204
|
-
externalExecutionId?: string;
|
|
3204
|
+
externalExecutionId?: string | undefined;
|
|
3205
3205
|
/**
|
|
3206
3206
|
* <p>The URL of a resource external to Amazon Web Services that is used when running the
|
|
3207
3207
|
* rule (for example, an external repository URL).</p>
|
|
3208
3208
|
* @public
|
|
3209
3209
|
*/
|
|
3210
|
-
externalExecutionUrl?: string;
|
|
3210
|
+
externalExecutionUrl?: string | undefined;
|
|
3211
3211
|
/**
|
|
3212
3212
|
* <p>Represents information about an error in CodePipeline.</p>
|
|
3213
3213
|
* @public
|
|
3214
3214
|
*/
|
|
3215
|
-
errorDetails?: ErrorDetails;
|
|
3215
|
+
errorDetails?: ErrorDetails | undefined;
|
|
3216
3216
|
}
|
|
3217
3217
|
/**
|
|
3218
3218
|
* <p>Returns information about the state of a rule.</p>
|
|
@@ -3227,30 +3227,30 @@ export interface RuleState {
|
|
|
3227
3227
|
* <p>The name of the rule.</p>
|
|
3228
3228
|
* @public
|
|
3229
3229
|
*/
|
|
3230
|
-
ruleName?: string;
|
|
3230
|
+
ruleName?: string | undefined;
|
|
3231
3231
|
/**
|
|
3232
3232
|
* <p>The ID of the current revision of the artifact successfully worked on by the
|
|
3233
3233
|
* job.</p>
|
|
3234
3234
|
* @public
|
|
3235
3235
|
*/
|
|
3236
|
-
currentRevision?: RuleRevision;
|
|
3236
|
+
currentRevision?: RuleRevision | undefined;
|
|
3237
3237
|
/**
|
|
3238
3238
|
* <p>Represents information about the latest run of an rule.</p>
|
|
3239
3239
|
* @public
|
|
3240
3240
|
*/
|
|
3241
|
-
latestExecution?: RuleExecution;
|
|
3241
|
+
latestExecution?: RuleExecution | undefined;
|
|
3242
3242
|
/**
|
|
3243
3243
|
* <p>A URL link for more information about the state of the action, such as a details
|
|
3244
3244
|
* page.</p>
|
|
3245
3245
|
* @public
|
|
3246
3246
|
*/
|
|
3247
|
-
entityUrl?: string;
|
|
3247
|
+
entityUrl?: string | undefined;
|
|
3248
3248
|
/**
|
|
3249
3249
|
* <p>A URL link for more information about the revision, such as a commit details
|
|
3250
3250
|
* page.</p>
|
|
3251
3251
|
* @public
|
|
3252
3252
|
*/
|
|
3253
|
-
revisionUrl?: string;
|
|
3253
|
+
revisionUrl?: string | undefined;
|
|
3254
3254
|
}
|
|
3255
3255
|
/**
|
|
3256
3256
|
* <p>Information about the state of the condition.</p>
|
|
@@ -3261,12 +3261,12 @@ export interface ConditionState {
|
|
|
3261
3261
|
* <p>The state of the latest run of the rule.</p>
|
|
3262
3262
|
* @public
|
|
3263
3263
|
*/
|
|
3264
|
-
latestExecution?: ConditionExecution;
|
|
3264
|
+
latestExecution?: ConditionExecution | undefined;
|
|
3265
3265
|
/**
|
|
3266
3266
|
* <p>The state of the rules for the condition.</p>
|
|
3267
3267
|
* @public
|
|
3268
3268
|
*/
|
|
3269
|
-
ruleStates?: RuleState[];
|
|
3269
|
+
ruleStates?: RuleState[] | undefined;
|
|
3270
3270
|
}
|
|
3271
3271
|
/**
|
|
3272
3272
|
* <p>Represents information about the run of a condition for a stage.</p>
|
|
@@ -3277,12 +3277,12 @@ export interface StageConditionsExecution {
|
|
|
3277
3277
|
* <p>The status of a run of a condition for a stage.</p>
|
|
3278
3278
|
* @public
|
|
3279
3279
|
*/
|
|
3280
|
-
status?: ConditionExecutionStatus;
|
|
3280
|
+
status?: ConditionExecutionStatus | undefined;
|
|
3281
3281
|
/**
|
|
3282
3282
|
* <p>A summary of the run of the condition for a stage.</p>
|
|
3283
3283
|
* @public
|
|
3284
3284
|
*/
|
|
3285
|
-
summary?: string;
|
|
3285
|
+
summary?: string | undefined;
|
|
3286
3286
|
}
|
|
3287
3287
|
/**
|
|
3288
3288
|
* <p>The state of a run of a condition for a stage.</p>
|
|
@@ -3293,12 +3293,12 @@ export interface StageConditionState {
|
|
|
3293
3293
|
* <p>Represents information about the latest run of a condition for a stage.</p>
|
|
3294
3294
|
* @public
|
|
3295
3295
|
*/
|
|
3296
|
-
latestExecution?: StageConditionsExecution;
|
|
3296
|
+
latestExecution?: StageConditionsExecution | undefined;
|
|
3297
3297
|
/**
|
|
3298
3298
|
* <p>The states of the conditions for a run of a condition for a stage.</p>
|
|
3299
3299
|
* @public
|
|
3300
3300
|
*/
|
|
3301
|
-
conditionStates?: ConditionState[];
|
|
3301
|
+
conditionStates?: ConditionState[] | undefined;
|
|
3302
3302
|
}
|
|
3303
3303
|
/**
|
|
3304
3304
|
* @public
|
|
@@ -3342,7 +3342,7 @@ export interface StageExecution {
|
|
|
3342
3342
|
* execution.</p>
|
|
3343
3343
|
* @public
|
|
3344
3344
|
*/
|
|
3345
|
-
type?: ExecutionType;
|
|
3345
|
+
type?: ExecutionType | undefined;
|
|
3346
3346
|
}
|
|
3347
3347
|
/**
|
|
3348
3348
|
* <p>Represents information about the state of transitions between one stage and another
|
|
@@ -3355,23 +3355,23 @@ export interface TransitionState {
|
|
|
3355
3355
|
* (false).</p>
|
|
3356
3356
|
* @public
|
|
3357
3357
|
*/
|
|
3358
|
-
enabled?: boolean;
|
|
3358
|
+
enabled?: boolean | undefined;
|
|
3359
3359
|
/**
|
|
3360
3360
|
* <p>The ID of the user who last changed the transition state.</p>
|
|
3361
3361
|
* @public
|
|
3362
3362
|
*/
|
|
3363
|
-
lastChangedBy?: string;
|
|
3363
|
+
lastChangedBy?: string | undefined;
|
|
3364
3364
|
/**
|
|
3365
3365
|
* <p>The timestamp when the transition state was last changed.</p>
|
|
3366
3366
|
* @public
|
|
3367
3367
|
*/
|
|
3368
|
-
lastChangedAt?: Date;
|
|
3368
|
+
lastChangedAt?: Date | undefined;
|
|
3369
3369
|
/**
|
|
3370
3370
|
* <p>The user-specified reason why the transition between two stages of a pipeline was
|
|
3371
3371
|
* disabled.</p>
|
|
3372
3372
|
* @public
|
|
3373
3373
|
*/
|
|
3374
|
-
disabledReason?: string;
|
|
3374
|
+
disabledReason?: string | undefined;
|
|
3375
3375
|
}
|
|
3376
3376
|
/**
|
|
3377
3377
|
* @public
|
|
@@ -3394,17 +3394,17 @@ export interface RetryStageMetadata {
|
|
|
3394
3394
|
* <p>The number of attempts for a specific stage with automatic retry on stage failure. One attempt is allowed for automatic stage retry on failure.</p>
|
|
3395
3395
|
* @public
|
|
3396
3396
|
*/
|
|
3397
|
-
autoStageRetryAttempt?: number;
|
|
3397
|
+
autoStageRetryAttempt?: number | undefined;
|
|
3398
3398
|
/**
|
|
3399
3399
|
* <p>The number of attempts for a specific stage where manual retries have been made upon stage failure.</p>
|
|
3400
3400
|
* @public
|
|
3401
3401
|
*/
|
|
3402
|
-
manualStageRetryAttempt?: number;
|
|
3402
|
+
manualStageRetryAttempt?: number | undefined;
|
|
3403
3403
|
/**
|
|
3404
3404
|
* <p>The latest trigger for a specific stage where manual or automatic retries have been made upon stage failure.</p>
|
|
3405
3405
|
* @public
|
|
3406
3406
|
*/
|
|
3407
|
-
latestRetryTrigger?: RetryTrigger;
|
|
3407
|
+
latestRetryTrigger?: RetryTrigger | undefined;
|
|
3408
3408
|
}
|
|
3409
3409
|
/**
|
|
3410
3410
|
* <p>Represents information about the state of the stage.</p>
|
|
@@ -3415,53 +3415,53 @@ export interface StageState {
|
|
|
3415
3415
|
* <p>The name of the stage.</p>
|
|
3416
3416
|
* @public
|
|
3417
3417
|
*/
|
|
3418
|
-
stageName?: string;
|
|
3418
|
+
stageName?: string | undefined;
|
|
3419
3419
|
/**
|
|
3420
3420
|
* <p>Represents information about the run of a stage.</p>
|
|
3421
3421
|
* @public
|
|
3422
3422
|
*/
|
|
3423
|
-
inboundExecution?: StageExecution;
|
|
3423
|
+
inboundExecution?: StageExecution | undefined;
|
|
3424
3424
|
/**
|
|
3425
3425
|
* <p>The inbound executions for a stage.</p>
|
|
3426
3426
|
* @public
|
|
3427
3427
|
*/
|
|
3428
|
-
inboundExecutions?: StageExecution[];
|
|
3428
|
+
inboundExecutions?: StageExecution[] | undefined;
|
|
3429
3429
|
/**
|
|
3430
3430
|
* <p>The state of the inbound transition, which is either enabled or disabled.</p>
|
|
3431
3431
|
* @public
|
|
3432
3432
|
*/
|
|
3433
|
-
inboundTransitionState?: TransitionState;
|
|
3433
|
+
inboundTransitionState?: TransitionState | undefined;
|
|
3434
3434
|
/**
|
|
3435
3435
|
* <p>The state of the stage.</p>
|
|
3436
3436
|
* @public
|
|
3437
3437
|
*/
|
|
3438
|
-
actionStates?: ActionState[];
|
|
3438
|
+
actionStates?: ActionState[] | undefined;
|
|
3439
3439
|
/**
|
|
3440
3440
|
* <p>Information about the latest execution in the stage, including its ID and
|
|
3441
3441
|
* status.</p>
|
|
3442
3442
|
* @public
|
|
3443
3443
|
*/
|
|
3444
|
-
latestExecution?: StageExecution;
|
|
3444
|
+
latestExecution?: StageExecution | undefined;
|
|
3445
3445
|
/**
|
|
3446
3446
|
* <p>The state of the entry conditions for a stage.</p>
|
|
3447
3447
|
* @public
|
|
3448
3448
|
*/
|
|
3449
|
-
beforeEntryConditionState?: StageConditionState;
|
|
3449
|
+
beforeEntryConditionState?: StageConditionState | undefined;
|
|
3450
3450
|
/**
|
|
3451
3451
|
* <p>The state of the success conditions for a stage.</p>
|
|
3452
3452
|
* @public
|
|
3453
3453
|
*/
|
|
3454
|
-
onSuccessConditionState?: StageConditionState;
|
|
3454
|
+
onSuccessConditionState?: StageConditionState | undefined;
|
|
3455
3455
|
/**
|
|
3456
3456
|
* <p>The state of the failure conditions for a stage.</p>
|
|
3457
3457
|
* @public
|
|
3458
3458
|
*/
|
|
3459
|
-
onFailureConditionState?: StageConditionState;
|
|
3459
|
+
onFailureConditionState?: StageConditionState | undefined;
|
|
3460
3460
|
/**
|
|
3461
3461
|
* <p>he details of a specific automatic retry on stage failure, including the attempt number and trigger.</p>
|
|
3462
3462
|
* @public
|
|
3463
3463
|
*/
|
|
3464
|
-
retryStageMetadata?: RetryStageMetadata;
|
|
3464
|
+
retryStageMetadata?: RetryStageMetadata | undefined;
|
|
3465
3465
|
}
|
|
3466
3466
|
/**
|
|
3467
3467
|
* <p>Represents the output of a <code>GetPipelineState</code> action.</p>
|
|
@@ -3472,7 +3472,7 @@ export interface GetPipelineStateOutput {
|
|
|
3472
3472
|
* <p>The name of the pipeline for which you want to get the state.</p>
|
|
3473
3473
|
* @public
|
|
3474
3474
|
*/
|
|
3475
|
-
pipelineName?: string;
|
|
3475
|
+
pipelineName?: string | undefined;
|
|
3476
3476
|
/**
|
|
3477
3477
|
* <p>The version number of the pipeline.</p>
|
|
3478
3478
|
* <note>
|
|
@@ -3481,23 +3481,23 @@ export interface GetPipelineStateOutput {
|
|
|
3481
3481
|
* </note>
|
|
3482
3482
|
* @public
|
|
3483
3483
|
*/
|
|
3484
|
-
pipelineVersion?: number;
|
|
3484
|
+
pipelineVersion?: number | undefined;
|
|
3485
3485
|
/**
|
|
3486
3486
|
* <p>A list of the pipeline stage output information, including stage name, state, most
|
|
3487
3487
|
* recent run details, whether the stage is disabled, and other data.</p>
|
|
3488
3488
|
* @public
|
|
3489
3489
|
*/
|
|
3490
|
-
stageStates?: StageState[];
|
|
3490
|
+
stageStates?: StageState[] | undefined;
|
|
3491
3491
|
/**
|
|
3492
3492
|
* <p>The date and time the pipeline was created, in timestamp format.</p>
|
|
3493
3493
|
* @public
|
|
3494
3494
|
*/
|
|
3495
|
-
created?: Date;
|
|
3495
|
+
created?: Date | undefined;
|
|
3496
3496
|
/**
|
|
3497
3497
|
* <p>The date and time the pipeline was last updated, in timestamp format.</p>
|
|
3498
3498
|
* @public
|
|
3499
3499
|
*/
|
|
3500
|
-
updated?: Date;
|
|
3500
|
+
updated?: Date | undefined;
|
|
3501
3501
|
}
|
|
3502
3502
|
/**
|
|
3503
3503
|
* <p>Represents the input of a <code>GetThirdPartyJobDetails</code> action.</p>
|
|
@@ -3525,12 +3525,12 @@ export interface ThirdPartyJobData {
|
|
|
3525
3525
|
* <p>Represents information about an action type.</p>
|
|
3526
3526
|
* @public
|
|
3527
3527
|
*/
|
|
3528
|
-
actionTypeId?: ActionTypeId;
|
|
3528
|
+
actionTypeId?: ActionTypeId | undefined;
|
|
3529
3529
|
/**
|
|
3530
3530
|
* <p>Represents information about an action configuration.</p>
|
|
3531
3531
|
* @public
|
|
3532
3532
|
*/
|
|
3533
|
-
actionConfiguration?: ActionConfiguration;
|
|
3533
|
+
actionConfiguration?: ActionConfiguration | undefined;
|
|
3534
3534
|
/**
|
|
3535
3535
|
* <p>Represents information about a pipeline to a job worker.</p>
|
|
3536
3536
|
* <note>
|
|
@@ -3539,7 +3539,7 @@ export interface ThirdPartyJobData {
|
|
|
3539
3539
|
* </note>
|
|
3540
3540
|
* @public
|
|
3541
3541
|
*/
|
|
3542
|
-
pipelineContext?: PipelineContext;
|
|
3542
|
+
pipelineContext?: PipelineContext | undefined;
|
|
3543
3543
|
/**
|
|
3544
3544
|
* <p>The name of the artifact that is worked on by the action, if any. This name might
|
|
3545
3545
|
* be system-generated, such as "MyApp", or it might be defined by the user when the action
|
|
@@ -3547,14 +3547,14 @@ export interface ThirdPartyJobData {
|
|
|
3547
3547
|
* by an action in an earlier action or stage of the pipeline.</p>
|
|
3548
3548
|
* @public
|
|
3549
3549
|
*/
|
|
3550
|
-
inputArtifacts?: Artifact[];
|
|
3550
|
+
inputArtifacts?: Artifact[] | undefined;
|
|
3551
3551
|
/**
|
|
3552
3552
|
* <p>The name of the artifact that is the result of the action, if any. This name might
|
|
3553
3553
|
* be system-generated, such as "MyBuiltApp", or it might be defined by the user when the
|
|
3554
3554
|
* action is created.</p>
|
|
3555
3555
|
* @public
|
|
3556
3556
|
*/
|
|
3557
|
-
outputArtifacts?: Artifact[];
|
|
3557
|
+
outputArtifacts?: Artifact[] | undefined;
|
|
3558
3558
|
/**
|
|
3559
3559
|
* <p>Represents an Amazon Web Services session credentials object. These credentials are
|
|
3560
3560
|
* temporary credentials that are issued by Amazon Web Services Secure Token Service (STS).
|
|
@@ -3562,20 +3562,20 @@ export interface ThirdPartyJobData {
|
|
|
3562
3562
|
* artifact for the pipeline in CodePipeline. </p>
|
|
3563
3563
|
* @public
|
|
3564
3564
|
*/
|
|
3565
|
-
artifactCredentials?: AWSSessionCredentials;
|
|
3565
|
+
artifactCredentials?: AWSSessionCredentials | undefined;
|
|
3566
3566
|
/**
|
|
3567
3567
|
* <p>A system-generated token, such as a CodeDeploy deployment ID, that a job requires
|
|
3568
3568
|
* to continue the job asynchronously.</p>
|
|
3569
3569
|
* @public
|
|
3570
3570
|
*/
|
|
3571
|
-
continuationToken?: string;
|
|
3571
|
+
continuationToken?: string | undefined;
|
|
3572
3572
|
/**
|
|
3573
3573
|
* <p>The encryption key used to encrypt and decrypt data in the artifact store for the
|
|
3574
3574
|
* pipeline, such as an Amazon Web Services Key Management Service (Amazon Web Services KMS)
|
|
3575
3575
|
* key. This is optional and might not be present.</p>
|
|
3576
3576
|
* @public
|
|
3577
3577
|
*/
|
|
3578
|
-
encryptionKey?: EncryptionKey;
|
|
3578
|
+
encryptionKey?: EncryptionKey | undefined;
|
|
3579
3579
|
}
|
|
3580
3580
|
/**
|
|
3581
3581
|
* <p>The details of a job sent in response to a <code>GetThirdPartyJobDetails</code>
|
|
@@ -3587,18 +3587,18 @@ export interface ThirdPartyJobDetails {
|
|
|
3587
3587
|
* <p>The identifier used to identify the job details in CodePipeline.</p>
|
|
3588
3588
|
* @public
|
|
3589
3589
|
*/
|
|
3590
|
-
id?: string;
|
|
3590
|
+
id?: string | undefined;
|
|
3591
3591
|
/**
|
|
3592
3592
|
* <p>The data to be returned by the third party job worker.</p>
|
|
3593
3593
|
* @public
|
|
3594
3594
|
*/
|
|
3595
|
-
data?: ThirdPartyJobData;
|
|
3595
|
+
data?: ThirdPartyJobData | undefined;
|
|
3596
3596
|
/**
|
|
3597
3597
|
* <p>A system-generated random number that CodePipeline uses to ensure that the
|
|
3598
3598
|
* job is being worked on by only one job worker. Use this number in an <a>AcknowledgeThirdPartyJob</a> request.</p>
|
|
3599
3599
|
* @public
|
|
3600
3600
|
*/
|
|
3601
|
-
nonce?: string;
|
|
3601
|
+
nonce?: string | undefined;
|
|
3602
3602
|
}
|
|
3603
3603
|
/**
|
|
3604
3604
|
* <p>Represents the output of a <code>GetThirdPartyJobDetails</code> action.</p>
|
|
@@ -3610,7 +3610,7 @@ export interface GetThirdPartyJobDetailsOutput {
|
|
|
3610
3610
|
* job.</p>
|
|
3611
3611
|
* @public
|
|
3612
3612
|
*/
|
|
3613
|
-
jobDetails?: ThirdPartyJobDetails;
|
|
3613
|
+
jobDetails?: ThirdPartyJobDetails | undefined;
|
|
3614
3614
|
}
|
|
3615
3615
|
/**
|
|
3616
3616
|
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
@@ -3650,7 +3650,7 @@ export interface ListActionExecutionsInput {
|
|
|
3650
3650
|
* <p>Input information used to filter action execution history.</p>
|
|
3651
3651
|
* @public
|
|
3652
3652
|
*/
|
|
3653
|
-
filter?: ActionExecutionFilter;
|
|
3653
|
+
filter?: ActionExecutionFilter | undefined;
|
|
3654
3654
|
/**
|
|
3655
3655
|
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
3656
3656
|
* results, make another call with the returned nextToken value. Action execution history
|
|
@@ -3658,13 +3658,13 @@ export interface ListActionExecutionsInput {
|
|
|
3658
3658
|
* 100. </p>
|
|
3659
3659
|
* @public
|
|
3660
3660
|
*/
|
|
3661
|
-
maxResults?: number;
|
|
3661
|
+
maxResults?: number | undefined;
|
|
3662
3662
|
/**
|
|
3663
3663
|
* <p>The token that was returned from the previous <code>ListActionExecutions</code> call,
|
|
3664
3664
|
* which can be used to return the next set of action executions in the list.</p>
|
|
3665
3665
|
* @public
|
|
3666
3666
|
*/
|
|
3667
|
-
nextToken?: string;
|
|
3667
|
+
nextToken?: string | undefined;
|
|
3668
3668
|
}
|
|
3669
3669
|
/**
|
|
3670
3670
|
* @public
|
|
@@ -3674,14 +3674,14 @@ export interface ListActionExecutionsOutput {
|
|
|
3674
3674
|
* <p>The details for a list of recent executions, such as action execution ID.</p>
|
|
3675
3675
|
* @public
|
|
3676
3676
|
*/
|
|
3677
|
-
actionExecutionDetails?: ActionExecutionDetail[];
|
|
3677
|
+
actionExecutionDetails?: ActionExecutionDetail[] | undefined;
|
|
3678
3678
|
/**
|
|
3679
3679
|
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
3680
3680
|
* returned and can be used in a subsequent <code>ListActionExecutions</code> call to
|
|
3681
3681
|
* return the next set of action executions in the list.</p>
|
|
3682
3682
|
* @public
|
|
3683
3683
|
*/
|
|
3684
|
-
nextToken?: string;
|
|
3684
|
+
nextToken?: string | undefined;
|
|
3685
3685
|
}
|
|
3686
3686
|
/**
|
|
3687
3687
|
* <p>Represents the input of a <code>ListActionTypes</code> action.</p>
|
|
@@ -3692,18 +3692,18 @@ export interface ListActionTypesInput {
|
|
|
3692
3692
|
* <p>Filters the list of action types to those created by a specified entity.</p>
|
|
3693
3693
|
* @public
|
|
3694
3694
|
*/
|
|
3695
|
-
actionOwnerFilter?: ActionOwner;
|
|
3695
|
+
actionOwnerFilter?: ActionOwner | undefined;
|
|
3696
3696
|
/**
|
|
3697
3697
|
* <p>An identifier that was returned from the previous list action types call, which can
|
|
3698
3698
|
* be used to return the next set of action types in the list.</p>
|
|
3699
3699
|
* @public
|
|
3700
3700
|
*/
|
|
3701
|
-
nextToken?: string;
|
|
3701
|
+
nextToken?: string | undefined;
|
|
3702
3702
|
/**
|
|
3703
3703
|
* <p>The Region to filter on for the list of action types.</p>
|
|
3704
3704
|
* @public
|
|
3705
3705
|
*/
|
|
3706
|
-
regionFilter?: string;
|
|
3706
|
+
regionFilter?: string | undefined;
|
|
3707
3707
|
}
|
|
3708
3708
|
/**
|
|
3709
3709
|
* <p>Represents the output of a <code>ListActionTypes</code> action.</p>
|
|
@@ -3721,7 +3721,7 @@ export interface ListActionTypesOutput {
|
|
|
3721
3721
|
* of action types in the list.</p>
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
nextToken?: string;
|
|
3724
|
+
nextToken?: string | undefined;
|
|
3725
3725
|
}
|
|
3726
3726
|
/**
|
|
3727
3727
|
* <p>Filter for pipeline executions that have successfully completed the stage in the
|
|
@@ -3734,7 +3734,7 @@ export interface SucceededInStageFilter {
|
|
|
3734
3734
|
* successful in the current pipeline version.</p>
|
|
3735
3735
|
* @public
|
|
3736
3736
|
*/
|
|
3737
|
-
stageName?: string;
|
|
3737
|
+
stageName?: string | undefined;
|
|
3738
3738
|
}
|
|
3739
3739
|
/**
|
|
3740
3740
|
* <p>The pipeline execution to filter on.</p>
|
|
@@ -3746,7 +3746,7 @@ export interface PipelineExecutionFilter {
|
|
|
3746
3746
|
* version.</p>
|
|
3747
3747
|
* @public
|
|
3748
3748
|
*/
|
|
3749
|
-
succeededInStage?: SucceededInStageFilter;
|
|
3749
|
+
succeededInStage?: SucceededInStageFilter | undefined;
|
|
3750
3750
|
}
|
|
3751
3751
|
/**
|
|
3752
3752
|
* <p>Represents the input of a <code>ListPipelineExecutions</code> action.</p>
|
|
@@ -3766,19 +3766,19 @@ export interface ListPipelineExecutionsInput {
|
|
|
3766
3766
|
* value is 100.</p>
|
|
3767
3767
|
* @public
|
|
3768
3768
|
*/
|
|
3769
|
-
maxResults?: number;
|
|
3769
|
+
maxResults?: number | undefined;
|
|
3770
3770
|
/**
|
|
3771
3771
|
* <p>The pipeline execution to filter on.</p>
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
filter?: PipelineExecutionFilter;
|
|
3774
|
+
filter?: PipelineExecutionFilter | undefined;
|
|
3775
3775
|
/**
|
|
3776
3776
|
* <p>The token that was returned from the previous <code>ListPipelineExecutions</code>
|
|
3777
3777
|
* call, which can be used to return the next set of pipeline executions in the
|
|
3778
3778
|
* list.</p>
|
|
3779
3779
|
* @public
|
|
3780
3780
|
*/
|
|
3781
|
-
nextToken?: string;
|
|
3781
|
+
nextToken?: string | undefined;
|
|
3782
3782
|
}
|
|
3783
3783
|
/**
|
|
3784
3784
|
* <p>Information about the version (or revision) of a source artifact that initiated a
|
|
@@ -3797,7 +3797,7 @@ export interface SourceRevision {
|
|
|
3797
3797
|
* artifact.</p>
|
|
3798
3798
|
* @public
|
|
3799
3799
|
*/
|
|
3800
|
-
revisionId?: string;
|
|
3800
|
+
revisionId?: string | undefined;
|
|
3801
3801
|
/**
|
|
3802
3802
|
* <p>Summary information about the most recent revision of the artifact. For GitHub and
|
|
3803
3803
|
* CodeCommit repositories, the commit message. For Amazon S3 buckets or actions,
|
|
@@ -3805,13 +3805,13 @@ export interface SourceRevision {
|
|
|
3805
3805
|
* specified in the object metadata.</p>
|
|
3806
3806
|
* @public
|
|
3807
3807
|
*/
|
|
3808
|
-
revisionSummary?: string;
|
|
3808
|
+
revisionSummary?: string | undefined;
|
|
3809
3809
|
/**
|
|
3810
3810
|
* <p>The commit ID for the artifact revision. For artifacts stored in GitHub or
|
|
3811
3811
|
* CodeCommit repositories, the commit ID is linked to a commit details page.</p>
|
|
3812
3812
|
* @public
|
|
3813
3813
|
*/
|
|
3814
|
-
revisionUrl?: string;
|
|
3814
|
+
revisionUrl?: string | undefined;
|
|
3815
3815
|
}
|
|
3816
3816
|
/**
|
|
3817
3817
|
* <p>The interaction that stopped a pipeline execution.</p>
|
|
@@ -3822,7 +3822,7 @@ export interface StopExecutionTrigger {
|
|
|
3822
3822
|
* <p>The user-specified reason the pipeline was stopped.</p>
|
|
3823
3823
|
* @public
|
|
3824
3824
|
*/
|
|
3825
|
-
reason?: string;
|
|
3825
|
+
reason?: string | undefined;
|
|
3826
3826
|
}
|
|
3827
3827
|
/**
|
|
3828
3828
|
* <p>Summary information about a pipeline execution.</p>
|
|
@@ -3833,7 +3833,7 @@ export interface PipelineExecutionSummary {
|
|
|
3833
3833
|
* <p>The ID of the pipeline execution.</p>
|
|
3834
3834
|
* @public
|
|
3835
3835
|
*/
|
|
3836
|
-
pipelineExecutionId?: string;
|
|
3836
|
+
pipelineExecutionId?: string | undefined;
|
|
3837
3837
|
/**
|
|
3838
3838
|
* <p>The status of the pipeline execution.</p>
|
|
3839
3839
|
* <ul>
|
|
@@ -3863,56 +3863,56 @@ export interface PipelineExecutionSummary {
|
|
|
3863
3863
|
* </ul>
|
|
3864
3864
|
* @public
|
|
3865
3865
|
*/
|
|
3866
|
-
status?: PipelineExecutionStatus;
|
|
3866
|
+
status?: PipelineExecutionStatus | undefined;
|
|
3867
3867
|
/**
|
|
3868
3868
|
* <p>Status summary for the pipeline.</p>
|
|
3869
3869
|
* @public
|
|
3870
3870
|
*/
|
|
3871
|
-
statusSummary?: string;
|
|
3871
|
+
statusSummary?: string | undefined;
|
|
3872
3872
|
/**
|
|
3873
3873
|
* <p>The date and time when the pipeline execution began, in timestamp format.</p>
|
|
3874
3874
|
* @public
|
|
3875
3875
|
*/
|
|
3876
|
-
startTime?: Date;
|
|
3876
|
+
startTime?: Date | undefined;
|
|
3877
3877
|
/**
|
|
3878
3878
|
* <p>The date and time of the last change to the pipeline execution, in timestamp
|
|
3879
3879
|
* format.</p>
|
|
3880
3880
|
* @public
|
|
3881
3881
|
*/
|
|
3882
|
-
lastUpdateTime?: Date;
|
|
3882
|
+
lastUpdateTime?: Date | undefined;
|
|
3883
3883
|
/**
|
|
3884
3884
|
* <p>A list of the source artifact revisions that initiated a pipeline
|
|
3885
3885
|
* execution.</p>
|
|
3886
3886
|
* @public
|
|
3887
3887
|
*/
|
|
3888
|
-
sourceRevisions?: SourceRevision[];
|
|
3888
|
+
sourceRevisions?: SourceRevision[] | undefined;
|
|
3889
3889
|
/**
|
|
3890
3890
|
* <p>The interaction or event that started a pipeline execution, such as automated change
|
|
3891
3891
|
* detection or a <code>StartPipelineExecution</code> API call.</p>
|
|
3892
3892
|
* @public
|
|
3893
3893
|
*/
|
|
3894
|
-
trigger?: ExecutionTrigger;
|
|
3894
|
+
trigger?: ExecutionTrigger | undefined;
|
|
3895
3895
|
/**
|
|
3896
3896
|
* <p>The interaction that stopped a pipeline execution.</p>
|
|
3897
3897
|
* @public
|
|
3898
3898
|
*/
|
|
3899
|
-
stopTrigger?: StopExecutionTrigger;
|
|
3899
|
+
stopTrigger?: StopExecutionTrigger | undefined;
|
|
3900
3900
|
/**
|
|
3901
3901
|
* <p>The method that the pipeline will use to handle multiple executions. The default
|
|
3902
3902
|
* mode is SUPERSEDED.</p>
|
|
3903
3903
|
* @public
|
|
3904
3904
|
*/
|
|
3905
|
-
executionMode?: ExecutionMode;
|
|
3905
|
+
executionMode?: ExecutionMode | undefined;
|
|
3906
3906
|
/**
|
|
3907
3907
|
* <p>Type of the pipeline execution.</p>
|
|
3908
3908
|
* @public
|
|
3909
3909
|
*/
|
|
3910
|
-
executionType?: ExecutionType;
|
|
3910
|
+
executionType?: ExecutionType | undefined;
|
|
3911
3911
|
/**
|
|
3912
3912
|
* <p>The metadata for the stage execution to be rolled back.</p>
|
|
3913
3913
|
* @public
|
|
3914
3914
|
*/
|
|
3915
|
-
rollbackMetadata?: PipelineRollbackMetadata;
|
|
3915
|
+
rollbackMetadata?: PipelineRollbackMetadata | undefined;
|
|
3916
3916
|
}
|
|
3917
3917
|
/**
|
|
3918
3918
|
* <p>Represents the output of a <code>ListPipelineExecutions</code> action.</p>
|
|
@@ -3923,14 +3923,14 @@ export interface ListPipelineExecutionsOutput {
|
|
|
3923
3923
|
* <p>A list of executions in the history of a pipeline.</p>
|
|
3924
3924
|
* @public
|
|
3925
3925
|
*/
|
|
3926
|
-
pipelineExecutionSummaries?: PipelineExecutionSummary[];
|
|
3926
|
+
pipelineExecutionSummaries?: PipelineExecutionSummary[] | undefined;
|
|
3927
3927
|
/**
|
|
3928
3928
|
* <p>A token that can be used in the next <code>ListPipelineExecutions</code> call. To
|
|
3929
3929
|
* view all items in the list, continue to call this operation with each subsequent token
|
|
3930
3930
|
* until no more nextToken values are returned.</p>
|
|
3931
3931
|
* @public
|
|
3932
3932
|
*/
|
|
3933
|
-
nextToken?: string;
|
|
3933
|
+
nextToken?: string | undefined;
|
|
3934
3934
|
}
|
|
3935
3935
|
/**
|
|
3936
3936
|
* <p>Represents the input of a <code>ListPipelines</code> action.</p>
|
|
@@ -3942,14 +3942,14 @@ export interface ListPipelinesInput {
|
|
|
3942
3942
|
* used to return the next set of pipelines in the list.</p>
|
|
3943
3943
|
* @public
|
|
3944
3944
|
*/
|
|
3945
|
-
nextToken?: string;
|
|
3945
|
+
nextToken?: string | undefined;
|
|
3946
3946
|
/**
|
|
3947
3947
|
* <p>The maximum number of pipelines to return in a single call. To retrieve the remaining
|
|
3948
3948
|
* pipelines, make another call with the returned nextToken value. The minimum value you
|
|
3949
3949
|
* can specify is 1. The maximum accepted value is 1000.</p>
|
|
3950
3950
|
* @public
|
|
3951
3951
|
*/
|
|
3952
|
-
maxResults?: number;
|
|
3952
|
+
maxResults?: number | undefined;
|
|
3953
3953
|
}
|
|
3954
3954
|
/**
|
|
3955
3955
|
* <p>Returns a summary of a pipeline.</p>
|
|
@@ -3960,12 +3960,12 @@ export interface PipelineSummary {
|
|
|
3960
3960
|
* <p>The name of the pipeline.</p>
|
|
3961
3961
|
* @public
|
|
3962
3962
|
*/
|
|
3963
|
-
name?: string;
|
|
3963
|
+
name?: string | undefined;
|
|
3964
3964
|
/**
|
|
3965
3965
|
* <p>The version number of the pipeline.</p>
|
|
3966
3966
|
* @public
|
|
3967
3967
|
*/
|
|
3968
|
-
version?: number;
|
|
3968
|
+
version?: number | undefined;
|
|
3969
3969
|
/**
|
|
3970
3970
|
* <p>CodePipeline provides the following pipeline types, which differ in
|
|
3971
3971
|
* characteristics and price, so that you can tailor your pipeline features and cost to the
|
|
@@ -3990,24 +3990,24 @@ export interface PipelineSummary {
|
|
|
3990
3990
|
* pipeline is right for me?</a>.</p>
|
|
3991
3991
|
* @public
|
|
3992
3992
|
*/
|
|
3993
|
-
pipelineType?: PipelineType;
|
|
3993
|
+
pipelineType?: PipelineType | undefined;
|
|
3994
3994
|
/**
|
|
3995
3995
|
* <p>The method that the pipeline will use to handle multiple executions. The default
|
|
3996
3996
|
* mode is SUPERSEDED.</p>
|
|
3997
3997
|
* @public
|
|
3998
3998
|
*/
|
|
3999
|
-
executionMode?: ExecutionMode;
|
|
3999
|
+
executionMode?: ExecutionMode | undefined;
|
|
4000
4000
|
/**
|
|
4001
4001
|
* <p>The date and time the pipeline was created, in timestamp format.</p>
|
|
4002
4002
|
* @public
|
|
4003
4003
|
*/
|
|
4004
|
-
created?: Date;
|
|
4004
|
+
created?: Date | undefined;
|
|
4005
4005
|
/**
|
|
4006
4006
|
* <p>The date and time of the last update to the pipeline, in timestamp
|
|
4007
4007
|
* format.</p>
|
|
4008
4008
|
* @public
|
|
4009
4009
|
*/
|
|
4010
|
-
updated?: Date;
|
|
4010
|
+
updated?: Date | undefined;
|
|
4011
4011
|
}
|
|
4012
4012
|
/**
|
|
4013
4013
|
* <p>Represents the output of a <code>ListPipelines</code> action.</p>
|
|
@@ -4018,14 +4018,14 @@ export interface ListPipelinesOutput {
|
|
|
4018
4018
|
* <p>The list of pipelines.</p>
|
|
4019
4019
|
* @public
|
|
4020
4020
|
*/
|
|
4021
|
-
pipelines?: PipelineSummary[];
|
|
4021
|
+
pipelines?: PipelineSummary[] | undefined;
|
|
4022
4022
|
/**
|
|
4023
4023
|
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
4024
4024
|
* returned. It can be used in a subsequent list pipelines call to return the next set of
|
|
4025
4025
|
* pipelines in the list.</p>
|
|
4026
4026
|
* @public
|
|
4027
4027
|
*/
|
|
4028
|
-
nextToken?: string;
|
|
4028
|
+
nextToken?: string | undefined;
|
|
4029
4029
|
}
|
|
4030
4030
|
/**
|
|
4031
4031
|
* <p>Filter values for the rule execution.</p>
|
|
@@ -4036,7 +4036,7 @@ export interface RuleExecutionFilter {
|
|
|
4036
4036
|
* <p>The pipeline execution ID used to filter rule execution history.</p>
|
|
4037
4037
|
* @public
|
|
4038
4038
|
*/
|
|
4039
|
-
pipelineExecutionId?: string;
|
|
4039
|
+
pipelineExecutionId?: string | undefined;
|
|
4040
4040
|
/**
|
|
4041
4041
|
* <p>The field that specifies to filter on the latest execution in the
|
|
4042
4042
|
* pipeline.</p>
|
|
@@ -4046,7 +4046,7 @@ export interface RuleExecutionFilter {
|
|
|
4046
4046
|
* </note>
|
|
4047
4047
|
* @public
|
|
4048
4048
|
*/
|
|
4049
|
-
latestInPipelineExecution?: LatestInPipelineExecutionFilter;
|
|
4049
|
+
latestInPipelineExecution?: LatestInPipelineExecutionFilter | undefined;
|
|
4050
4050
|
}
|
|
4051
4051
|
/**
|
|
4052
4052
|
* @public
|
|
@@ -4062,7 +4062,7 @@ export interface ListRuleExecutionsInput {
|
|
|
4062
4062
|
* <p>Input information used to filter rule execution history.</p>
|
|
4063
4063
|
* @public
|
|
4064
4064
|
*/
|
|
4065
|
-
filter?: RuleExecutionFilter;
|
|
4065
|
+
filter?: RuleExecutionFilter | undefined;
|
|
4066
4066
|
/**
|
|
4067
4067
|
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
4068
4068
|
* results, make another call with the returned nextToken value. Pipeline history is
|
|
@@ -4070,13 +4070,13 @@ export interface ListRuleExecutionsInput {
|
|
|
4070
4070
|
* value is 100.</p>
|
|
4071
4071
|
* @public
|
|
4072
4072
|
*/
|
|
4073
|
-
maxResults?: number;
|
|
4073
|
+
maxResults?: number | undefined;
|
|
4074
4074
|
/**
|
|
4075
4075
|
* <p>The token that was returned from the previous <code>ListRuleExecutions</code> call,
|
|
4076
4076
|
* which can be used to return the next set of rule executions in the list.</p>
|
|
4077
4077
|
* @public
|
|
4078
4078
|
*/
|
|
4079
|
-
nextToken?: string;
|
|
4079
|
+
nextToken?: string | undefined;
|
|
4080
4080
|
}
|
|
4081
4081
|
/**
|
|
4082
4082
|
* <p>Input information used for a rule execution.</p>
|
|
@@ -4088,35 +4088,35 @@ export interface RuleExecutionInput {
|
|
|
4088
4088
|
* provider, and version.</p>
|
|
4089
4089
|
* @public
|
|
4090
4090
|
*/
|
|
4091
|
-
ruleTypeId?: RuleTypeId;
|
|
4091
|
+
ruleTypeId?: RuleTypeId | undefined;
|
|
4092
4092
|
/**
|
|
4093
4093
|
* <p>Configuration data for a rule execution, such as the resolved values for that
|
|
4094
4094
|
* run.</p>
|
|
4095
4095
|
* @public
|
|
4096
4096
|
*/
|
|
4097
|
-
configuration?: Record<string, string
|
|
4097
|
+
configuration?: Record<string, string> | undefined;
|
|
4098
4098
|
/**
|
|
4099
4099
|
* <p>Configuration data for a rule execution with all variable references replaced with
|
|
4100
4100
|
* their real values for the execution.</p>
|
|
4101
4101
|
* @public
|
|
4102
4102
|
*/
|
|
4103
|
-
resolvedConfiguration?: Record<string, string
|
|
4103
|
+
resolvedConfiguration?: Record<string, string> | undefined;
|
|
4104
4104
|
/**
|
|
4105
4105
|
* <p>The ARN of the IAM service role that performs the declared rule. This is assumed
|
|
4106
4106
|
* through the roleArn for the pipeline.</p>
|
|
4107
4107
|
* @public
|
|
4108
4108
|
*/
|
|
4109
|
-
roleArn?: string;
|
|
4109
|
+
roleArn?: string | undefined;
|
|
4110
4110
|
/**
|
|
4111
4111
|
* <p>The Amazon Web Services Region for the rule, such as us-east-1.</p>
|
|
4112
4112
|
* @public
|
|
4113
4113
|
*/
|
|
4114
|
-
region?: string;
|
|
4114
|
+
region?: string | undefined;
|
|
4115
4115
|
/**
|
|
4116
4116
|
* <p>Details of input artifacts of the rule that correspond to the rule execution.</p>
|
|
4117
4117
|
* @public
|
|
4118
4118
|
*/
|
|
4119
|
-
inputArtifacts?: ArtifactDetail[];
|
|
4119
|
+
inputArtifacts?: ArtifactDetail[] | undefined;
|
|
4120
4120
|
}
|
|
4121
4121
|
/**
|
|
4122
4122
|
* <p>Execution result information, such as the external execution ID.</p>
|
|
@@ -4127,23 +4127,23 @@ export interface RuleExecutionResult {
|
|
|
4127
4127
|
* <p>The external ID for the rule execution.</p>
|
|
4128
4128
|
* @public
|
|
4129
4129
|
*/
|
|
4130
|
-
externalExecutionId?: string;
|
|
4130
|
+
externalExecutionId?: string | undefined;
|
|
4131
4131
|
/**
|
|
4132
4132
|
* <p>The external provider summary for the rule execution.</p>
|
|
4133
4133
|
* @public
|
|
4134
4134
|
*/
|
|
4135
|
-
externalExecutionSummary?: string;
|
|
4135
|
+
externalExecutionSummary?: string | undefined;
|
|
4136
4136
|
/**
|
|
4137
4137
|
* <p>The deepest external link to the external resource (for example, a repository URL or
|
|
4138
4138
|
* deployment endpoint) that is used when running the rule.</p>
|
|
4139
4139
|
* @public
|
|
4140
4140
|
*/
|
|
4141
|
-
externalExecutionUrl?: string;
|
|
4141
|
+
externalExecutionUrl?: string | undefined;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* <p>Represents information about an error in CodePipeline.</p>
|
|
4144
4144
|
* @public
|
|
4145
4145
|
*/
|
|
4146
|
-
errorDetails?: ErrorDetails;
|
|
4146
|
+
errorDetails?: ErrorDetails | undefined;
|
|
4147
4147
|
}
|
|
4148
4148
|
/**
|
|
4149
4149
|
* <p>Output details listed for a rule execution, such as the rule execution result.</p>
|
|
@@ -4154,7 +4154,7 @@ export interface RuleExecutionOutput {
|
|
|
4154
4154
|
* <p>Execution result information listed in the output details for a rule execution.</p>
|
|
4155
4155
|
* @public
|
|
4156
4156
|
*/
|
|
4157
|
-
executionResult?: RuleExecutionResult;
|
|
4157
|
+
executionResult?: RuleExecutionResult | undefined;
|
|
4158
4158
|
}
|
|
4159
4159
|
/**
|
|
4160
4160
|
* <p>The details of the runs for a rule and the results produced on an artifact as it
|
|
@@ -4167,60 +4167,60 @@ export interface RuleExecutionDetail {
|
|
|
4167
4167
|
* the stage.</p>
|
|
4168
4168
|
* @public
|
|
4169
4169
|
*/
|
|
4170
|
-
pipelineExecutionId?: string;
|
|
4170
|
+
pipelineExecutionId?: string | undefined;
|
|
4171
4171
|
/**
|
|
4172
4172
|
* <p>The ID of the run for the rule.</p>
|
|
4173
4173
|
* @public
|
|
4174
4174
|
*/
|
|
4175
|
-
ruleExecutionId?: string;
|
|
4175
|
+
ruleExecutionId?: string | undefined;
|
|
4176
4176
|
/**
|
|
4177
4177
|
* <p>The version number of the pipeline with the stage where the rule was run.</p>
|
|
4178
4178
|
* @public
|
|
4179
4179
|
*/
|
|
4180
|
-
pipelineVersion?: number;
|
|
4180
|
+
pipelineVersion?: number | undefined;
|
|
4181
4181
|
/**
|
|
4182
4182
|
* <p>The name of the stage where the rule was run.</p>
|
|
4183
4183
|
* @public
|
|
4184
4184
|
*/
|
|
4185
|
-
stageName?: string;
|
|
4185
|
+
stageName?: string | undefined;
|
|
4186
4186
|
/**
|
|
4187
4187
|
* <p>The name of the rule that was run in the stage.</p>
|
|
4188
4188
|
* @public
|
|
4189
4189
|
*/
|
|
4190
|
-
ruleName?: string;
|
|
4190
|
+
ruleName?: string | undefined;
|
|
4191
4191
|
/**
|
|
4192
4192
|
* <p>The start time of the rule execution.</p>
|
|
4193
4193
|
* @public
|
|
4194
4194
|
*/
|
|
4195
|
-
startTime?: Date;
|
|
4195
|
+
startTime?: Date | undefined;
|
|
4196
4196
|
/**
|
|
4197
4197
|
* <p>The date and time of the last change to the rule execution, in timestamp
|
|
4198
4198
|
* format.</p>
|
|
4199
4199
|
* @public
|
|
4200
4200
|
*/
|
|
4201
|
-
lastUpdateTime?: Date;
|
|
4201
|
+
lastUpdateTime?: Date | undefined;
|
|
4202
4202
|
/**
|
|
4203
4203
|
* <p>The ARN of the user who changed the rule execution details.</p>
|
|
4204
4204
|
* @public
|
|
4205
4205
|
*/
|
|
4206
|
-
updatedBy?: string;
|
|
4206
|
+
updatedBy?: string | undefined;
|
|
4207
4207
|
/**
|
|
4208
4208
|
* <p>The status of the rule execution. Status categories are <code>InProgress</code>,
|
|
4209
4209
|
* <code>Succeeded</code>, and <code>Failed</code>. </p>
|
|
4210
4210
|
* @public
|
|
4211
4211
|
*/
|
|
4212
|
-
status?: RuleExecutionStatus;
|
|
4212
|
+
status?: RuleExecutionStatus | undefined;
|
|
4213
4213
|
/**
|
|
4214
4214
|
* <p>Input details for the rule execution, such as role ARN, Region, and input
|
|
4215
4215
|
* artifacts.</p>
|
|
4216
4216
|
* @public
|
|
4217
4217
|
*/
|
|
4218
|
-
input?: RuleExecutionInput;
|
|
4218
|
+
input?: RuleExecutionInput | undefined;
|
|
4219
4219
|
/**
|
|
4220
4220
|
* <p>Output details for the rule execution, such as the rule execution result.</p>
|
|
4221
4221
|
* @public
|
|
4222
4222
|
*/
|
|
4223
|
-
output?: RuleExecutionOutput;
|
|
4223
|
+
output?: RuleExecutionOutput | undefined;
|
|
4224
4224
|
}
|
|
4225
4225
|
/**
|
|
4226
4226
|
* @public
|
|
@@ -4230,14 +4230,14 @@ export interface ListRuleExecutionsOutput {
|
|
|
4230
4230
|
* <p>Details about the output for listing rule executions.</p>
|
|
4231
4231
|
* @public
|
|
4232
4232
|
*/
|
|
4233
|
-
ruleExecutionDetails?: RuleExecutionDetail[];
|
|
4233
|
+
ruleExecutionDetails?: RuleExecutionDetail[] | undefined;
|
|
4234
4234
|
/**
|
|
4235
4235
|
* <p>A token that can be used in the next <code>ListRuleExecutions</code> call. To view all
|
|
4236
4236
|
* items in the list, continue to call this operation with each subsequent token until no
|
|
4237
4237
|
* more nextToken values are returned.</p>
|
|
4238
4238
|
* @public
|
|
4239
4239
|
*/
|
|
4240
|
-
nextToken?: string;
|
|
4240
|
+
nextToken?: string | undefined;
|
|
4241
4241
|
}
|
|
4242
4242
|
/**
|
|
4243
4243
|
* @public
|
|
@@ -4247,12 +4247,12 @@ export interface ListRuleTypesInput {
|
|
|
4247
4247
|
* <p>The rule owner to filter on.</p>
|
|
4248
4248
|
* @public
|
|
4249
4249
|
*/
|
|
4250
|
-
ruleOwnerFilter?: RuleOwner;
|
|
4250
|
+
ruleOwnerFilter?: RuleOwner | undefined;
|
|
4251
4251
|
/**
|
|
4252
4252
|
* <p>The rule Region to filter on.</p>
|
|
4253
4253
|
* @public
|
|
4254
4254
|
*/
|
|
4255
|
-
regionFilter?: string;
|
|
4255
|
+
regionFilter?: string | undefined;
|
|
4256
4256
|
}
|
|
4257
4257
|
/**
|
|
4258
4258
|
* @public
|
|
@@ -4302,18 +4302,18 @@ export interface RuleConfigurationProperty {
|
|
|
4302
4302
|
* can contain only alphanumeric characters, underscores, and hyphens.</p>
|
|
4303
4303
|
* @public
|
|
4304
4304
|
*/
|
|
4305
|
-
queryable?: boolean;
|
|
4305
|
+
queryable?: boolean | undefined;
|
|
4306
4306
|
/**
|
|
4307
4307
|
* <p>The description of the action configuration property that is displayed to
|
|
4308
4308
|
* users.</p>
|
|
4309
4309
|
* @public
|
|
4310
4310
|
*/
|
|
4311
|
-
description?: string;
|
|
4311
|
+
description?: string | undefined;
|
|
4312
4312
|
/**
|
|
4313
4313
|
* <p>The type of the configuration property.</p>
|
|
4314
4314
|
* @public
|
|
4315
4315
|
*/
|
|
4316
|
-
type?: RuleConfigurationPropertyType;
|
|
4316
|
+
type?: RuleConfigurationPropertyType | undefined;
|
|
4317
4317
|
}
|
|
4318
4318
|
/**
|
|
4319
4319
|
* <p>Returns information about the settings for a rule type.</p>
|
|
@@ -4325,7 +4325,7 @@ export interface RuleTypeSettings {
|
|
|
4325
4325
|
* initial configuration of the action provided by that service.</p>
|
|
4326
4326
|
* @public
|
|
4327
4327
|
*/
|
|
4328
|
-
thirdPartyConfigurationUrl?: string;
|
|
4328
|
+
thirdPartyConfigurationUrl?: string | undefined;
|
|
4329
4329
|
/**
|
|
4330
4330
|
* <p>The URL returned to the CodePipeline console that provides a deep link to the
|
|
4331
4331
|
* resources of the external system, such as the configuration page for a CodeDeploy
|
|
@@ -4333,7 +4333,7 @@ export interface RuleTypeSettings {
|
|
|
4333
4333
|
* pipeline.</p>
|
|
4334
4334
|
* @public
|
|
4335
4335
|
*/
|
|
4336
|
-
entityUrlTemplate?: string;
|
|
4336
|
+
entityUrlTemplate?: string | undefined;
|
|
4337
4337
|
/**
|
|
4338
4338
|
* <p>The URL returned to the CodePipeline console that contains a link to the
|
|
4339
4339
|
* top-level landing page for the external system, such as the console page for CodeDeploy.
|
|
@@ -4341,13 +4341,13 @@ export interface RuleTypeSettings {
|
|
|
4341
4341
|
* provides a link to the execution entity of the external action.</p>
|
|
4342
4342
|
* @public
|
|
4343
4343
|
*/
|
|
4344
|
-
executionUrlTemplate?: string;
|
|
4344
|
+
executionUrlTemplate?: string | undefined;
|
|
4345
4345
|
/**
|
|
4346
4346
|
* <p>The URL returned to the CodePipeline console that contains a link to the page
|
|
4347
4347
|
* where customers can update or change the configuration of the external action.</p>
|
|
4348
4348
|
* @public
|
|
4349
4349
|
*/
|
|
4350
|
-
revisionUrlTemplate?: string;
|
|
4350
|
+
revisionUrlTemplate?: string | undefined;
|
|
4351
4351
|
}
|
|
4352
4352
|
/**
|
|
4353
4353
|
* <p>The rule type, which is made up of the combined values for category, owner, provider,
|
|
@@ -4364,12 +4364,12 @@ export interface RuleType {
|
|
|
4364
4364
|
* <p>Returns information about the settings for a rule type.</p>
|
|
4365
4365
|
* @public
|
|
4366
4366
|
*/
|
|
4367
|
-
settings?: RuleTypeSettings;
|
|
4367
|
+
settings?: RuleTypeSettings | undefined;
|
|
4368
4368
|
/**
|
|
4369
4369
|
* <p>The configuration properties for the rule type.</p>
|
|
4370
4370
|
* @public
|
|
4371
4371
|
*/
|
|
4372
|
-
ruleConfigurationProperties?: RuleConfigurationProperty[];
|
|
4372
|
+
ruleConfigurationProperties?: RuleConfigurationProperty[] | undefined;
|
|
4373
4373
|
/**
|
|
4374
4374
|
* <p>Returns information about the details of an artifact.</p>
|
|
4375
4375
|
* @public
|
|
@@ -4413,12 +4413,12 @@ export interface ListTagsForResourceInput {
|
|
|
4413
4413
|
* call and does not use pagination.</p>
|
|
4414
4414
|
* @public
|
|
4415
4415
|
*/
|
|
4416
|
-
nextToken?: string;
|
|
4416
|
+
nextToken?: string | undefined;
|
|
4417
4417
|
/**
|
|
4418
4418
|
* <p>The maximum number of results to return in a single call.</p>
|
|
4419
4419
|
* @public
|
|
4420
4420
|
*/
|
|
4421
|
-
maxResults?: number;
|
|
4421
|
+
maxResults?: number | undefined;
|
|
4422
4422
|
}
|
|
4423
4423
|
/**
|
|
4424
4424
|
* @public
|
|
@@ -4428,7 +4428,7 @@ export interface ListTagsForResourceOutput {
|
|
|
4428
4428
|
* <p>The tags for the resource.</p>
|
|
4429
4429
|
* @public
|
|
4430
4430
|
*/
|
|
4431
|
-
tags?: Tag[];
|
|
4431
|
+
tags?: Tag[] | undefined;
|
|
4432
4432
|
/**
|
|
4433
4433
|
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
4434
4434
|
* returned and can be used in a subsequent API call to return the next page of the list.
|
|
@@ -4436,7 +4436,7 @@ export interface ListTagsForResourceOutput {
|
|
|
4436
4436
|
* pagination.</p>
|
|
4437
4437
|
* @public
|
|
4438
4438
|
*/
|
|
4439
|
-
nextToken?: string;
|
|
4439
|
+
nextToken?: string | undefined;
|
|
4440
4440
|
}
|
|
4441
4441
|
/**
|
|
4442
4442
|
* <p>The resource was specified in an invalid format.</p>
|
|
@@ -4459,13 +4459,13 @@ export interface ListWebhooksInput {
|
|
|
4459
4459
|
* to return the next set of webhooks in the list.</p>
|
|
4460
4460
|
* @public
|
|
4461
4461
|
*/
|
|
4462
|
-
NextToken?: string;
|
|
4462
|
+
NextToken?: string | undefined;
|
|
4463
4463
|
/**
|
|
4464
4464
|
* <p>The maximum number of results to return in a single call. To retrieve the remaining
|
|
4465
4465
|
* results, make another call with the returned nextToken value.</p>
|
|
4466
4466
|
* @public
|
|
4467
4467
|
*/
|
|
4468
|
-
MaxResults?: number;
|
|
4468
|
+
MaxResults?: number | undefined;
|
|
4469
4469
|
}
|
|
4470
4470
|
/**
|
|
4471
4471
|
* @public
|
|
@@ -4491,7 +4491,7 @@ export interface WebhookAuthConfiguration {
|
|
|
4491
4491
|
* to a valid CIDR range.</p>
|
|
4492
4492
|
* @public
|
|
4493
4493
|
*/
|
|
4494
|
-
AllowedIPRange?: string;
|
|
4494
|
+
AllowedIPRange?: string | undefined;
|
|
4495
4495
|
/**
|
|
4496
4496
|
* <p>The property used to configure GitHub authentication. For GITHUB_HMAC, only the
|
|
4497
4497
|
* <code>SecretToken</code> property must be set.</p>
|
|
@@ -4509,7 +4509,7 @@ export interface WebhookAuthConfiguration {
|
|
|
4509
4509
|
* </note>
|
|
4510
4510
|
* @public
|
|
4511
4511
|
*/
|
|
4512
|
-
SecretToken?: string;
|
|
4512
|
+
SecretToken?: string | undefined;
|
|
4513
4513
|
}
|
|
4514
4514
|
/**
|
|
4515
4515
|
* <p>The event criteria that specify when a webhook notification is sent to your
|
|
@@ -4537,7 +4537,7 @@ export interface WebhookFilterRule {
|
|
|
4537
4537
|
* action configuration properties for built-in action types, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements">Pipeline Structure Reference Action Requirements</a>.</p>
|
|
4538
4538
|
* @public
|
|
4539
4539
|
*/
|
|
4540
|
-
matchEquals?: string;
|
|
4540
|
+
matchEquals?: string | undefined;
|
|
4541
4541
|
}
|
|
4542
4542
|
/**
|
|
4543
4543
|
* <p>Represents information about a webhook and its definition.</p>
|
|
@@ -4634,28 +4634,28 @@ export interface ListWebhookItem {
|
|
|
4634
4634
|
* <p>The text of the error message about the webhook.</p>
|
|
4635
4635
|
* @public
|
|
4636
4636
|
*/
|
|
4637
|
-
errorMessage?: string;
|
|
4637
|
+
errorMessage?: string | undefined;
|
|
4638
4638
|
/**
|
|
4639
4639
|
* <p>The number code of the error.</p>
|
|
4640
4640
|
* @public
|
|
4641
4641
|
*/
|
|
4642
|
-
errorCode?: string;
|
|
4642
|
+
errorCode?: string | undefined;
|
|
4643
4643
|
/**
|
|
4644
4644
|
* <p>The date and time a webhook was last successfully triggered, in timestamp
|
|
4645
4645
|
* format.</p>
|
|
4646
4646
|
* @public
|
|
4647
4647
|
*/
|
|
4648
|
-
lastTriggered?: Date;
|
|
4648
|
+
lastTriggered?: Date | undefined;
|
|
4649
4649
|
/**
|
|
4650
4650
|
* <p>The Amazon Resource Name (ARN) of the webhook.</p>
|
|
4651
4651
|
* @public
|
|
4652
4652
|
*/
|
|
4653
|
-
arn?: string;
|
|
4653
|
+
arn?: string | undefined;
|
|
4654
4654
|
/**
|
|
4655
4655
|
* <p>Specifies the tags applied to the webhook.</p>
|
|
4656
4656
|
* @public
|
|
4657
4657
|
*/
|
|
4658
|
-
tags?: Tag[];
|
|
4658
|
+
tags?: Tag[] | undefined;
|
|
4659
4659
|
}
|
|
4660
4660
|
/**
|
|
4661
4661
|
* @public
|
|
@@ -4666,14 +4666,14 @@ export interface ListWebhooksOutput {
|
|
|
4666
4666
|
* call.</p>
|
|
4667
4667
|
* @public
|
|
4668
4668
|
*/
|
|
4669
|
-
webhooks?: ListWebhookItem[];
|
|
4669
|
+
webhooks?: ListWebhookItem[] | undefined;
|
|
4670
4670
|
/**
|
|
4671
4671
|
* <p>If the amount of returned information is significantly large, an identifier is also
|
|
4672
4672
|
* returned and can be used in a subsequent ListWebhooks call to return the next set of
|
|
4673
4673
|
* webhooks in the list. </p>
|
|
4674
4674
|
* @public
|
|
4675
4675
|
*/
|
|
4676
|
-
NextToken?: string;
|
|
4676
|
+
NextToken?: string | undefined;
|
|
4677
4677
|
}
|
|
4678
4678
|
/**
|
|
4679
4679
|
* <p>The pipeline has reached the limit for concurrent pipeline executions.</p>
|
|
@@ -4778,7 +4778,7 @@ export interface PollForJobsInput {
|
|
|
4778
4778
|
* <p>The maximum number of jobs to return in a poll for jobs call.</p>
|
|
4779
4779
|
* @public
|
|
4780
4780
|
*/
|
|
4781
|
-
maxBatchSize?: number;
|
|
4781
|
+
maxBatchSize?: number | undefined;
|
|
4782
4782
|
/**
|
|
4783
4783
|
* <p>A map of property names and values. For an action type with no queryable
|
|
4784
4784
|
* properties, this value must be null or an empty map. For an action type with a queryable
|
|
@@ -4786,7 +4786,7 @@ export interface PollForJobsInput {
|
|
|
4786
4786
|
* configuration matches the mapped value are returned.</p>
|
|
4787
4787
|
* @public
|
|
4788
4788
|
*/
|
|
4789
|
-
queryParam?: Record<string, string
|
|
4789
|
+
queryParam?: Record<string, string> | undefined;
|
|
4790
4790
|
}
|
|
4791
4791
|
/**
|
|
4792
4792
|
* <p>Represents information about a job.</p>
|
|
@@ -4797,23 +4797,23 @@ export interface Job {
|
|
|
4797
4797
|
* <p>The unique system-generated ID of the job.</p>
|
|
4798
4798
|
* @public
|
|
4799
4799
|
*/
|
|
4800
|
-
id?: string;
|
|
4800
|
+
id?: string | undefined;
|
|
4801
4801
|
/**
|
|
4802
4802
|
* <p>Other data about a job.</p>
|
|
4803
4803
|
* @public
|
|
4804
4804
|
*/
|
|
4805
|
-
data?: JobData;
|
|
4805
|
+
data?: JobData | undefined;
|
|
4806
4806
|
/**
|
|
4807
4807
|
* <p>A system-generated random number that CodePipeline uses to ensure that the
|
|
4808
4808
|
* job is being worked on by only one job worker. Use this number in an <a>AcknowledgeJob</a> request.</p>
|
|
4809
4809
|
* @public
|
|
4810
4810
|
*/
|
|
4811
|
-
nonce?: string;
|
|
4811
|
+
nonce?: string | undefined;
|
|
4812
4812
|
/**
|
|
4813
4813
|
* <p>The ID of the Amazon Web Services account to use when performing the job.</p>
|
|
4814
4814
|
* @public
|
|
4815
4815
|
*/
|
|
4816
|
-
accountId?: string;
|
|
4816
|
+
accountId?: string | undefined;
|
|
4817
4817
|
}
|
|
4818
4818
|
/**
|
|
4819
4819
|
* <p>Represents the output of a <code>PollForJobs</code> action.</p>
|
|
@@ -4824,7 +4824,7 @@ export interface PollForJobsOutput {
|
|
|
4824
4824
|
* <p>Information about the jobs to take action on.</p>
|
|
4825
4825
|
* @public
|
|
4826
4826
|
*/
|
|
4827
|
-
jobs?: Job[];
|
|
4827
|
+
jobs?: Job[] | undefined;
|
|
4828
4828
|
}
|
|
4829
4829
|
/**
|
|
4830
4830
|
* <p>Represents the input of a <code>PollForThirdPartyJobs</code> action.</p>
|
|
@@ -4840,7 +4840,7 @@ export interface PollForThirdPartyJobsInput {
|
|
|
4840
4840
|
* <p>The maximum number of jobs to return in a poll for jobs call.</p>
|
|
4841
4841
|
* @public
|
|
4842
4842
|
*/
|
|
4843
|
-
maxBatchSize?: number;
|
|
4843
|
+
maxBatchSize?: number | undefined;
|
|
4844
4844
|
}
|
|
4845
4845
|
/**
|
|
4846
4846
|
* <p>A response to a <code>PollForThirdPartyJobs</code> request returned by CodePipeline when there is a job to be worked on by a partner action.</p>
|
|
@@ -4853,12 +4853,12 @@ export interface ThirdPartyJob {
|
|
|
4853
4853
|
* access to the job and its details.</p>
|
|
4854
4854
|
* @public
|
|
4855
4855
|
*/
|
|
4856
|
-
clientId?: string;
|
|
4856
|
+
clientId?: string | undefined;
|
|
4857
4857
|
/**
|
|
4858
4858
|
* <p>The identifier used to identify the job in CodePipeline.</p>
|
|
4859
4859
|
* @public
|
|
4860
4860
|
*/
|
|
4861
|
-
jobId?: string;
|
|
4861
|
+
jobId?: string | undefined;
|
|
4862
4862
|
}
|
|
4863
4863
|
/**
|
|
4864
4864
|
* <p>Represents the output of a <code>PollForThirdPartyJobs</code> action.</p>
|
|
@@ -4869,7 +4869,7 @@ export interface PollForThirdPartyJobsOutput {
|
|
|
4869
4869
|
* <p>Information about the jobs to take action on.</p>
|
|
4870
4870
|
* @public
|
|
4871
4871
|
*/
|
|
4872
|
-
jobs?: ThirdPartyJob[];
|
|
4872
|
+
jobs?: ThirdPartyJob[] | undefined;
|
|
4873
4873
|
}
|
|
4874
4874
|
/**
|
|
4875
4875
|
* <p>Represents the input of a <code>PutActionRevision</code> action.</p>
|
|
@@ -4908,12 +4908,12 @@ export interface PutActionRevisionOutput {
|
|
|
4908
4908
|
* specified pipeline.</p>
|
|
4909
4909
|
* @public
|
|
4910
4910
|
*/
|
|
4911
|
-
newRevision?: boolean;
|
|
4911
|
+
newRevision?: boolean | undefined;
|
|
4912
4912
|
/**
|
|
4913
4913
|
* <p>The ID of the current workflow state of the pipeline.</p>
|
|
4914
4914
|
* @public
|
|
4915
4915
|
*/
|
|
4916
|
-
pipelineExecutionId?: string;
|
|
4916
|
+
pipelineExecutionId?: string | undefined;
|
|
4917
4917
|
}
|
|
4918
4918
|
/**
|
|
4919
4919
|
* <p>The approval request already received a response or has expired.</p>
|
|
@@ -4969,7 +4969,7 @@ export interface PutApprovalResultOutput {
|
|
|
4969
4969
|
* <p>The timestamp showing when the approval or rejection was submitted.</p>
|
|
4970
4970
|
* @public
|
|
4971
4971
|
*/
|
|
4972
|
-
approvedAt?: Date;
|
|
4972
|
+
approvedAt?: Date | undefined;
|
|
4973
4973
|
}
|
|
4974
4974
|
/**
|
|
4975
4975
|
* <p>The job state was specified in an invalid format.</p>
|
|
@@ -5018,7 +5018,7 @@ export interface FailureDetails {
|
|
|
5018
5018
|
* <p>The external ID of the run of the action that failed.</p>
|
|
5019
5019
|
* @public
|
|
5020
5020
|
*/
|
|
5021
|
-
externalExecutionId?: string;
|
|
5021
|
+
externalExecutionId?: string | undefined;
|
|
5022
5022
|
}
|
|
5023
5023
|
/**
|
|
5024
5024
|
* <p>Represents the input of a <code>PutJobFailureResult</code> action.</p>
|
|
@@ -5069,12 +5069,12 @@ export interface CurrentRevision {
|
|
|
5069
5069
|
* timestamp format.</p>
|
|
5070
5070
|
* @public
|
|
5071
5071
|
*/
|
|
5072
|
-
created?: Date;
|
|
5072
|
+
created?: Date | undefined;
|
|
5073
5073
|
/**
|
|
5074
5074
|
* <p>The summary of the most recent revision of the artifact.</p>
|
|
5075
5075
|
* @public
|
|
5076
5076
|
*/
|
|
5077
|
-
revisionSummary?: string;
|
|
5077
|
+
revisionSummary?: string | undefined;
|
|
5078
5078
|
}
|
|
5079
5079
|
/**
|
|
5080
5080
|
* <p>The details of the actions taken and results produced on an artifact as it passes
|
|
@@ -5086,19 +5086,19 @@ export interface ExecutionDetails {
|
|
|
5086
5086
|
* <p>The summary of the current status of the actions.</p>
|
|
5087
5087
|
* @public
|
|
5088
5088
|
*/
|
|
5089
|
-
summary?: string;
|
|
5089
|
+
summary?: string | undefined;
|
|
5090
5090
|
/**
|
|
5091
5091
|
* <p>The system-generated unique ID of this action used to identify this job worker in
|
|
5092
5092
|
* any external systems, such as CodeDeploy.</p>
|
|
5093
5093
|
* @public
|
|
5094
5094
|
*/
|
|
5095
|
-
externalExecutionId?: string;
|
|
5095
|
+
externalExecutionId?: string | undefined;
|
|
5096
5096
|
/**
|
|
5097
5097
|
* <p>The percentage of work completed on the action, represented on a scale of 0 to 100
|
|
5098
5098
|
* percent.</p>
|
|
5099
5099
|
* @public
|
|
5100
5100
|
*/
|
|
5101
|
-
percentComplete?: number;
|
|
5101
|
+
percentComplete?: number | undefined;
|
|
5102
5102
|
}
|
|
5103
5103
|
/**
|
|
5104
5104
|
* <p>Represents the input of a <code>PutJobSuccessResult</code> action.</p>
|
|
@@ -5116,7 +5116,7 @@ export interface PutJobSuccessResultInput {
|
|
|
5116
5116
|
* job.</p>
|
|
5117
5117
|
* @public
|
|
5118
5118
|
*/
|
|
5119
|
-
currentRevision?: CurrentRevision;
|
|
5119
|
+
currentRevision?: CurrentRevision | undefined;
|
|
5120
5120
|
/**
|
|
5121
5121
|
* <p>A token generated by a job worker, such as a CodeDeploy deployment ID, that a
|
|
5122
5122
|
* successful job provides to identify a custom action in progress. Future jobs use this
|
|
@@ -5125,20 +5125,20 @@ export interface PutJobSuccessResultInput {
|
|
|
5125
5125
|
* continuation token should be supplied.</p>
|
|
5126
5126
|
* @public
|
|
5127
5127
|
*/
|
|
5128
|
-
continuationToken?: string;
|
|
5128
|
+
continuationToken?: string | undefined;
|
|
5129
5129
|
/**
|
|
5130
5130
|
* <p>The execution details of the successful job, such as the actions taken by the job
|
|
5131
5131
|
* worker.</p>
|
|
5132
5132
|
* @public
|
|
5133
5133
|
*/
|
|
5134
|
-
executionDetails?: ExecutionDetails;
|
|
5134
|
+
executionDetails?: ExecutionDetails | undefined;
|
|
5135
5135
|
/**
|
|
5136
5136
|
* <p>Key-value pairs produced as output by a job worker that can be made available to a
|
|
5137
5137
|
* downstream action configuration. <code>outputVariables</code> can be included only when
|
|
5138
5138
|
* there is no continuation token on the request.</p>
|
|
5139
5139
|
* @public
|
|
5140
5140
|
*/
|
|
5141
|
-
outputVariables?: Record<string, string
|
|
5141
|
+
outputVariables?: Record<string, string> | undefined;
|
|
5142
5142
|
}
|
|
5143
5143
|
/**
|
|
5144
5144
|
* <p>Represents the input of a <code>PutThirdPartyJobFailureResult</code>
|
|
@@ -5186,7 +5186,7 @@ export interface PutThirdPartyJobSuccessResultInput {
|
|
|
5186
5186
|
* <p>Represents information about a current revision.</p>
|
|
5187
5187
|
* @public
|
|
5188
5188
|
*/
|
|
5189
|
-
currentRevision?: CurrentRevision;
|
|
5189
|
+
currentRevision?: CurrentRevision | undefined;
|
|
5190
5190
|
/**
|
|
5191
5191
|
* <p>A token generated by a job worker, such as a CodeDeploy deployment ID, that a
|
|
5192
5192
|
* successful job provides to identify a partner action in progress. Future jobs use this
|
|
@@ -5195,13 +5195,13 @@ export interface PutThirdPartyJobSuccessResultInput {
|
|
|
5195
5195
|
* continuation token should be supplied.</p>
|
|
5196
5196
|
* @public
|
|
5197
5197
|
*/
|
|
5198
|
-
continuationToken?: string;
|
|
5198
|
+
continuationToken?: string | undefined;
|
|
5199
5199
|
/**
|
|
5200
5200
|
* <p>The details of the actions taken and results produced on an artifact as it passes
|
|
5201
5201
|
* through stages in the pipeline. </p>
|
|
5202
5202
|
* @public
|
|
5203
5203
|
*/
|
|
5204
|
-
executionDetails?: ExecutionDetails;
|
|
5204
|
+
executionDetails?: ExecutionDetails | undefined;
|
|
5205
5205
|
}
|
|
5206
5206
|
/**
|
|
5207
5207
|
* <p>The specified authentication type is in an invalid format.</p>
|
|
@@ -5243,7 +5243,7 @@ export interface PutWebhookInput {
|
|
|
5243
5243
|
* <p>The tags for the webhook.</p>
|
|
5244
5244
|
* @public
|
|
5245
5245
|
*/
|
|
5246
|
-
tags?: Tag[];
|
|
5246
|
+
tags?: Tag[] | undefined;
|
|
5247
5247
|
}
|
|
5248
5248
|
/**
|
|
5249
5249
|
* @public
|
|
@@ -5254,7 +5254,7 @@ export interface PutWebhookOutput {
|
|
|
5254
5254
|
* URL, and webhook ARN.</p>
|
|
5255
5255
|
* @public
|
|
5256
5256
|
*/
|
|
5257
|
-
webhook?: ListWebhookItem;
|
|
5257
|
+
webhook?: ListWebhookItem | undefined;
|
|
5258
5258
|
}
|
|
5259
5259
|
/**
|
|
5260
5260
|
* @public
|
|
@@ -5265,7 +5265,7 @@ export interface RegisterWebhookWithThirdPartyInput {
|
|
|
5265
5265
|
* supported third party. </p>
|
|
5266
5266
|
* @public
|
|
5267
5267
|
*/
|
|
5268
|
-
webhookName?: string;
|
|
5268
|
+
webhookName?: string | undefined;
|
|
5269
5269
|
}
|
|
5270
5270
|
/**
|
|
5271
5271
|
* @public
|
|
@@ -5308,7 +5308,7 @@ export interface RetryStageExecutionOutput {
|
|
|
5308
5308
|
* <p>The ID of the current workflow execution in the failed stage.</p>
|
|
5309
5309
|
* @public
|
|
5310
5310
|
*/
|
|
5311
|
-
pipelineExecutionId?: string;
|
|
5311
|
+
pipelineExecutionId?: string | undefined;
|
|
5312
5312
|
}
|
|
5313
5313
|
/**
|
|
5314
5314
|
* <p>Unable to retry. The pipeline structure or stage state might have changed while
|
|
@@ -5458,20 +5458,20 @@ export interface StartPipelineExecutionInput {
|
|
|
5458
5458
|
* anything except an empty string.</p>
|
|
5459
5459
|
* @public
|
|
5460
5460
|
*/
|
|
5461
|
-
variables?: PipelineVariable[];
|
|
5461
|
+
variables?: PipelineVariable[] | undefined;
|
|
5462
5462
|
/**
|
|
5463
5463
|
* <p>The system-generated unique ID used to identify a unique execution
|
|
5464
5464
|
* request.</p>
|
|
5465
5465
|
* @public
|
|
5466
5466
|
*/
|
|
5467
|
-
clientRequestToken?: string;
|
|
5467
|
+
clientRequestToken?: string | undefined;
|
|
5468
5468
|
/**
|
|
5469
5469
|
* <p>A list that allows you to specify, or override, the source revision for a pipeline
|
|
5470
5470
|
* execution that's being started. A source revision is the version with all the changes to
|
|
5471
5471
|
* your application code, or source artifact, for the pipeline execution.</p>
|
|
5472
5472
|
* @public
|
|
5473
5473
|
*/
|
|
5474
|
-
sourceRevisions?: SourceRevisionOverride[];
|
|
5474
|
+
sourceRevisions?: SourceRevisionOverride[] | undefined;
|
|
5475
5475
|
}
|
|
5476
5476
|
/**
|
|
5477
5477
|
* <p>Represents the output of a <code>StartPipelineExecution</code> action.</p>
|
|
@@ -5483,7 +5483,7 @@ export interface StartPipelineExecutionOutput {
|
|
|
5483
5483
|
* started.</p>
|
|
5484
5484
|
* @public
|
|
5485
5485
|
*/
|
|
5486
|
-
pipelineExecutionId?: string;
|
|
5486
|
+
pipelineExecutionId?: string | undefined;
|
|
5487
5487
|
}
|
|
5488
5488
|
/**
|
|
5489
5489
|
* <p>The pipeline execution is already in a <code>Stopping</code> state. If you already
|
|
@@ -5538,12 +5538,12 @@ export interface StopPipelineExecutionInput {
|
|
|
5538
5538
|
* </note>
|
|
5539
5539
|
* @public
|
|
5540
5540
|
*/
|
|
5541
|
-
abandon?: boolean;
|
|
5541
|
+
abandon?: boolean | undefined;
|
|
5542
5542
|
/**
|
|
5543
5543
|
* <p>Use this option to enter comments, such as the reason the pipeline was stopped.</p>
|
|
5544
5544
|
* @public
|
|
5545
5545
|
*/
|
|
5546
|
-
reason?: string;
|
|
5546
|
+
reason?: string | undefined;
|
|
5547
5547
|
}
|
|
5548
5548
|
/**
|
|
5549
5549
|
* @public
|
|
@@ -5553,7 +5553,7 @@ export interface StopPipelineExecutionOutput {
|
|
|
5553
5553
|
* <p>The unique system-generated ID of the pipeline execution that was stopped.</p>
|
|
5554
5554
|
* @public
|
|
5555
5555
|
*/
|
|
5556
|
-
pipelineExecutionId?: string;
|
|
5556
|
+
pipelineExecutionId?: string | undefined;
|
|
5557
5557
|
}
|
|
5558
5558
|
/**
|
|
5559
5559
|
* @public
|
|
@@ -5637,7 +5637,7 @@ export interface UpdatePipelineOutput {
|
|
|
5637
5637
|
* <p>The structure of the updated pipeline.</p>
|
|
5638
5638
|
* @public
|
|
5639
5639
|
*/
|
|
5640
|
-
pipeline?: PipelineDeclaration;
|
|
5640
|
+
pipeline?: PipelineDeclaration | undefined;
|
|
5641
5641
|
}
|
|
5642
5642
|
/**
|
|
5643
5643
|
* @internal
|