@aws-sdk/client-codepipeline 3.934.0 → 3.935.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-cjs/index.js +183 -182
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +182 -0
- package/dist-es/models/errors.js +493 -0
- package/dist-es/models/models_0.js +1 -675
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +462 -0
- package/dist-types/models/errors.d.ts +512 -0
- package/dist-types/models/models_0.d.ts +1 -974
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +238 -0
- package/dist-types/ts3.4/models/errors.d.ts +335 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -573
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,512 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The nonce was specified in an invalid format.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class InvalidNonceException extends __BaseException {
|
|
8
|
+
readonly name: "InvalidNonceException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InvalidNonceException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class JobNotFoundException extends __BaseException {
|
|
20
|
+
readonly name: "JobNotFoundException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<JobNotFoundException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ValidationException extends __BaseException {
|
|
32
|
+
readonly name: "ValidationException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>The client token was specified in an invalid format</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class InvalidClientTokenException extends __BaseException {
|
|
44
|
+
readonly name: "InvalidClientTokenException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>The action execution was not found.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class ActionExecutionNotFoundException extends __BaseException {
|
|
56
|
+
readonly name: "ActionExecutionNotFoundException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<ActionExecutionNotFoundException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>The specified action cannot be found.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class ActionNotFoundException extends __BaseException {
|
|
68
|
+
readonly name: "ActionNotFoundException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>The specified action type cannot be found.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class ActionTypeNotFoundException extends __BaseException {
|
|
80
|
+
readonly name: "ActionTypeNotFoundException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* <p>The approval action has already been approved or rejected.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class ApprovalAlreadyCompletedException extends __BaseException {
|
|
92
|
+
readonly name: "ApprovalAlreadyCompletedException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
constructor(opts: __ExceptionOptionType<ApprovalAlreadyCompletedException, __BaseException>);
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
104
|
+
readonly name: "ConcurrentModificationException";
|
|
105
|
+
readonly $fault: "client";
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
109
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* <p>The specified resource tags are invalid.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export declare class InvalidTagsException extends __BaseException {
|
|
116
|
+
readonly name: "InvalidTagsException";
|
|
117
|
+
readonly $fault: "client";
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
constructor(opts: __ExceptionOptionType<InvalidTagsException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>The number of pipelines associated with the Amazon Web Services account has exceeded
|
|
125
|
+
* the limit allowed for the account.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export declare class LimitExceededException extends __BaseException {
|
|
129
|
+
readonly name: "LimitExceededException";
|
|
130
|
+
readonly $fault: "client";
|
|
131
|
+
/**
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
134
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* <p>The tags limit for a resource has been exceeded.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
141
|
+
readonly name: "TooManyTagsException";
|
|
142
|
+
readonly $fault: "client";
|
|
143
|
+
/**
|
|
144
|
+
* @internal
|
|
145
|
+
*/
|
|
146
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* <p>The action declaration was specified in an invalid format.</p>
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
export declare class InvalidActionDeclarationException extends __BaseException {
|
|
153
|
+
readonly name: "InvalidActionDeclarationException";
|
|
154
|
+
readonly $fault: "client";
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
158
|
+
constructor(opts: __ExceptionOptionType<InvalidActionDeclarationException, __BaseException>);
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* <p>Reserved for future use.</p>
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
export declare class InvalidBlockerDeclarationException extends __BaseException {
|
|
165
|
+
readonly name: "InvalidBlockerDeclarationException";
|
|
166
|
+
readonly $fault: "client";
|
|
167
|
+
/**
|
|
168
|
+
* @internal
|
|
169
|
+
*/
|
|
170
|
+
constructor(opts: __ExceptionOptionType<InvalidBlockerDeclarationException, __BaseException>);
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* <p>The stage declaration was specified in an invalid format.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
export declare class InvalidStageDeclarationException extends __BaseException {
|
|
177
|
+
readonly name: "InvalidStageDeclarationException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
/**
|
|
180
|
+
* @internal
|
|
181
|
+
*/
|
|
182
|
+
constructor(opts: __ExceptionOptionType<InvalidStageDeclarationException, __BaseException>);
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* <p>The structure was specified in an invalid format.</p>
|
|
186
|
+
* @public
|
|
187
|
+
*/
|
|
188
|
+
export declare class InvalidStructureException extends __BaseException {
|
|
189
|
+
readonly name: "InvalidStructureException";
|
|
190
|
+
readonly $fault: "client";
|
|
191
|
+
/**
|
|
192
|
+
* @internal
|
|
193
|
+
*/
|
|
194
|
+
constructor(opts: __ExceptionOptionType<InvalidStructureException, __BaseException>);
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* <p>The specified pipeline name is already in use.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
export declare class PipelineNameInUseException extends __BaseException {
|
|
201
|
+
readonly name: "PipelineNameInUseException";
|
|
202
|
+
readonly $fault: "client";
|
|
203
|
+
/**
|
|
204
|
+
* @internal
|
|
205
|
+
*/
|
|
206
|
+
constructor(opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>);
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
210
|
+
* found.</p>
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
213
|
+
export declare class WebhookNotFoundException extends __BaseException {
|
|
214
|
+
readonly name: "WebhookNotFoundException";
|
|
215
|
+
readonly $fault: "client";
|
|
216
|
+
/**
|
|
217
|
+
* @internal
|
|
218
|
+
*/
|
|
219
|
+
constructor(opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>);
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
export declare class PipelineNotFoundException extends __BaseException {
|
|
226
|
+
readonly name: "PipelineNotFoundException";
|
|
227
|
+
readonly $fault: "client";
|
|
228
|
+
/**
|
|
229
|
+
* @internal
|
|
230
|
+
*/
|
|
231
|
+
constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export declare class StageNotFoundException extends __BaseException {
|
|
238
|
+
readonly name: "StageNotFoundException";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
/**
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
constructor(opts: __ExceptionOptionType<StageNotFoundException, __BaseException>);
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* <p>The pipeline version was specified in an invalid format or cannot be
|
|
247
|
+
* found.</p>
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export declare class PipelineVersionNotFoundException extends __BaseException {
|
|
251
|
+
readonly name: "PipelineVersionNotFoundException";
|
|
252
|
+
readonly $fault: "client";
|
|
253
|
+
/**
|
|
254
|
+
* @internal
|
|
255
|
+
*/
|
|
256
|
+
constructor(opts: __ExceptionOptionType<PipelineVersionNotFoundException, __BaseException>);
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* <p>The pipeline execution was specified in an invalid format or cannot be found, or an
|
|
260
|
+
* execution ID does not belong to the specified pipeline. </p>
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
export declare class PipelineExecutionNotFoundException extends __BaseException {
|
|
264
|
+
readonly name: "PipelineExecutionNotFoundException";
|
|
265
|
+
readonly $fault: "client";
|
|
266
|
+
/**
|
|
267
|
+
* @internal
|
|
268
|
+
*/
|
|
269
|
+
constructor(opts: __ExceptionOptionType<PipelineExecutionNotFoundException, __BaseException>);
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
275
|
+
export declare class InvalidJobException extends __BaseException {
|
|
276
|
+
readonly name: "InvalidJobException";
|
|
277
|
+
readonly $fault: "client";
|
|
278
|
+
/**
|
|
279
|
+
* @internal
|
|
280
|
+
*/
|
|
281
|
+
constructor(opts: __ExceptionOptionType<InvalidJobException, __BaseException>);
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
285
|
+
* you provide is the token returned by a previous call.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
289
|
+
readonly name: "InvalidNextTokenException";
|
|
290
|
+
readonly $fault: "client";
|
|
291
|
+
/**
|
|
292
|
+
* @internal
|
|
293
|
+
*/
|
|
294
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* <p>The specified resource ARN is invalid.</p>
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
export declare class InvalidArnException extends __BaseException {
|
|
301
|
+
readonly name: "InvalidArnException";
|
|
302
|
+
readonly $fault: "client";
|
|
303
|
+
/**
|
|
304
|
+
* @internal
|
|
305
|
+
*/
|
|
306
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* <p>The resource was specified in an invalid format.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
313
|
+
readonly name: "ResourceNotFoundException";
|
|
314
|
+
readonly $fault: "client";
|
|
315
|
+
/**
|
|
316
|
+
* @internal
|
|
317
|
+
*/
|
|
318
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* <p>The pipeline has reached the limit for concurrent pipeline executions.</p>
|
|
322
|
+
* @public
|
|
323
|
+
*/
|
|
324
|
+
export declare class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
|
|
325
|
+
readonly name: "ConcurrentPipelineExecutionsLimitExceededException";
|
|
326
|
+
readonly $fault: "client";
|
|
327
|
+
/**
|
|
328
|
+
* @internal
|
|
329
|
+
*/
|
|
330
|
+
constructor(opts: __ExceptionOptionType<ConcurrentPipelineExecutionsLimitExceededException, __BaseException>);
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* <p>Unable to override because the condition does not allow overrides.</p>
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
export declare class ConditionNotOverridableException extends __BaseException {
|
|
337
|
+
readonly name: "ConditionNotOverridableException";
|
|
338
|
+
readonly $fault: "client";
|
|
339
|
+
/**
|
|
340
|
+
* @internal
|
|
341
|
+
*/
|
|
342
|
+
constructor(opts: __ExceptionOptionType<ConditionNotOverridableException, __BaseException>);
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* <p>Your request cannot be handled because the pipeline is busy handling ongoing
|
|
346
|
+
* activities. Try again later.</p>
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
export declare class ConflictException extends __BaseException {
|
|
350
|
+
readonly name: "ConflictException";
|
|
351
|
+
readonly $fault: "client";
|
|
352
|
+
/**
|
|
353
|
+
* @internal
|
|
354
|
+
*/
|
|
355
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
356
|
+
}
|
|
357
|
+
/**
|
|
358
|
+
* <p>The stage has failed in a later run of the pipeline and the
|
|
359
|
+
* <code>pipelineExecutionId</code> associated with the request is out of
|
|
360
|
+
* date.</p>
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
363
|
+
export declare class NotLatestPipelineExecutionException extends __BaseException {
|
|
364
|
+
readonly name: "NotLatestPipelineExecutionException";
|
|
365
|
+
readonly $fault: "client";
|
|
366
|
+
/**
|
|
367
|
+
* @internal
|
|
368
|
+
*/
|
|
369
|
+
constructor(opts: __ExceptionOptionType<NotLatestPipelineExecutionException, __BaseException>);
|
|
370
|
+
}
|
|
371
|
+
/**
|
|
372
|
+
* <p>The approval request already received a response or has expired.</p>
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
375
|
+
export declare class InvalidApprovalTokenException extends __BaseException {
|
|
376
|
+
readonly name: "InvalidApprovalTokenException";
|
|
377
|
+
readonly $fault: "client";
|
|
378
|
+
/**
|
|
379
|
+
* @internal
|
|
380
|
+
*/
|
|
381
|
+
constructor(opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>);
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* <p>The job state was specified in an invalid format.</p>
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
export declare class InvalidJobStateException extends __BaseException {
|
|
388
|
+
readonly name: "InvalidJobStateException";
|
|
389
|
+
readonly $fault: "client";
|
|
390
|
+
/**
|
|
391
|
+
* @internal
|
|
392
|
+
*/
|
|
393
|
+
constructor(opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>);
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
* <p>Exceeded the total size limit for all variables in the pipeline.</p>
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
export declare class OutputVariablesSizeExceededException extends __BaseException {
|
|
400
|
+
readonly name: "OutputVariablesSizeExceededException";
|
|
401
|
+
readonly $fault: "client";
|
|
402
|
+
/**
|
|
403
|
+
* @internal
|
|
404
|
+
*/
|
|
405
|
+
constructor(opts: __ExceptionOptionType<OutputVariablesSizeExceededException, __BaseException>);
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* <p>The specified authentication type is in an invalid format.</p>
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
412
|
+
readonly name: "InvalidWebhookAuthenticationParametersException";
|
|
413
|
+
readonly $fault: "client";
|
|
414
|
+
/**
|
|
415
|
+
* @internal
|
|
416
|
+
*/
|
|
417
|
+
constructor(opts: __ExceptionOptionType<InvalidWebhookAuthenticationParametersException, __BaseException>);
|
|
418
|
+
}
|
|
419
|
+
/**
|
|
420
|
+
* <p>The specified event filter rule is in an invalid format.</p>
|
|
421
|
+
* @public
|
|
422
|
+
*/
|
|
423
|
+
export declare class InvalidWebhookFilterPatternException extends __BaseException {
|
|
424
|
+
readonly name: "InvalidWebhookFilterPatternException";
|
|
425
|
+
readonly $fault: "client";
|
|
426
|
+
/**
|
|
427
|
+
* @internal
|
|
428
|
+
*/
|
|
429
|
+
constructor(opts: __ExceptionOptionType<InvalidWebhookFilterPatternException, __BaseException>);
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* <p>Unable to retry. The pipeline structure or stage state might have changed while
|
|
433
|
+
* actions awaited retry, or the stage contains no failed
|
|
434
|
+
* actions.</p>
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
export declare class StageNotRetryableException extends __BaseException {
|
|
438
|
+
readonly name: "StageNotRetryableException";
|
|
439
|
+
readonly $fault: "client";
|
|
440
|
+
/**
|
|
441
|
+
* @internal
|
|
442
|
+
*/
|
|
443
|
+
constructor(opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>);
|
|
444
|
+
}
|
|
445
|
+
/**
|
|
446
|
+
* <p>The specified pipeline execution is outdated and cannot be used as a target pipeline
|
|
447
|
+
* execution for rollback.</p>
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
export declare class PipelineExecutionOutdatedException extends __BaseException {
|
|
451
|
+
readonly name: "PipelineExecutionOutdatedException";
|
|
452
|
+
readonly $fault: "client";
|
|
453
|
+
/**
|
|
454
|
+
* @internal
|
|
455
|
+
*/
|
|
456
|
+
constructor(opts: __ExceptionOptionType<PipelineExecutionOutdatedException, __BaseException>);
|
|
457
|
+
}
|
|
458
|
+
/**
|
|
459
|
+
* <p>Unable to roll back the stage. The cause might be if the pipeline version has changed
|
|
460
|
+
* since the target pipeline execution was deployed, the stage is currently running, or an
|
|
461
|
+
* incorrect target pipeline execution ID was provided.</p>
|
|
462
|
+
* @public
|
|
463
|
+
*/
|
|
464
|
+
export declare class UnableToRollbackStageException extends __BaseException {
|
|
465
|
+
readonly name: "UnableToRollbackStageException";
|
|
466
|
+
readonly $fault: "client";
|
|
467
|
+
/**
|
|
468
|
+
* @internal
|
|
469
|
+
*/
|
|
470
|
+
constructor(opts: __ExceptionOptionType<UnableToRollbackStageException, __BaseException>);
|
|
471
|
+
}
|
|
472
|
+
/**
|
|
473
|
+
* <p>The pipeline execution is already in a <code>Stopping</code> state. If you already
|
|
474
|
+
* chose to stop and wait, you cannot make that request again. You can choose to stop and
|
|
475
|
+
* abandon now, but be aware that this option can lead to failed tasks or out of sequence
|
|
476
|
+
* tasks. If you already chose to stop and abandon, you cannot make that request
|
|
477
|
+
* again.</p>
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
export declare class DuplicatedStopRequestException extends __BaseException {
|
|
481
|
+
readonly name: "DuplicatedStopRequestException";
|
|
482
|
+
readonly $fault: "client";
|
|
483
|
+
/**
|
|
484
|
+
* @internal
|
|
485
|
+
*/
|
|
486
|
+
constructor(opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>);
|
|
487
|
+
}
|
|
488
|
+
/**
|
|
489
|
+
* <p>Unable to stop the pipeline execution. The execution might already be in a
|
|
490
|
+
* <code>Stopped</code> state, or it might no longer be in progress.</p>
|
|
491
|
+
* @public
|
|
492
|
+
*/
|
|
493
|
+
export declare class PipelineExecutionNotStoppableException extends __BaseException {
|
|
494
|
+
readonly name: "PipelineExecutionNotStoppableException";
|
|
495
|
+
readonly $fault: "client";
|
|
496
|
+
/**
|
|
497
|
+
* @internal
|
|
498
|
+
*/
|
|
499
|
+
constructor(opts: __ExceptionOptionType<PipelineExecutionNotStoppableException, __BaseException>);
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* <p>The request failed because of an unknown error, exception, or failure.</p>
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
export declare class RequestFailedException extends __BaseException {
|
|
506
|
+
readonly name: "RequestFailedException";
|
|
507
|
+
readonly $fault: "client";
|
|
508
|
+
/**
|
|
509
|
+
* @internal
|
|
510
|
+
*/
|
|
511
|
+
constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
|
|
512
|
+
}
|