@aws-sdk/client-codepipeline 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CodePipeline.d.ts +0 -39
- package/dist-types/ts3.4/CodePipelineClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AcknowledgeJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AcknowledgeThirdPartyJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateCustomActionTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteCustomActionTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableStageTransitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableStageTransitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetActionTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetJobDetailsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPipelineCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPipelineExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPipelineStateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetThirdPartyJobDetailsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListActionExecutionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListActionTypesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PollForJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PollForThirdPartyJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutActionRevisionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutApprovalResultCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutJobFailureResultCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutJobSuccessResultCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutThirdPartyJobFailureResultCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutThirdPartyJobSuccessResultCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutWebhookCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RegisterWebhookWithThirdPartyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RetryStageExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopPipelineExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateActionTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/CodePipelineServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -588
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
|
|
3
|
-
|
|
4
3
|
export interface AcknowledgeJobInput {
|
|
5
4
|
jobId: string | undefined;
|
|
6
|
-
|
|
7
5
|
nonce: string | undefined;
|
|
8
6
|
}
|
|
9
7
|
export declare enum JobStatus {
|
|
@@ -15,54 +13,41 @@ export declare enum JobStatus {
|
|
|
15
13
|
Succeeded = "Succeeded",
|
|
16
14
|
TimedOut = "TimedOut",
|
|
17
15
|
}
|
|
18
|
-
|
|
19
16
|
export interface AcknowledgeJobOutput {
|
|
20
17
|
status?: JobStatus | string;
|
|
21
18
|
}
|
|
22
|
-
|
|
23
19
|
export declare class InvalidNonceException extends __BaseException {
|
|
24
20
|
readonly name: "InvalidNonceException";
|
|
25
21
|
readonly $fault: "client";
|
|
26
|
-
|
|
27
22
|
constructor(
|
|
28
23
|
opts: __ExceptionOptionType<InvalidNonceException, __BaseException>
|
|
29
24
|
);
|
|
30
25
|
}
|
|
31
|
-
|
|
32
26
|
export declare class JobNotFoundException extends __BaseException {
|
|
33
27
|
readonly name: "JobNotFoundException";
|
|
34
28
|
readonly $fault: "client";
|
|
35
|
-
|
|
36
29
|
constructor(
|
|
37
30
|
opts: __ExceptionOptionType<JobNotFoundException, __BaseException>
|
|
38
31
|
);
|
|
39
32
|
}
|
|
40
|
-
|
|
41
33
|
export declare class ValidationException extends __BaseException {
|
|
42
34
|
readonly name: "ValidationException";
|
|
43
35
|
readonly $fault: "client";
|
|
44
|
-
|
|
45
36
|
constructor(
|
|
46
37
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
47
38
|
);
|
|
48
39
|
}
|
|
49
|
-
|
|
50
40
|
export interface AcknowledgeThirdPartyJobInput {
|
|
51
41
|
jobId: string | undefined;
|
|
52
|
-
|
|
53
42
|
nonce: string | undefined;
|
|
54
|
-
|
|
55
43
|
clientToken: string | undefined;
|
|
56
44
|
}
|
|
57
|
-
|
|
58
45
|
export interface AcknowledgeThirdPartyJobOutput {
|
|
59
46
|
status?: JobStatus | string;
|
|
60
47
|
}
|
|
61
|
-
|
|
62
48
|
export declare class InvalidClientTokenException extends __BaseException {
|
|
63
49
|
readonly name: "InvalidClientTokenException";
|
|
64
50
|
readonly $fault: "client";
|
|
65
|
-
|
|
66
51
|
constructor(
|
|
67
52
|
opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>
|
|
68
53
|
);
|
|
@@ -75,7 +60,6 @@ export declare enum ActionCategory {
|
|
|
75
60
|
Source = "Source",
|
|
76
61
|
Test = "Test",
|
|
77
62
|
}
|
|
78
|
-
|
|
79
63
|
export interface ActionConfiguration {
|
|
80
64
|
configuration?: Record<string, string>;
|
|
81
65
|
}
|
|
@@ -84,26 +68,17 @@ export declare enum ActionConfigurationPropertyType {
|
|
|
84
68
|
Number = "Number",
|
|
85
69
|
String = "String",
|
|
86
70
|
}
|
|
87
|
-
|
|
88
71
|
export interface ActionConfigurationProperty {
|
|
89
72
|
name: string | undefined;
|
|
90
|
-
|
|
91
73
|
required: boolean | undefined;
|
|
92
|
-
|
|
93
74
|
key: boolean | undefined;
|
|
94
|
-
|
|
95
75
|
secret: boolean | undefined;
|
|
96
|
-
|
|
97
76
|
queryable?: boolean;
|
|
98
|
-
|
|
99
77
|
description?: string;
|
|
100
|
-
|
|
101
78
|
type?: ActionConfigurationPropertyType | string;
|
|
102
79
|
}
|
|
103
|
-
|
|
104
80
|
export interface ActionContext {
|
|
105
81
|
name?: string;
|
|
106
|
-
|
|
107
82
|
actionExecutionId?: string;
|
|
108
83
|
}
|
|
109
84
|
export declare enum ActionOwner {
|
|
@@ -111,48 +86,31 @@ export declare enum ActionOwner {
|
|
|
111
86
|
Custom = "Custom",
|
|
112
87
|
ThirdParty = "ThirdParty",
|
|
113
88
|
}
|
|
114
|
-
|
|
115
89
|
export interface ActionTypeId {
|
|
116
90
|
category: ActionCategory | string | undefined;
|
|
117
|
-
|
|
118
91
|
owner: ActionOwner | string | undefined;
|
|
119
|
-
|
|
120
92
|
provider: string | undefined;
|
|
121
|
-
|
|
122
93
|
version: string | undefined;
|
|
123
94
|
}
|
|
124
|
-
|
|
125
95
|
export interface InputArtifact {
|
|
126
96
|
name: string | undefined;
|
|
127
97
|
}
|
|
128
|
-
|
|
129
98
|
export interface OutputArtifact {
|
|
130
99
|
name: string | undefined;
|
|
131
100
|
}
|
|
132
|
-
|
|
133
101
|
export interface ActionDeclaration {
|
|
134
102
|
name: string | undefined;
|
|
135
|
-
|
|
136
103
|
actionTypeId: ActionTypeId | undefined;
|
|
137
|
-
|
|
138
104
|
runOrder?: number;
|
|
139
|
-
|
|
140
105
|
configuration?: Record<string, string>;
|
|
141
|
-
|
|
142
106
|
outputArtifacts?: OutputArtifact[];
|
|
143
|
-
|
|
144
107
|
inputArtifacts?: InputArtifact[];
|
|
145
|
-
|
|
146
108
|
roleArn?: string;
|
|
147
|
-
|
|
148
109
|
region?: string;
|
|
149
|
-
|
|
150
110
|
namespace?: string;
|
|
151
111
|
}
|
|
152
|
-
|
|
153
112
|
export interface ErrorDetails {
|
|
154
113
|
code?: string;
|
|
155
|
-
|
|
156
114
|
message?: string;
|
|
157
115
|
}
|
|
158
116
|
export declare enum ActionExecutionStatus {
|
|
@@ -161,261 +119,164 @@ export declare enum ActionExecutionStatus {
|
|
|
161
119
|
InProgress = "InProgress",
|
|
162
120
|
Succeeded = "Succeeded",
|
|
163
121
|
}
|
|
164
|
-
|
|
165
122
|
export interface ActionExecution {
|
|
166
123
|
actionExecutionId?: string;
|
|
167
|
-
|
|
168
124
|
status?: ActionExecutionStatus | string;
|
|
169
|
-
|
|
170
125
|
summary?: string;
|
|
171
|
-
|
|
172
126
|
lastStatusChange?: Date;
|
|
173
|
-
|
|
174
127
|
token?: string;
|
|
175
|
-
|
|
176
128
|
lastUpdatedBy?: string;
|
|
177
|
-
|
|
178
129
|
externalExecutionId?: string;
|
|
179
|
-
|
|
180
130
|
externalExecutionUrl?: string;
|
|
181
|
-
|
|
182
131
|
percentComplete?: number;
|
|
183
|
-
|
|
184
132
|
errorDetails?: ErrorDetails;
|
|
185
133
|
}
|
|
186
|
-
|
|
187
134
|
export interface S3Location {
|
|
188
135
|
bucket?: string;
|
|
189
|
-
|
|
190
136
|
key?: string;
|
|
191
137
|
}
|
|
192
|
-
|
|
193
138
|
export interface ArtifactDetail {
|
|
194
139
|
name?: string;
|
|
195
|
-
|
|
196
140
|
s3location?: S3Location;
|
|
197
141
|
}
|
|
198
|
-
|
|
199
142
|
export interface ActionExecutionInput {
|
|
200
143
|
actionTypeId?: ActionTypeId;
|
|
201
|
-
|
|
202
144
|
configuration?: Record<string, string>;
|
|
203
|
-
|
|
204
145
|
resolvedConfiguration?: Record<string, string>;
|
|
205
|
-
|
|
206
146
|
roleArn?: string;
|
|
207
|
-
|
|
208
147
|
region?: string;
|
|
209
|
-
|
|
210
148
|
inputArtifacts?: ArtifactDetail[];
|
|
211
|
-
|
|
212
149
|
namespace?: string;
|
|
213
150
|
}
|
|
214
|
-
|
|
215
151
|
export interface ActionExecutionResult {
|
|
216
152
|
externalExecutionId?: string;
|
|
217
|
-
|
|
218
153
|
externalExecutionSummary?: string;
|
|
219
|
-
|
|
220
154
|
externalExecutionUrl?: string;
|
|
221
155
|
}
|
|
222
|
-
|
|
223
156
|
export interface ActionExecutionOutput {
|
|
224
157
|
outputArtifacts?: ArtifactDetail[];
|
|
225
|
-
|
|
226
158
|
executionResult?: ActionExecutionResult;
|
|
227
|
-
|
|
228
159
|
outputVariables?: Record<string, string>;
|
|
229
160
|
}
|
|
230
|
-
|
|
231
161
|
export interface ActionExecutionDetail {
|
|
232
162
|
pipelineExecutionId?: string;
|
|
233
|
-
|
|
234
163
|
actionExecutionId?: string;
|
|
235
|
-
|
|
236
164
|
pipelineVersion?: number;
|
|
237
|
-
|
|
238
165
|
stageName?: string;
|
|
239
|
-
|
|
240
166
|
actionName?: string;
|
|
241
|
-
|
|
242
167
|
startTime?: Date;
|
|
243
|
-
|
|
244
168
|
lastUpdateTime?: Date;
|
|
245
|
-
|
|
246
169
|
status?: ActionExecutionStatus | string;
|
|
247
|
-
|
|
248
170
|
input?: ActionExecutionInput;
|
|
249
|
-
|
|
250
171
|
output?: ActionExecutionOutput;
|
|
251
172
|
}
|
|
252
|
-
|
|
253
173
|
export interface ActionExecutionFilter {
|
|
254
174
|
pipelineExecutionId?: string;
|
|
255
175
|
}
|
|
256
|
-
|
|
257
176
|
export declare class ActionNotFoundException extends __BaseException {
|
|
258
177
|
readonly name: "ActionNotFoundException";
|
|
259
178
|
readonly $fault: "client";
|
|
260
|
-
|
|
261
179
|
constructor(
|
|
262
180
|
opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>
|
|
263
181
|
);
|
|
264
182
|
}
|
|
265
|
-
|
|
266
183
|
export interface ActionRevision {
|
|
267
184
|
revisionId: string | undefined;
|
|
268
|
-
|
|
269
185
|
revisionChangeId: string | undefined;
|
|
270
|
-
|
|
271
186
|
created: Date | undefined;
|
|
272
187
|
}
|
|
273
|
-
|
|
274
188
|
export interface ActionState {
|
|
275
189
|
actionName?: string;
|
|
276
|
-
|
|
277
190
|
currentRevision?: ActionRevision;
|
|
278
|
-
|
|
279
191
|
latestExecution?: ActionExecution;
|
|
280
|
-
|
|
281
192
|
entityUrl?: string;
|
|
282
|
-
|
|
283
193
|
revisionUrl?: string;
|
|
284
194
|
}
|
|
285
|
-
|
|
286
195
|
export interface ArtifactDetails {
|
|
287
196
|
minimumCount: number | undefined;
|
|
288
|
-
|
|
289
197
|
maximumCount: number | undefined;
|
|
290
198
|
}
|
|
291
|
-
|
|
292
199
|
export interface ActionTypeSettings {
|
|
293
200
|
thirdPartyConfigurationUrl?: string;
|
|
294
|
-
|
|
295
201
|
entityUrlTemplate?: string;
|
|
296
|
-
|
|
297
202
|
executionUrlTemplate?: string;
|
|
298
|
-
|
|
299
203
|
revisionUrlTemplate?: string;
|
|
300
204
|
}
|
|
301
|
-
|
|
302
205
|
export interface ActionType {
|
|
303
206
|
id: ActionTypeId | undefined;
|
|
304
|
-
|
|
305
207
|
settings?: ActionTypeSettings;
|
|
306
|
-
|
|
307
208
|
actionConfigurationProperties?: ActionConfigurationProperty[];
|
|
308
|
-
|
|
309
209
|
inputArtifactDetails: ArtifactDetails | undefined;
|
|
310
|
-
|
|
311
210
|
outputArtifactDetails: ArtifactDetails | undefined;
|
|
312
211
|
}
|
|
313
|
-
|
|
314
212
|
export interface ActionTypeArtifactDetails {
|
|
315
213
|
minimumCount: number | undefined;
|
|
316
|
-
|
|
317
214
|
maximumCount: number | undefined;
|
|
318
215
|
}
|
|
319
|
-
|
|
320
216
|
export interface JobWorkerExecutorConfiguration {
|
|
321
217
|
pollingAccounts?: string[];
|
|
322
|
-
|
|
323
218
|
pollingServicePrincipals?: string[];
|
|
324
219
|
}
|
|
325
|
-
|
|
326
220
|
export interface LambdaExecutorConfiguration {
|
|
327
221
|
lambdaFunctionArn: string | undefined;
|
|
328
222
|
}
|
|
329
|
-
|
|
330
223
|
export interface ExecutorConfiguration {
|
|
331
224
|
lambdaExecutorConfiguration?: LambdaExecutorConfiguration;
|
|
332
|
-
|
|
333
225
|
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration;
|
|
334
226
|
}
|
|
335
227
|
export declare enum ExecutorType {
|
|
336
228
|
JobWorker = "JobWorker",
|
|
337
229
|
Lambda = "Lambda",
|
|
338
230
|
}
|
|
339
|
-
|
|
340
231
|
export interface ActionTypeExecutor {
|
|
341
232
|
configuration: ExecutorConfiguration | undefined;
|
|
342
|
-
|
|
343
233
|
type: ExecutorType | string | undefined;
|
|
344
|
-
|
|
345
234
|
policyStatementsTemplate?: string;
|
|
346
|
-
|
|
347
235
|
jobTimeout?: number;
|
|
348
236
|
}
|
|
349
|
-
|
|
350
237
|
export interface ActionTypeIdentifier {
|
|
351
238
|
category: ActionCategory | string | undefined;
|
|
352
|
-
|
|
353
239
|
owner: string | undefined;
|
|
354
|
-
|
|
355
240
|
provider: string | undefined;
|
|
356
|
-
|
|
357
241
|
version: string | undefined;
|
|
358
242
|
}
|
|
359
|
-
|
|
360
243
|
export interface ActionTypePermissions {
|
|
361
244
|
allowedAccounts: string[] | undefined;
|
|
362
245
|
}
|
|
363
|
-
|
|
364
246
|
export interface ActionTypeProperty {
|
|
365
247
|
name: string | undefined;
|
|
366
|
-
|
|
367
248
|
optional: boolean | undefined;
|
|
368
|
-
|
|
369
249
|
key: boolean | undefined;
|
|
370
|
-
|
|
371
250
|
noEcho: boolean | undefined;
|
|
372
|
-
|
|
373
251
|
queryable?: boolean;
|
|
374
|
-
|
|
375
252
|
description?: string;
|
|
376
253
|
}
|
|
377
|
-
|
|
378
254
|
export interface ActionTypeUrls {
|
|
379
255
|
configurationUrl?: string;
|
|
380
|
-
|
|
381
256
|
entityUrlTemplate?: string;
|
|
382
|
-
|
|
383
257
|
executionUrlTemplate?: string;
|
|
384
|
-
|
|
385
258
|
revisionUrlTemplate?: string;
|
|
386
259
|
}
|
|
387
|
-
|
|
388
260
|
export interface ActionTypeDeclaration {
|
|
389
261
|
description?: string;
|
|
390
|
-
|
|
391
262
|
executor: ActionTypeExecutor | undefined;
|
|
392
|
-
|
|
393
263
|
id: ActionTypeIdentifier | undefined;
|
|
394
|
-
|
|
395
264
|
inputArtifactDetails: ActionTypeArtifactDetails | undefined;
|
|
396
|
-
|
|
397
265
|
outputArtifactDetails: ActionTypeArtifactDetails | undefined;
|
|
398
|
-
|
|
399
266
|
permissions?: ActionTypePermissions;
|
|
400
|
-
|
|
401
267
|
properties?: ActionTypeProperty[];
|
|
402
|
-
|
|
403
268
|
urls?: ActionTypeUrls;
|
|
404
269
|
}
|
|
405
|
-
|
|
406
270
|
export declare class ActionTypeNotFoundException extends __BaseException {
|
|
407
271
|
readonly name: "ActionTypeNotFoundException";
|
|
408
272
|
readonly $fault: "client";
|
|
409
|
-
|
|
410
273
|
constructor(
|
|
411
274
|
opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>
|
|
412
275
|
);
|
|
413
276
|
}
|
|
414
|
-
|
|
415
277
|
export declare class ApprovalAlreadyCompletedException extends __BaseException {
|
|
416
278
|
readonly name: "ApprovalAlreadyCompletedException";
|
|
417
279
|
readonly $fault: "client";
|
|
418
|
-
|
|
419
280
|
constructor(
|
|
420
281
|
opts: __ExceptionOptionType<
|
|
421
282
|
ApprovalAlreadyCompletedException,
|
|
@@ -427,91 +288,64 @@ export declare enum ApprovalStatus {
|
|
|
427
288
|
Approved = "Approved",
|
|
428
289
|
Rejected = "Rejected",
|
|
429
290
|
}
|
|
430
|
-
|
|
431
291
|
export interface ApprovalResult {
|
|
432
292
|
summary: string | undefined;
|
|
433
|
-
|
|
434
293
|
status: ApprovalStatus | string | undefined;
|
|
435
294
|
}
|
|
436
|
-
|
|
437
295
|
export interface S3ArtifactLocation {
|
|
438
296
|
bucketName: string | undefined;
|
|
439
|
-
|
|
440
297
|
objectKey: string | undefined;
|
|
441
298
|
}
|
|
442
299
|
export declare enum ArtifactLocationType {
|
|
443
300
|
S3 = "S3",
|
|
444
301
|
}
|
|
445
|
-
|
|
446
302
|
export interface ArtifactLocation {
|
|
447
303
|
type?: ArtifactLocationType | string;
|
|
448
|
-
|
|
449
304
|
s3Location?: S3ArtifactLocation;
|
|
450
305
|
}
|
|
451
|
-
|
|
452
306
|
export interface Artifact {
|
|
453
307
|
name?: string;
|
|
454
|
-
|
|
455
308
|
revision?: string;
|
|
456
|
-
|
|
457
309
|
location?: ArtifactLocation;
|
|
458
310
|
}
|
|
459
|
-
|
|
460
311
|
export interface ArtifactRevision {
|
|
461
312
|
name?: string;
|
|
462
|
-
|
|
463
313
|
revisionId?: string;
|
|
464
|
-
|
|
465
314
|
revisionChangeIdentifier?: string;
|
|
466
|
-
|
|
467
315
|
revisionSummary?: string;
|
|
468
|
-
|
|
469
316
|
created?: Date;
|
|
470
|
-
|
|
471
317
|
revisionUrl?: string;
|
|
472
318
|
}
|
|
473
319
|
export declare enum EncryptionKeyType {
|
|
474
320
|
KMS = "KMS",
|
|
475
321
|
}
|
|
476
|
-
|
|
477
322
|
export interface EncryptionKey {
|
|
478
323
|
id: string | undefined;
|
|
479
|
-
|
|
480
324
|
type: EncryptionKeyType | string | undefined;
|
|
481
325
|
}
|
|
482
326
|
export declare enum ArtifactStoreType {
|
|
483
327
|
S3 = "S3",
|
|
484
328
|
}
|
|
485
|
-
|
|
486
329
|
export interface ArtifactStore {
|
|
487
330
|
type: ArtifactStoreType | string | undefined;
|
|
488
|
-
|
|
489
331
|
location: string | undefined;
|
|
490
|
-
|
|
491
332
|
encryptionKey?: EncryptionKey;
|
|
492
333
|
}
|
|
493
|
-
|
|
494
334
|
export interface AWSSessionCredentials {
|
|
495
335
|
accessKeyId: string | undefined;
|
|
496
|
-
|
|
497
336
|
secretAccessKey: string | undefined;
|
|
498
|
-
|
|
499
337
|
sessionToken: string | undefined;
|
|
500
338
|
}
|
|
501
339
|
export declare enum BlockerType {
|
|
502
340
|
Schedule = "Schedule",
|
|
503
341
|
}
|
|
504
|
-
|
|
505
342
|
export interface BlockerDeclaration {
|
|
506
343
|
name: string | undefined;
|
|
507
|
-
|
|
508
344
|
type: BlockerType | string | undefined;
|
|
509
345
|
}
|
|
510
|
-
|
|
511
346
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
512
347
|
readonly name: "ConcurrentModificationException";
|
|
513
348
|
readonly $fault: "client";
|
|
514
|
-
|
|
515
349
|
constructor(
|
|
516
350
|
opts: __ExceptionOptionType<
|
|
517
351
|
ConcurrentModificationException,
|
|
@@ -519,102 +353,69 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
519
353
|
>
|
|
520
354
|
);
|
|
521
355
|
}
|
|
522
|
-
|
|
523
356
|
export interface Tag {
|
|
524
357
|
key: string | undefined;
|
|
525
|
-
|
|
526
358
|
value: string | undefined;
|
|
527
359
|
}
|
|
528
|
-
|
|
529
360
|
export interface CreateCustomActionTypeInput {
|
|
530
361
|
category: ActionCategory | string | undefined;
|
|
531
|
-
|
|
532
362
|
provider: string | undefined;
|
|
533
|
-
|
|
534
363
|
version: string | undefined;
|
|
535
|
-
|
|
536
364
|
settings?: ActionTypeSettings;
|
|
537
|
-
|
|
538
365
|
configurationProperties?: ActionConfigurationProperty[];
|
|
539
|
-
|
|
540
366
|
inputArtifactDetails: ArtifactDetails | undefined;
|
|
541
|
-
|
|
542
367
|
outputArtifactDetails: ArtifactDetails | undefined;
|
|
543
|
-
|
|
544
368
|
tags?: Tag[];
|
|
545
369
|
}
|
|
546
|
-
|
|
547
370
|
export interface CreateCustomActionTypeOutput {
|
|
548
371
|
actionType: ActionType | undefined;
|
|
549
|
-
|
|
550
372
|
tags?: Tag[];
|
|
551
373
|
}
|
|
552
|
-
|
|
553
374
|
export declare class InvalidTagsException extends __BaseException {
|
|
554
375
|
readonly name: "InvalidTagsException";
|
|
555
376
|
readonly $fault: "client";
|
|
556
|
-
|
|
557
377
|
constructor(
|
|
558
378
|
opts: __ExceptionOptionType<InvalidTagsException, __BaseException>
|
|
559
379
|
);
|
|
560
380
|
}
|
|
561
|
-
|
|
562
381
|
export declare class LimitExceededException extends __BaseException {
|
|
563
382
|
readonly name: "LimitExceededException";
|
|
564
383
|
readonly $fault: "client";
|
|
565
|
-
|
|
566
384
|
constructor(
|
|
567
385
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
568
386
|
);
|
|
569
387
|
}
|
|
570
|
-
|
|
571
388
|
export declare class TooManyTagsException extends __BaseException {
|
|
572
389
|
readonly name: "TooManyTagsException";
|
|
573
390
|
readonly $fault: "client";
|
|
574
|
-
|
|
575
391
|
constructor(
|
|
576
392
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
577
393
|
);
|
|
578
394
|
}
|
|
579
|
-
|
|
580
395
|
export interface StageDeclaration {
|
|
581
396
|
name: string | undefined;
|
|
582
|
-
|
|
583
397
|
blockers?: BlockerDeclaration[];
|
|
584
|
-
|
|
585
398
|
actions: ActionDeclaration[] | undefined;
|
|
586
399
|
}
|
|
587
|
-
|
|
588
400
|
export interface PipelineDeclaration {
|
|
589
401
|
name: string | undefined;
|
|
590
|
-
|
|
591
402
|
roleArn: string | undefined;
|
|
592
|
-
|
|
593
403
|
artifactStore?: ArtifactStore;
|
|
594
|
-
|
|
595
404
|
artifactStores?: Record<string, ArtifactStore>;
|
|
596
|
-
|
|
597
405
|
stages: StageDeclaration[] | undefined;
|
|
598
|
-
|
|
599
406
|
version?: number;
|
|
600
407
|
}
|
|
601
|
-
|
|
602
408
|
export interface CreatePipelineInput {
|
|
603
409
|
pipeline: PipelineDeclaration | undefined;
|
|
604
|
-
|
|
605
410
|
tags?: Tag[];
|
|
606
411
|
}
|
|
607
|
-
|
|
608
412
|
export interface CreatePipelineOutput {
|
|
609
413
|
pipeline?: PipelineDeclaration;
|
|
610
|
-
|
|
611
414
|
tags?: Tag[];
|
|
612
415
|
}
|
|
613
|
-
|
|
614
416
|
export declare class InvalidActionDeclarationException extends __BaseException {
|
|
615
417
|
readonly name: "InvalidActionDeclarationException";
|
|
616
418
|
readonly $fault: "client";
|
|
617
|
-
|
|
618
419
|
constructor(
|
|
619
420
|
opts: __ExceptionOptionType<
|
|
620
421
|
InvalidActionDeclarationException,
|
|
@@ -622,11 +423,9 @@ export declare class InvalidActionDeclarationException extends __BaseException {
|
|
|
622
423
|
>
|
|
623
424
|
);
|
|
624
425
|
}
|
|
625
|
-
|
|
626
426
|
export declare class InvalidBlockerDeclarationException extends __BaseException {
|
|
627
427
|
readonly name: "InvalidBlockerDeclarationException";
|
|
628
428
|
readonly $fault: "client";
|
|
629
|
-
|
|
630
429
|
constructor(
|
|
631
430
|
opts: __ExceptionOptionType<
|
|
632
431
|
InvalidBlockerDeclarationException,
|
|
@@ -634,11 +433,9 @@ export declare class InvalidBlockerDeclarationException extends __BaseException
|
|
|
634
433
|
>
|
|
635
434
|
);
|
|
636
435
|
}
|
|
637
|
-
|
|
638
436
|
export declare class InvalidStageDeclarationException extends __BaseException {
|
|
639
437
|
readonly name: "InvalidStageDeclarationException";
|
|
640
438
|
readonly $fault: "client";
|
|
641
|
-
|
|
642
439
|
constructor(
|
|
643
440
|
opts: __ExceptionOptionType<
|
|
644
441
|
InvalidStageDeclarationException,
|
|
@@ -646,33 +443,25 @@ export declare class InvalidStageDeclarationException extends __BaseException {
|
|
|
646
443
|
>
|
|
647
444
|
);
|
|
648
445
|
}
|
|
649
|
-
|
|
650
446
|
export declare class InvalidStructureException extends __BaseException {
|
|
651
447
|
readonly name: "InvalidStructureException";
|
|
652
448
|
readonly $fault: "client";
|
|
653
|
-
|
|
654
449
|
constructor(
|
|
655
450
|
opts: __ExceptionOptionType<InvalidStructureException, __BaseException>
|
|
656
451
|
);
|
|
657
452
|
}
|
|
658
|
-
|
|
659
453
|
export declare class PipelineNameInUseException extends __BaseException {
|
|
660
454
|
readonly name: "PipelineNameInUseException";
|
|
661
455
|
readonly $fault: "client";
|
|
662
|
-
|
|
663
456
|
constructor(
|
|
664
457
|
opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>
|
|
665
458
|
);
|
|
666
459
|
}
|
|
667
|
-
|
|
668
460
|
export interface DeleteCustomActionTypeInput {
|
|
669
461
|
category: ActionCategory | string | undefined;
|
|
670
|
-
|
|
671
462
|
provider: string | undefined;
|
|
672
|
-
|
|
673
463
|
version: string | undefined;
|
|
674
464
|
}
|
|
675
|
-
|
|
676
465
|
export interface DeletePipelineInput {
|
|
677
466
|
name: string | undefined;
|
|
678
467
|
}
|
|
@@ -684,11 +473,9 @@ export interface DeregisterWebhookWithThirdPartyInput {
|
|
|
684
473
|
webhookName?: string;
|
|
685
474
|
}
|
|
686
475
|
export interface DeregisterWebhookWithThirdPartyOutput {}
|
|
687
|
-
|
|
688
476
|
export declare class WebhookNotFoundException extends __BaseException {
|
|
689
477
|
readonly name: "WebhookNotFoundException";
|
|
690
478
|
readonly $fault: "client";
|
|
691
|
-
|
|
692
479
|
constructor(
|
|
693
480
|
opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>
|
|
694
481
|
);
|
|
@@ -697,129 +484,87 @@ export declare enum StageTransitionType {
|
|
|
697
484
|
Inbound = "Inbound",
|
|
698
485
|
Outbound = "Outbound",
|
|
699
486
|
}
|
|
700
|
-
|
|
701
487
|
export interface DisableStageTransitionInput {
|
|
702
488
|
pipelineName: string | undefined;
|
|
703
|
-
|
|
704
489
|
stageName: string | undefined;
|
|
705
|
-
|
|
706
490
|
transitionType: StageTransitionType | string | undefined;
|
|
707
|
-
|
|
708
491
|
reason: string | undefined;
|
|
709
492
|
}
|
|
710
|
-
|
|
711
493
|
export declare class PipelineNotFoundException extends __BaseException {
|
|
712
494
|
readonly name: "PipelineNotFoundException";
|
|
713
495
|
readonly $fault: "client";
|
|
714
|
-
|
|
715
496
|
constructor(
|
|
716
497
|
opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>
|
|
717
498
|
);
|
|
718
499
|
}
|
|
719
|
-
|
|
720
500
|
export declare class StageNotFoundException extends __BaseException {
|
|
721
501
|
readonly name: "StageNotFoundException";
|
|
722
502
|
readonly $fault: "client";
|
|
723
|
-
|
|
724
503
|
constructor(
|
|
725
504
|
opts: __ExceptionOptionType<StageNotFoundException, __BaseException>
|
|
726
505
|
);
|
|
727
506
|
}
|
|
728
|
-
|
|
729
507
|
export interface EnableStageTransitionInput {
|
|
730
508
|
pipelineName: string | undefined;
|
|
731
|
-
|
|
732
509
|
stageName: string | undefined;
|
|
733
|
-
|
|
734
510
|
transitionType: StageTransitionType | string | undefined;
|
|
735
511
|
}
|
|
736
512
|
export interface GetActionTypeInput {
|
|
737
513
|
category: ActionCategory | string | undefined;
|
|
738
|
-
|
|
739
514
|
owner: string | undefined;
|
|
740
|
-
|
|
741
515
|
provider: string | undefined;
|
|
742
|
-
|
|
743
516
|
version: string | undefined;
|
|
744
517
|
}
|
|
745
518
|
export interface GetActionTypeOutput {
|
|
746
519
|
actionType?: ActionTypeDeclaration;
|
|
747
520
|
}
|
|
748
|
-
|
|
749
521
|
export interface GetJobDetailsInput {
|
|
750
522
|
jobId: string | undefined;
|
|
751
523
|
}
|
|
752
|
-
|
|
753
524
|
export interface StageContext {
|
|
754
525
|
name?: string;
|
|
755
526
|
}
|
|
756
|
-
|
|
757
527
|
export interface PipelineContext {
|
|
758
528
|
pipelineName?: string;
|
|
759
|
-
|
|
760
529
|
stage?: StageContext;
|
|
761
|
-
|
|
762
530
|
action?: ActionContext;
|
|
763
|
-
|
|
764
531
|
pipelineArn?: string;
|
|
765
|
-
|
|
766
532
|
pipelineExecutionId?: string;
|
|
767
533
|
}
|
|
768
|
-
|
|
769
534
|
export interface JobData {
|
|
770
535
|
actionTypeId?: ActionTypeId;
|
|
771
|
-
|
|
772
536
|
actionConfiguration?: ActionConfiguration;
|
|
773
|
-
|
|
774
537
|
pipelineContext?: PipelineContext;
|
|
775
|
-
|
|
776
538
|
inputArtifacts?: Artifact[];
|
|
777
|
-
|
|
778
539
|
outputArtifacts?: Artifact[];
|
|
779
|
-
|
|
780
540
|
artifactCredentials?: AWSSessionCredentials;
|
|
781
|
-
|
|
782
541
|
continuationToken?: string;
|
|
783
|
-
|
|
784
542
|
encryptionKey?: EncryptionKey;
|
|
785
543
|
}
|
|
786
|
-
|
|
787
544
|
export interface JobDetails {
|
|
788
545
|
id?: string;
|
|
789
|
-
|
|
790
546
|
data?: JobData;
|
|
791
|
-
|
|
792
547
|
accountId?: string;
|
|
793
548
|
}
|
|
794
|
-
|
|
795
549
|
export interface GetJobDetailsOutput {
|
|
796
550
|
jobDetails?: JobDetails;
|
|
797
551
|
}
|
|
798
|
-
|
|
799
552
|
export interface GetPipelineInput {
|
|
800
553
|
name: string | undefined;
|
|
801
|
-
|
|
802
554
|
version?: number;
|
|
803
555
|
}
|
|
804
|
-
|
|
805
556
|
export interface PipelineMetadata {
|
|
806
557
|
pipelineArn?: string;
|
|
807
|
-
|
|
808
558
|
created?: Date;
|
|
809
|
-
|
|
810
559
|
updated?: Date;
|
|
811
560
|
}
|
|
812
|
-
|
|
813
561
|
export interface GetPipelineOutput {
|
|
814
562
|
pipeline?: PipelineDeclaration;
|
|
815
|
-
|
|
816
563
|
metadata?: PipelineMetadata;
|
|
817
564
|
}
|
|
818
|
-
|
|
819
565
|
export declare class PipelineVersionNotFoundException extends __BaseException {
|
|
820
566
|
readonly name: "PipelineVersionNotFoundException";
|
|
821
567
|
readonly $fault: "client";
|
|
822
|
-
|
|
823
568
|
constructor(
|
|
824
569
|
opts: __ExceptionOptionType<
|
|
825
570
|
PipelineVersionNotFoundException,
|
|
@@ -827,10 +572,8 @@ export declare class PipelineVersionNotFoundException extends __BaseException {
|
|
|
827
572
|
>
|
|
828
573
|
);
|
|
829
574
|
}
|
|
830
|
-
|
|
831
575
|
export interface GetPipelineExecutionInput {
|
|
832
576
|
pipelineName: string | undefined;
|
|
833
|
-
|
|
834
577
|
pipelineExecutionId: string | undefined;
|
|
835
578
|
}
|
|
836
579
|
export declare enum PipelineExecutionStatus {
|
|
@@ -842,29 +585,20 @@ export declare enum PipelineExecutionStatus {
|
|
|
842
585
|
Succeeded = "Succeeded",
|
|
843
586
|
Superseded = "Superseded",
|
|
844
587
|
}
|
|
845
|
-
|
|
846
588
|
export interface PipelineExecution {
|
|
847
589
|
pipelineName?: string;
|
|
848
|
-
|
|
849
590
|
pipelineVersion?: number;
|
|
850
|
-
|
|
851
591
|
pipelineExecutionId?: string;
|
|
852
|
-
|
|
853
592
|
status?: PipelineExecutionStatus | string;
|
|
854
|
-
|
|
855
593
|
statusSummary?: string;
|
|
856
|
-
|
|
857
594
|
artifactRevisions?: ArtifactRevision[];
|
|
858
595
|
}
|
|
859
|
-
|
|
860
596
|
export interface GetPipelineExecutionOutput {
|
|
861
597
|
pipelineExecution?: PipelineExecution;
|
|
862
598
|
}
|
|
863
|
-
|
|
864
599
|
export declare class PipelineExecutionNotFoundException extends __BaseException {
|
|
865
600
|
readonly name: "PipelineExecutionNotFoundException";
|
|
866
601
|
readonly $fault: "client";
|
|
867
|
-
|
|
868
602
|
constructor(
|
|
869
603
|
opts: __ExceptionOptionType<
|
|
870
604
|
PipelineExecutionNotFoundException,
|
|
@@ -872,7 +606,6 @@ export declare class PipelineExecutionNotFoundException extends __BaseException
|
|
|
872
606
|
>
|
|
873
607
|
);
|
|
874
608
|
}
|
|
875
|
-
|
|
876
609
|
export interface GetPipelineStateInput {
|
|
877
610
|
name: string | undefined;
|
|
878
611
|
}
|
|
@@ -884,147 +617,96 @@ export declare enum StageExecutionStatus {
|
|
|
884
617
|
Stopping = "Stopping",
|
|
885
618
|
Succeeded = "Succeeded",
|
|
886
619
|
}
|
|
887
|
-
|
|
888
620
|
export interface StageExecution {
|
|
889
621
|
pipelineExecutionId: string | undefined;
|
|
890
|
-
|
|
891
622
|
status: StageExecutionStatus | string | undefined;
|
|
892
623
|
}
|
|
893
|
-
|
|
894
624
|
export interface TransitionState {
|
|
895
625
|
enabled?: boolean;
|
|
896
|
-
|
|
897
626
|
lastChangedBy?: string;
|
|
898
|
-
|
|
899
627
|
lastChangedAt?: Date;
|
|
900
|
-
|
|
901
628
|
disabledReason?: string;
|
|
902
629
|
}
|
|
903
|
-
|
|
904
630
|
export interface StageState {
|
|
905
631
|
stageName?: string;
|
|
906
|
-
|
|
907
632
|
inboundExecution?: StageExecution;
|
|
908
|
-
|
|
909
633
|
inboundTransitionState?: TransitionState;
|
|
910
|
-
|
|
911
634
|
actionStates?: ActionState[];
|
|
912
|
-
|
|
913
635
|
latestExecution?: StageExecution;
|
|
914
636
|
}
|
|
915
|
-
|
|
916
637
|
export interface GetPipelineStateOutput {
|
|
917
638
|
pipelineName?: string;
|
|
918
|
-
|
|
919
639
|
pipelineVersion?: number;
|
|
920
|
-
|
|
921
640
|
stageStates?: StageState[];
|
|
922
|
-
|
|
923
641
|
created?: Date;
|
|
924
|
-
|
|
925
642
|
updated?: Date;
|
|
926
643
|
}
|
|
927
|
-
|
|
928
644
|
export interface GetThirdPartyJobDetailsInput {
|
|
929
645
|
jobId: string | undefined;
|
|
930
|
-
|
|
931
646
|
clientToken: string | undefined;
|
|
932
647
|
}
|
|
933
|
-
|
|
934
648
|
export interface ThirdPartyJobData {
|
|
935
649
|
actionTypeId?: ActionTypeId;
|
|
936
|
-
|
|
937
650
|
actionConfiguration?: ActionConfiguration;
|
|
938
|
-
|
|
939
651
|
pipelineContext?: PipelineContext;
|
|
940
|
-
|
|
941
652
|
inputArtifacts?: Artifact[];
|
|
942
|
-
|
|
943
653
|
outputArtifacts?: Artifact[];
|
|
944
|
-
|
|
945
654
|
artifactCredentials?: AWSSessionCredentials;
|
|
946
|
-
|
|
947
655
|
continuationToken?: string;
|
|
948
|
-
|
|
949
656
|
encryptionKey?: EncryptionKey;
|
|
950
657
|
}
|
|
951
|
-
|
|
952
658
|
export interface ThirdPartyJobDetails {
|
|
953
659
|
id?: string;
|
|
954
|
-
|
|
955
660
|
data?: ThirdPartyJobData;
|
|
956
|
-
|
|
957
661
|
nonce?: string;
|
|
958
662
|
}
|
|
959
|
-
|
|
960
663
|
export interface GetThirdPartyJobDetailsOutput {
|
|
961
664
|
jobDetails?: ThirdPartyJobDetails;
|
|
962
665
|
}
|
|
963
|
-
|
|
964
666
|
export declare class InvalidJobException extends __BaseException {
|
|
965
667
|
readonly name: "InvalidJobException";
|
|
966
668
|
readonly $fault: "client";
|
|
967
|
-
|
|
968
669
|
constructor(
|
|
969
670
|
opts: __ExceptionOptionType<InvalidJobException, __BaseException>
|
|
970
671
|
);
|
|
971
672
|
}
|
|
972
|
-
|
|
973
673
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
974
674
|
readonly name: "InvalidNextTokenException";
|
|
975
675
|
readonly $fault: "client";
|
|
976
|
-
|
|
977
676
|
constructor(
|
|
978
677
|
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
979
678
|
);
|
|
980
679
|
}
|
|
981
680
|
export interface ListActionExecutionsInput {
|
|
982
681
|
pipelineName: string | undefined;
|
|
983
|
-
|
|
984
682
|
filter?: ActionExecutionFilter;
|
|
985
|
-
|
|
986
683
|
maxResults?: number;
|
|
987
|
-
|
|
988
684
|
nextToken?: string;
|
|
989
685
|
}
|
|
990
686
|
export interface ListActionExecutionsOutput {
|
|
991
687
|
actionExecutionDetails?: ActionExecutionDetail[];
|
|
992
|
-
|
|
993
688
|
nextToken?: string;
|
|
994
689
|
}
|
|
995
|
-
|
|
996
690
|
export interface ListActionTypesInput {
|
|
997
691
|
actionOwnerFilter?: ActionOwner | string;
|
|
998
|
-
|
|
999
692
|
nextToken?: string;
|
|
1000
|
-
|
|
1001
693
|
regionFilter?: string;
|
|
1002
694
|
}
|
|
1003
|
-
|
|
1004
695
|
export interface ListActionTypesOutput {
|
|
1005
696
|
actionTypes: ActionType[] | undefined;
|
|
1006
|
-
|
|
1007
697
|
nextToken?: string;
|
|
1008
698
|
}
|
|
1009
|
-
|
|
1010
699
|
export interface ListPipelineExecutionsInput {
|
|
1011
700
|
pipelineName: string | undefined;
|
|
1012
|
-
|
|
1013
701
|
maxResults?: number;
|
|
1014
|
-
|
|
1015
702
|
nextToken?: string;
|
|
1016
703
|
}
|
|
1017
|
-
|
|
1018
704
|
export interface SourceRevision {
|
|
1019
705
|
actionName: string | undefined;
|
|
1020
|
-
|
|
1021
706
|
revisionId?: string;
|
|
1022
|
-
|
|
1023
707
|
revisionSummary?: string;
|
|
1024
|
-
|
|
1025
708
|
revisionUrl?: string;
|
|
1026
709
|
}
|
|
1027
|
-
|
|
1028
710
|
export interface StopExecutionTrigger {
|
|
1029
711
|
reason?: string;
|
|
1030
712
|
}
|
|
@@ -1036,89 +718,62 @@ export declare enum TriggerType {
|
|
|
1036
718
|
StartPipelineExecution = "StartPipelineExecution",
|
|
1037
719
|
Webhook = "Webhook",
|
|
1038
720
|
}
|
|
1039
|
-
|
|
1040
721
|
export interface ExecutionTrigger {
|
|
1041
722
|
triggerType?: TriggerType | string;
|
|
1042
|
-
|
|
1043
723
|
triggerDetail?: string;
|
|
1044
724
|
}
|
|
1045
|
-
|
|
1046
725
|
export interface PipelineExecutionSummary {
|
|
1047
726
|
pipelineExecutionId?: string;
|
|
1048
|
-
|
|
1049
727
|
status?: PipelineExecutionStatus | string;
|
|
1050
|
-
|
|
1051
728
|
startTime?: Date;
|
|
1052
|
-
|
|
1053
729
|
lastUpdateTime?: Date;
|
|
1054
|
-
|
|
1055
730
|
sourceRevisions?: SourceRevision[];
|
|
1056
|
-
|
|
1057
731
|
trigger?: ExecutionTrigger;
|
|
1058
|
-
|
|
1059
732
|
stopTrigger?: StopExecutionTrigger;
|
|
1060
733
|
}
|
|
1061
|
-
|
|
1062
734
|
export interface ListPipelineExecutionsOutput {
|
|
1063
735
|
pipelineExecutionSummaries?: PipelineExecutionSummary[];
|
|
1064
|
-
|
|
1065
736
|
nextToken?: string;
|
|
1066
737
|
}
|
|
1067
|
-
|
|
1068
738
|
export interface ListPipelinesInput {
|
|
1069
739
|
nextToken?: string;
|
|
1070
|
-
|
|
1071
740
|
maxResults?: number;
|
|
1072
741
|
}
|
|
1073
|
-
|
|
1074
742
|
export interface PipelineSummary {
|
|
1075
743
|
name?: string;
|
|
1076
|
-
|
|
1077
744
|
version?: number;
|
|
1078
|
-
|
|
1079
745
|
created?: Date;
|
|
1080
|
-
|
|
1081
746
|
updated?: Date;
|
|
1082
747
|
}
|
|
1083
|
-
|
|
1084
748
|
export interface ListPipelinesOutput {
|
|
1085
749
|
pipelines?: PipelineSummary[];
|
|
1086
|
-
|
|
1087
750
|
nextToken?: string;
|
|
1088
751
|
}
|
|
1089
|
-
|
|
1090
752
|
export declare class InvalidArnException extends __BaseException {
|
|
1091
753
|
readonly name: "InvalidArnException";
|
|
1092
754
|
readonly $fault: "client";
|
|
1093
|
-
|
|
1094
755
|
constructor(
|
|
1095
756
|
opts: __ExceptionOptionType<InvalidArnException, __BaseException>
|
|
1096
757
|
);
|
|
1097
758
|
}
|
|
1098
759
|
export interface ListTagsForResourceInput {
|
|
1099
760
|
resourceArn: string | undefined;
|
|
1100
|
-
|
|
1101
761
|
nextToken?: string;
|
|
1102
|
-
|
|
1103
762
|
maxResults?: number;
|
|
1104
763
|
}
|
|
1105
764
|
export interface ListTagsForResourceOutput {
|
|
1106
765
|
tags?: Tag[];
|
|
1107
|
-
|
|
1108
766
|
nextToken?: string;
|
|
1109
767
|
}
|
|
1110
|
-
|
|
1111
768
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1112
769
|
readonly name: "ResourceNotFoundException";
|
|
1113
770
|
readonly $fault: "client";
|
|
1114
|
-
|
|
1115
771
|
constructor(
|
|
1116
772
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
1117
773
|
);
|
|
1118
774
|
}
|
|
1119
775
|
export interface ListWebhooksInput {
|
|
1120
776
|
NextToken?: string;
|
|
1121
|
-
|
|
1122
777
|
MaxResults?: number;
|
|
1123
778
|
}
|
|
1124
779
|
export declare enum WebhookAuthenticationType {
|
|
@@ -1126,137 +781,90 @@ export declare enum WebhookAuthenticationType {
|
|
|
1126
781
|
IP = "IP",
|
|
1127
782
|
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
1128
783
|
}
|
|
1129
|
-
|
|
1130
784
|
export interface WebhookAuthConfiguration {
|
|
1131
785
|
AllowedIPRange?: string;
|
|
1132
|
-
|
|
1133
786
|
SecretToken?: string;
|
|
1134
787
|
}
|
|
1135
|
-
|
|
1136
788
|
export interface WebhookFilterRule {
|
|
1137
789
|
jsonPath: string | undefined;
|
|
1138
|
-
|
|
1139
790
|
matchEquals?: string;
|
|
1140
791
|
}
|
|
1141
|
-
|
|
1142
792
|
export interface WebhookDefinition {
|
|
1143
793
|
name: string | undefined;
|
|
1144
|
-
|
|
1145
794
|
targetPipeline: string | undefined;
|
|
1146
|
-
|
|
1147
795
|
targetAction: string | undefined;
|
|
1148
|
-
|
|
1149
796
|
filters: WebhookFilterRule[] | undefined;
|
|
1150
|
-
|
|
1151
797
|
authentication: WebhookAuthenticationType | string | undefined;
|
|
1152
|
-
|
|
1153
798
|
authenticationConfiguration: WebhookAuthConfiguration | undefined;
|
|
1154
799
|
}
|
|
1155
|
-
|
|
1156
800
|
export interface ListWebhookItem {
|
|
1157
801
|
definition: WebhookDefinition | undefined;
|
|
1158
|
-
|
|
1159
802
|
url: string | undefined;
|
|
1160
|
-
|
|
1161
803
|
errorMessage?: string;
|
|
1162
|
-
|
|
1163
804
|
errorCode?: string;
|
|
1164
|
-
|
|
1165
805
|
lastTriggered?: Date;
|
|
1166
|
-
|
|
1167
806
|
arn?: string;
|
|
1168
|
-
|
|
1169
807
|
tags?: Tag[];
|
|
1170
808
|
}
|
|
1171
809
|
export interface ListWebhooksOutput {
|
|
1172
810
|
webhooks?: ListWebhookItem[];
|
|
1173
|
-
|
|
1174
811
|
NextToken?: string;
|
|
1175
812
|
}
|
|
1176
|
-
|
|
1177
813
|
export interface PollForJobsInput {
|
|
1178
814
|
actionTypeId: ActionTypeId | undefined;
|
|
1179
|
-
|
|
1180
815
|
maxBatchSize?: number;
|
|
1181
|
-
|
|
1182
816
|
queryParam?: Record<string, string>;
|
|
1183
817
|
}
|
|
1184
|
-
|
|
1185
818
|
export interface Job {
|
|
1186
819
|
id?: string;
|
|
1187
|
-
|
|
1188
820
|
data?: JobData;
|
|
1189
|
-
|
|
1190
821
|
nonce?: string;
|
|
1191
|
-
|
|
1192
822
|
accountId?: string;
|
|
1193
823
|
}
|
|
1194
|
-
|
|
1195
824
|
export interface PollForJobsOutput {
|
|
1196
825
|
jobs?: Job[];
|
|
1197
826
|
}
|
|
1198
|
-
|
|
1199
827
|
export interface PollForThirdPartyJobsInput {
|
|
1200
828
|
actionTypeId: ActionTypeId | undefined;
|
|
1201
|
-
|
|
1202
829
|
maxBatchSize?: number;
|
|
1203
830
|
}
|
|
1204
|
-
|
|
1205
831
|
export interface ThirdPartyJob {
|
|
1206
832
|
clientId?: string;
|
|
1207
|
-
|
|
1208
833
|
jobId?: string;
|
|
1209
834
|
}
|
|
1210
|
-
|
|
1211
835
|
export interface PollForThirdPartyJobsOutput {
|
|
1212
836
|
jobs?: ThirdPartyJob[];
|
|
1213
837
|
}
|
|
1214
|
-
|
|
1215
838
|
export interface PutActionRevisionInput {
|
|
1216
839
|
pipelineName: string | undefined;
|
|
1217
|
-
|
|
1218
840
|
stageName: string | undefined;
|
|
1219
|
-
|
|
1220
841
|
actionName: string | undefined;
|
|
1221
|
-
|
|
1222
842
|
actionRevision: ActionRevision | undefined;
|
|
1223
843
|
}
|
|
1224
|
-
|
|
1225
844
|
export interface PutActionRevisionOutput {
|
|
1226
845
|
newRevision?: boolean;
|
|
1227
|
-
|
|
1228
846
|
pipelineExecutionId?: string;
|
|
1229
847
|
}
|
|
1230
|
-
|
|
1231
848
|
export declare class InvalidApprovalTokenException extends __BaseException {
|
|
1232
849
|
readonly name: "InvalidApprovalTokenException";
|
|
1233
850
|
readonly $fault: "client";
|
|
1234
|
-
|
|
1235
851
|
constructor(
|
|
1236
852
|
opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>
|
|
1237
853
|
);
|
|
1238
854
|
}
|
|
1239
|
-
|
|
1240
855
|
export interface PutApprovalResultInput {
|
|
1241
856
|
pipelineName: string | undefined;
|
|
1242
|
-
|
|
1243
857
|
stageName: string | undefined;
|
|
1244
|
-
|
|
1245
858
|
actionName: string | undefined;
|
|
1246
|
-
|
|
1247
859
|
result: ApprovalResult | undefined;
|
|
1248
|
-
|
|
1249
860
|
token: string | undefined;
|
|
1250
861
|
}
|
|
1251
|
-
|
|
1252
862
|
export interface PutApprovalResultOutput {
|
|
1253
863
|
approvedAt?: Date;
|
|
1254
864
|
}
|
|
1255
|
-
|
|
1256
865
|
export declare class InvalidJobStateException extends __BaseException {
|
|
1257
866
|
readonly name: "InvalidJobStateException";
|
|
1258
867
|
readonly $fault: "client";
|
|
1259
|
-
|
|
1260
868
|
constructor(
|
|
1261
869
|
opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>
|
|
1262
870
|
);
|
|
@@ -1269,25 +877,18 @@ export declare enum FailureType {
|
|
|
1269
877
|
RevisionUnavailable = "RevisionUnavailable",
|
|
1270
878
|
SystemUnavailable = "SystemUnavailable",
|
|
1271
879
|
}
|
|
1272
|
-
|
|
1273
880
|
export interface FailureDetails {
|
|
1274
881
|
type: FailureType | string | undefined;
|
|
1275
|
-
|
|
1276
882
|
message: string | undefined;
|
|
1277
|
-
|
|
1278
883
|
externalExecutionId?: string;
|
|
1279
884
|
}
|
|
1280
|
-
|
|
1281
885
|
export interface PutJobFailureResultInput {
|
|
1282
886
|
jobId: string | undefined;
|
|
1283
|
-
|
|
1284
887
|
failureDetails: FailureDetails | undefined;
|
|
1285
888
|
}
|
|
1286
|
-
|
|
1287
889
|
export declare class OutputVariablesSizeExceededException extends __BaseException {
|
|
1288
890
|
readonly name: "OutputVariablesSizeExceededException";
|
|
1289
891
|
readonly $fault: "client";
|
|
1290
|
-
|
|
1291
892
|
constructor(
|
|
1292
893
|
opts: __ExceptionOptionType<
|
|
1293
894
|
OutputVariablesSizeExceededException,
|
|
@@ -1295,61 +896,39 @@ export declare class OutputVariablesSizeExceededException extends __BaseExceptio
|
|
|
1295
896
|
>
|
|
1296
897
|
);
|
|
1297
898
|
}
|
|
1298
|
-
|
|
1299
899
|
export interface CurrentRevision {
|
|
1300
900
|
revision: string | undefined;
|
|
1301
|
-
|
|
1302
901
|
changeIdentifier: string | undefined;
|
|
1303
|
-
|
|
1304
902
|
created?: Date;
|
|
1305
|
-
|
|
1306
903
|
revisionSummary?: string;
|
|
1307
904
|
}
|
|
1308
|
-
|
|
1309
905
|
export interface ExecutionDetails {
|
|
1310
906
|
summary?: string;
|
|
1311
|
-
|
|
1312
907
|
externalExecutionId?: string;
|
|
1313
|
-
|
|
1314
908
|
percentComplete?: number;
|
|
1315
909
|
}
|
|
1316
|
-
|
|
1317
910
|
export interface PutJobSuccessResultInput {
|
|
1318
911
|
jobId: string | undefined;
|
|
1319
|
-
|
|
1320
912
|
currentRevision?: CurrentRevision;
|
|
1321
|
-
|
|
1322
913
|
continuationToken?: string;
|
|
1323
|
-
|
|
1324
914
|
executionDetails?: ExecutionDetails;
|
|
1325
|
-
|
|
1326
915
|
outputVariables?: Record<string, string>;
|
|
1327
916
|
}
|
|
1328
|
-
|
|
1329
917
|
export interface PutThirdPartyJobFailureResultInput {
|
|
1330
918
|
jobId: string | undefined;
|
|
1331
|
-
|
|
1332
919
|
clientToken: string | undefined;
|
|
1333
|
-
|
|
1334
920
|
failureDetails: FailureDetails | undefined;
|
|
1335
921
|
}
|
|
1336
|
-
|
|
1337
922
|
export interface PutThirdPartyJobSuccessResultInput {
|
|
1338
923
|
jobId: string | undefined;
|
|
1339
|
-
|
|
1340
924
|
clientToken: string | undefined;
|
|
1341
|
-
|
|
1342
925
|
currentRevision?: CurrentRevision;
|
|
1343
|
-
|
|
1344
926
|
continuationToken?: string;
|
|
1345
|
-
|
|
1346
927
|
executionDetails?: ExecutionDetails;
|
|
1347
928
|
}
|
|
1348
|
-
|
|
1349
929
|
export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
1350
930
|
readonly name: "InvalidWebhookAuthenticationParametersException";
|
|
1351
931
|
readonly $fault: "client";
|
|
1352
|
-
|
|
1353
932
|
constructor(
|
|
1354
933
|
opts: __ExceptionOptionType<
|
|
1355
934
|
InvalidWebhookAuthenticationParametersException,
|
|
@@ -1357,11 +936,9 @@ export declare class InvalidWebhookAuthenticationParametersException extends __B
|
|
|
1357
936
|
>
|
|
1358
937
|
);
|
|
1359
938
|
}
|
|
1360
|
-
|
|
1361
939
|
export declare class InvalidWebhookFilterPatternException extends __BaseException {
|
|
1362
940
|
readonly name: "InvalidWebhookFilterPatternException";
|
|
1363
941
|
readonly $fault: "client";
|
|
1364
|
-
|
|
1365
942
|
constructor(
|
|
1366
943
|
opts: __ExceptionOptionType<
|
|
1367
944
|
InvalidWebhookFilterPatternException,
|
|
@@ -1371,7 +948,6 @@ export declare class InvalidWebhookFilterPatternException extends __BaseExceptio
|
|
|
1371
948
|
}
|
|
1372
949
|
export interface PutWebhookInput {
|
|
1373
950
|
webhook: WebhookDefinition | undefined;
|
|
1374
|
-
|
|
1375
951
|
tags?: Tag[];
|
|
1376
952
|
}
|
|
1377
953
|
export interface PutWebhookOutput {
|
|
@@ -1381,18 +957,14 @@ export interface RegisterWebhookWithThirdPartyInput {
|
|
|
1381
957
|
webhookName?: string;
|
|
1382
958
|
}
|
|
1383
959
|
export interface RegisterWebhookWithThirdPartyOutput {}
|
|
1384
|
-
|
|
1385
960
|
export declare class ConflictException extends __BaseException {
|
|
1386
961
|
readonly name: "ConflictException";
|
|
1387
962
|
readonly $fault: "client";
|
|
1388
|
-
|
|
1389
963
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1390
964
|
}
|
|
1391
|
-
|
|
1392
965
|
export declare class NotLatestPipelineExecutionException extends __BaseException {
|
|
1393
966
|
readonly name: "NotLatestPipelineExecutionException";
|
|
1394
967
|
readonly $fault: "client";
|
|
1395
|
-
|
|
1396
968
|
constructor(
|
|
1397
969
|
opts: __ExceptionOptionType<
|
|
1398
970
|
NotLatestPipelineExecutionException,
|
|
@@ -1403,53 +975,39 @@ export declare class NotLatestPipelineExecutionException extends __BaseException
|
|
|
1403
975
|
export declare enum StageRetryMode {
|
|
1404
976
|
FAILED_ACTIONS = "FAILED_ACTIONS",
|
|
1405
977
|
}
|
|
1406
|
-
|
|
1407
978
|
export interface RetryStageExecutionInput {
|
|
1408
979
|
pipelineName: string | undefined;
|
|
1409
|
-
|
|
1410
980
|
stageName: string | undefined;
|
|
1411
|
-
|
|
1412
981
|
pipelineExecutionId: string | undefined;
|
|
1413
|
-
|
|
1414
982
|
retryMode: StageRetryMode | string | undefined;
|
|
1415
983
|
}
|
|
1416
|
-
|
|
1417
984
|
export interface RetryStageExecutionOutput {
|
|
1418
985
|
pipelineExecutionId?: string;
|
|
1419
986
|
}
|
|
1420
|
-
|
|
1421
987
|
export declare class StageNotRetryableException extends __BaseException {
|
|
1422
988
|
readonly name: "StageNotRetryableException";
|
|
1423
989
|
readonly $fault: "client";
|
|
1424
|
-
|
|
1425
990
|
constructor(
|
|
1426
991
|
opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>
|
|
1427
992
|
);
|
|
1428
993
|
}
|
|
1429
|
-
|
|
1430
994
|
export interface StartPipelineExecutionInput {
|
|
1431
995
|
name: string | undefined;
|
|
1432
|
-
|
|
1433
996
|
clientRequestToken?: string;
|
|
1434
997
|
}
|
|
1435
|
-
|
|
1436
998
|
export interface StartPipelineExecutionOutput {
|
|
1437
999
|
pipelineExecutionId?: string;
|
|
1438
1000
|
}
|
|
1439
|
-
|
|
1440
1001
|
export declare class DuplicatedStopRequestException extends __BaseException {
|
|
1441
1002
|
readonly name: "DuplicatedStopRequestException";
|
|
1442
1003
|
readonly $fault: "client";
|
|
1443
|
-
|
|
1444
1004
|
constructor(
|
|
1445
1005
|
opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>
|
|
1446
1006
|
);
|
|
1447
1007
|
}
|
|
1448
|
-
|
|
1449
1008
|
export declare class PipelineExecutionNotStoppableException extends __BaseException {
|
|
1450
1009
|
readonly name: "PipelineExecutionNotStoppableException";
|
|
1451
1010
|
readonly $fault: "client";
|
|
1452
|
-
|
|
1453
1011
|
constructor(
|
|
1454
1012
|
opts: __ExceptionOptionType<
|
|
1455
1013
|
PipelineExecutionNotStoppableException,
|
|
@@ -1459,11 +1017,8 @@ export declare class PipelineExecutionNotStoppableException extends __BaseExcept
|
|
|
1459
1017
|
}
|
|
1460
1018
|
export interface StopPipelineExecutionInput {
|
|
1461
1019
|
pipelineName: string | undefined;
|
|
1462
|
-
|
|
1463
1020
|
pipelineExecutionId: string | undefined;
|
|
1464
|
-
|
|
1465
1021
|
abandon?: boolean;
|
|
1466
|
-
|
|
1467
1022
|
reason?: string;
|
|
1468
1023
|
}
|
|
1469
1024
|
export interface StopPipelineExecutionOutput {
|
|
@@ -1471,21 +1026,17 @@ export interface StopPipelineExecutionOutput {
|
|
|
1471
1026
|
}
|
|
1472
1027
|
export interface TagResourceInput {
|
|
1473
1028
|
resourceArn: string | undefined;
|
|
1474
|
-
|
|
1475
1029
|
tags: Tag[] | undefined;
|
|
1476
1030
|
}
|
|
1477
1031
|
export interface TagResourceOutput {}
|
|
1478
1032
|
export interface UntagResourceInput {
|
|
1479
1033
|
resourceArn: string | undefined;
|
|
1480
|
-
|
|
1481
1034
|
tagKeys: string[] | undefined;
|
|
1482
1035
|
}
|
|
1483
1036
|
export interface UntagResourceOutput {}
|
|
1484
|
-
|
|
1485
1037
|
export declare class RequestFailedException extends __BaseException {
|
|
1486
1038
|
readonly name: "RequestFailedException";
|
|
1487
1039
|
readonly $fault: "client";
|
|
1488
|
-
|
|
1489
1040
|
constructor(
|
|
1490
1041
|
opts: __ExceptionOptionType<RequestFailedException, __BaseException>
|
|
1491
1042
|
);
|
|
@@ -1493,535 +1044,396 @@ export declare class RequestFailedException extends __BaseException {
|
|
|
1493
1044
|
export interface UpdateActionTypeInput {
|
|
1494
1045
|
actionType: ActionTypeDeclaration | undefined;
|
|
1495
1046
|
}
|
|
1496
|
-
|
|
1497
1047
|
export interface UpdatePipelineInput {
|
|
1498
1048
|
pipeline: PipelineDeclaration | undefined;
|
|
1499
1049
|
}
|
|
1500
|
-
|
|
1501
1050
|
export interface UpdatePipelineOutput {
|
|
1502
1051
|
pipeline?: PipelineDeclaration;
|
|
1503
1052
|
}
|
|
1504
|
-
|
|
1505
1053
|
export declare const AcknowledgeJobInputFilterSensitiveLog: (
|
|
1506
1054
|
obj: AcknowledgeJobInput
|
|
1507
1055
|
) => any;
|
|
1508
|
-
|
|
1509
1056
|
export declare const AcknowledgeJobOutputFilterSensitiveLog: (
|
|
1510
1057
|
obj: AcknowledgeJobOutput
|
|
1511
1058
|
) => any;
|
|
1512
|
-
|
|
1513
1059
|
export declare const AcknowledgeThirdPartyJobInputFilterSensitiveLog: (
|
|
1514
1060
|
obj: AcknowledgeThirdPartyJobInput
|
|
1515
1061
|
) => any;
|
|
1516
|
-
|
|
1517
1062
|
export declare const AcknowledgeThirdPartyJobOutputFilterSensitiveLog: (
|
|
1518
1063
|
obj: AcknowledgeThirdPartyJobOutput
|
|
1519
1064
|
) => any;
|
|
1520
|
-
|
|
1521
1065
|
export declare const ActionConfigurationFilterSensitiveLog: (
|
|
1522
1066
|
obj: ActionConfiguration
|
|
1523
1067
|
) => any;
|
|
1524
|
-
|
|
1525
1068
|
export declare const ActionConfigurationPropertyFilterSensitiveLog: (
|
|
1526
1069
|
obj: ActionConfigurationProperty
|
|
1527
1070
|
) => any;
|
|
1528
|
-
|
|
1529
1071
|
export declare const ActionContextFilterSensitiveLog: (
|
|
1530
1072
|
obj: ActionContext
|
|
1531
1073
|
) => any;
|
|
1532
|
-
|
|
1533
1074
|
export declare const ActionTypeIdFilterSensitiveLog: (obj: ActionTypeId) => any;
|
|
1534
|
-
|
|
1535
1075
|
export declare const InputArtifactFilterSensitiveLog: (
|
|
1536
1076
|
obj: InputArtifact
|
|
1537
1077
|
) => any;
|
|
1538
|
-
|
|
1539
1078
|
export declare const OutputArtifactFilterSensitiveLog: (
|
|
1540
1079
|
obj: OutputArtifact
|
|
1541
1080
|
) => any;
|
|
1542
|
-
|
|
1543
1081
|
export declare const ActionDeclarationFilterSensitiveLog: (
|
|
1544
1082
|
obj: ActionDeclaration
|
|
1545
1083
|
) => any;
|
|
1546
|
-
|
|
1547
1084
|
export declare const ErrorDetailsFilterSensitiveLog: (obj: ErrorDetails) => any;
|
|
1548
|
-
|
|
1549
1085
|
export declare const ActionExecutionFilterSensitiveLog: (
|
|
1550
1086
|
obj: ActionExecution
|
|
1551
1087
|
) => any;
|
|
1552
|
-
|
|
1553
1088
|
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
1554
|
-
|
|
1555
1089
|
export declare const ArtifactDetailFilterSensitiveLog: (
|
|
1556
1090
|
obj: ArtifactDetail
|
|
1557
1091
|
) => any;
|
|
1558
|
-
|
|
1559
1092
|
export declare const ActionExecutionInputFilterSensitiveLog: (
|
|
1560
1093
|
obj: ActionExecutionInput
|
|
1561
1094
|
) => any;
|
|
1562
|
-
|
|
1563
1095
|
export declare const ActionExecutionResultFilterSensitiveLog: (
|
|
1564
1096
|
obj: ActionExecutionResult
|
|
1565
1097
|
) => any;
|
|
1566
|
-
|
|
1567
1098
|
export declare const ActionExecutionOutputFilterSensitiveLog: (
|
|
1568
1099
|
obj: ActionExecutionOutput
|
|
1569
1100
|
) => any;
|
|
1570
|
-
|
|
1571
1101
|
export declare const ActionExecutionDetailFilterSensitiveLog: (
|
|
1572
1102
|
obj: ActionExecutionDetail
|
|
1573
1103
|
) => any;
|
|
1574
|
-
|
|
1575
1104
|
export declare const ActionExecutionFilterFilterSensitiveLog: (
|
|
1576
1105
|
obj: ActionExecutionFilter
|
|
1577
1106
|
) => any;
|
|
1578
|
-
|
|
1579
1107
|
export declare const ActionRevisionFilterSensitiveLog: (
|
|
1580
1108
|
obj: ActionRevision
|
|
1581
1109
|
) => any;
|
|
1582
|
-
|
|
1583
1110
|
export declare const ActionStateFilterSensitiveLog: (obj: ActionState) => any;
|
|
1584
|
-
|
|
1585
1111
|
export declare const ArtifactDetailsFilterSensitiveLog: (
|
|
1586
1112
|
obj: ArtifactDetails
|
|
1587
1113
|
) => any;
|
|
1588
|
-
|
|
1589
1114
|
export declare const ActionTypeSettingsFilterSensitiveLog: (
|
|
1590
1115
|
obj: ActionTypeSettings
|
|
1591
1116
|
) => any;
|
|
1592
|
-
|
|
1593
1117
|
export declare const ActionTypeFilterSensitiveLog: (obj: ActionType) => any;
|
|
1594
|
-
|
|
1595
1118
|
export declare const ActionTypeArtifactDetailsFilterSensitiveLog: (
|
|
1596
1119
|
obj: ActionTypeArtifactDetails
|
|
1597
1120
|
) => any;
|
|
1598
|
-
|
|
1599
1121
|
export declare const JobWorkerExecutorConfigurationFilterSensitiveLog: (
|
|
1600
1122
|
obj: JobWorkerExecutorConfiguration
|
|
1601
1123
|
) => any;
|
|
1602
|
-
|
|
1603
1124
|
export declare const LambdaExecutorConfigurationFilterSensitiveLog: (
|
|
1604
1125
|
obj: LambdaExecutorConfiguration
|
|
1605
1126
|
) => any;
|
|
1606
|
-
|
|
1607
1127
|
export declare const ExecutorConfigurationFilterSensitiveLog: (
|
|
1608
1128
|
obj: ExecutorConfiguration
|
|
1609
1129
|
) => any;
|
|
1610
|
-
|
|
1611
1130
|
export declare const ActionTypeExecutorFilterSensitiveLog: (
|
|
1612
1131
|
obj: ActionTypeExecutor
|
|
1613
1132
|
) => any;
|
|
1614
|
-
|
|
1615
1133
|
export declare const ActionTypeIdentifierFilterSensitiveLog: (
|
|
1616
1134
|
obj: ActionTypeIdentifier
|
|
1617
1135
|
) => any;
|
|
1618
|
-
|
|
1619
1136
|
export declare const ActionTypePermissionsFilterSensitiveLog: (
|
|
1620
1137
|
obj: ActionTypePermissions
|
|
1621
1138
|
) => any;
|
|
1622
|
-
|
|
1623
1139
|
export declare const ActionTypePropertyFilterSensitiveLog: (
|
|
1624
1140
|
obj: ActionTypeProperty
|
|
1625
1141
|
) => any;
|
|
1626
|
-
|
|
1627
1142
|
export declare const ActionTypeUrlsFilterSensitiveLog: (
|
|
1628
1143
|
obj: ActionTypeUrls
|
|
1629
1144
|
) => any;
|
|
1630
|
-
|
|
1631
1145
|
export declare const ActionTypeDeclarationFilterSensitiveLog: (
|
|
1632
1146
|
obj: ActionTypeDeclaration
|
|
1633
1147
|
) => any;
|
|
1634
|
-
|
|
1635
1148
|
export declare const ApprovalResultFilterSensitiveLog: (
|
|
1636
1149
|
obj: ApprovalResult
|
|
1637
1150
|
) => any;
|
|
1638
|
-
|
|
1639
1151
|
export declare const S3ArtifactLocationFilterSensitiveLog: (
|
|
1640
1152
|
obj: S3ArtifactLocation
|
|
1641
1153
|
) => any;
|
|
1642
|
-
|
|
1643
1154
|
export declare const ArtifactLocationFilterSensitiveLog: (
|
|
1644
1155
|
obj: ArtifactLocation
|
|
1645
1156
|
) => any;
|
|
1646
|
-
|
|
1647
1157
|
export declare const ArtifactFilterSensitiveLog: (obj: Artifact) => any;
|
|
1648
|
-
|
|
1649
1158
|
export declare const ArtifactRevisionFilterSensitiveLog: (
|
|
1650
1159
|
obj: ArtifactRevision
|
|
1651
1160
|
) => any;
|
|
1652
|
-
|
|
1653
1161
|
export declare const EncryptionKeyFilterSensitiveLog: (
|
|
1654
1162
|
obj: EncryptionKey
|
|
1655
1163
|
) => any;
|
|
1656
|
-
|
|
1657
1164
|
export declare const ArtifactStoreFilterSensitiveLog: (
|
|
1658
1165
|
obj: ArtifactStore
|
|
1659
1166
|
) => any;
|
|
1660
|
-
|
|
1661
1167
|
export declare const AWSSessionCredentialsFilterSensitiveLog: (
|
|
1662
1168
|
obj: AWSSessionCredentials
|
|
1663
1169
|
) => any;
|
|
1664
|
-
|
|
1665
1170
|
export declare const BlockerDeclarationFilterSensitiveLog: (
|
|
1666
1171
|
obj: BlockerDeclaration
|
|
1667
1172
|
) => any;
|
|
1668
|
-
|
|
1669
1173
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1670
|
-
|
|
1671
1174
|
export declare const CreateCustomActionTypeInputFilterSensitiveLog: (
|
|
1672
1175
|
obj: CreateCustomActionTypeInput
|
|
1673
1176
|
) => any;
|
|
1674
|
-
|
|
1675
1177
|
export declare const CreateCustomActionTypeOutputFilterSensitiveLog: (
|
|
1676
1178
|
obj: CreateCustomActionTypeOutput
|
|
1677
1179
|
) => any;
|
|
1678
|
-
|
|
1679
1180
|
export declare const StageDeclarationFilterSensitiveLog: (
|
|
1680
1181
|
obj: StageDeclaration
|
|
1681
1182
|
) => any;
|
|
1682
|
-
|
|
1683
1183
|
export declare const PipelineDeclarationFilterSensitiveLog: (
|
|
1684
1184
|
obj: PipelineDeclaration
|
|
1685
1185
|
) => any;
|
|
1686
|
-
|
|
1687
1186
|
export declare const CreatePipelineInputFilterSensitiveLog: (
|
|
1688
1187
|
obj: CreatePipelineInput
|
|
1689
1188
|
) => any;
|
|
1690
|
-
|
|
1691
1189
|
export declare const CreatePipelineOutputFilterSensitiveLog: (
|
|
1692
1190
|
obj: CreatePipelineOutput
|
|
1693
1191
|
) => any;
|
|
1694
|
-
|
|
1695
1192
|
export declare const DeleteCustomActionTypeInputFilterSensitiveLog: (
|
|
1696
1193
|
obj: DeleteCustomActionTypeInput
|
|
1697
1194
|
) => any;
|
|
1698
|
-
|
|
1699
1195
|
export declare const DeletePipelineInputFilterSensitiveLog: (
|
|
1700
1196
|
obj: DeletePipelineInput
|
|
1701
1197
|
) => any;
|
|
1702
|
-
|
|
1703
1198
|
export declare const DeleteWebhookInputFilterSensitiveLog: (
|
|
1704
1199
|
obj: DeleteWebhookInput
|
|
1705
1200
|
) => any;
|
|
1706
|
-
|
|
1707
1201
|
export declare const DeleteWebhookOutputFilterSensitiveLog: (
|
|
1708
1202
|
obj: DeleteWebhookOutput
|
|
1709
1203
|
) => any;
|
|
1710
|
-
|
|
1711
1204
|
export declare const DeregisterWebhookWithThirdPartyInputFilterSensitiveLog: (
|
|
1712
1205
|
obj: DeregisterWebhookWithThirdPartyInput
|
|
1713
1206
|
) => any;
|
|
1714
|
-
|
|
1715
1207
|
export declare const DeregisterWebhookWithThirdPartyOutputFilterSensitiveLog: (
|
|
1716
1208
|
obj: DeregisterWebhookWithThirdPartyOutput
|
|
1717
1209
|
) => any;
|
|
1718
|
-
|
|
1719
1210
|
export declare const DisableStageTransitionInputFilterSensitiveLog: (
|
|
1720
1211
|
obj: DisableStageTransitionInput
|
|
1721
1212
|
) => any;
|
|
1722
|
-
|
|
1723
1213
|
export declare const EnableStageTransitionInputFilterSensitiveLog: (
|
|
1724
1214
|
obj: EnableStageTransitionInput
|
|
1725
1215
|
) => any;
|
|
1726
|
-
|
|
1727
1216
|
export declare const GetActionTypeInputFilterSensitiveLog: (
|
|
1728
1217
|
obj: GetActionTypeInput
|
|
1729
1218
|
) => any;
|
|
1730
|
-
|
|
1731
1219
|
export declare const GetActionTypeOutputFilterSensitiveLog: (
|
|
1732
1220
|
obj: GetActionTypeOutput
|
|
1733
1221
|
) => any;
|
|
1734
|
-
|
|
1735
1222
|
export declare const GetJobDetailsInputFilterSensitiveLog: (
|
|
1736
1223
|
obj: GetJobDetailsInput
|
|
1737
1224
|
) => any;
|
|
1738
|
-
|
|
1739
1225
|
export declare const StageContextFilterSensitiveLog: (obj: StageContext) => any;
|
|
1740
|
-
|
|
1741
1226
|
export declare const PipelineContextFilterSensitiveLog: (
|
|
1742
1227
|
obj: PipelineContext
|
|
1743
1228
|
) => any;
|
|
1744
|
-
|
|
1745
1229
|
export declare const JobDataFilterSensitiveLog: (obj: JobData) => any;
|
|
1746
|
-
|
|
1747
1230
|
export declare const JobDetailsFilterSensitiveLog: (obj: JobDetails) => any;
|
|
1748
|
-
|
|
1749
1231
|
export declare const GetJobDetailsOutputFilterSensitiveLog: (
|
|
1750
1232
|
obj: GetJobDetailsOutput
|
|
1751
1233
|
) => any;
|
|
1752
|
-
|
|
1753
1234
|
export declare const GetPipelineInputFilterSensitiveLog: (
|
|
1754
1235
|
obj: GetPipelineInput
|
|
1755
1236
|
) => any;
|
|
1756
|
-
|
|
1757
1237
|
export declare const PipelineMetadataFilterSensitiveLog: (
|
|
1758
1238
|
obj: PipelineMetadata
|
|
1759
1239
|
) => any;
|
|
1760
|
-
|
|
1761
1240
|
export declare const GetPipelineOutputFilterSensitiveLog: (
|
|
1762
1241
|
obj: GetPipelineOutput
|
|
1763
1242
|
) => any;
|
|
1764
|
-
|
|
1765
1243
|
export declare const GetPipelineExecutionInputFilterSensitiveLog: (
|
|
1766
1244
|
obj: GetPipelineExecutionInput
|
|
1767
1245
|
) => any;
|
|
1768
|
-
|
|
1769
1246
|
export declare const PipelineExecutionFilterSensitiveLog: (
|
|
1770
1247
|
obj: PipelineExecution
|
|
1771
1248
|
) => any;
|
|
1772
|
-
|
|
1773
1249
|
export declare const GetPipelineExecutionOutputFilterSensitiveLog: (
|
|
1774
1250
|
obj: GetPipelineExecutionOutput
|
|
1775
1251
|
) => any;
|
|
1776
|
-
|
|
1777
1252
|
export declare const GetPipelineStateInputFilterSensitiveLog: (
|
|
1778
1253
|
obj: GetPipelineStateInput
|
|
1779
1254
|
) => any;
|
|
1780
|
-
|
|
1781
1255
|
export declare const StageExecutionFilterSensitiveLog: (
|
|
1782
1256
|
obj: StageExecution
|
|
1783
1257
|
) => any;
|
|
1784
|
-
|
|
1785
1258
|
export declare const TransitionStateFilterSensitiveLog: (
|
|
1786
1259
|
obj: TransitionState
|
|
1787
1260
|
) => any;
|
|
1788
|
-
|
|
1789
1261
|
export declare const StageStateFilterSensitiveLog: (obj: StageState) => any;
|
|
1790
|
-
|
|
1791
1262
|
export declare const GetPipelineStateOutputFilterSensitiveLog: (
|
|
1792
1263
|
obj: GetPipelineStateOutput
|
|
1793
1264
|
) => any;
|
|
1794
|
-
|
|
1795
1265
|
export declare const GetThirdPartyJobDetailsInputFilterSensitiveLog: (
|
|
1796
1266
|
obj: GetThirdPartyJobDetailsInput
|
|
1797
1267
|
) => any;
|
|
1798
|
-
|
|
1799
1268
|
export declare const ThirdPartyJobDataFilterSensitiveLog: (
|
|
1800
1269
|
obj: ThirdPartyJobData
|
|
1801
1270
|
) => any;
|
|
1802
|
-
|
|
1803
1271
|
export declare const ThirdPartyJobDetailsFilterSensitiveLog: (
|
|
1804
1272
|
obj: ThirdPartyJobDetails
|
|
1805
1273
|
) => any;
|
|
1806
|
-
|
|
1807
1274
|
export declare const GetThirdPartyJobDetailsOutputFilterSensitiveLog: (
|
|
1808
1275
|
obj: GetThirdPartyJobDetailsOutput
|
|
1809
1276
|
) => any;
|
|
1810
|
-
|
|
1811
1277
|
export declare const ListActionExecutionsInputFilterSensitiveLog: (
|
|
1812
1278
|
obj: ListActionExecutionsInput
|
|
1813
1279
|
) => any;
|
|
1814
|
-
|
|
1815
1280
|
export declare const ListActionExecutionsOutputFilterSensitiveLog: (
|
|
1816
1281
|
obj: ListActionExecutionsOutput
|
|
1817
1282
|
) => any;
|
|
1818
|
-
|
|
1819
1283
|
export declare const ListActionTypesInputFilterSensitiveLog: (
|
|
1820
1284
|
obj: ListActionTypesInput
|
|
1821
1285
|
) => any;
|
|
1822
|
-
|
|
1823
1286
|
export declare const ListActionTypesOutputFilterSensitiveLog: (
|
|
1824
1287
|
obj: ListActionTypesOutput
|
|
1825
1288
|
) => any;
|
|
1826
|
-
|
|
1827
1289
|
export declare const ListPipelineExecutionsInputFilterSensitiveLog: (
|
|
1828
1290
|
obj: ListPipelineExecutionsInput
|
|
1829
1291
|
) => any;
|
|
1830
|
-
|
|
1831
1292
|
export declare const SourceRevisionFilterSensitiveLog: (
|
|
1832
1293
|
obj: SourceRevision
|
|
1833
1294
|
) => any;
|
|
1834
|
-
|
|
1835
1295
|
export declare const StopExecutionTriggerFilterSensitiveLog: (
|
|
1836
1296
|
obj: StopExecutionTrigger
|
|
1837
1297
|
) => any;
|
|
1838
|
-
|
|
1839
1298
|
export declare const ExecutionTriggerFilterSensitiveLog: (
|
|
1840
1299
|
obj: ExecutionTrigger
|
|
1841
1300
|
) => any;
|
|
1842
|
-
|
|
1843
1301
|
export declare const PipelineExecutionSummaryFilterSensitiveLog: (
|
|
1844
1302
|
obj: PipelineExecutionSummary
|
|
1845
1303
|
) => any;
|
|
1846
|
-
|
|
1847
1304
|
export declare const ListPipelineExecutionsOutputFilterSensitiveLog: (
|
|
1848
1305
|
obj: ListPipelineExecutionsOutput
|
|
1849
1306
|
) => any;
|
|
1850
|
-
|
|
1851
1307
|
export declare const ListPipelinesInputFilterSensitiveLog: (
|
|
1852
1308
|
obj: ListPipelinesInput
|
|
1853
1309
|
) => any;
|
|
1854
|
-
|
|
1855
1310
|
export declare const PipelineSummaryFilterSensitiveLog: (
|
|
1856
1311
|
obj: PipelineSummary
|
|
1857
1312
|
) => any;
|
|
1858
|
-
|
|
1859
1313
|
export declare const ListPipelinesOutputFilterSensitiveLog: (
|
|
1860
1314
|
obj: ListPipelinesOutput
|
|
1861
1315
|
) => any;
|
|
1862
|
-
|
|
1863
1316
|
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
1864
1317
|
obj: ListTagsForResourceInput
|
|
1865
1318
|
) => any;
|
|
1866
|
-
|
|
1867
1319
|
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
1868
1320
|
obj: ListTagsForResourceOutput
|
|
1869
1321
|
) => any;
|
|
1870
|
-
|
|
1871
1322
|
export declare const ListWebhooksInputFilterSensitiveLog: (
|
|
1872
1323
|
obj: ListWebhooksInput
|
|
1873
1324
|
) => any;
|
|
1874
|
-
|
|
1875
1325
|
export declare const WebhookAuthConfigurationFilterSensitiveLog: (
|
|
1876
1326
|
obj: WebhookAuthConfiguration
|
|
1877
1327
|
) => any;
|
|
1878
|
-
|
|
1879
1328
|
export declare const WebhookFilterRuleFilterSensitiveLog: (
|
|
1880
1329
|
obj: WebhookFilterRule
|
|
1881
1330
|
) => any;
|
|
1882
|
-
|
|
1883
1331
|
export declare const WebhookDefinitionFilterSensitiveLog: (
|
|
1884
1332
|
obj: WebhookDefinition
|
|
1885
1333
|
) => any;
|
|
1886
|
-
|
|
1887
1334
|
export declare const ListWebhookItemFilterSensitiveLog: (
|
|
1888
1335
|
obj: ListWebhookItem
|
|
1889
1336
|
) => any;
|
|
1890
|
-
|
|
1891
1337
|
export declare const ListWebhooksOutputFilterSensitiveLog: (
|
|
1892
1338
|
obj: ListWebhooksOutput
|
|
1893
1339
|
) => any;
|
|
1894
|
-
|
|
1895
1340
|
export declare const PollForJobsInputFilterSensitiveLog: (
|
|
1896
1341
|
obj: PollForJobsInput
|
|
1897
1342
|
) => any;
|
|
1898
|
-
|
|
1899
1343
|
export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
1900
|
-
|
|
1901
1344
|
export declare const PollForJobsOutputFilterSensitiveLog: (
|
|
1902
1345
|
obj: PollForJobsOutput
|
|
1903
1346
|
) => any;
|
|
1904
|
-
|
|
1905
1347
|
export declare const PollForThirdPartyJobsInputFilterSensitiveLog: (
|
|
1906
1348
|
obj: PollForThirdPartyJobsInput
|
|
1907
1349
|
) => any;
|
|
1908
|
-
|
|
1909
1350
|
export declare const ThirdPartyJobFilterSensitiveLog: (
|
|
1910
1351
|
obj: ThirdPartyJob
|
|
1911
1352
|
) => any;
|
|
1912
|
-
|
|
1913
1353
|
export declare const PollForThirdPartyJobsOutputFilterSensitiveLog: (
|
|
1914
1354
|
obj: PollForThirdPartyJobsOutput
|
|
1915
1355
|
) => any;
|
|
1916
|
-
|
|
1917
1356
|
export declare const PutActionRevisionInputFilterSensitiveLog: (
|
|
1918
1357
|
obj: PutActionRevisionInput
|
|
1919
1358
|
) => any;
|
|
1920
|
-
|
|
1921
1359
|
export declare const PutActionRevisionOutputFilterSensitiveLog: (
|
|
1922
1360
|
obj: PutActionRevisionOutput
|
|
1923
1361
|
) => any;
|
|
1924
|
-
|
|
1925
1362
|
export declare const PutApprovalResultInputFilterSensitiveLog: (
|
|
1926
1363
|
obj: PutApprovalResultInput
|
|
1927
1364
|
) => any;
|
|
1928
|
-
|
|
1929
1365
|
export declare const PutApprovalResultOutputFilterSensitiveLog: (
|
|
1930
1366
|
obj: PutApprovalResultOutput
|
|
1931
1367
|
) => any;
|
|
1932
|
-
|
|
1933
1368
|
export declare const FailureDetailsFilterSensitiveLog: (
|
|
1934
1369
|
obj: FailureDetails
|
|
1935
1370
|
) => any;
|
|
1936
|
-
|
|
1937
1371
|
export declare const PutJobFailureResultInputFilterSensitiveLog: (
|
|
1938
1372
|
obj: PutJobFailureResultInput
|
|
1939
1373
|
) => any;
|
|
1940
|
-
|
|
1941
1374
|
export declare const CurrentRevisionFilterSensitiveLog: (
|
|
1942
1375
|
obj: CurrentRevision
|
|
1943
1376
|
) => any;
|
|
1944
|
-
|
|
1945
1377
|
export declare const ExecutionDetailsFilterSensitiveLog: (
|
|
1946
1378
|
obj: ExecutionDetails
|
|
1947
1379
|
) => any;
|
|
1948
|
-
|
|
1949
1380
|
export declare const PutJobSuccessResultInputFilterSensitiveLog: (
|
|
1950
1381
|
obj: PutJobSuccessResultInput
|
|
1951
1382
|
) => any;
|
|
1952
|
-
|
|
1953
1383
|
export declare const PutThirdPartyJobFailureResultInputFilterSensitiveLog: (
|
|
1954
1384
|
obj: PutThirdPartyJobFailureResultInput
|
|
1955
1385
|
) => any;
|
|
1956
|
-
|
|
1957
1386
|
export declare const PutThirdPartyJobSuccessResultInputFilterSensitiveLog: (
|
|
1958
1387
|
obj: PutThirdPartyJobSuccessResultInput
|
|
1959
1388
|
) => any;
|
|
1960
|
-
|
|
1961
1389
|
export declare const PutWebhookInputFilterSensitiveLog: (
|
|
1962
1390
|
obj: PutWebhookInput
|
|
1963
1391
|
) => any;
|
|
1964
|
-
|
|
1965
1392
|
export declare const PutWebhookOutputFilterSensitiveLog: (
|
|
1966
1393
|
obj: PutWebhookOutput
|
|
1967
1394
|
) => any;
|
|
1968
|
-
|
|
1969
1395
|
export declare const RegisterWebhookWithThirdPartyInputFilterSensitiveLog: (
|
|
1970
1396
|
obj: RegisterWebhookWithThirdPartyInput
|
|
1971
1397
|
) => any;
|
|
1972
|
-
|
|
1973
1398
|
export declare const RegisterWebhookWithThirdPartyOutputFilterSensitiveLog: (
|
|
1974
1399
|
obj: RegisterWebhookWithThirdPartyOutput
|
|
1975
1400
|
) => any;
|
|
1976
|
-
|
|
1977
1401
|
export declare const RetryStageExecutionInputFilterSensitiveLog: (
|
|
1978
1402
|
obj: RetryStageExecutionInput
|
|
1979
1403
|
) => any;
|
|
1980
|
-
|
|
1981
1404
|
export declare const RetryStageExecutionOutputFilterSensitiveLog: (
|
|
1982
1405
|
obj: RetryStageExecutionOutput
|
|
1983
1406
|
) => any;
|
|
1984
|
-
|
|
1985
1407
|
export declare const StartPipelineExecutionInputFilterSensitiveLog: (
|
|
1986
1408
|
obj: StartPipelineExecutionInput
|
|
1987
1409
|
) => any;
|
|
1988
|
-
|
|
1989
1410
|
export declare const StartPipelineExecutionOutputFilterSensitiveLog: (
|
|
1990
1411
|
obj: StartPipelineExecutionOutput
|
|
1991
1412
|
) => any;
|
|
1992
|
-
|
|
1993
1413
|
export declare const StopPipelineExecutionInputFilterSensitiveLog: (
|
|
1994
1414
|
obj: StopPipelineExecutionInput
|
|
1995
1415
|
) => any;
|
|
1996
|
-
|
|
1997
1416
|
export declare const StopPipelineExecutionOutputFilterSensitiveLog: (
|
|
1998
1417
|
obj: StopPipelineExecutionOutput
|
|
1999
1418
|
) => any;
|
|
2000
|
-
|
|
2001
1419
|
export declare const TagResourceInputFilterSensitiveLog: (
|
|
2002
1420
|
obj: TagResourceInput
|
|
2003
1421
|
) => any;
|
|
2004
|
-
|
|
2005
1422
|
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
2006
1423
|
obj: TagResourceOutput
|
|
2007
1424
|
) => any;
|
|
2008
|
-
|
|
2009
1425
|
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
2010
1426
|
obj: UntagResourceInput
|
|
2011
1427
|
) => any;
|
|
2012
|
-
|
|
2013
1428
|
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
2014
1429
|
obj: UntagResourceOutput
|
|
2015
1430
|
) => any;
|
|
2016
|
-
|
|
2017
1431
|
export declare const UpdateActionTypeInputFilterSensitiveLog: (
|
|
2018
1432
|
obj: UpdateActionTypeInput
|
|
2019
1433
|
) => any;
|
|
2020
|
-
|
|
2021
1434
|
export declare const UpdatePipelineInputFilterSensitiveLog: (
|
|
2022
1435
|
obj: UpdatePipelineInput
|
|
2023
1436
|
) => any;
|
|
2024
|
-
|
|
2025
1437
|
export declare const UpdatePipelineOutputFilterSensitiveLog: (
|
|
2026
1438
|
obj: UpdatePipelineOutput
|
|
2027
1439
|
) => any;
|