@aws-sdk/client-codepipeline 3.934.0 → 3.936.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.
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { CodePipelineExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { CodePipelineServiceException } from "./models/CodePipelineServiceException";
@@ -0,0 +1,238 @@
1
+ export declare const JobStatus: {
2
+ readonly Created: "Created";
3
+ readonly Dispatched: "Dispatched";
4
+ readonly Failed: "Failed";
5
+ readonly InProgress: "InProgress";
6
+ readonly Queued: "Queued";
7
+ readonly Succeeded: "Succeeded";
8
+ readonly TimedOut: "TimedOut";
9
+ };
10
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
11
+ export declare const ActionCategory: {
12
+ readonly Approval: "Approval";
13
+ readonly Build: "Build";
14
+ readonly Compute: "Compute";
15
+ readonly Deploy: "Deploy";
16
+ readonly Invoke: "Invoke";
17
+ readonly Source: "Source";
18
+ readonly Test: "Test";
19
+ };
20
+ export type ActionCategory =
21
+ (typeof ActionCategory)[keyof typeof ActionCategory];
22
+ export declare const ActionConfigurationPropertyType: {
23
+ readonly Boolean: "Boolean";
24
+ readonly Number: "Number";
25
+ readonly String: "String";
26
+ };
27
+ export type ActionConfigurationPropertyType =
28
+ (typeof ActionConfigurationPropertyType)[keyof typeof ActionConfigurationPropertyType];
29
+ export declare const ActionOwner: {
30
+ readonly AWS: "AWS";
31
+ readonly Custom: "Custom";
32
+ readonly ThirdParty: "ThirdParty";
33
+ };
34
+ export type ActionOwner = (typeof ActionOwner)[keyof typeof ActionOwner];
35
+ export declare const EnvironmentVariableType: {
36
+ readonly PLAINTEXT: "PLAINTEXT";
37
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
38
+ };
39
+ export type EnvironmentVariableType =
40
+ (typeof EnvironmentVariableType)[keyof typeof EnvironmentVariableType];
41
+ export declare const ActionExecutionStatus: {
42
+ readonly Abandoned: "Abandoned";
43
+ readonly Failed: "Failed";
44
+ readonly InProgress: "InProgress";
45
+ readonly Succeeded: "Succeeded";
46
+ };
47
+ export type ActionExecutionStatus =
48
+ (typeof ActionExecutionStatus)[keyof typeof ActionExecutionStatus];
49
+ export declare const StartTimeRange: {
50
+ readonly All: "All";
51
+ readonly Latest: "Latest";
52
+ };
53
+ export type StartTimeRange =
54
+ (typeof StartTimeRange)[keyof typeof StartTimeRange];
55
+ export declare const ExecutorType: {
56
+ readonly JobWorker: "JobWorker";
57
+ readonly Lambda: "Lambda";
58
+ };
59
+ export type ExecutorType = (typeof ExecutorType)[keyof typeof ExecutorType];
60
+ export declare const ApprovalStatus: {
61
+ readonly Approved: "Approved";
62
+ readonly Rejected: "Rejected";
63
+ };
64
+ export type ApprovalStatus =
65
+ (typeof ApprovalStatus)[keyof typeof ApprovalStatus];
66
+ export declare const ArtifactLocationType: {
67
+ readonly S3: "S3";
68
+ };
69
+ export type ArtifactLocationType =
70
+ (typeof ArtifactLocationType)[keyof typeof ArtifactLocationType];
71
+ export declare const EncryptionKeyType: {
72
+ readonly KMS: "KMS";
73
+ };
74
+ export type EncryptionKeyType =
75
+ (typeof EncryptionKeyType)[keyof typeof EncryptionKeyType];
76
+ export declare const ArtifactStoreType: {
77
+ readonly S3: "S3";
78
+ };
79
+ export type ArtifactStoreType =
80
+ (typeof ArtifactStoreType)[keyof typeof ArtifactStoreType];
81
+ export declare const Result: {
82
+ readonly FAIL: "FAIL";
83
+ readonly RETRY: "RETRY";
84
+ readonly ROLLBACK: "ROLLBACK";
85
+ readonly SKIP: "SKIP";
86
+ };
87
+ export type Result = (typeof Result)[keyof typeof Result];
88
+ export declare const RuleCategory: {
89
+ readonly Rule: "Rule";
90
+ };
91
+ export type RuleCategory = (typeof RuleCategory)[keyof typeof RuleCategory];
92
+ export declare const RuleOwner: {
93
+ readonly AWS: "AWS";
94
+ };
95
+ export type RuleOwner = (typeof RuleOwner)[keyof typeof RuleOwner];
96
+ export declare const BlockerType: {
97
+ readonly Schedule: "Schedule";
98
+ };
99
+ export type BlockerType = (typeof BlockerType)[keyof typeof BlockerType];
100
+ export declare const ExecutionMode: {
101
+ readonly PARALLEL: "PARALLEL";
102
+ readonly QUEUED: "QUEUED";
103
+ readonly SUPERSEDED: "SUPERSEDED";
104
+ };
105
+ export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
106
+ export declare const PipelineType: {
107
+ readonly V1: "V1";
108
+ readonly V2: "V2";
109
+ };
110
+ export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
111
+ export declare const StageRetryMode: {
112
+ readonly ALL_ACTIONS: "ALL_ACTIONS";
113
+ readonly FAILED_ACTIONS: "FAILED_ACTIONS";
114
+ };
115
+ export type StageRetryMode =
116
+ (typeof StageRetryMode)[keyof typeof StageRetryMode];
117
+ export declare const GitPullRequestEventType: {
118
+ readonly CLOSED: "CLOSED";
119
+ readonly OPEN: "OPEN";
120
+ readonly UPDATED: "UPDATED";
121
+ };
122
+ export type GitPullRequestEventType =
123
+ (typeof GitPullRequestEventType)[keyof typeof GitPullRequestEventType];
124
+ export declare const PipelineTriggerProviderType: {
125
+ readonly CodeStarSourceConnection: "CodeStarSourceConnection";
126
+ };
127
+ export type PipelineTriggerProviderType =
128
+ (typeof PipelineTriggerProviderType)[keyof typeof PipelineTriggerProviderType];
129
+ export declare const StageTransitionType: {
130
+ readonly Inbound: "Inbound";
131
+ readonly Outbound: "Outbound";
132
+ };
133
+ export type StageTransitionType =
134
+ (typeof StageTransitionType)[keyof typeof StageTransitionType];
135
+ export declare const ExecutionType: {
136
+ readonly ROLLBACK: "ROLLBACK";
137
+ readonly STANDARD: "STANDARD";
138
+ };
139
+ export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
140
+ export declare const PipelineExecutionStatus: {
141
+ readonly Cancelled: "Cancelled";
142
+ readonly Failed: "Failed";
143
+ readonly InProgress: "InProgress";
144
+ readonly Stopped: "Stopped";
145
+ readonly Stopping: "Stopping";
146
+ readonly Succeeded: "Succeeded";
147
+ readonly Superseded: "Superseded";
148
+ };
149
+ export type PipelineExecutionStatus =
150
+ (typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
151
+ export declare const TriggerType: {
152
+ readonly AutomatedRollback: "AutomatedRollback";
153
+ readonly CloudWatchEvent: "CloudWatchEvent";
154
+ readonly CreatePipeline: "CreatePipeline";
155
+ readonly ManualRollback: "ManualRollback";
156
+ readonly PollForSourceChanges: "PollForSourceChanges";
157
+ readonly PutActionRevision: "PutActionRevision";
158
+ readonly StartPipelineExecution: "StartPipelineExecution";
159
+ readonly Webhook: "Webhook";
160
+ readonly WebhookV2: "WebhookV2";
161
+ };
162
+ export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
163
+ export declare const ConditionExecutionStatus: {
164
+ readonly Abandoned: "Abandoned";
165
+ readonly Cancelled: "Cancelled";
166
+ readonly Errored: "Errored";
167
+ readonly Failed: "Failed";
168
+ readonly InProgress: "InProgress";
169
+ readonly Overridden: "Overridden";
170
+ readonly Succeeded: "Succeeded";
171
+ };
172
+ export type ConditionExecutionStatus =
173
+ (typeof ConditionExecutionStatus)[keyof typeof ConditionExecutionStatus];
174
+ export declare const RuleExecutionStatus: {
175
+ readonly Abandoned: "Abandoned";
176
+ readonly Failed: "Failed";
177
+ readonly InProgress: "InProgress";
178
+ readonly Succeeded: "Succeeded";
179
+ };
180
+ export type RuleExecutionStatus =
181
+ (typeof RuleExecutionStatus)[keyof typeof RuleExecutionStatus];
182
+ export declare const StageExecutionStatus: {
183
+ readonly Cancelled: "Cancelled";
184
+ readonly Failed: "Failed";
185
+ readonly InProgress: "InProgress";
186
+ readonly Skipped: "Skipped";
187
+ readonly Stopped: "Stopped";
188
+ readonly Stopping: "Stopping";
189
+ readonly Succeeded: "Succeeded";
190
+ };
191
+ export type StageExecutionStatus =
192
+ (typeof StageExecutionStatus)[keyof typeof StageExecutionStatus];
193
+ export declare const RetryTrigger: {
194
+ readonly AutomatedStageRetry: "AutomatedStageRetry";
195
+ readonly ManualStageRetry: "ManualStageRetry";
196
+ };
197
+ export type RetryTrigger = (typeof RetryTrigger)[keyof typeof RetryTrigger];
198
+ export declare const TargetFilterName: {
199
+ readonly TARGET_STATUS: "TARGET_STATUS";
200
+ };
201
+ export type TargetFilterName =
202
+ (typeof TargetFilterName)[keyof typeof TargetFilterName];
203
+ export declare const RuleConfigurationPropertyType: {
204
+ readonly Boolean: "Boolean";
205
+ readonly Number: "Number";
206
+ readonly String: "String";
207
+ };
208
+ export type RuleConfigurationPropertyType =
209
+ (typeof RuleConfigurationPropertyType)[keyof typeof RuleConfigurationPropertyType];
210
+ export declare const WebhookAuthenticationType: {
211
+ readonly GITHUB_HMAC: "GITHUB_HMAC";
212
+ readonly IP: "IP";
213
+ readonly UNAUTHENTICATED: "UNAUTHENTICATED";
214
+ };
215
+ export type WebhookAuthenticationType =
216
+ (typeof WebhookAuthenticationType)[keyof typeof WebhookAuthenticationType];
217
+ export declare const ConditionType: {
218
+ readonly BEFORE_ENTRY: "BEFORE_ENTRY";
219
+ readonly ON_SUCCESS: "ON_SUCCESS";
220
+ };
221
+ export type ConditionType = (typeof ConditionType)[keyof typeof ConditionType];
222
+ export declare const FailureType: {
223
+ readonly ConfigurationError: "ConfigurationError";
224
+ readonly JobFailed: "JobFailed";
225
+ readonly PermissionError: "PermissionError";
226
+ readonly RevisionOutOfSync: "RevisionOutOfSync";
227
+ readonly RevisionUnavailable: "RevisionUnavailable";
228
+ readonly SystemUnavailable: "SystemUnavailable";
229
+ };
230
+ export type FailureType = (typeof FailureType)[keyof typeof FailureType];
231
+ export declare const SourceRevisionType: {
232
+ readonly COMMIT_ID: "COMMIT_ID";
233
+ readonly IMAGE_DIGEST: "IMAGE_DIGEST";
234
+ readonly S3_OBJECT_KEY: "S3_OBJECT_KEY";
235
+ readonly S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID";
236
+ };
237
+ export type SourceRevisionType =
238
+ (typeof SourceRevisionType)[keyof typeof SourceRevisionType];
@@ -0,0 +1,335 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
3
+ export declare class InvalidNonceException extends __BaseException {
4
+ readonly name: "InvalidNonceException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<InvalidNonceException, __BaseException>
8
+ );
9
+ }
10
+ export declare class JobNotFoundException extends __BaseException {
11
+ readonly name: "JobNotFoundException";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<JobNotFoundException, __BaseException>
15
+ );
16
+ }
17
+ export declare class ValidationException extends __BaseException {
18
+ readonly name: "ValidationException";
19
+ readonly $fault: "client";
20
+ constructor(
21
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
22
+ );
23
+ }
24
+ export declare class InvalidClientTokenException extends __BaseException {
25
+ readonly name: "InvalidClientTokenException";
26
+ readonly $fault: "client";
27
+ constructor(
28
+ opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>
29
+ );
30
+ }
31
+ export declare class ActionExecutionNotFoundException extends __BaseException {
32
+ readonly name: "ActionExecutionNotFoundException";
33
+ readonly $fault: "client";
34
+ constructor(
35
+ opts: __ExceptionOptionType<
36
+ ActionExecutionNotFoundException,
37
+ __BaseException
38
+ >
39
+ );
40
+ }
41
+ export declare class ActionNotFoundException extends __BaseException {
42
+ readonly name: "ActionNotFoundException";
43
+ readonly $fault: "client";
44
+ constructor(
45
+ opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>
46
+ );
47
+ }
48
+ export declare class ActionTypeNotFoundException extends __BaseException {
49
+ readonly name: "ActionTypeNotFoundException";
50
+ readonly $fault: "client";
51
+ constructor(
52
+ opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>
53
+ );
54
+ }
55
+ export declare class ApprovalAlreadyCompletedException extends __BaseException {
56
+ readonly name: "ApprovalAlreadyCompletedException";
57
+ readonly $fault: "client";
58
+ constructor(
59
+ opts: __ExceptionOptionType<
60
+ ApprovalAlreadyCompletedException,
61
+ __BaseException
62
+ >
63
+ );
64
+ }
65
+ export declare class ConcurrentModificationException extends __BaseException {
66
+ readonly name: "ConcurrentModificationException";
67
+ readonly $fault: "client";
68
+ constructor(
69
+ opts: __ExceptionOptionType<
70
+ ConcurrentModificationException,
71
+ __BaseException
72
+ >
73
+ );
74
+ }
75
+ export declare class InvalidTagsException extends __BaseException {
76
+ readonly name: "InvalidTagsException";
77
+ readonly $fault: "client";
78
+ constructor(
79
+ opts: __ExceptionOptionType<InvalidTagsException, __BaseException>
80
+ );
81
+ }
82
+ export declare class LimitExceededException extends __BaseException {
83
+ readonly name: "LimitExceededException";
84
+ readonly $fault: "client";
85
+ constructor(
86
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
87
+ );
88
+ }
89
+ export declare class TooManyTagsException extends __BaseException {
90
+ readonly name: "TooManyTagsException";
91
+ readonly $fault: "client";
92
+ constructor(
93
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
94
+ );
95
+ }
96
+ export declare class InvalidActionDeclarationException extends __BaseException {
97
+ readonly name: "InvalidActionDeclarationException";
98
+ readonly $fault: "client";
99
+ constructor(
100
+ opts: __ExceptionOptionType<
101
+ InvalidActionDeclarationException,
102
+ __BaseException
103
+ >
104
+ );
105
+ }
106
+ export declare class InvalidBlockerDeclarationException extends __BaseException {
107
+ readonly name: "InvalidBlockerDeclarationException";
108
+ readonly $fault: "client";
109
+ constructor(
110
+ opts: __ExceptionOptionType<
111
+ InvalidBlockerDeclarationException,
112
+ __BaseException
113
+ >
114
+ );
115
+ }
116
+ export declare class InvalidStageDeclarationException extends __BaseException {
117
+ readonly name: "InvalidStageDeclarationException";
118
+ readonly $fault: "client";
119
+ constructor(
120
+ opts: __ExceptionOptionType<
121
+ InvalidStageDeclarationException,
122
+ __BaseException
123
+ >
124
+ );
125
+ }
126
+ export declare class InvalidStructureException extends __BaseException {
127
+ readonly name: "InvalidStructureException";
128
+ readonly $fault: "client";
129
+ constructor(
130
+ opts: __ExceptionOptionType<InvalidStructureException, __BaseException>
131
+ );
132
+ }
133
+ export declare class PipelineNameInUseException extends __BaseException {
134
+ readonly name: "PipelineNameInUseException";
135
+ readonly $fault: "client";
136
+ constructor(
137
+ opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>
138
+ );
139
+ }
140
+ export declare class WebhookNotFoundException extends __BaseException {
141
+ readonly name: "WebhookNotFoundException";
142
+ readonly $fault: "client";
143
+ constructor(
144
+ opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>
145
+ );
146
+ }
147
+ export declare class PipelineNotFoundException extends __BaseException {
148
+ readonly name: "PipelineNotFoundException";
149
+ readonly $fault: "client";
150
+ constructor(
151
+ opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>
152
+ );
153
+ }
154
+ export declare class StageNotFoundException extends __BaseException {
155
+ readonly name: "StageNotFoundException";
156
+ readonly $fault: "client";
157
+ constructor(
158
+ opts: __ExceptionOptionType<StageNotFoundException, __BaseException>
159
+ );
160
+ }
161
+ export declare class PipelineVersionNotFoundException extends __BaseException {
162
+ readonly name: "PipelineVersionNotFoundException";
163
+ readonly $fault: "client";
164
+ constructor(
165
+ opts: __ExceptionOptionType<
166
+ PipelineVersionNotFoundException,
167
+ __BaseException
168
+ >
169
+ );
170
+ }
171
+ export declare class PipelineExecutionNotFoundException extends __BaseException {
172
+ readonly name: "PipelineExecutionNotFoundException";
173
+ readonly $fault: "client";
174
+ constructor(
175
+ opts: __ExceptionOptionType<
176
+ PipelineExecutionNotFoundException,
177
+ __BaseException
178
+ >
179
+ );
180
+ }
181
+ export declare class InvalidJobException extends __BaseException {
182
+ readonly name: "InvalidJobException";
183
+ readonly $fault: "client";
184
+ constructor(
185
+ opts: __ExceptionOptionType<InvalidJobException, __BaseException>
186
+ );
187
+ }
188
+ export declare class InvalidNextTokenException extends __BaseException {
189
+ readonly name: "InvalidNextTokenException";
190
+ readonly $fault: "client";
191
+ constructor(
192
+ opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
193
+ );
194
+ }
195
+ export declare class InvalidArnException extends __BaseException {
196
+ readonly name: "InvalidArnException";
197
+ readonly $fault: "client";
198
+ constructor(
199
+ opts: __ExceptionOptionType<InvalidArnException, __BaseException>
200
+ );
201
+ }
202
+ export declare class ResourceNotFoundException extends __BaseException {
203
+ readonly name: "ResourceNotFoundException";
204
+ readonly $fault: "client";
205
+ constructor(
206
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
207
+ );
208
+ }
209
+ export declare class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
210
+ readonly name: "ConcurrentPipelineExecutionsLimitExceededException";
211
+ readonly $fault: "client";
212
+ constructor(
213
+ opts: __ExceptionOptionType<
214
+ ConcurrentPipelineExecutionsLimitExceededException,
215
+ __BaseException
216
+ >
217
+ );
218
+ }
219
+ export declare class ConditionNotOverridableException extends __BaseException {
220
+ readonly name: "ConditionNotOverridableException";
221
+ readonly $fault: "client";
222
+ constructor(
223
+ opts: __ExceptionOptionType<
224
+ ConditionNotOverridableException,
225
+ __BaseException
226
+ >
227
+ );
228
+ }
229
+ export declare class ConflictException extends __BaseException {
230
+ readonly name: "ConflictException";
231
+ readonly $fault: "client";
232
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
233
+ }
234
+ export declare class NotLatestPipelineExecutionException extends __BaseException {
235
+ readonly name: "NotLatestPipelineExecutionException";
236
+ readonly $fault: "client";
237
+ constructor(
238
+ opts: __ExceptionOptionType<
239
+ NotLatestPipelineExecutionException,
240
+ __BaseException
241
+ >
242
+ );
243
+ }
244
+ export declare class InvalidApprovalTokenException extends __BaseException {
245
+ readonly name: "InvalidApprovalTokenException";
246
+ readonly $fault: "client";
247
+ constructor(
248
+ opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>
249
+ );
250
+ }
251
+ export declare class InvalidJobStateException extends __BaseException {
252
+ readonly name: "InvalidJobStateException";
253
+ readonly $fault: "client";
254
+ constructor(
255
+ opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>
256
+ );
257
+ }
258
+ export declare class OutputVariablesSizeExceededException extends __BaseException {
259
+ readonly name: "OutputVariablesSizeExceededException";
260
+ readonly $fault: "client";
261
+ constructor(
262
+ opts: __ExceptionOptionType<
263
+ OutputVariablesSizeExceededException,
264
+ __BaseException
265
+ >
266
+ );
267
+ }
268
+ export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
269
+ readonly name: "InvalidWebhookAuthenticationParametersException";
270
+ readonly $fault: "client";
271
+ constructor(
272
+ opts: __ExceptionOptionType<
273
+ InvalidWebhookAuthenticationParametersException,
274
+ __BaseException
275
+ >
276
+ );
277
+ }
278
+ export declare class InvalidWebhookFilterPatternException extends __BaseException {
279
+ readonly name: "InvalidWebhookFilterPatternException";
280
+ readonly $fault: "client";
281
+ constructor(
282
+ opts: __ExceptionOptionType<
283
+ InvalidWebhookFilterPatternException,
284
+ __BaseException
285
+ >
286
+ );
287
+ }
288
+ export declare class StageNotRetryableException extends __BaseException {
289
+ readonly name: "StageNotRetryableException";
290
+ readonly $fault: "client";
291
+ constructor(
292
+ opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>
293
+ );
294
+ }
295
+ export declare class PipelineExecutionOutdatedException extends __BaseException {
296
+ readonly name: "PipelineExecutionOutdatedException";
297
+ readonly $fault: "client";
298
+ constructor(
299
+ opts: __ExceptionOptionType<
300
+ PipelineExecutionOutdatedException,
301
+ __BaseException
302
+ >
303
+ );
304
+ }
305
+ export declare class UnableToRollbackStageException extends __BaseException {
306
+ readonly name: "UnableToRollbackStageException";
307
+ readonly $fault: "client";
308
+ constructor(
309
+ opts: __ExceptionOptionType<UnableToRollbackStageException, __BaseException>
310
+ );
311
+ }
312
+ export declare class DuplicatedStopRequestException extends __BaseException {
313
+ readonly name: "DuplicatedStopRequestException";
314
+ readonly $fault: "client";
315
+ constructor(
316
+ opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>
317
+ );
318
+ }
319
+ export declare class PipelineExecutionNotStoppableException extends __BaseException {
320
+ readonly name: "PipelineExecutionNotStoppableException";
321
+ readonly $fault: "client";
322
+ constructor(
323
+ opts: __ExceptionOptionType<
324
+ PipelineExecutionNotStoppableException,
325
+ __BaseException
326
+ >
327
+ );
328
+ }
329
+ export declare class RequestFailedException extends __BaseException {
330
+ readonly name: "RequestFailedException";
331
+ readonly $fault: "client";
332
+ constructor(
333
+ opts: __ExceptionOptionType<RequestFailedException, __BaseException>
334
+ );
335
+ }