@aws-sdk/client-sfn 3.933.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 +250 -151
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +151 -0
- package/dist-es/models/errors.js +405 -0
- package/dist-es/models/models_0.js +1 -551
- package/dist-es/schemas/schemas_0.js +98 -6
- package/dist-types/commands/TestStateCommand.d.ts +29 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +295 -0
- package/dist-types/models/errors.d.ts +426 -0
- package/dist-types/models/models_0.d.ts +157 -703
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +183 -0
- package/dist-types/ts3.4/models/errors.d.ts +218 -0
- package/dist-types/ts3.4/models/models_0.d.ts +50 -393
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- 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,151 @@
|
|
|
1
|
+
export const EncryptionType = {
|
|
2
|
+
AWS_OWNED_KEY: "AWS_OWNED_KEY",
|
|
3
|
+
CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
|
|
4
|
+
};
|
|
5
|
+
export const LogLevel = {
|
|
6
|
+
ALL: "ALL",
|
|
7
|
+
ERROR: "ERROR",
|
|
8
|
+
FATAL: "FATAL",
|
|
9
|
+
OFF: "OFF",
|
|
10
|
+
};
|
|
11
|
+
export const StateMachineType = {
|
|
12
|
+
EXPRESS: "EXPRESS",
|
|
13
|
+
STANDARD: "STANDARD",
|
|
14
|
+
};
|
|
15
|
+
export const ValidationExceptionReason = {
|
|
16
|
+
API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS",
|
|
17
|
+
CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN",
|
|
18
|
+
INVALID_ROUTING_CONFIGURATION: "INVALID_ROUTING_CONFIGURATION",
|
|
19
|
+
MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER",
|
|
20
|
+
};
|
|
21
|
+
export const IncludedData = {
|
|
22
|
+
ALL_DATA: "ALL_DATA",
|
|
23
|
+
METADATA_ONLY: "METADATA_ONLY",
|
|
24
|
+
};
|
|
25
|
+
export const ExecutionRedriveStatus = {
|
|
26
|
+
NOT_REDRIVABLE: "NOT_REDRIVABLE",
|
|
27
|
+
REDRIVABLE: "REDRIVABLE",
|
|
28
|
+
REDRIVABLE_BY_MAP_RUN: "REDRIVABLE_BY_MAP_RUN",
|
|
29
|
+
};
|
|
30
|
+
export const ExecutionStatus = {
|
|
31
|
+
ABORTED: "ABORTED",
|
|
32
|
+
FAILED: "FAILED",
|
|
33
|
+
PENDING_REDRIVE: "PENDING_REDRIVE",
|
|
34
|
+
RUNNING: "RUNNING",
|
|
35
|
+
SUCCEEDED: "SUCCEEDED",
|
|
36
|
+
TIMED_OUT: "TIMED_OUT",
|
|
37
|
+
};
|
|
38
|
+
export const KmsKeyState = {
|
|
39
|
+
CREATING: "CREATING",
|
|
40
|
+
DISABLED: "DISABLED",
|
|
41
|
+
PENDING_DELETION: "PENDING_DELETION",
|
|
42
|
+
PENDING_IMPORT: "PENDING_IMPORT",
|
|
43
|
+
UNAVAILABLE: "UNAVAILABLE",
|
|
44
|
+
};
|
|
45
|
+
export const MapRunStatus = {
|
|
46
|
+
ABORTED: "ABORTED",
|
|
47
|
+
FAILED: "FAILED",
|
|
48
|
+
RUNNING: "RUNNING",
|
|
49
|
+
SUCCEEDED: "SUCCEEDED",
|
|
50
|
+
};
|
|
51
|
+
export const StateMachineStatus = {
|
|
52
|
+
ACTIVE: "ACTIVE",
|
|
53
|
+
DELETING: "DELETING",
|
|
54
|
+
};
|
|
55
|
+
export const HistoryEventType = {
|
|
56
|
+
ActivityFailed: "ActivityFailed",
|
|
57
|
+
ActivityScheduleFailed: "ActivityScheduleFailed",
|
|
58
|
+
ActivityScheduled: "ActivityScheduled",
|
|
59
|
+
ActivityStarted: "ActivityStarted",
|
|
60
|
+
ActivitySucceeded: "ActivitySucceeded",
|
|
61
|
+
ActivityTimedOut: "ActivityTimedOut",
|
|
62
|
+
ChoiceStateEntered: "ChoiceStateEntered",
|
|
63
|
+
ChoiceStateExited: "ChoiceStateExited",
|
|
64
|
+
EvaluationFailed: "EvaluationFailed",
|
|
65
|
+
ExecutionAborted: "ExecutionAborted",
|
|
66
|
+
ExecutionFailed: "ExecutionFailed",
|
|
67
|
+
ExecutionRedriven: "ExecutionRedriven",
|
|
68
|
+
ExecutionStarted: "ExecutionStarted",
|
|
69
|
+
ExecutionSucceeded: "ExecutionSucceeded",
|
|
70
|
+
ExecutionTimedOut: "ExecutionTimedOut",
|
|
71
|
+
FailStateEntered: "FailStateEntered",
|
|
72
|
+
LambdaFunctionFailed: "LambdaFunctionFailed",
|
|
73
|
+
LambdaFunctionScheduleFailed: "LambdaFunctionScheduleFailed",
|
|
74
|
+
LambdaFunctionScheduled: "LambdaFunctionScheduled",
|
|
75
|
+
LambdaFunctionStartFailed: "LambdaFunctionStartFailed",
|
|
76
|
+
LambdaFunctionStarted: "LambdaFunctionStarted",
|
|
77
|
+
LambdaFunctionSucceeded: "LambdaFunctionSucceeded",
|
|
78
|
+
LambdaFunctionTimedOut: "LambdaFunctionTimedOut",
|
|
79
|
+
MapIterationAborted: "MapIterationAborted",
|
|
80
|
+
MapIterationFailed: "MapIterationFailed",
|
|
81
|
+
MapIterationStarted: "MapIterationStarted",
|
|
82
|
+
MapIterationSucceeded: "MapIterationSucceeded",
|
|
83
|
+
MapRunAborted: "MapRunAborted",
|
|
84
|
+
MapRunFailed: "MapRunFailed",
|
|
85
|
+
MapRunRedriven: "MapRunRedriven",
|
|
86
|
+
MapRunStarted: "MapRunStarted",
|
|
87
|
+
MapRunSucceeded: "MapRunSucceeded",
|
|
88
|
+
MapStateAborted: "MapStateAborted",
|
|
89
|
+
MapStateEntered: "MapStateEntered",
|
|
90
|
+
MapStateExited: "MapStateExited",
|
|
91
|
+
MapStateFailed: "MapStateFailed",
|
|
92
|
+
MapStateStarted: "MapStateStarted",
|
|
93
|
+
MapStateSucceeded: "MapStateSucceeded",
|
|
94
|
+
ParallelStateAborted: "ParallelStateAborted",
|
|
95
|
+
ParallelStateEntered: "ParallelStateEntered",
|
|
96
|
+
ParallelStateExited: "ParallelStateExited",
|
|
97
|
+
ParallelStateFailed: "ParallelStateFailed",
|
|
98
|
+
ParallelStateStarted: "ParallelStateStarted",
|
|
99
|
+
ParallelStateSucceeded: "ParallelStateSucceeded",
|
|
100
|
+
PassStateEntered: "PassStateEntered",
|
|
101
|
+
PassStateExited: "PassStateExited",
|
|
102
|
+
SucceedStateEntered: "SucceedStateEntered",
|
|
103
|
+
SucceedStateExited: "SucceedStateExited",
|
|
104
|
+
TaskFailed: "TaskFailed",
|
|
105
|
+
TaskScheduled: "TaskScheduled",
|
|
106
|
+
TaskStartFailed: "TaskStartFailed",
|
|
107
|
+
TaskStarted: "TaskStarted",
|
|
108
|
+
TaskStateAborted: "TaskStateAborted",
|
|
109
|
+
TaskStateEntered: "TaskStateEntered",
|
|
110
|
+
TaskStateExited: "TaskStateExited",
|
|
111
|
+
TaskSubmitFailed: "TaskSubmitFailed",
|
|
112
|
+
TaskSubmitted: "TaskSubmitted",
|
|
113
|
+
TaskSucceeded: "TaskSucceeded",
|
|
114
|
+
TaskTimedOut: "TaskTimedOut",
|
|
115
|
+
WaitStateAborted: "WaitStateAborted",
|
|
116
|
+
WaitStateEntered: "WaitStateEntered",
|
|
117
|
+
WaitStateExited: "WaitStateExited",
|
|
118
|
+
};
|
|
119
|
+
export const ExecutionRedriveFilter = {
|
|
120
|
+
NOT_REDRIVEN: "NOT_REDRIVEN",
|
|
121
|
+
REDRIVEN: "REDRIVEN",
|
|
122
|
+
};
|
|
123
|
+
export const SyncExecutionStatus = {
|
|
124
|
+
FAILED: "FAILED",
|
|
125
|
+
SUCCEEDED: "SUCCEEDED",
|
|
126
|
+
TIMED_OUT: "TIMED_OUT",
|
|
127
|
+
};
|
|
128
|
+
export const InspectionLevel = {
|
|
129
|
+
DEBUG: "DEBUG",
|
|
130
|
+
INFO: "INFO",
|
|
131
|
+
TRACE: "TRACE",
|
|
132
|
+
};
|
|
133
|
+
export const MockResponseValidationMode = {
|
|
134
|
+
NONE: "NONE",
|
|
135
|
+
PRESENT: "PRESENT",
|
|
136
|
+
STRICT: "STRICT",
|
|
137
|
+
};
|
|
138
|
+
export const TestExecutionStatus = {
|
|
139
|
+
CAUGHT_ERROR: "CAUGHT_ERROR",
|
|
140
|
+
FAILED: "FAILED",
|
|
141
|
+
RETRIABLE: "RETRIABLE",
|
|
142
|
+
SUCCEEDED: "SUCCEEDED",
|
|
143
|
+
};
|
|
144
|
+
export const ValidateStateMachineDefinitionSeverity = {
|
|
145
|
+
ERROR: "ERROR",
|
|
146
|
+
WARNING: "WARNING",
|
|
147
|
+
};
|
|
148
|
+
export const ValidateStateMachineDefinitionResultCode = {
|
|
149
|
+
FAIL: "FAIL",
|
|
150
|
+
OK: "OK",
|
|
151
|
+
};
|
|
@@ -0,0 +1,405 @@
|
|
|
1
|
+
import { SFNServiceException as __BaseException } from "./SFNServiceException";
|
|
2
|
+
export class ActivityAlreadyExists extends __BaseException {
|
|
3
|
+
name = "ActivityAlreadyExists";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "ActivityAlreadyExists",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, ActivityAlreadyExists.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ActivityDoesNotExist extends __BaseException {
|
|
15
|
+
name = "ActivityDoesNotExist";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ActivityDoesNotExist",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ActivityDoesNotExist.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ActivityLimitExceeded extends __BaseException {
|
|
27
|
+
name = "ActivityLimitExceeded";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ActivityLimitExceeded",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ActivityLimitExceeded.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ActivityWorkerLimitExceeded extends __BaseException {
|
|
39
|
+
name = "ActivityWorkerLimitExceeded";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ActivityWorkerLimitExceeded",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ActivityWorkerLimitExceeded.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class InvalidEncryptionConfiguration extends __BaseException {
|
|
51
|
+
name = "InvalidEncryptionConfiguration";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "InvalidEncryptionConfiguration",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, InvalidEncryptionConfiguration.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class InvalidName extends __BaseException {
|
|
63
|
+
name = "InvalidName";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "InvalidName",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, InvalidName.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class KmsAccessDeniedException extends __BaseException {
|
|
75
|
+
name = "KmsAccessDeniedException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "KmsAccessDeniedException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, KmsAccessDeniedException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class KmsThrottlingException extends __BaseException {
|
|
87
|
+
name = "KmsThrottlingException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "KmsThrottlingException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, KmsThrottlingException.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class TooManyTags extends __BaseException {
|
|
99
|
+
name = "TooManyTags";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
resourceName;
|
|
102
|
+
constructor(opts) {
|
|
103
|
+
super({
|
|
104
|
+
name: "TooManyTags",
|
|
105
|
+
$fault: "client",
|
|
106
|
+
...opts,
|
|
107
|
+
});
|
|
108
|
+
Object.setPrototypeOf(this, TooManyTags.prototype);
|
|
109
|
+
this.resourceName = opts.resourceName;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
export class ConflictException extends __BaseException {
|
|
113
|
+
name = "ConflictException";
|
|
114
|
+
$fault = "client";
|
|
115
|
+
constructor(opts) {
|
|
116
|
+
super({
|
|
117
|
+
name: "ConflictException",
|
|
118
|
+
$fault: "client",
|
|
119
|
+
...opts,
|
|
120
|
+
});
|
|
121
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
export class InvalidArn extends __BaseException {
|
|
125
|
+
name = "InvalidArn";
|
|
126
|
+
$fault = "client";
|
|
127
|
+
constructor(opts) {
|
|
128
|
+
super({
|
|
129
|
+
name: "InvalidArn",
|
|
130
|
+
$fault: "client",
|
|
131
|
+
...opts,
|
|
132
|
+
});
|
|
133
|
+
Object.setPrototypeOf(this, InvalidArn.prototype);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
export class InvalidDefinition extends __BaseException {
|
|
137
|
+
name = "InvalidDefinition";
|
|
138
|
+
$fault = "client";
|
|
139
|
+
constructor(opts) {
|
|
140
|
+
super({
|
|
141
|
+
name: "InvalidDefinition",
|
|
142
|
+
$fault: "client",
|
|
143
|
+
...opts,
|
|
144
|
+
});
|
|
145
|
+
Object.setPrototypeOf(this, InvalidDefinition.prototype);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
export class InvalidLoggingConfiguration extends __BaseException {
|
|
149
|
+
name = "InvalidLoggingConfiguration";
|
|
150
|
+
$fault = "client";
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "InvalidLoggingConfiguration",
|
|
154
|
+
$fault: "client",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
Object.setPrototypeOf(this, InvalidLoggingConfiguration.prototype);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
export class InvalidTracingConfiguration extends __BaseException {
|
|
161
|
+
name = "InvalidTracingConfiguration";
|
|
162
|
+
$fault = "client";
|
|
163
|
+
constructor(opts) {
|
|
164
|
+
super({
|
|
165
|
+
name: "InvalidTracingConfiguration",
|
|
166
|
+
$fault: "client",
|
|
167
|
+
...opts,
|
|
168
|
+
});
|
|
169
|
+
Object.setPrototypeOf(this, InvalidTracingConfiguration.prototype);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
export class StateMachineAlreadyExists extends __BaseException {
|
|
173
|
+
name = "StateMachineAlreadyExists";
|
|
174
|
+
$fault = "client";
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "StateMachineAlreadyExists",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
Object.setPrototypeOf(this, StateMachineAlreadyExists.prototype);
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
export class StateMachineDeleting extends __BaseException {
|
|
185
|
+
name = "StateMachineDeleting";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "StateMachineDeleting",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, StateMachineDeleting.prototype);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
export class StateMachineLimitExceeded extends __BaseException {
|
|
197
|
+
name = "StateMachineLimitExceeded";
|
|
198
|
+
$fault = "client";
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "StateMachineLimitExceeded",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, StateMachineLimitExceeded.prototype);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
export class StateMachineTypeNotSupported extends __BaseException {
|
|
209
|
+
name = "StateMachineTypeNotSupported";
|
|
210
|
+
$fault = "client";
|
|
211
|
+
constructor(opts) {
|
|
212
|
+
super({
|
|
213
|
+
name: "StateMachineTypeNotSupported",
|
|
214
|
+
$fault: "client",
|
|
215
|
+
...opts,
|
|
216
|
+
});
|
|
217
|
+
Object.setPrototypeOf(this, StateMachineTypeNotSupported.prototype);
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
export class ValidationException extends __BaseException {
|
|
221
|
+
name = "ValidationException";
|
|
222
|
+
$fault = "client";
|
|
223
|
+
reason;
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "ValidationException",
|
|
227
|
+
$fault: "client",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
231
|
+
this.reason = opts.reason;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
export class ResourceNotFound extends __BaseException {
|
|
235
|
+
name = "ResourceNotFound";
|
|
236
|
+
$fault = "client";
|
|
237
|
+
resourceName;
|
|
238
|
+
constructor(opts) {
|
|
239
|
+
super({
|
|
240
|
+
name: "ResourceNotFound",
|
|
241
|
+
$fault: "client",
|
|
242
|
+
...opts,
|
|
243
|
+
});
|
|
244
|
+
Object.setPrototypeOf(this, ResourceNotFound.prototype);
|
|
245
|
+
this.resourceName = opts.resourceName;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
249
|
+
name = "ServiceQuotaExceededException";
|
|
250
|
+
$fault = "client";
|
|
251
|
+
constructor(opts) {
|
|
252
|
+
super({
|
|
253
|
+
name: "ServiceQuotaExceededException",
|
|
254
|
+
$fault: "client",
|
|
255
|
+
...opts,
|
|
256
|
+
});
|
|
257
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
export class ExecutionDoesNotExist extends __BaseException {
|
|
261
|
+
name = "ExecutionDoesNotExist";
|
|
262
|
+
$fault = "client";
|
|
263
|
+
constructor(opts) {
|
|
264
|
+
super({
|
|
265
|
+
name: "ExecutionDoesNotExist",
|
|
266
|
+
$fault: "client",
|
|
267
|
+
...opts,
|
|
268
|
+
});
|
|
269
|
+
Object.setPrototypeOf(this, ExecutionDoesNotExist.prototype);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
export class KmsInvalidStateException extends __BaseException {
|
|
273
|
+
name = "KmsInvalidStateException";
|
|
274
|
+
$fault = "client";
|
|
275
|
+
kmsKeyState;
|
|
276
|
+
constructor(opts) {
|
|
277
|
+
super({
|
|
278
|
+
name: "KmsInvalidStateException",
|
|
279
|
+
$fault: "client",
|
|
280
|
+
...opts,
|
|
281
|
+
});
|
|
282
|
+
Object.setPrototypeOf(this, KmsInvalidStateException.prototype);
|
|
283
|
+
this.kmsKeyState = opts.kmsKeyState;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
export class StateMachineDoesNotExist extends __BaseException {
|
|
287
|
+
name = "StateMachineDoesNotExist";
|
|
288
|
+
$fault = "client";
|
|
289
|
+
constructor(opts) {
|
|
290
|
+
super({
|
|
291
|
+
name: "StateMachineDoesNotExist",
|
|
292
|
+
$fault: "client",
|
|
293
|
+
...opts,
|
|
294
|
+
});
|
|
295
|
+
Object.setPrototypeOf(this, StateMachineDoesNotExist.prototype);
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
export class InvalidToken extends __BaseException {
|
|
299
|
+
name = "InvalidToken";
|
|
300
|
+
$fault = "client";
|
|
301
|
+
constructor(opts) {
|
|
302
|
+
super({
|
|
303
|
+
name: "InvalidToken",
|
|
304
|
+
$fault: "client",
|
|
305
|
+
...opts,
|
|
306
|
+
});
|
|
307
|
+
Object.setPrototypeOf(this, InvalidToken.prototype);
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
export class ExecutionLimitExceeded extends __BaseException {
|
|
311
|
+
name = "ExecutionLimitExceeded";
|
|
312
|
+
$fault = "client";
|
|
313
|
+
constructor(opts) {
|
|
314
|
+
super({
|
|
315
|
+
name: "ExecutionLimitExceeded",
|
|
316
|
+
$fault: "client",
|
|
317
|
+
...opts,
|
|
318
|
+
});
|
|
319
|
+
Object.setPrototypeOf(this, ExecutionLimitExceeded.prototype);
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
export class ExecutionNotRedrivable extends __BaseException {
|
|
323
|
+
name = "ExecutionNotRedrivable";
|
|
324
|
+
$fault = "client";
|
|
325
|
+
constructor(opts) {
|
|
326
|
+
super({
|
|
327
|
+
name: "ExecutionNotRedrivable",
|
|
328
|
+
$fault: "client",
|
|
329
|
+
...opts,
|
|
330
|
+
});
|
|
331
|
+
Object.setPrototypeOf(this, ExecutionNotRedrivable.prototype);
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
export class TaskDoesNotExist extends __BaseException {
|
|
335
|
+
name = "TaskDoesNotExist";
|
|
336
|
+
$fault = "client";
|
|
337
|
+
constructor(opts) {
|
|
338
|
+
super({
|
|
339
|
+
name: "TaskDoesNotExist",
|
|
340
|
+
$fault: "client",
|
|
341
|
+
...opts,
|
|
342
|
+
});
|
|
343
|
+
Object.setPrototypeOf(this, TaskDoesNotExist.prototype);
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
export class TaskTimedOut extends __BaseException {
|
|
347
|
+
name = "TaskTimedOut";
|
|
348
|
+
$fault = "client";
|
|
349
|
+
constructor(opts) {
|
|
350
|
+
super({
|
|
351
|
+
name: "TaskTimedOut",
|
|
352
|
+
$fault: "client",
|
|
353
|
+
...opts,
|
|
354
|
+
});
|
|
355
|
+
Object.setPrototypeOf(this, TaskTimedOut.prototype);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
export class InvalidOutput extends __BaseException {
|
|
359
|
+
name = "InvalidOutput";
|
|
360
|
+
$fault = "client";
|
|
361
|
+
constructor(opts) {
|
|
362
|
+
super({
|
|
363
|
+
name: "InvalidOutput",
|
|
364
|
+
$fault: "client",
|
|
365
|
+
...opts,
|
|
366
|
+
});
|
|
367
|
+
Object.setPrototypeOf(this, InvalidOutput.prototype);
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
export class ExecutionAlreadyExists extends __BaseException {
|
|
371
|
+
name = "ExecutionAlreadyExists";
|
|
372
|
+
$fault = "client";
|
|
373
|
+
constructor(opts) {
|
|
374
|
+
super({
|
|
375
|
+
name: "ExecutionAlreadyExists",
|
|
376
|
+
$fault: "client",
|
|
377
|
+
...opts,
|
|
378
|
+
});
|
|
379
|
+
Object.setPrototypeOf(this, ExecutionAlreadyExists.prototype);
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
export class InvalidExecutionInput extends __BaseException {
|
|
383
|
+
name = "InvalidExecutionInput";
|
|
384
|
+
$fault = "client";
|
|
385
|
+
constructor(opts) {
|
|
386
|
+
super({
|
|
387
|
+
name: "InvalidExecutionInput",
|
|
388
|
+
$fault: "client",
|
|
389
|
+
...opts,
|
|
390
|
+
});
|
|
391
|
+
Object.setPrototypeOf(this, InvalidExecutionInput.prototype);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
export class MissingRequiredParameter extends __BaseException {
|
|
395
|
+
name = "MissingRequiredParameter";
|
|
396
|
+
$fault = "client";
|
|
397
|
+
constructor(opts) {
|
|
398
|
+
super({
|
|
399
|
+
name: "MissingRequiredParameter",
|
|
400
|
+
$fault: "client",
|
|
401
|
+
...opts,
|
|
402
|
+
});
|
|
403
|
+
Object.setPrototypeOf(this, MissingRequiredParameter.prototype);
|
|
404
|
+
}
|
|
405
|
+
}
|