@aws-sdk/client-codepipeline 3.296.0 → 3.297.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/CodePipeline.d.ts +40 -0
- package/dist-types/CodePipelineClient.d.ts +24 -4
- package/dist-types/commands/AcknowledgeJobCommand.d.ts +16 -0
- package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +16 -0
- package/dist-types/commands/DisableStageTransitionCommand.d.ts +16 -0
- package/dist-types/commands/EnableStageTransitionCommand.d.ts +16 -0
- package/dist-types/commands/GetActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/GetJobDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetPipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/GetPipelineStateCommand.d.ts +16 -0
- package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +16 -0
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListActionTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +16 -0
- package/dist-types/commands/PollForJobsCommand.d.ts +16 -0
- package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +16 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +16 -0
- package/dist-types/commands/PutApprovalResultCommand.d.ts +16 -0
- package/dist-types/commands/PutJobFailureResultCommand.d.ts +16 -0
- package/dist-types/commands/PutJobSuccessResultCommand.d.ts +16 -0
- package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +16 -0
- package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +16 -0
- package/dist-types/commands/PutWebhookCommand.d.ts +16 -0
- package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +16 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +16 -0
- package/dist-types/models/CodePipelineServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +276 -3
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListActionExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListActionTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/dist-types/pagination/ListWebhooksPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Represents the input of an AcknowledgeJob action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export interface AcknowledgeJobInput {
|
|
@@ -16,6 +17,9 @@ export interface AcknowledgeJobInput {
|
|
|
16
17
|
*/
|
|
17
18
|
nonce: string | undefined;
|
|
18
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
19
23
|
export declare enum JobStatus {
|
|
20
24
|
Created = "Created",
|
|
21
25
|
Dispatched = "Dispatched",
|
|
@@ -26,6 +30,7 @@ export declare enum JobStatus {
|
|
|
26
30
|
TimedOut = "TimedOut"
|
|
27
31
|
}
|
|
28
32
|
/**
|
|
33
|
+
* @public
|
|
29
34
|
* <p>Represents the output of an AcknowledgeJob action.</p>
|
|
30
35
|
*/
|
|
31
36
|
export interface AcknowledgeJobOutput {
|
|
@@ -35,6 +40,7 @@ export interface AcknowledgeJobOutput {
|
|
|
35
40
|
status?: JobStatus | string;
|
|
36
41
|
}
|
|
37
42
|
/**
|
|
43
|
+
* @public
|
|
38
44
|
* <p>The nonce was specified in an invalid format.</p>
|
|
39
45
|
*/
|
|
40
46
|
export declare class InvalidNonceException extends __BaseException {
|
|
@@ -46,6 +52,7 @@ export declare class InvalidNonceException extends __BaseException {
|
|
|
46
52
|
constructor(opts: __ExceptionOptionType<InvalidNonceException, __BaseException>);
|
|
47
53
|
}
|
|
48
54
|
/**
|
|
55
|
+
* @public
|
|
49
56
|
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
50
57
|
*/
|
|
51
58
|
export declare class JobNotFoundException extends __BaseException {
|
|
@@ -57,6 +64,7 @@ export declare class JobNotFoundException extends __BaseException {
|
|
|
57
64
|
constructor(opts: __ExceptionOptionType<JobNotFoundException, __BaseException>);
|
|
58
65
|
}
|
|
59
66
|
/**
|
|
67
|
+
* @public
|
|
60
68
|
* <p>The validation was specified in an invalid format.</p>
|
|
61
69
|
*/
|
|
62
70
|
export declare class ValidationException extends __BaseException {
|
|
@@ -68,6 +76,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
68
76
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
69
77
|
}
|
|
70
78
|
/**
|
|
79
|
+
* @public
|
|
71
80
|
* <p>Represents the input of an AcknowledgeThirdPartyJob action.</p>
|
|
72
81
|
*/
|
|
73
82
|
export interface AcknowledgeThirdPartyJobInput {
|
|
@@ -87,6 +96,7 @@ export interface AcknowledgeThirdPartyJobInput {
|
|
|
87
96
|
clientToken: string | undefined;
|
|
88
97
|
}
|
|
89
98
|
/**
|
|
99
|
+
* @public
|
|
90
100
|
* <p>Represents the output of an AcknowledgeThirdPartyJob action.</p>
|
|
91
101
|
*/
|
|
92
102
|
export interface AcknowledgeThirdPartyJobOutput {
|
|
@@ -96,6 +106,7 @@ export interface AcknowledgeThirdPartyJobOutput {
|
|
|
96
106
|
status?: JobStatus | string;
|
|
97
107
|
}
|
|
98
108
|
/**
|
|
109
|
+
* @public
|
|
99
110
|
* <p>The client token was specified in an invalid format</p>
|
|
100
111
|
*/
|
|
101
112
|
export declare class InvalidClientTokenException extends __BaseException {
|
|
@@ -106,6 +117,9 @@ export declare class InvalidClientTokenException extends __BaseException {
|
|
|
106
117
|
*/
|
|
107
118
|
constructor(opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>);
|
|
108
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
109
123
|
export declare enum ActionCategory {
|
|
110
124
|
Approval = "Approval",
|
|
111
125
|
Build = "Build",
|
|
@@ -115,6 +129,7 @@ export declare enum ActionCategory {
|
|
|
115
129
|
Test = "Test"
|
|
116
130
|
}
|
|
117
131
|
/**
|
|
132
|
+
* @public
|
|
118
133
|
* <p>Represents information about an action configuration.</p>
|
|
119
134
|
*/
|
|
120
135
|
export interface ActionConfiguration {
|
|
@@ -123,12 +138,16 @@ export interface ActionConfiguration {
|
|
|
123
138
|
*/
|
|
124
139
|
configuration?: Record<string, string>;
|
|
125
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
126
144
|
export declare enum ActionConfigurationPropertyType {
|
|
127
145
|
Boolean = "Boolean",
|
|
128
146
|
Number = "Number",
|
|
129
147
|
String = "String"
|
|
130
148
|
}
|
|
131
149
|
/**
|
|
150
|
+
* @public
|
|
132
151
|
* <p>Represents information about an action configuration property.</p>
|
|
133
152
|
*/
|
|
134
153
|
export interface ActionConfigurationProperty {
|
|
@@ -173,6 +192,7 @@ export interface ActionConfigurationProperty {
|
|
|
173
192
|
type?: ActionConfigurationPropertyType | string;
|
|
174
193
|
}
|
|
175
194
|
/**
|
|
195
|
+
* @public
|
|
176
196
|
* <p>Represents the context of an action in the stage of a pipeline to a job
|
|
177
197
|
* worker.</p>
|
|
178
198
|
*/
|
|
@@ -186,12 +206,16 @@ export interface ActionContext {
|
|
|
186
206
|
*/
|
|
187
207
|
actionExecutionId?: string;
|
|
188
208
|
}
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
189
212
|
export declare enum ActionOwner {
|
|
190
213
|
AWS = "AWS",
|
|
191
214
|
Custom = "Custom",
|
|
192
215
|
ThirdParty = "ThirdParty"
|
|
193
216
|
}
|
|
194
217
|
/**
|
|
218
|
+
* @public
|
|
195
219
|
* <p>Represents information about an action type.</p>
|
|
196
220
|
*/
|
|
197
221
|
export interface ActionTypeId {
|
|
@@ -241,6 +265,7 @@ export interface ActionTypeId {
|
|
|
241
265
|
version: string | undefined;
|
|
242
266
|
}
|
|
243
267
|
/**
|
|
268
|
+
* @public
|
|
244
269
|
* <p>Represents information about an artifact to be worked on, such as a test or build
|
|
245
270
|
* artifact.</p>
|
|
246
271
|
*/
|
|
@@ -256,6 +281,7 @@ export interface InputArtifact {
|
|
|
256
281
|
name: string | undefined;
|
|
257
282
|
}
|
|
258
283
|
/**
|
|
284
|
+
* @public
|
|
259
285
|
* <p>Represents information about the output of an action.</p>
|
|
260
286
|
*/
|
|
261
287
|
export interface OutputArtifact {
|
|
@@ -271,6 +297,7 @@ export interface OutputArtifact {
|
|
|
271
297
|
name: string | undefined;
|
|
272
298
|
}
|
|
273
299
|
/**
|
|
300
|
+
* @public
|
|
274
301
|
* <p>Represents information about an action declaration.</p>
|
|
275
302
|
*/
|
|
276
303
|
export interface ActionDeclaration {
|
|
@@ -299,7 +326,7 @@ export interface ActionDeclaration {
|
|
|
299
326
|
* <i>JSON:</i>
|
|
300
327
|
* </p>
|
|
301
328
|
* <p>
|
|
302
|
-
* <code>"Configuration" : { Key : Value },</code>
|
|
329
|
+
* <code>"Configuration" : \{ Key : Value \},</code>
|
|
303
330
|
* </p>
|
|
304
331
|
*/
|
|
305
332
|
configuration?: Record<string, string>;
|
|
@@ -329,6 +356,7 @@ export interface ActionDeclaration {
|
|
|
329
356
|
namespace?: string;
|
|
330
357
|
}
|
|
331
358
|
/**
|
|
359
|
+
* @public
|
|
332
360
|
* <p>Represents information about an error in AWS CodePipeline.</p>
|
|
333
361
|
*/
|
|
334
362
|
export interface ErrorDetails {
|
|
@@ -341,6 +369,9 @@ export interface ErrorDetails {
|
|
|
341
369
|
*/
|
|
342
370
|
message?: string;
|
|
343
371
|
}
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
344
375
|
export declare enum ActionExecutionStatus {
|
|
345
376
|
Abandoned = "Abandoned",
|
|
346
377
|
Failed = "Failed",
|
|
@@ -348,6 +379,7 @@ export declare enum ActionExecutionStatus {
|
|
|
348
379
|
Succeeded = "Succeeded"
|
|
349
380
|
}
|
|
350
381
|
/**
|
|
382
|
+
* @public
|
|
351
383
|
* <p>Represents information about the run of an action.</p>
|
|
352
384
|
*/
|
|
353
385
|
export interface ActionExecution {
|
|
@@ -403,6 +435,7 @@ export interface ActionExecution {
|
|
|
403
435
|
errorDetails?: ErrorDetails;
|
|
404
436
|
}
|
|
405
437
|
/**
|
|
438
|
+
* @public
|
|
406
439
|
* <p>The Amazon S3 artifact location for an action's artifacts.</p>
|
|
407
440
|
*/
|
|
408
441
|
export interface S3Location {
|
|
@@ -416,6 +449,7 @@ export interface S3Location {
|
|
|
416
449
|
key?: string;
|
|
417
450
|
}
|
|
418
451
|
/**
|
|
452
|
+
* @public
|
|
419
453
|
* <p>Artifact details for the action execution, such as the artifact location.</p>
|
|
420
454
|
*/
|
|
421
455
|
export interface ArtifactDetail {
|
|
@@ -429,6 +463,7 @@ export interface ArtifactDetail {
|
|
|
429
463
|
s3location?: S3Location;
|
|
430
464
|
}
|
|
431
465
|
/**
|
|
466
|
+
* @public
|
|
432
467
|
* <p>Input information used for an action execution.</p>
|
|
433
468
|
*/
|
|
434
469
|
export interface ActionExecutionInput {
|
|
@@ -466,6 +501,7 @@ export interface ActionExecutionInput {
|
|
|
466
501
|
namespace?: string;
|
|
467
502
|
}
|
|
468
503
|
/**
|
|
504
|
+
* @public
|
|
469
505
|
* <p>Execution result information, such as the external execution ID.</p>
|
|
470
506
|
*/
|
|
471
507
|
export interface ActionExecutionResult {
|
|
@@ -484,6 +520,7 @@ export interface ActionExecutionResult {
|
|
|
484
520
|
externalExecutionUrl?: string;
|
|
485
521
|
}
|
|
486
522
|
/**
|
|
523
|
+
* @public
|
|
487
524
|
* <p>Output details listed for an action execution, such as the action execution
|
|
488
525
|
* result.</p>
|
|
489
526
|
*/
|
|
@@ -505,6 +542,7 @@ export interface ActionExecutionOutput {
|
|
|
505
542
|
outputVariables?: Record<string, string>;
|
|
506
543
|
}
|
|
507
544
|
/**
|
|
545
|
+
* @public
|
|
508
546
|
* <p>Returns information about an execution of an action, including the action execution
|
|
509
547
|
* ID, and the name, version, and timing of the action. </p>
|
|
510
548
|
*/
|
|
@@ -553,6 +591,7 @@ export interface ActionExecutionDetail {
|
|
|
553
591
|
output?: ActionExecutionOutput;
|
|
554
592
|
}
|
|
555
593
|
/**
|
|
594
|
+
* @public
|
|
556
595
|
* <p>Filter values for the action execution.</p>
|
|
557
596
|
*/
|
|
558
597
|
export interface ActionExecutionFilter {
|
|
@@ -562,6 +601,7 @@ export interface ActionExecutionFilter {
|
|
|
562
601
|
pipelineExecutionId?: string;
|
|
563
602
|
}
|
|
564
603
|
/**
|
|
604
|
+
* @public
|
|
565
605
|
* <p>The specified action cannot be found.</p>
|
|
566
606
|
*/
|
|
567
607
|
export declare class ActionNotFoundException extends __BaseException {
|
|
@@ -573,6 +613,7 @@ export declare class ActionNotFoundException extends __BaseException {
|
|
|
573
613
|
constructor(opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>);
|
|
574
614
|
}
|
|
575
615
|
/**
|
|
616
|
+
* @public
|
|
576
617
|
* <p>Represents information about the version (or revision) of an action.</p>
|
|
577
618
|
*/
|
|
578
619
|
export interface ActionRevision {
|
|
@@ -593,6 +634,7 @@ export interface ActionRevision {
|
|
|
593
634
|
created: Date | undefined;
|
|
594
635
|
}
|
|
595
636
|
/**
|
|
637
|
+
* @public
|
|
596
638
|
* <p>Represents information about the state of an action.</p>
|
|
597
639
|
*/
|
|
598
640
|
export interface ActionState {
|
|
@@ -620,6 +662,7 @@ export interface ActionState {
|
|
|
620
662
|
revisionUrl?: string;
|
|
621
663
|
}
|
|
622
664
|
/**
|
|
665
|
+
* @public
|
|
623
666
|
* <p>Returns information about the details of an artifact.</p>
|
|
624
667
|
*/
|
|
625
668
|
export interface ArtifactDetails {
|
|
@@ -633,6 +676,7 @@ export interface ArtifactDetails {
|
|
|
633
676
|
maximumCount: number | undefined;
|
|
634
677
|
}
|
|
635
678
|
/**
|
|
679
|
+
* @public
|
|
636
680
|
* <p>Returns information about the settings for an action type.</p>
|
|
637
681
|
*/
|
|
638
682
|
export interface ActionTypeSettings {
|
|
@@ -662,6 +706,7 @@ export interface ActionTypeSettings {
|
|
|
662
706
|
revisionUrlTemplate?: string;
|
|
663
707
|
}
|
|
664
708
|
/**
|
|
709
|
+
* @public
|
|
665
710
|
* <p>Returns information about the details of an action type.</p>
|
|
666
711
|
*/
|
|
667
712
|
export interface ActionType {
|
|
@@ -687,6 +732,7 @@ export interface ActionType {
|
|
|
687
732
|
outputArtifactDetails: ArtifactDetails | undefined;
|
|
688
733
|
}
|
|
689
734
|
/**
|
|
735
|
+
* @public
|
|
690
736
|
* <p>Information about parameters for artifacts associated with the action type, such as
|
|
691
737
|
* the minimum and maximum artifacts allowed.</p>
|
|
692
738
|
*/
|
|
@@ -705,6 +751,7 @@ export interface ActionTypeArtifactDetails {
|
|
|
705
751
|
maximumCount: number | undefined;
|
|
706
752
|
}
|
|
707
753
|
/**
|
|
754
|
+
* @public
|
|
708
755
|
* <p>Details about the polling configuration for the <code>JobWorker</code> action engine,
|
|
709
756
|
* or executor.</p>
|
|
710
757
|
*/
|
|
@@ -721,6 +768,7 @@ export interface JobWorkerExecutorConfiguration {
|
|
|
721
768
|
pollingServicePrincipals?: string[];
|
|
722
769
|
}
|
|
723
770
|
/**
|
|
771
|
+
* @public
|
|
724
772
|
* <p>Details about the configuration for the <code>Lambda</code> action engine, or
|
|
725
773
|
* executor.</p>
|
|
726
774
|
*/
|
|
@@ -731,6 +779,7 @@ export interface LambdaExecutorConfiguration {
|
|
|
731
779
|
lambdaFunctionArn: string | undefined;
|
|
732
780
|
}
|
|
733
781
|
/**
|
|
782
|
+
* @public
|
|
734
783
|
* <p>The action engine, or executor, related to the supported integration model used to
|
|
735
784
|
* create and update the action type. The available executor types are <code>Lambda</code>
|
|
736
785
|
* and <code>JobWorker</code>.</p>
|
|
@@ -745,11 +794,15 @@ export interface ExecutorConfiguration {
|
|
|
745
794
|
*/
|
|
746
795
|
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration;
|
|
747
796
|
}
|
|
797
|
+
/**
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
748
800
|
export declare enum ExecutorType {
|
|
749
801
|
JobWorker = "JobWorker",
|
|
750
802
|
Lambda = "Lambda"
|
|
751
803
|
}
|
|
752
804
|
/**
|
|
805
|
+
* @public
|
|
753
806
|
* <p>The action engine, or executor, for an action type created for a provider, where the
|
|
754
807
|
* action is to be used by customers of the provider. The action engine is associated with
|
|
755
808
|
* the model used to create and update the action, such as the Lambda integration
|
|
@@ -784,6 +837,7 @@ export interface ActionTypeExecutor {
|
|
|
784
837
|
jobTimeout?: number;
|
|
785
838
|
}
|
|
786
839
|
/**
|
|
840
|
+
* @public
|
|
787
841
|
* <p>Specifies the category, owner, provider, and version of the action type.</p>
|
|
788
842
|
*/
|
|
789
843
|
export interface ActionTypeIdentifier {
|
|
@@ -839,6 +893,7 @@ export interface ActionTypeIdentifier {
|
|
|
839
893
|
version: string | undefined;
|
|
840
894
|
}
|
|
841
895
|
/**
|
|
896
|
+
* @public
|
|
842
897
|
* <p>Details identifying the users with permissions to use the action type.</p>
|
|
843
898
|
*/
|
|
844
899
|
export interface ActionTypePermissions {
|
|
@@ -849,6 +904,7 @@ export interface ActionTypePermissions {
|
|
|
849
904
|
allowedAccounts: string[] | undefined;
|
|
850
905
|
}
|
|
851
906
|
/**
|
|
907
|
+
* @public
|
|
852
908
|
* <p>Represents information about each property specified in the action configuration, such
|
|
853
909
|
* as the description and key name that display for the customer using the action
|
|
854
910
|
* type.</p>
|
|
@@ -884,6 +940,7 @@ export interface ActionTypeProperty {
|
|
|
884
940
|
description?: string;
|
|
885
941
|
}
|
|
886
942
|
/**
|
|
943
|
+
* @public
|
|
887
944
|
* <p>Returns information about URLs for web pages that display to customers as links on the
|
|
888
945
|
* pipeline view, such as an external configuration page for the action type.</p>
|
|
889
946
|
*/
|
|
@@ -912,6 +969,7 @@ export interface ActionTypeUrls {
|
|
|
912
969
|
revisionUrlTemplate?: string;
|
|
913
970
|
}
|
|
914
971
|
/**
|
|
972
|
+
* @public
|
|
915
973
|
* <p>The parameters for the action type definition that are provided when the action type
|
|
916
974
|
* is created or updated.</p>
|
|
917
975
|
*/
|
|
@@ -955,6 +1013,7 @@ export interface ActionTypeDeclaration {
|
|
|
955
1013
|
urls?: ActionTypeUrls;
|
|
956
1014
|
}
|
|
957
1015
|
/**
|
|
1016
|
+
* @public
|
|
958
1017
|
* <p>The specified action type cannot be found.</p>
|
|
959
1018
|
*/
|
|
960
1019
|
export declare class ActionTypeNotFoundException extends __BaseException {
|
|
@@ -966,6 +1025,7 @@ export declare class ActionTypeNotFoundException extends __BaseException {
|
|
|
966
1025
|
constructor(opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>);
|
|
967
1026
|
}
|
|
968
1027
|
/**
|
|
1028
|
+
* @public
|
|
969
1029
|
* <p>The approval action has already been approved or rejected.</p>
|
|
970
1030
|
*/
|
|
971
1031
|
export declare class ApprovalAlreadyCompletedException extends __BaseException {
|
|
@@ -976,11 +1036,15 @@ export declare class ApprovalAlreadyCompletedException extends __BaseException {
|
|
|
976
1036
|
*/
|
|
977
1037
|
constructor(opts: __ExceptionOptionType<ApprovalAlreadyCompletedException, __BaseException>);
|
|
978
1038
|
}
|
|
1039
|
+
/**
|
|
1040
|
+
* @public
|
|
1041
|
+
*/
|
|
979
1042
|
export declare enum ApprovalStatus {
|
|
980
1043
|
Approved = "Approved",
|
|
981
1044
|
Rejected = "Rejected"
|
|
982
1045
|
}
|
|
983
1046
|
/**
|
|
1047
|
+
* @public
|
|
984
1048
|
* <p>Represents information about the result of an approval request.</p>
|
|
985
1049
|
*/
|
|
986
1050
|
export interface ApprovalResult {
|
|
@@ -995,6 +1059,7 @@ export interface ApprovalResult {
|
|
|
995
1059
|
status: ApprovalStatus | string | undefined;
|
|
996
1060
|
}
|
|
997
1061
|
/**
|
|
1062
|
+
* @public
|
|
998
1063
|
* <p>The location of the S3 bucket that contains a revision.</p>
|
|
999
1064
|
*/
|
|
1000
1065
|
export interface S3ArtifactLocation {
|
|
@@ -1008,10 +1073,14 @@ export interface S3ArtifactLocation {
|
|
|
1008
1073
|
*/
|
|
1009
1074
|
objectKey: string | undefined;
|
|
1010
1075
|
}
|
|
1076
|
+
/**
|
|
1077
|
+
* @public
|
|
1078
|
+
*/
|
|
1011
1079
|
export declare enum ArtifactLocationType {
|
|
1012
1080
|
S3 = "S3"
|
|
1013
1081
|
}
|
|
1014
1082
|
/**
|
|
1083
|
+
* @public
|
|
1015
1084
|
* <p>Represents information about the location of an artifact.</p>
|
|
1016
1085
|
*/
|
|
1017
1086
|
export interface ArtifactLocation {
|
|
@@ -1025,6 +1094,7 @@ export interface ArtifactLocation {
|
|
|
1025
1094
|
s3Location?: S3ArtifactLocation;
|
|
1026
1095
|
}
|
|
1027
1096
|
/**
|
|
1097
|
+
* @public
|
|
1028
1098
|
* <p>Represents information about an artifact that is worked on by actions in the
|
|
1029
1099
|
* pipeline.</p>
|
|
1030
1100
|
*/
|
|
@@ -1044,6 +1114,7 @@ export interface Artifact {
|
|
|
1044
1114
|
location?: ArtifactLocation;
|
|
1045
1115
|
}
|
|
1046
1116
|
/**
|
|
1117
|
+
* @public
|
|
1047
1118
|
* <p>Represents revision details of an artifact. </p>
|
|
1048
1119
|
*/
|
|
1049
1120
|
export interface ArtifactRevision {
|
|
@@ -1079,10 +1150,14 @@ export interface ArtifactRevision {
|
|
|
1079
1150
|
*/
|
|
1080
1151
|
revisionUrl?: string;
|
|
1081
1152
|
}
|
|
1153
|
+
/**
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1082
1156
|
export declare enum EncryptionKeyType {
|
|
1083
1157
|
KMS = "KMS"
|
|
1084
1158
|
}
|
|
1085
1159
|
/**
|
|
1160
|
+
* @public
|
|
1086
1161
|
* <p>Represents information about the key used to encrypt data in the artifact store,
|
|
1087
1162
|
* such as an AWS Key Management Service (AWS KMS) key.</p>
|
|
1088
1163
|
*/
|
|
@@ -1103,10 +1178,14 @@ export interface EncryptionKey {
|
|
|
1103
1178
|
*/
|
|
1104
1179
|
type: EncryptionKeyType | string | undefined;
|
|
1105
1180
|
}
|
|
1181
|
+
/**
|
|
1182
|
+
* @public
|
|
1183
|
+
*/
|
|
1106
1184
|
export declare enum ArtifactStoreType {
|
|
1107
1185
|
S3 = "S3"
|
|
1108
1186
|
}
|
|
1109
1187
|
/**
|
|
1188
|
+
* @public
|
|
1110
1189
|
* <p>The S3 bucket where artifacts for the pipeline are stored.</p>
|
|
1111
1190
|
* <note>
|
|
1112
1191
|
* <p>You must include either <code>artifactStore</code> or
|
|
@@ -1136,6 +1215,7 @@ export interface ArtifactStore {
|
|
|
1136
1215
|
encryptionKey?: EncryptionKey;
|
|
1137
1216
|
}
|
|
1138
1217
|
/**
|
|
1218
|
+
* @public
|
|
1139
1219
|
* <p>Represents an AWS session credentials object. These credentials are temporary
|
|
1140
1220
|
* credentials that are issued by AWS Secure Token Service (STS). They can be used to
|
|
1141
1221
|
* access input and output artifacts in the S3 bucket used to store artifact for the
|
|
@@ -1155,10 +1235,14 @@ export interface AWSSessionCredentials {
|
|
|
1155
1235
|
*/
|
|
1156
1236
|
sessionToken: string | undefined;
|
|
1157
1237
|
}
|
|
1238
|
+
/**
|
|
1239
|
+
* @public
|
|
1240
|
+
*/
|
|
1158
1241
|
export declare enum BlockerType {
|
|
1159
1242
|
Schedule = "Schedule"
|
|
1160
1243
|
}
|
|
1161
1244
|
/**
|
|
1245
|
+
* @public
|
|
1162
1246
|
* <p>Reserved for future use.</p>
|
|
1163
1247
|
*/
|
|
1164
1248
|
export interface BlockerDeclaration {
|
|
@@ -1172,6 +1256,7 @@ export interface BlockerDeclaration {
|
|
|
1172
1256
|
type: BlockerType | string | undefined;
|
|
1173
1257
|
}
|
|
1174
1258
|
/**
|
|
1259
|
+
* @public
|
|
1175
1260
|
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
1176
1261
|
*/
|
|
1177
1262
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
@@ -1183,6 +1268,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
1183
1268
|
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
1184
1269
|
}
|
|
1185
1270
|
/**
|
|
1271
|
+
* @public
|
|
1186
1272
|
* <p>A tag is a key-value pair that is used to manage the resource.</p>
|
|
1187
1273
|
*/
|
|
1188
1274
|
export interface Tag {
|
|
@@ -1196,6 +1282,7 @@ export interface Tag {
|
|
|
1196
1282
|
value: string | undefined;
|
|
1197
1283
|
}
|
|
1198
1284
|
/**
|
|
1285
|
+
* @public
|
|
1199
1286
|
* <p>Represents the input of a CreateCustomActionType operation.</p>
|
|
1200
1287
|
*/
|
|
1201
1288
|
export interface CreateCustomActionTypeInput {
|
|
@@ -1221,7 +1308,7 @@ export interface CreateCustomActionTypeInput {
|
|
|
1221
1308
|
* <p>The configuration properties for the custom action.</p>
|
|
1222
1309
|
* <note>
|
|
1223
1310
|
* <p>You can refer to a name in the configuration properties of the custom action
|
|
1224
|
-
* within the URL templates by following the format of {Config:name}, as long as the
|
|
1311
|
+
* within the URL templates by following the format of \{Config:name\}, as long as the
|
|
1225
1312
|
* configuration property is both required and not secret. For more information, see
|
|
1226
1313
|
* <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/how-to-create-custom-action.html">Create a
|
|
1227
1314
|
* Custom Action for a Pipeline</a>.</p>
|
|
@@ -1242,6 +1329,7 @@ export interface CreateCustomActionTypeInput {
|
|
|
1242
1329
|
tags?: Tag[];
|
|
1243
1330
|
}
|
|
1244
1331
|
/**
|
|
1332
|
+
* @public
|
|
1245
1333
|
* <p>Represents the output of a <code>CreateCustomActionType</code> operation.</p>
|
|
1246
1334
|
*/
|
|
1247
1335
|
export interface CreateCustomActionTypeOutput {
|
|
@@ -1255,6 +1343,7 @@ export interface CreateCustomActionTypeOutput {
|
|
|
1255
1343
|
tags?: Tag[];
|
|
1256
1344
|
}
|
|
1257
1345
|
/**
|
|
1346
|
+
* @public
|
|
1258
1347
|
* <p>The specified resource tags are invalid.</p>
|
|
1259
1348
|
*/
|
|
1260
1349
|
export declare class InvalidTagsException extends __BaseException {
|
|
@@ -1266,6 +1355,7 @@ export declare class InvalidTagsException extends __BaseException {
|
|
|
1266
1355
|
constructor(opts: __ExceptionOptionType<InvalidTagsException, __BaseException>);
|
|
1267
1356
|
}
|
|
1268
1357
|
/**
|
|
1358
|
+
* @public
|
|
1269
1359
|
* <p>The number of pipelines associated with the AWS account has exceeded the limit
|
|
1270
1360
|
* allowed for the account.</p>
|
|
1271
1361
|
*/
|
|
@@ -1278,6 +1368,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
1278
1368
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1279
1369
|
}
|
|
1280
1370
|
/**
|
|
1371
|
+
* @public
|
|
1281
1372
|
* <p>The tags limit for a resource has been exceeded.</p>
|
|
1282
1373
|
*/
|
|
1283
1374
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -1289,6 +1380,7 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
1289
1380
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1290
1381
|
}
|
|
1291
1382
|
/**
|
|
1383
|
+
* @public
|
|
1292
1384
|
* <p>Represents information about a stage and its definition.</p>
|
|
1293
1385
|
*/
|
|
1294
1386
|
export interface StageDeclaration {
|
|
@@ -1306,6 +1398,7 @@ export interface StageDeclaration {
|
|
|
1306
1398
|
actions: ActionDeclaration[] | undefined;
|
|
1307
1399
|
}
|
|
1308
1400
|
/**
|
|
1401
|
+
* @public
|
|
1309
1402
|
* <p>Represents the structure of actions and stages to be performed in the
|
|
1310
1403
|
* pipeline.</p>
|
|
1311
1404
|
*/
|
|
@@ -1354,6 +1447,7 @@ export interface PipelineDeclaration {
|
|
|
1354
1447
|
version?: number;
|
|
1355
1448
|
}
|
|
1356
1449
|
/**
|
|
1450
|
+
* @public
|
|
1357
1451
|
* <p>Represents the input of a <code>CreatePipeline</code> action.</p>
|
|
1358
1452
|
*/
|
|
1359
1453
|
export interface CreatePipelineInput {
|
|
@@ -1368,6 +1462,7 @@ export interface CreatePipelineInput {
|
|
|
1368
1462
|
tags?: Tag[];
|
|
1369
1463
|
}
|
|
1370
1464
|
/**
|
|
1465
|
+
* @public
|
|
1371
1466
|
* <p>Represents the output of a <code>CreatePipeline</code> action.</p>
|
|
1372
1467
|
*/
|
|
1373
1468
|
export interface CreatePipelineOutput {
|
|
@@ -1382,6 +1477,7 @@ export interface CreatePipelineOutput {
|
|
|
1382
1477
|
tags?: Tag[];
|
|
1383
1478
|
}
|
|
1384
1479
|
/**
|
|
1480
|
+
* @public
|
|
1385
1481
|
* <p>The action declaration was specified in an invalid format.</p>
|
|
1386
1482
|
*/
|
|
1387
1483
|
export declare class InvalidActionDeclarationException extends __BaseException {
|
|
@@ -1393,6 +1489,7 @@ export declare class InvalidActionDeclarationException extends __BaseException {
|
|
|
1393
1489
|
constructor(opts: __ExceptionOptionType<InvalidActionDeclarationException, __BaseException>);
|
|
1394
1490
|
}
|
|
1395
1491
|
/**
|
|
1492
|
+
* @public
|
|
1396
1493
|
* <p>Reserved for future use.</p>
|
|
1397
1494
|
*/
|
|
1398
1495
|
export declare class InvalidBlockerDeclarationException extends __BaseException {
|
|
@@ -1404,6 +1501,7 @@ export declare class InvalidBlockerDeclarationException extends __BaseException
|
|
|
1404
1501
|
constructor(opts: __ExceptionOptionType<InvalidBlockerDeclarationException, __BaseException>);
|
|
1405
1502
|
}
|
|
1406
1503
|
/**
|
|
1504
|
+
* @public
|
|
1407
1505
|
* <p>The stage declaration was specified in an invalid format.</p>
|
|
1408
1506
|
*/
|
|
1409
1507
|
export declare class InvalidStageDeclarationException extends __BaseException {
|
|
@@ -1415,6 +1513,7 @@ export declare class InvalidStageDeclarationException extends __BaseException {
|
|
|
1415
1513
|
constructor(opts: __ExceptionOptionType<InvalidStageDeclarationException, __BaseException>);
|
|
1416
1514
|
}
|
|
1417
1515
|
/**
|
|
1516
|
+
* @public
|
|
1418
1517
|
* <p>The structure was specified in an invalid format.</p>
|
|
1419
1518
|
*/
|
|
1420
1519
|
export declare class InvalidStructureException extends __BaseException {
|
|
@@ -1426,6 +1525,7 @@ export declare class InvalidStructureException extends __BaseException {
|
|
|
1426
1525
|
constructor(opts: __ExceptionOptionType<InvalidStructureException, __BaseException>);
|
|
1427
1526
|
}
|
|
1428
1527
|
/**
|
|
1528
|
+
* @public
|
|
1429
1529
|
* <p>The specified pipeline name is already in use.</p>
|
|
1430
1530
|
*/
|
|
1431
1531
|
export declare class PipelineNameInUseException extends __BaseException {
|
|
@@ -1437,6 +1537,7 @@ export declare class PipelineNameInUseException extends __BaseException {
|
|
|
1437
1537
|
constructor(opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>);
|
|
1438
1538
|
}
|
|
1439
1539
|
/**
|
|
1540
|
+
* @public
|
|
1440
1541
|
* <p>Represents the input of a <code>DeleteCustomActionType</code> operation. The custom
|
|
1441
1542
|
* action will be marked as deleted.</p>
|
|
1442
1543
|
*/
|
|
@@ -1457,6 +1558,7 @@ export interface DeleteCustomActionTypeInput {
|
|
|
1457
1558
|
version: string | undefined;
|
|
1458
1559
|
}
|
|
1459
1560
|
/**
|
|
1561
|
+
* @public
|
|
1460
1562
|
* <p>Represents the input of a <code>DeletePipeline</code> action.</p>
|
|
1461
1563
|
*/
|
|
1462
1564
|
export interface DeletePipelineInput {
|
|
@@ -1465,23 +1567,36 @@ export interface DeletePipelineInput {
|
|
|
1465
1567
|
*/
|
|
1466
1568
|
name: string | undefined;
|
|
1467
1569
|
}
|
|
1570
|
+
/**
|
|
1571
|
+
* @public
|
|
1572
|
+
*/
|
|
1468
1573
|
export interface DeleteWebhookInput {
|
|
1469
1574
|
/**
|
|
1470
1575
|
* <p>The name of the webhook you want to delete.</p>
|
|
1471
1576
|
*/
|
|
1472
1577
|
name: string | undefined;
|
|
1473
1578
|
}
|
|
1579
|
+
/**
|
|
1580
|
+
* @public
|
|
1581
|
+
*/
|
|
1474
1582
|
export interface DeleteWebhookOutput {
|
|
1475
1583
|
}
|
|
1584
|
+
/**
|
|
1585
|
+
* @public
|
|
1586
|
+
*/
|
|
1476
1587
|
export interface DeregisterWebhookWithThirdPartyInput {
|
|
1477
1588
|
/**
|
|
1478
1589
|
* <p>The name of the webhook you want to deregister.</p>
|
|
1479
1590
|
*/
|
|
1480
1591
|
webhookName?: string;
|
|
1481
1592
|
}
|
|
1593
|
+
/**
|
|
1594
|
+
* @public
|
|
1595
|
+
*/
|
|
1482
1596
|
export interface DeregisterWebhookWithThirdPartyOutput {
|
|
1483
1597
|
}
|
|
1484
1598
|
/**
|
|
1599
|
+
* @public
|
|
1485
1600
|
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
1486
1601
|
* found.</p>
|
|
1487
1602
|
*/
|
|
@@ -1493,11 +1608,15 @@ export declare class WebhookNotFoundException extends __BaseException {
|
|
|
1493
1608
|
*/
|
|
1494
1609
|
constructor(opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>);
|
|
1495
1610
|
}
|
|
1611
|
+
/**
|
|
1612
|
+
* @public
|
|
1613
|
+
*/
|
|
1496
1614
|
export declare enum StageTransitionType {
|
|
1497
1615
|
Inbound = "Inbound",
|
|
1498
1616
|
Outbound = "Outbound"
|
|
1499
1617
|
}
|
|
1500
1618
|
/**
|
|
1619
|
+
* @public
|
|
1501
1620
|
* <p>Represents the input of a <code>DisableStageTransition</code> action.</p>
|
|
1502
1621
|
*/
|
|
1503
1622
|
export interface DisableStageTransitionInput {
|
|
@@ -1526,6 +1645,7 @@ export interface DisableStageTransitionInput {
|
|
|
1526
1645
|
reason: string | undefined;
|
|
1527
1646
|
}
|
|
1528
1647
|
/**
|
|
1648
|
+
* @public
|
|
1529
1649
|
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
1530
1650
|
*/
|
|
1531
1651
|
export declare class PipelineNotFoundException extends __BaseException {
|
|
@@ -1537,6 +1657,7 @@ export declare class PipelineNotFoundException extends __BaseException {
|
|
|
1537
1657
|
constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
|
|
1538
1658
|
}
|
|
1539
1659
|
/**
|
|
1660
|
+
* @public
|
|
1540
1661
|
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
1541
1662
|
*/
|
|
1542
1663
|
export declare class StageNotFoundException extends __BaseException {
|
|
@@ -1548,6 +1669,7 @@ export declare class StageNotFoundException extends __BaseException {
|
|
|
1548
1669
|
constructor(opts: __ExceptionOptionType<StageNotFoundException, __BaseException>);
|
|
1549
1670
|
}
|
|
1550
1671
|
/**
|
|
1672
|
+
* @public
|
|
1551
1673
|
* <p>Represents the input of an <code>EnableStageTransition</code> action.</p>
|
|
1552
1674
|
*/
|
|
1553
1675
|
export interface EnableStageTransitionInput {
|
|
@@ -1568,6 +1690,9 @@ export interface EnableStageTransitionInput {
|
|
|
1568
1690
|
*/
|
|
1569
1691
|
transitionType: StageTransitionType | string | undefined;
|
|
1570
1692
|
}
|
|
1693
|
+
/**
|
|
1694
|
+
* @public
|
|
1695
|
+
*/
|
|
1571
1696
|
export interface GetActionTypeInput {
|
|
1572
1697
|
/**
|
|
1573
1698
|
* <p>Defines what kind of action can be taken in the stage. The following are the valid
|
|
@@ -1621,6 +1746,9 @@ export interface GetActionTypeInput {
|
|
|
1621
1746
|
*/
|
|
1622
1747
|
version: string | undefined;
|
|
1623
1748
|
}
|
|
1749
|
+
/**
|
|
1750
|
+
* @public
|
|
1751
|
+
*/
|
|
1624
1752
|
export interface GetActionTypeOutput {
|
|
1625
1753
|
/**
|
|
1626
1754
|
* <p>The action type information for the requested action type, such as the action type
|
|
@@ -1629,6 +1757,7 @@ export interface GetActionTypeOutput {
|
|
|
1629
1757
|
actionType?: ActionTypeDeclaration;
|
|
1630
1758
|
}
|
|
1631
1759
|
/**
|
|
1760
|
+
* @public
|
|
1632
1761
|
* <p>Represents the input of a <code>GetJobDetails</code> action.</p>
|
|
1633
1762
|
*/
|
|
1634
1763
|
export interface GetJobDetailsInput {
|
|
@@ -1638,6 +1767,7 @@ export interface GetJobDetailsInput {
|
|
|
1638
1767
|
jobId: string | undefined;
|
|
1639
1768
|
}
|
|
1640
1769
|
/**
|
|
1770
|
+
* @public
|
|
1641
1771
|
* <p>Represents information about a stage to a job worker.</p>
|
|
1642
1772
|
*/
|
|
1643
1773
|
export interface StageContext {
|
|
@@ -1647,6 +1777,7 @@ export interface StageContext {
|
|
|
1647
1777
|
name?: string;
|
|
1648
1778
|
}
|
|
1649
1779
|
/**
|
|
1780
|
+
* @public
|
|
1650
1781
|
* <p>Represents information about a pipeline to a job worker.</p>
|
|
1651
1782
|
* <note>
|
|
1652
1783
|
* <p>PipelineContext contains <code>pipelineArn</code> and
|
|
@@ -1679,6 +1810,7 @@ export interface PipelineContext {
|
|
|
1679
1810
|
pipelineExecutionId?: string;
|
|
1680
1811
|
}
|
|
1681
1812
|
/**
|
|
1813
|
+
* @public
|
|
1682
1814
|
* <p>Represents other information about a job required for a job worker to complete the
|
|
1683
1815
|
* job.</p>
|
|
1684
1816
|
*/
|
|
@@ -1726,6 +1858,7 @@ export interface JobData {
|
|
|
1726
1858
|
encryptionKey?: EncryptionKey;
|
|
1727
1859
|
}
|
|
1728
1860
|
/**
|
|
1861
|
+
* @public
|
|
1729
1862
|
* <p>Represents information about the details of a job.</p>
|
|
1730
1863
|
*/
|
|
1731
1864
|
export interface JobDetails {
|
|
@@ -1744,6 +1877,7 @@ export interface JobDetails {
|
|
|
1744
1877
|
accountId?: string;
|
|
1745
1878
|
}
|
|
1746
1879
|
/**
|
|
1880
|
+
* @public
|
|
1747
1881
|
* <p>Represents the output of a <code>GetJobDetails</code> action.</p>
|
|
1748
1882
|
*/
|
|
1749
1883
|
export interface GetJobDetailsOutput {
|
|
@@ -1757,6 +1891,7 @@ export interface GetJobDetailsOutput {
|
|
|
1757
1891
|
jobDetails?: JobDetails;
|
|
1758
1892
|
}
|
|
1759
1893
|
/**
|
|
1894
|
+
* @public
|
|
1760
1895
|
* <p>Represents the input of a <code>GetPipeline</code> action.</p>
|
|
1761
1896
|
*/
|
|
1762
1897
|
export interface GetPipelineInput {
|
|
@@ -1772,6 +1907,7 @@ export interface GetPipelineInput {
|
|
|
1772
1907
|
version?: number;
|
|
1773
1908
|
}
|
|
1774
1909
|
/**
|
|
1910
|
+
* @public
|
|
1775
1911
|
* <p>Information about a pipeline.</p>
|
|
1776
1912
|
*/
|
|
1777
1913
|
export interface PipelineMetadata {
|
|
@@ -1789,6 +1925,7 @@ export interface PipelineMetadata {
|
|
|
1789
1925
|
updated?: Date;
|
|
1790
1926
|
}
|
|
1791
1927
|
/**
|
|
1928
|
+
* @public
|
|
1792
1929
|
* <p>Represents the output of a <code>GetPipeline</code> action.</p>
|
|
1793
1930
|
*/
|
|
1794
1931
|
export interface GetPipelineOutput {
|
|
@@ -1804,6 +1941,7 @@ export interface GetPipelineOutput {
|
|
|
1804
1941
|
metadata?: PipelineMetadata;
|
|
1805
1942
|
}
|
|
1806
1943
|
/**
|
|
1944
|
+
* @public
|
|
1807
1945
|
* <p>The pipeline version was specified in an invalid format or cannot be
|
|
1808
1946
|
* found.</p>
|
|
1809
1947
|
*/
|
|
@@ -1816,6 +1954,7 @@ export declare class PipelineVersionNotFoundException extends __BaseException {
|
|
|
1816
1954
|
constructor(opts: __ExceptionOptionType<PipelineVersionNotFoundException, __BaseException>);
|
|
1817
1955
|
}
|
|
1818
1956
|
/**
|
|
1957
|
+
* @public
|
|
1819
1958
|
* <p>Represents the input of a <code>GetPipelineExecution</code> action.</p>
|
|
1820
1959
|
*/
|
|
1821
1960
|
export interface GetPipelineExecutionInput {
|
|
@@ -1829,6 +1968,9 @@ export interface GetPipelineExecutionInput {
|
|
|
1829
1968
|
*/
|
|
1830
1969
|
pipelineExecutionId: string | undefined;
|
|
1831
1970
|
}
|
|
1971
|
+
/**
|
|
1972
|
+
* @public
|
|
1973
|
+
*/
|
|
1832
1974
|
export declare enum PipelineExecutionStatus {
|
|
1833
1975
|
Cancelled = "Cancelled",
|
|
1834
1976
|
Failed = "Failed",
|
|
@@ -1839,6 +1981,7 @@ export declare enum PipelineExecutionStatus {
|
|
|
1839
1981
|
Superseded = "Superseded"
|
|
1840
1982
|
}
|
|
1841
1983
|
/**
|
|
1984
|
+
* @public
|
|
1842
1985
|
* <p>Represents information about an execution of a pipeline.</p>
|
|
1843
1986
|
*/
|
|
1844
1987
|
export interface PipelineExecution {
|
|
@@ -1898,6 +2041,7 @@ export interface PipelineExecution {
|
|
|
1898
2041
|
artifactRevisions?: ArtifactRevision[];
|
|
1899
2042
|
}
|
|
1900
2043
|
/**
|
|
2044
|
+
* @public
|
|
1901
2045
|
* <p>Represents the output of a <code>GetPipelineExecution</code> action.</p>
|
|
1902
2046
|
*/
|
|
1903
2047
|
export interface GetPipelineExecutionOutput {
|
|
@@ -1907,6 +2051,7 @@ export interface GetPipelineExecutionOutput {
|
|
|
1907
2051
|
pipelineExecution?: PipelineExecution;
|
|
1908
2052
|
}
|
|
1909
2053
|
/**
|
|
2054
|
+
* @public
|
|
1910
2055
|
* <p>The pipeline execution was specified in an invalid format or cannot be found, or an
|
|
1911
2056
|
* execution ID does not belong to the specified pipeline. </p>
|
|
1912
2057
|
*/
|
|
@@ -1919,6 +2064,7 @@ export declare class PipelineExecutionNotFoundException extends __BaseException
|
|
|
1919
2064
|
constructor(opts: __ExceptionOptionType<PipelineExecutionNotFoundException, __BaseException>);
|
|
1920
2065
|
}
|
|
1921
2066
|
/**
|
|
2067
|
+
* @public
|
|
1922
2068
|
* <p>Represents the input of a <code>GetPipelineState</code> action.</p>
|
|
1923
2069
|
*/
|
|
1924
2070
|
export interface GetPipelineStateInput {
|
|
@@ -1927,6 +2073,9 @@ export interface GetPipelineStateInput {
|
|
|
1927
2073
|
*/
|
|
1928
2074
|
name: string | undefined;
|
|
1929
2075
|
}
|
|
2076
|
+
/**
|
|
2077
|
+
* @public
|
|
2078
|
+
*/
|
|
1930
2079
|
export declare enum StageExecutionStatus {
|
|
1931
2080
|
Cancelled = "Cancelled",
|
|
1932
2081
|
Failed = "Failed",
|
|
@@ -1936,6 +2085,7 @@ export declare enum StageExecutionStatus {
|
|
|
1936
2085
|
Succeeded = "Succeeded"
|
|
1937
2086
|
}
|
|
1938
2087
|
/**
|
|
2088
|
+
* @public
|
|
1939
2089
|
* <p>Represents information about the run of a stage.</p>
|
|
1940
2090
|
*/
|
|
1941
2091
|
export interface StageExecution {
|
|
@@ -1954,6 +2104,7 @@ export interface StageExecution {
|
|
|
1954
2104
|
status: StageExecutionStatus | string | undefined;
|
|
1955
2105
|
}
|
|
1956
2106
|
/**
|
|
2107
|
+
* @public
|
|
1957
2108
|
* <p>Represents information about the state of transitions between one stage and another
|
|
1958
2109
|
* stage.</p>
|
|
1959
2110
|
*/
|
|
@@ -1978,6 +2129,7 @@ export interface TransitionState {
|
|
|
1978
2129
|
disabledReason?: string;
|
|
1979
2130
|
}
|
|
1980
2131
|
/**
|
|
2132
|
+
* @public
|
|
1981
2133
|
* <p>Represents information about the state of the stage.</p>
|
|
1982
2134
|
*/
|
|
1983
2135
|
export interface StageState {
|
|
@@ -2004,6 +2156,7 @@ export interface StageState {
|
|
|
2004
2156
|
latestExecution?: StageExecution;
|
|
2005
2157
|
}
|
|
2006
2158
|
/**
|
|
2159
|
+
* @public
|
|
2007
2160
|
* <p>Represents the output of a <code>GetPipelineState</code> action.</p>
|
|
2008
2161
|
*/
|
|
2009
2162
|
export interface GetPipelineStateOutput {
|
|
@@ -2034,6 +2187,7 @@ export interface GetPipelineStateOutput {
|
|
|
2034
2187
|
updated?: Date;
|
|
2035
2188
|
}
|
|
2036
2189
|
/**
|
|
2190
|
+
* @public
|
|
2037
2191
|
* <p>Represents the input of a <code>GetThirdPartyJobDetails</code> action.</p>
|
|
2038
2192
|
*/
|
|
2039
2193
|
export interface GetThirdPartyJobDetailsInput {
|
|
@@ -2048,6 +2202,7 @@ export interface GetThirdPartyJobDetailsInput {
|
|
|
2048
2202
|
clientToken: string | undefined;
|
|
2049
2203
|
}
|
|
2050
2204
|
/**
|
|
2205
|
+
* @public
|
|
2051
2206
|
* <p>Represents information about the job data for a partner action.</p>
|
|
2052
2207
|
*/
|
|
2053
2208
|
export interface ThirdPartyJobData {
|
|
@@ -2100,6 +2255,7 @@ export interface ThirdPartyJobData {
|
|
|
2100
2255
|
encryptionKey?: EncryptionKey;
|
|
2101
2256
|
}
|
|
2102
2257
|
/**
|
|
2258
|
+
* @public
|
|
2103
2259
|
* <p>The details of a job sent in response to a <code>GetThirdPartyJobDetails</code>
|
|
2104
2260
|
* request.</p>
|
|
2105
2261
|
*/
|
|
@@ -2119,6 +2275,7 @@ export interface ThirdPartyJobDetails {
|
|
|
2119
2275
|
nonce?: string;
|
|
2120
2276
|
}
|
|
2121
2277
|
/**
|
|
2278
|
+
* @public
|
|
2122
2279
|
* <p>Represents the output of a <code>GetThirdPartyJobDetails</code> action.</p>
|
|
2123
2280
|
*/
|
|
2124
2281
|
export interface GetThirdPartyJobDetailsOutput {
|
|
@@ -2129,6 +2286,7 @@ export interface GetThirdPartyJobDetailsOutput {
|
|
|
2129
2286
|
jobDetails?: ThirdPartyJobDetails;
|
|
2130
2287
|
}
|
|
2131
2288
|
/**
|
|
2289
|
+
* @public
|
|
2132
2290
|
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
2133
2291
|
*/
|
|
2134
2292
|
export declare class InvalidJobException extends __BaseException {
|
|
@@ -2140,6 +2298,7 @@ export declare class InvalidJobException extends __BaseException {
|
|
|
2140
2298
|
constructor(opts: __ExceptionOptionType<InvalidJobException, __BaseException>);
|
|
2141
2299
|
}
|
|
2142
2300
|
/**
|
|
2301
|
+
* @public
|
|
2143
2302
|
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
2144
2303
|
* you provide is the token returned by a previous call.</p>
|
|
2145
2304
|
*/
|
|
@@ -2151,6 +2310,9 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
2151
2310
|
*/
|
|
2152
2311
|
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2153
2312
|
}
|
|
2313
|
+
/**
|
|
2314
|
+
* @public
|
|
2315
|
+
*/
|
|
2154
2316
|
export interface ListActionExecutionsInput {
|
|
2155
2317
|
/**
|
|
2156
2318
|
* <p> The name of the pipeline for which you want to list action execution history.</p>
|
|
@@ -2177,6 +2339,9 @@ export interface ListActionExecutionsInput {
|
|
|
2177
2339
|
*/
|
|
2178
2340
|
nextToken?: string;
|
|
2179
2341
|
}
|
|
2342
|
+
/**
|
|
2343
|
+
* @public
|
|
2344
|
+
*/
|
|
2180
2345
|
export interface ListActionExecutionsOutput {
|
|
2181
2346
|
/**
|
|
2182
2347
|
* <p>The details for a list of recent executions, such as action execution ID.</p>
|
|
@@ -2190,6 +2355,7 @@ export interface ListActionExecutionsOutput {
|
|
|
2190
2355
|
nextToken?: string;
|
|
2191
2356
|
}
|
|
2192
2357
|
/**
|
|
2358
|
+
* @public
|
|
2193
2359
|
* <p>Represents the input of a <code>ListActionTypes</code> action.</p>
|
|
2194
2360
|
*/
|
|
2195
2361
|
export interface ListActionTypesInput {
|
|
@@ -2208,6 +2374,7 @@ export interface ListActionTypesInput {
|
|
|
2208
2374
|
regionFilter?: string;
|
|
2209
2375
|
}
|
|
2210
2376
|
/**
|
|
2377
|
+
* @public
|
|
2211
2378
|
* <p>Represents the output of a <code>ListActionTypes</code> action.</p>
|
|
2212
2379
|
*/
|
|
2213
2380
|
export interface ListActionTypesOutput {
|
|
@@ -2223,6 +2390,7 @@ export interface ListActionTypesOutput {
|
|
|
2223
2390
|
nextToken?: string;
|
|
2224
2391
|
}
|
|
2225
2392
|
/**
|
|
2393
|
+
* @public
|
|
2226
2394
|
* <p>Represents the input of a <code>ListPipelineExecutions</code> action.</p>
|
|
2227
2395
|
*/
|
|
2228
2396
|
export interface ListPipelineExecutionsInput {
|
|
@@ -2246,6 +2414,7 @@ export interface ListPipelineExecutionsInput {
|
|
|
2246
2414
|
nextToken?: string;
|
|
2247
2415
|
}
|
|
2248
2416
|
/**
|
|
2417
|
+
* @public
|
|
2249
2418
|
* <p>Information about the version (or revision) of a source artifact that initiated a
|
|
2250
2419
|
* pipeline execution.</p>
|
|
2251
2420
|
*/
|
|
@@ -2274,6 +2443,7 @@ export interface SourceRevision {
|
|
|
2274
2443
|
revisionUrl?: string;
|
|
2275
2444
|
}
|
|
2276
2445
|
/**
|
|
2446
|
+
* @public
|
|
2277
2447
|
* <p>The interaction that stopped a pipeline execution.</p>
|
|
2278
2448
|
*/
|
|
2279
2449
|
export interface StopExecutionTrigger {
|
|
@@ -2282,6 +2452,9 @@ export interface StopExecutionTrigger {
|
|
|
2282
2452
|
*/
|
|
2283
2453
|
reason?: string;
|
|
2284
2454
|
}
|
|
2455
|
+
/**
|
|
2456
|
+
* @public
|
|
2457
|
+
*/
|
|
2285
2458
|
export declare enum TriggerType {
|
|
2286
2459
|
CloudWatchEvent = "CloudWatchEvent",
|
|
2287
2460
|
CreatePipeline = "CreatePipeline",
|
|
@@ -2291,6 +2464,7 @@ export declare enum TriggerType {
|
|
|
2291
2464
|
Webhook = "Webhook"
|
|
2292
2465
|
}
|
|
2293
2466
|
/**
|
|
2467
|
+
* @public
|
|
2294
2468
|
* <p>The interaction or event that started a pipeline execution.</p>
|
|
2295
2469
|
*/
|
|
2296
2470
|
export interface ExecutionTrigger {
|
|
@@ -2307,6 +2481,7 @@ export interface ExecutionTrigger {
|
|
|
2307
2481
|
triggerDetail?: string;
|
|
2308
2482
|
}
|
|
2309
2483
|
/**
|
|
2484
|
+
* @public
|
|
2310
2485
|
* <p>Summary information about a pipeline execution.</p>
|
|
2311
2486
|
*/
|
|
2312
2487
|
export interface PipelineExecutionSummary {
|
|
@@ -2368,6 +2543,7 @@ export interface PipelineExecutionSummary {
|
|
|
2368
2543
|
stopTrigger?: StopExecutionTrigger;
|
|
2369
2544
|
}
|
|
2370
2545
|
/**
|
|
2546
|
+
* @public
|
|
2371
2547
|
* <p>Represents the output of a <code>ListPipelineExecutions</code> action.</p>
|
|
2372
2548
|
*/
|
|
2373
2549
|
export interface ListPipelineExecutionsOutput {
|
|
@@ -2383,6 +2559,7 @@ export interface ListPipelineExecutionsOutput {
|
|
|
2383
2559
|
nextToken?: string;
|
|
2384
2560
|
}
|
|
2385
2561
|
/**
|
|
2562
|
+
* @public
|
|
2386
2563
|
* <p>Represents the input of a <code>ListPipelines</code> action.</p>
|
|
2387
2564
|
*/
|
|
2388
2565
|
export interface ListPipelinesInput {
|
|
@@ -2399,6 +2576,7 @@ export interface ListPipelinesInput {
|
|
|
2399
2576
|
maxResults?: number;
|
|
2400
2577
|
}
|
|
2401
2578
|
/**
|
|
2579
|
+
* @public
|
|
2402
2580
|
* <p>Returns a summary of a pipeline.</p>
|
|
2403
2581
|
*/
|
|
2404
2582
|
export interface PipelineSummary {
|
|
@@ -2421,6 +2599,7 @@ export interface PipelineSummary {
|
|
|
2421
2599
|
updated?: Date;
|
|
2422
2600
|
}
|
|
2423
2601
|
/**
|
|
2602
|
+
* @public
|
|
2424
2603
|
* <p>Represents the output of a <code>ListPipelines</code> action.</p>
|
|
2425
2604
|
*/
|
|
2426
2605
|
export interface ListPipelinesOutput {
|
|
@@ -2436,6 +2615,7 @@ export interface ListPipelinesOutput {
|
|
|
2436
2615
|
nextToken?: string;
|
|
2437
2616
|
}
|
|
2438
2617
|
/**
|
|
2618
|
+
* @public
|
|
2439
2619
|
* <p>The specified resource ARN is invalid.</p>
|
|
2440
2620
|
*/
|
|
2441
2621
|
export declare class InvalidArnException extends __BaseException {
|
|
@@ -2446,6 +2626,9 @@ export declare class InvalidArnException extends __BaseException {
|
|
|
2446
2626
|
*/
|
|
2447
2627
|
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
2448
2628
|
}
|
|
2629
|
+
/**
|
|
2630
|
+
* @public
|
|
2631
|
+
*/
|
|
2449
2632
|
export interface ListTagsForResourceInput {
|
|
2450
2633
|
/**
|
|
2451
2634
|
* <p>The Amazon Resource Name (ARN) of the resource to get tags for.</p>
|
|
@@ -2462,6 +2645,9 @@ export interface ListTagsForResourceInput {
|
|
|
2462
2645
|
*/
|
|
2463
2646
|
maxResults?: number;
|
|
2464
2647
|
}
|
|
2648
|
+
/**
|
|
2649
|
+
* @public
|
|
2650
|
+
*/
|
|
2465
2651
|
export interface ListTagsForResourceOutput {
|
|
2466
2652
|
/**
|
|
2467
2653
|
* <p>The tags for the resource.</p>
|
|
@@ -2476,6 +2662,7 @@ export interface ListTagsForResourceOutput {
|
|
|
2476
2662
|
nextToken?: string;
|
|
2477
2663
|
}
|
|
2478
2664
|
/**
|
|
2665
|
+
* @public
|
|
2479
2666
|
* <p>The resource was specified in an invalid format.</p>
|
|
2480
2667
|
*/
|
|
2481
2668
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -2486,6 +2673,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
2486
2673
|
*/
|
|
2487
2674
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
2488
2675
|
}
|
|
2676
|
+
/**
|
|
2677
|
+
* @public
|
|
2678
|
+
*/
|
|
2489
2679
|
export interface ListWebhooksInput {
|
|
2490
2680
|
/**
|
|
2491
2681
|
* <p>The token that was returned from the previous ListWebhooks call, which can be used
|
|
@@ -2498,12 +2688,16 @@ export interface ListWebhooksInput {
|
|
|
2498
2688
|
*/
|
|
2499
2689
|
MaxResults?: number;
|
|
2500
2690
|
}
|
|
2691
|
+
/**
|
|
2692
|
+
* @public
|
|
2693
|
+
*/
|
|
2501
2694
|
export declare enum WebhookAuthenticationType {
|
|
2502
2695
|
GITHUB_HMAC = "GITHUB_HMAC",
|
|
2503
2696
|
IP = "IP",
|
|
2504
2697
|
UNAUTHENTICATED = "UNAUTHENTICATED"
|
|
2505
2698
|
}
|
|
2506
2699
|
/**
|
|
2700
|
+
* @public
|
|
2507
2701
|
* <p>The authentication applied to incoming webhook trigger requests.</p>
|
|
2508
2702
|
*/
|
|
2509
2703
|
export interface WebhookAuthConfiguration {
|
|
@@ -2520,6 +2714,7 @@ export interface WebhookAuthConfiguration {
|
|
|
2520
2714
|
SecretToken?: string;
|
|
2521
2715
|
}
|
|
2522
2716
|
/**
|
|
2717
|
+
* @public
|
|
2523
2718
|
* <p>The event criteria that specify when a webhook notification is sent to your
|
|
2524
2719
|
* URL.</p>
|
|
2525
2720
|
*/
|
|
@@ -2537,7 +2732,7 @@ export interface WebhookFilterRule {
|
|
|
2537
2732
|
* supplied in the <code>MatchEquals</code> field. Otherwise, the request is ignored.
|
|
2538
2733
|
* Properties from the target action configuration can be included as placeholders in this
|
|
2539
2734
|
* value by surrounding the action configuration key with curly brackets. For example, if
|
|
2540
|
-
* the value supplied here is "refs/heads
|
|
2735
|
+
* the value supplied here is "refs/heads/\{Branch\}" and the target action has an action
|
|
2541
2736
|
* configuration property called "Branch" with a value of "master", the
|
|
2542
2737
|
* <code>MatchEquals</code> value is evaluated as "refs/heads/master". For a list of
|
|
2543
2738
|
* 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>
|
|
@@ -2545,6 +2740,7 @@ export interface WebhookFilterRule {
|
|
|
2545
2740
|
matchEquals?: string;
|
|
2546
2741
|
}
|
|
2547
2742
|
/**
|
|
2743
|
+
* @public
|
|
2548
2744
|
* <p>Represents information about a webhook and its definition.</p>
|
|
2549
2745
|
*/
|
|
2550
2746
|
export interface WebhookDefinition {
|
|
@@ -2597,6 +2793,7 @@ export interface WebhookDefinition {
|
|
|
2597
2793
|
authenticationConfiguration: WebhookAuthConfiguration | undefined;
|
|
2598
2794
|
}
|
|
2599
2795
|
/**
|
|
2796
|
+
* @public
|
|
2600
2797
|
* <p>The detail returned for each webhook after listing webhooks, such as the webhook
|
|
2601
2798
|
* URL, the webhook name, and the webhook ARN.</p>
|
|
2602
2799
|
*/
|
|
@@ -2635,6 +2832,9 @@ export interface ListWebhookItem {
|
|
|
2635
2832
|
*/
|
|
2636
2833
|
tags?: Tag[];
|
|
2637
2834
|
}
|
|
2835
|
+
/**
|
|
2836
|
+
* @public
|
|
2837
|
+
*/
|
|
2638
2838
|
export interface ListWebhooksOutput {
|
|
2639
2839
|
/**
|
|
2640
2840
|
* <p>The JSON detail returned for each webhook in the list output for the ListWebhooks
|
|
@@ -2649,6 +2849,7 @@ export interface ListWebhooksOutput {
|
|
|
2649
2849
|
NextToken?: string;
|
|
2650
2850
|
}
|
|
2651
2851
|
/**
|
|
2852
|
+
* @public
|
|
2652
2853
|
* <p>Represents the input of a <code>PollForJobs</code> action.</p>
|
|
2653
2854
|
*/
|
|
2654
2855
|
export interface PollForJobsInput {
|
|
@@ -2669,6 +2870,7 @@ export interface PollForJobsInput {
|
|
|
2669
2870
|
queryParam?: Record<string, string>;
|
|
2670
2871
|
}
|
|
2671
2872
|
/**
|
|
2873
|
+
* @public
|
|
2672
2874
|
* <p>Represents information about a job.</p>
|
|
2673
2875
|
*/
|
|
2674
2876
|
export interface Job {
|
|
@@ -2691,6 +2893,7 @@ export interface Job {
|
|
|
2691
2893
|
accountId?: string;
|
|
2692
2894
|
}
|
|
2693
2895
|
/**
|
|
2896
|
+
* @public
|
|
2694
2897
|
* <p>Represents the output of a <code>PollForJobs</code> action.</p>
|
|
2695
2898
|
*/
|
|
2696
2899
|
export interface PollForJobsOutput {
|
|
@@ -2700,6 +2903,7 @@ export interface PollForJobsOutput {
|
|
|
2700
2903
|
jobs?: Job[];
|
|
2701
2904
|
}
|
|
2702
2905
|
/**
|
|
2906
|
+
* @public
|
|
2703
2907
|
* <p>Represents the input of a <code>PollForThirdPartyJobs</code> action.</p>
|
|
2704
2908
|
*/
|
|
2705
2909
|
export interface PollForThirdPartyJobsInput {
|
|
@@ -2713,6 +2917,7 @@ export interface PollForThirdPartyJobsInput {
|
|
|
2713
2917
|
maxBatchSize?: number;
|
|
2714
2918
|
}
|
|
2715
2919
|
/**
|
|
2920
|
+
* @public
|
|
2716
2921
|
* <p>A response to a <code>PollForThirdPartyJobs</code> request returned by AWS
|
|
2717
2922
|
* CodePipeline when there is a job to be worked on by a partner action.</p>
|
|
2718
2923
|
*/
|
|
@@ -2729,6 +2934,7 @@ export interface ThirdPartyJob {
|
|
|
2729
2934
|
jobId?: string;
|
|
2730
2935
|
}
|
|
2731
2936
|
/**
|
|
2937
|
+
* @public
|
|
2732
2938
|
* <p>Represents the output of a <code>PollForThirdPartyJobs</code> action.</p>
|
|
2733
2939
|
*/
|
|
2734
2940
|
export interface PollForThirdPartyJobsOutput {
|
|
@@ -2738,6 +2944,7 @@ export interface PollForThirdPartyJobsOutput {
|
|
|
2738
2944
|
jobs?: ThirdPartyJob[];
|
|
2739
2945
|
}
|
|
2740
2946
|
/**
|
|
2947
|
+
* @public
|
|
2741
2948
|
* <p>Represents the input of a <code>PutActionRevision</code> action.</p>
|
|
2742
2949
|
*/
|
|
2743
2950
|
export interface PutActionRevisionInput {
|
|
@@ -2760,6 +2967,7 @@ export interface PutActionRevisionInput {
|
|
|
2760
2967
|
actionRevision: ActionRevision | undefined;
|
|
2761
2968
|
}
|
|
2762
2969
|
/**
|
|
2970
|
+
* @public
|
|
2763
2971
|
* <p>Represents the output of a <code>PutActionRevision</code> action.</p>
|
|
2764
2972
|
*/
|
|
2765
2973
|
export interface PutActionRevisionOutput {
|
|
@@ -2774,6 +2982,7 @@ export interface PutActionRevisionOutput {
|
|
|
2774
2982
|
pipelineExecutionId?: string;
|
|
2775
2983
|
}
|
|
2776
2984
|
/**
|
|
2985
|
+
* @public
|
|
2777
2986
|
* <p>The approval request already received a response or has expired.</p>
|
|
2778
2987
|
*/
|
|
2779
2988
|
export declare class InvalidApprovalTokenException extends __BaseException {
|
|
@@ -2785,6 +2994,7 @@ export declare class InvalidApprovalTokenException extends __BaseException {
|
|
|
2785
2994
|
constructor(opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>);
|
|
2786
2995
|
}
|
|
2787
2996
|
/**
|
|
2997
|
+
* @public
|
|
2788
2998
|
* <p>Represents the input of a <code>PutApprovalResult</code> action.</p>
|
|
2789
2999
|
*/
|
|
2790
3000
|
export interface PutApprovalResultInput {
|
|
@@ -2812,6 +3022,7 @@ export interface PutApprovalResultInput {
|
|
|
2812
3022
|
token: string | undefined;
|
|
2813
3023
|
}
|
|
2814
3024
|
/**
|
|
3025
|
+
* @public
|
|
2815
3026
|
* <p>Represents the output of a <code>PutApprovalResult</code> action.</p>
|
|
2816
3027
|
*/
|
|
2817
3028
|
export interface PutApprovalResultOutput {
|
|
@@ -2821,6 +3032,7 @@ export interface PutApprovalResultOutput {
|
|
|
2821
3032
|
approvedAt?: Date;
|
|
2822
3033
|
}
|
|
2823
3034
|
/**
|
|
3035
|
+
* @public
|
|
2824
3036
|
* <p>The job state was specified in an invalid format.</p>
|
|
2825
3037
|
*/
|
|
2826
3038
|
export declare class InvalidJobStateException extends __BaseException {
|
|
@@ -2831,6 +3043,9 @@ export declare class InvalidJobStateException extends __BaseException {
|
|
|
2831
3043
|
*/
|
|
2832
3044
|
constructor(opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>);
|
|
2833
3045
|
}
|
|
3046
|
+
/**
|
|
3047
|
+
* @public
|
|
3048
|
+
*/
|
|
2834
3049
|
export declare enum FailureType {
|
|
2835
3050
|
ConfigurationError = "ConfigurationError",
|
|
2836
3051
|
JobFailed = "JobFailed",
|
|
@@ -2840,6 +3055,7 @@ export declare enum FailureType {
|
|
|
2840
3055
|
SystemUnavailable = "SystemUnavailable"
|
|
2841
3056
|
}
|
|
2842
3057
|
/**
|
|
3058
|
+
* @public
|
|
2843
3059
|
* <p>Represents information about failure details.</p>
|
|
2844
3060
|
*/
|
|
2845
3061
|
export interface FailureDetails {
|
|
@@ -2857,6 +3073,7 @@ export interface FailureDetails {
|
|
|
2857
3073
|
externalExecutionId?: string;
|
|
2858
3074
|
}
|
|
2859
3075
|
/**
|
|
3076
|
+
* @public
|
|
2860
3077
|
* <p>Represents the input of a <code>PutJobFailureResult</code> action.</p>
|
|
2861
3078
|
*/
|
|
2862
3079
|
export interface PutJobFailureResultInput {
|
|
@@ -2871,6 +3088,7 @@ export interface PutJobFailureResultInput {
|
|
|
2871
3088
|
failureDetails: FailureDetails | undefined;
|
|
2872
3089
|
}
|
|
2873
3090
|
/**
|
|
3091
|
+
* @public
|
|
2874
3092
|
* <p>Exceeded the total size limit for all variables in the pipeline.</p>
|
|
2875
3093
|
*/
|
|
2876
3094
|
export declare class OutputVariablesSizeExceededException extends __BaseException {
|
|
@@ -2882,6 +3100,7 @@ export declare class OutputVariablesSizeExceededException extends __BaseExceptio
|
|
|
2882
3100
|
constructor(opts: __ExceptionOptionType<OutputVariablesSizeExceededException, __BaseException>);
|
|
2883
3101
|
}
|
|
2884
3102
|
/**
|
|
3103
|
+
* @public
|
|
2885
3104
|
* <p>Represents information about a current revision.</p>
|
|
2886
3105
|
*/
|
|
2887
3106
|
export interface CurrentRevision {
|
|
@@ -2904,6 +3123,7 @@ export interface CurrentRevision {
|
|
|
2904
3123
|
revisionSummary?: string;
|
|
2905
3124
|
}
|
|
2906
3125
|
/**
|
|
3126
|
+
* @public
|
|
2907
3127
|
* <p>The details of the actions taken and results produced on an artifact as it passes
|
|
2908
3128
|
* through stages in the pipeline.</p>
|
|
2909
3129
|
*/
|
|
@@ -2924,6 +3144,7 @@ export interface ExecutionDetails {
|
|
|
2924
3144
|
percentComplete?: number;
|
|
2925
3145
|
}
|
|
2926
3146
|
/**
|
|
3147
|
+
* @public
|
|
2927
3148
|
* <p>Represents the input of a <code>PutJobSuccessResult</code> action.</p>
|
|
2928
3149
|
*/
|
|
2929
3150
|
export interface PutJobSuccessResultInput {
|
|
@@ -2958,6 +3179,7 @@ export interface PutJobSuccessResultInput {
|
|
|
2958
3179
|
outputVariables?: Record<string, string>;
|
|
2959
3180
|
}
|
|
2960
3181
|
/**
|
|
3182
|
+
* @public
|
|
2961
3183
|
* <p>Represents the input of a <code>PutThirdPartyJobFailureResult</code>
|
|
2962
3184
|
* action.</p>
|
|
2963
3185
|
*/
|
|
@@ -2978,6 +3200,7 @@ export interface PutThirdPartyJobFailureResultInput {
|
|
|
2978
3200
|
failureDetails: FailureDetails | undefined;
|
|
2979
3201
|
}
|
|
2980
3202
|
/**
|
|
3203
|
+
* @public
|
|
2981
3204
|
* <p>Represents the input of a <code>PutThirdPartyJobSuccessResult</code>
|
|
2982
3205
|
* action.</p>
|
|
2983
3206
|
*/
|
|
@@ -3011,6 +3234,7 @@ export interface PutThirdPartyJobSuccessResultInput {
|
|
|
3011
3234
|
executionDetails?: ExecutionDetails;
|
|
3012
3235
|
}
|
|
3013
3236
|
/**
|
|
3237
|
+
* @public
|
|
3014
3238
|
* <p>The specified authentication type is in an invalid format.</p>
|
|
3015
3239
|
*/
|
|
3016
3240
|
export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
@@ -3022,6 +3246,7 @@ export declare class InvalidWebhookAuthenticationParametersException extends __B
|
|
|
3022
3246
|
constructor(opts: __ExceptionOptionType<InvalidWebhookAuthenticationParametersException, __BaseException>);
|
|
3023
3247
|
}
|
|
3024
3248
|
/**
|
|
3249
|
+
* @public
|
|
3025
3250
|
* <p>The specified event filter rule is in an invalid format.</p>
|
|
3026
3251
|
*/
|
|
3027
3252
|
export declare class InvalidWebhookFilterPatternException extends __BaseException {
|
|
@@ -3032,6 +3257,9 @@ export declare class InvalidWebhookFilterPatternException extends __BaseExceptio
|
|
|
3032
3257
|
*/
|
|
3033
3258
|
constructor(opts: __ExceptionOptionType<InvalidWebhookFilterPatternException, __BaseException>);
|
|
3034
3259
|
}
|
|
3260
|
+
/**
|
|
3261
|
+
* @public
|
|
3262
|
+
*/
|
|
3035
3263
|
export interface PutWebhookInput {
|
|
3036
3264
|
/**
|
|
3037
3265
|
* <p>The detail provided in an input file to create the webhook, such as the webhook
|
|
@@ -3045,6 +3273,9 @@ export interface PutWebhookInput {
|
|
|
3045
3273
|
*/
|
|
3046
3274
|
tags?: Tag[];
|
|
3047
3275
|
}
|
|
3276
|
+
/**
|
|
3277
|
+
* @public
|
|
3278
|
+
*/
|
|
3048
3279
|
export interface PutWebhookOutput {
|
|
3049
3280
|
/**
|
|
3050
3281
|
* <p>The detail returned from creating the webhook, such as the webhook name, webhook
|
|
@@ -3052,6 +3283,9 @@ export interface PutWebhookOutput {
|
|
|
3052
3283
|
*/
|
|
3053
3284
|
webhook?: ListWebhookItem;
|
|
3054
3285
|
}
|
|
3286
|
+
/**
|
|
3287
|
+
* @public
|
|
3288
|
+
*/
|
|
3055
3289
|
export interface RegisterWebhookWithThirdPartyInput {
|
|
3056
3290
|
/**
|
|
3057
3291
|
* <p>The name of an existing webhook created with PutWebhook to register with a
|
|
@@ -3059,9 +3293,13 @@ export interface RegisterWebhookWithThirdPartyInput {
|
|
|
3059
3293
|
*/
|
|
3060
3294
|
webhookName?: string;
|
|
3061
3295
|
}
|
|
3296
|
+
/**
|
|
3297
|
+
* @public
|
|
3298
|
+
*/
|
|
3062
3299
|
export interface RegisterWebhookWithThirdPartyOutput {
|
|
3063
3300
|
}
|
|
3064
3301
|
/**
|
|
3302
|
+
* @public
|
|
3065
3303
|
* <p>Your request cannot be handled because the pipeline is busy handling ongoing
|
|
3066
3304
|
* activities. Try again later.</p>
|
|
3067
3305
|
*/
|
|
@@ -3074,6 +3312,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
3074
3312
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
3075
3313
|
}
|
|
3076
3314
|
/**
|
|
3315
|
+
* @public
|
|
3077
3316
|
* <p>The stage has failed in a later run of the pipeline and the pipelineExecutionId
|
|
3078
3317
|
* associated with the request is out of date.</p>
|
|
3079
3318
|
*/
|
|
@@ -3085,10 +3324,14 @@ export declare class NotLatestPipelineExecutionException extends __BaseException
|
|
|
3085
3324
|
*/
|
|
3086
3325
|
constructor(opts: __ExceptionOptionType<NotLatestPipelineExecutionException, __BaseException>);
|
|
3087
3326
|
}
|
|
3327
|
+
/**
|
|
3328
|
+
* @public
|
|
3329
|
+
*/
|
|
3088
3330
|
export declare enum StageRetryMode {
|
|
3089
3331
|
FAILED_ACTIONS = "FAILED_ACTIONS"
|
|
3090
3332
|
}
|
|
3091
3333
|
/**
|
|
3334
|
+
* @public
|
|
3092
3335
|
* <p>Represents the input of a <code>RetryStageExecution</code> action.</p>
|
|
3093
3336
|
*/
|
|
3094
3337
|
export interface RetryStageExecutionInput {
|
|
@@ -3112,6 +3355,7 @@ export interface RetryStageExecutionInput {
|
|
|
3112
3355
|
retryMode: StageRetryMode | string | undefined;
|
|
3113
3356
|
}
|
|
3114
3357
|
/**
|
|
3358
|
+
* @public
|
|
3115
3359
|
* <p>Represents the output of a <code>RetryStageExecution</code> action.</p>
|
|
3116
3360
|
*/
|
|
3117
3361
|
export interface RetryStageExecutionOutput {
|
|
@@ -3121,6 +3365,7 @@ export interface RetryStageExecutionOutput {
|
|
|
3121
3365
|
pipelineExecutionId?: string;
|
|
3122
3366
|
}
|
|
3123
3367
|
/**
|
|
3368
|
+
* @public
|
|
3124
3369
|
* <p>Unable to retry. The pipeline structure or stage state might have changed while
|
|
3125
3370
|
* actions awaited retry, or the stage contains no failed
|
|
3126
3371
|
* actions.</p>
|
|
@@ -3134,6 +3379,7 @@ export declare class StageNotRetryableException extends __BaseException {
|
|
|
3134
3379
|
constructor(opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>);
|
|
3135
3380
|
}
|
|
3136
3381
|
/**
|
|
3382
|
+
* @public
|
|
3137
3383
|
* <p>Represents the input of a <code>StartPipelineExecution</code> action.</p>
|
|
3138
3384
|
*/
|
|
3139
3385
|
export interface StartPipelineExecutionInput {
|
|
@@ -3148,6 +3394,7 @@ export interface StartPipelineExecutionInput {
|
|
|
3148
3394
|
clientRequestToken?: string;
|
|
3149
3395
|
}
|
|
3150
3396
|
/**
|
|
3397
|
+
* @public
|
|
3151
3398
|
* <p>Represents the output of a <code>StartPipelineExecution</code> action.</p>
|
|
3152
3399
|
*/
|
|
3153
3400
|
export interface StartPipelineExecutionOutput {
|
|
@@ -3158,6 +3405,7 @@ export interface StartPipelineExecutionOutput {
|
|
|
3158
3405
|
pipelineExecutionId?: string;
|
|
3159
3406
|
}
|
|
3160
3407
|
/**
|
|
3408
|
+
* @public
|
|
3161
3409
|
* <p>The pipeline execution is already in a <code>Stopping</code> state. If you already
|
|
3162
3410
|
* chose to stop and wait, you cannot make that request again. You can choose to stop and
|
|
3163
3411
|
* abandon now, but be aware that this option can lead to failed tasks or out of sequence
|
|
@@ -3173,6 +3421,7 @@ export declare class DuplicatedStopRequestException extends __BaseException {
|
|
|
3173
3421
|
constructor(opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>);
|
|
3174
3422
|
}
|
|
3175
3423
|
/**
|
|
3424
|
+
* @public
|
|
3176
3425
|
* <p>Unable to stop the pipeline execution. The execution might already be in a
|
|
3177
3426
|
* <code>Stopped</code> state, or it might no longer be in progress.</p>
|
|
3178
3427
|
*/
|
|
@@ -3184,6 +3433,9 @@ export declare class PipelineExecutionNotStoppableException extends __BaseExcept
|
|
|
3184
3433
|
*/
|
|
3185
3434
|
constructor(opts: __ExceptionOptionType<PipelineExecutionNotStoppableException, __BaseException>);
|
|
3186
3435
|
}
|
|
3436
|
+
/**
|
|
3437
|
+
* @public
|
|
3438
|
+
*/
|
|
3187
3439
|
export interface StopPipelineExecutionInput {
|
|
3188
3440
|
/**
|
|
3189
3441
|
* <p>The name of the pipeline to stop.</p>
|
|
@@ -3208,12 +3460,18 @@ export interface StopPipelineExecutionInput {
|
|
|
3208
3460
|
*/
|
|
3209
3461
|
reason?: string;
|
|
3210
3462
|
}
|
|
3463
|
+
/**
|
|
3464
|
+
* @public
|
|
3465
|
+
*/
|
|
3211
3466
|
export interface StopPipelineExecutionOutput {
|
|
3212
3467
|
/**
|
|
3213
3468
|
* <p>The unique system-generated ID of the pipeline execution that was stopped.</p>
|
|
3214
3469
|
*/
|
|
3215
3470
|
pipelineExecutionId?: string;
|
|
3216
3471
|
}
|
|
3472
|
+
/**
|
|
3473
|
+
* @public
|
|
3474
|
+
*/
|
|
3217
3475
|
export interface TagResourceInput {
|
|
3218
3476
|
/**
|
|
3219
3477
|
* <p>The Amazon Resource Name (ARN) of the resource you want to add tags to.</p>
|
|
@@ -3224,8 +3482,14 @@ export interface TagResourceInput {
|
|
|
3224
3482
|
*/
|
|
3225
3483
|
tags: Tag[] | undefined;
|
|
3226
3484
|
}
|
|
3485
|
+
/**
|
|
3486
|
+
* @public
|
|
3487
|
+
*/
|
|
3227
3488
|
export interface TagResourceOutput {
|
|
3228
3489
|
}
|
|
3490
|
+
/**
|
|
3491
|
+
* @public
|
|
3492
|
+
*/
|
|
3229
3493
|
export interface UntagResourceInput {
|
|
3230
3494
|
/**
|
|
3231
3495
|
* <p> The Amazon Resource Name (ARN) of the resource to remove tags from.</p>
|
|
@@ -3236,9 +3500,13 @@ export interface UntagResourceInput {
|
|
|
3236
3500
|
*/
|
|
3237
3501
|
tagKeys: string[] | undefined;
|
|
3238
3502
|
}
|
|
3503
|
+
/**
|
|
3504
|
+
* @public
|
|
3505
|
+
*/
|
|
3239
3506
|
export interface UntagResourceOutput {
|
|
3240
3507
|
}
|
|
3241
3508
|
/**
|
|
3509
|
+
* @public
|
|
3242
3510
|
* <p>The request failed because of an unknown error, exception, or failure.</p>
|
|
3243
3511
|
*/
|
|
3244
3512
|
export declare class RequestFailedException extends __BaseException {
|
|
@@ -3249,6 +3517,9 @@ export declare class RequestFailedException extends __BaseException {
|
|
|
3249
3517
|
*/
|
|
3250
3518
|
constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
|
|
3251
3519
|
}
|
|
3520
|
+
/**
|
|
3521
|
+
* @public
|
|
3522
|
+
*/
|
|
3252
3523
|
export interface UpdateActionTypeInput {
|
|
3253
3524
|
/**
|
|
3254
3525
|
* <p>The action type definition for the action type to be updated.</p>
|
|
@@ -3256,6 +3527,7 @@ export interface UpdateActionTypeInput {
|
|
|
3256
3527
|
actionType: ActionTypeDeclaration | undefined;
|
|
3257
3528
|
}
|
|
3258
3529
|
/**
|
|
3530
|
+
* @public
|
|
3259
3531
|
* <p>Represents the input of an <code>UpdatePipeline</code> action.</p>
|
|
3260
3532
|
*/
|
|
3261
3533
|
export interface UpdatePipelineInput {
|
|
@@ -3265,6 +3537,7 @@ export interface UpdatePipelineInput {
|
|
|
3265
3537
|
pipeline: PipelineDeclaration | undefined;
|
|
3266
3538
|
}
|
|
3267
3539
|
/**
|
|
3540
|
+
* @public
|
|
3268
3541
|
* <p>Represents the output of an <code>UpdatePipeline</code> action.</p>
|
|
3269
3542
|
*/
|
|
3270
3543
|
export interface UpdatePipelineOutput {
|