@aws-sdk/client-sfn 3.301.0 → 3.303.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/models/models_0.js +98 -106
- package/dist-es/models/models_0.js +98 -106
- package/dist-types/models/models_0.d.ts +139 -99
- package/dist-types/ts3.4/models/models_0.d.ts +112 -98
- package/package.json +34 -34
|
@@ -70,18 +70,16 @@ class TooManyTags extends SFNServiceException_1.SFNServiceException {
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
exports.TooManyTags = TooManyTags;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
StateMachineType["STANDARD"] = "STANDARD";
|
|
84
|
-
})(StateMachineType = exports.StateMachineType || (exports.StateMachineType = {}));
|
|
73
|
+
exports.LogLevel = {
|
|
74
|
+
ALL: "ALL",
|
|
75
|
+
ERROR: "ERROR",
|
|
76
|
+
FATAL: "FATAL",
|
|
77
|
+
OFF: "OFF",
|
|
78
|
+
};
|
|
79
|
+
exports.StateMachineType = {
|
|
80
|
+
EXPRESS: "EXPRESS",
|
|
81
|
+
STANDARD: "STANDARD",
|
|
82
|
+
};
|
|
85
83
|
class InvalidArn extends SFNServiceException_1.SFNServiceException {
|
|
86
84
|
constructor(opts) {
|
|
87
85
|
super({
|
|
@@ -186,12 +184,11 @@ class StateMachineTypeNotSupported extends SFNServiceException_1.SFNServiceExcep
|
|
|
186
184
|
}
|
|
187
185
|
}
|
|
188
186
|
exports.StateMachineTypeNotSupported = StateMachineTypeNotSupported;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
})(ValidationExceptionReason = exports.ValidationExceptionReason || (exports.ValidationExceptionReason = {}));
|
|
187
|
+
exports.ValidationExceptionReason = {
|
|
188
|
+
API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS",
|
|
189
|
+
CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN",
|
|
190
|
+
MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER",
|
|
191
|
+
};
|
|
195
192
|
class ValidationException extends SFNServiceException_1.SFNServiceException {
|
|
196
193
|
constructor(opts) {
|
|
197
194
|
super({
|
|
@@ -206,14 +203,13 @@ class ValidationException extends SFNServiceException_1.SFNServiceException {
|
|
|
206
203
|
}
|
|
207
204
|
}
|
|
208
205
|
exports.ValidationException = ValidationException;
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
})(ExecutionStatus = exports.ExecutionStatus || (exports.ExecutionStatus = {}));
|
|
206
|
+
exports.ExecutionStatus = {
|
|
207
|
+
ABORTED: "ABORTED",
|
|
208
|
+
FAILED: "FAILED",
|
|
209
|
+
RUNNING: "RUNNING",
|
|
210
|
+
SUCCEEDED: "SUCCEEDED",
|
|
211
|
+
TIMED_OUT: "TIMED_OUT",
|
|
212
|
+
};
|
|
217
213
|
class ExecutionDoesNotExist extends SFNServiceException_1.SFNServiceException {
|
|
218
214
|
constructor(opts) {
|
|
219
215
|
super({
|
|
@@ -227,13 +223,12 @@ class ExecutionDoesNotExist extends SFNServiceException_1.SFNServiceException {
|
|
|
227
223
|
}
|
|
228
224
|
}
|
|
229
225
|
exports.ExecutionDoesNotExist = ExecutionDoesNotExist;
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
})(MapRunStatus = exports.MapRunStatus || (exports.MapRunStatus = {}));
|
|
226
|
+
exports.MapRunStatus = {
|
|
227
|
+
ABORTED: "ABORTED",
|
|
228
|
+
FAILED: "FAILED",
|
|
229
|
+
RUNNING: "RUNNING",
|
|
230
|
+
SUCCEEDED: "SUCCEEDED",
|
|
231
|
+
};
|
|
237
232
|
class ResourceNotFound extends SFNServiceException_1.SFNServiceException {
|
|
238
233
|
constructor(opts) {
|
|
239
234
|
super({
|
|
@@ -248,11 +243,10 @@ class ResourceNotFound extends SFNServiceException_1.SFNServiceException {
|
|
|
248
243
|
}
|
|
249
244
|
}
|
|
250
245
|
exports.ResourceNotFound = ResourceNotFound;
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
})(StateMachineStatus = exports.StateMachineStatus || (exports.StateMachineStatus = {}));
|
|
246
|
+
exports.StateMachineStatus = {
|
|
247
|
+
ACTIVE: "ACTIVE",
|
|
248
|
+
DELETING: "DELETING",
|
|
249
|
+
};
|
|
256
250
|
class StateMachineDoesNotExist extends SFNServiceException_1.SFNServiceException {
|
|
257
251
|
constructor(opts) {
|
|
258
252
|
super({
|
|
@@ -266,68 +260,67 @@ class StateMachineDoesNotExist extends SFNServiceException_1.SFNServiceException
|
|
|
266
260
|
}
|
|
267
261
|
}
|
|
268
262
|
exports.StateMachineDoesNotExist = StateMachineDoesNotExist;
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
})(HistoryEventType = exports.HistoryEventType || (exports.HistoryEventType = {}));
|
|
263
|
+
exports.HistoryEventType = {
|
|
264
|
+
ActivityFailed: "ActivityFailed",
|
|
265
|
+
ActivityScheduleFailed: "ActivityScheduleFailed",
|
|
266
|
+
ActivityScheduled: "ActivityScheduled",
|
|
267
|
+
ActivityStarted: "ActivityStarted",
|
|
268
|
+
ActivitySucceeded: "ActivitySucceeded",
|
|
269
|
+
ActivityTimedOut: "ActivityTimedOut",
|
|
270
|
+
ChoiceStateEntered: "ChoiceStateEntered",
|
|
271
|
+
ChoiceStateExited: "ChoiceStateExited",
|
|
272
|
+
ExecutionAborted: "ExecutionAborted",
|
|
273
|
+
ExecutionFailed: "ExecutionFailed",
|
|
274
|
+
ExecutionStarted: "ExecutionStarted",
|
|
275
|
+
ExecutionSucceeded: "ExecutionSucceeded",
|
|
276
|
+
ExecutionTimedOut: "ExecutionTimedOut",
|
|
277
|
+
FailStateEntered: "FailStateEntered",
|
|
278
|
+
LambdaFunctionFailed: "LambdaFunctionFailed",
|
|
279
|
+
LambdaFunctionScheduleFailed: "LambdaFunctionScheduleFailed",
|
|
280
|
+
LambdaFunctionScheduled: "LambdaFunctionScheduled",
|
|
281
|
+
LambdaFunctionStartFailed: "LambdaFunctionStartFailed",
|
|
282
|
+
LambdaFunctionStarted: "LambdaFunctionStarted",
|
|
283
|
+
LambdaFunctionSucceeded: "LambdaFunctionSucceeded",
|
|
284
|
+
LambdaFunctionTimedOut: "LambdaFunctionTimedOut",
|
|
285
|
+
MapIterationAborted: "MapIterationAborted",
|
|
286
|
+
MapIterationFailed: "MapIterationFailed",
|
|
287
|
+
MapIterationStarted: "MapIterationStarted",
|
|
288
|
+
MapIterationSucceeded: "MapIterationSucceeded",
|
|
289
|
+
MapRunAborted: "MapRunAborted",
|
|
290
|
+
MapRunFailed: "MapRunFailed",
|
|
291
|
+
MapRunStarted: "MapRunStarted",
|
|
292
|
+
MapRunSucceeded: "MapRunSucceeded",
|
|
293
|
+
MapStateAborted: "MapStateAborted",
|
|
294
|
+
MapStateEntered: "MapStateEntered",
|
|
295
|
+
MapStateExited: "MapStateExited",
|
|
296
|
+
MapStateFailed: "MapStateFailed",
|
|
297
|
+
MapStateStarted: "MapStateStarted",
|
|
298
|
+
MapStateSucceeded: "MapStateSucceeded",
|
|
299
|
+
ParallelStateAborted: "ParallelStateAborted",
|
|
300
|
+
ParallelStateEntered: "ParallelStateEntered",
|
|
301
|
+
ParallelStateExited: "ParallelStateExited",
|
|
302
|
+
ParallelStateFailed: "ParallelStateFailed",
|
|
303
|
+
ParallelStateStarted: "ParallelStateStarted",
|
|
304
|
+
ParallelStateSucceeded: "ParallelStateSucceeded",
|
|
305
|
+
PassStateEntered: "PassStateEntered",
|
|
306
|
+
PassStateExited: "PassStateExited",
|
|
307
|
+
SucceedStateEntered: "SucceedStateEntered",
|
|
308
|
+
SucceedStateExited: "SucceedStateExited",
|
|
309
|
+
TaskFailed: "TaskFailed",
|
|
310
|
+
TaskScheduled: "TaskScheduled",
|
|
311
|
+
TaskStartFailed: "TaskStartFailed",
|
|
312
|
+
TaskStarted: "TaskStarted",
|
|
313
|
+
TaskStateAborted: "TaskStateAborted",
|
|
314
|
+
TaskStateEntered: "TaskStateEntered",
|
|
315
|
+
TaskStateExited: "TaskStateExited",
|
|
316
|
+
TaskSubmitFailed: "TaskSubmitFailed",
|
|
317
|
+
TaskSubmitted: "TaskSubmitted",
|
|
318
|
+
TaskSucceeded: "TaskSucceeded",
|
|
319
|
+
TaskTimedOut: "TaskTimedOut",
|
|
320
|
+
WaitStateAborted: "WaitStateAborted",
|
|
321
|
+
WaitStateEntered: "WaitStateEntered",
|
|
322
|
+
WaitStateExited: "WaitStateExited",
|
|
323
|
+
};
|
|
331
324
|
class InvalidToken extends SFNServiceException_1.SFNServiceException {
|
|
332
325
|
constructor(opts) {
|
|
333
326
|
super({
|
|
@@ -419,12 +412,11 @@ class InvalidExecutionInput extends SFNServiceException_1.SFNServiceException {
|
|
|
419
412
|
}
|
|
420
413
|
}
|
|
421
414
|
exports.InvalidExecutionInput = InvalidExecutionInput;
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
})(SyncExecutionStatus = exports.SyncExecutionStatus || (exports.SyncExecutionStatus = {}));
|
|
415
|
+
exports.SyncExecutionStatus = {
|
|
416
|
+
FAILED: "FAILED",
|
|
417
|
+
SUCCEEDED: "SUCCEEDED",
|
|
418
|
+
TIMED_OUT: "TIMED_OUT",
|
|
419
|
+
};
|
|
428
420
|
class MissingRequiredParameter extends SFNServiceException_1.SFNServiceException {
|
|
429
421
|
constructor(opts) {
|
|
430
422
|
super({
|
|
@@ -61,18 +61,16 @@ export class TooManyTags extends __BaseException {
|
|
|
61
61
|
this.resourceName = opts.resourceName;
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
|
-
export
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
StateMachineType["STANDARD"] = "STANDARD";
|
|
75
|
-
})(StateMachineType || (StateMachineType = {}));
|
|
64
|
+
export const LogLevel = {
|
|
65
|
+
ALL: "ALL",
|
|
66
|
+
ERROR: "ERROR",
|
|
67
|
+
FATAL: "FATAL",
|
|
68
|
+
OFF: "OFF",
|
|
69
|
+
};
|
|
70
|
+
export const StateMachineType = {
|
|
71
|
+
EXPRESS: "EXPRESS",
|
|
72
|
+
STANDARD: "STANDARD",
|
|
73
|
+
};
|
|
76
74
|
export class InvalidArn extends __BaseException {
|
|
77
75
|
constructor(opts) {
|
|
78
76
|
super({
|
|
@@ -169,12 +167,11 @@ export class StateMachineTypeNotSupported extends __BaseException {
|
|
|
169
167
|
Object.setPrototypeOf(this, StateMachineTypeNotSupported.prototype);
|
|
170
168
|
}
|
|
171
169
|
}
|
|
172
|
-
export
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
170
|
+
export const ValidationExceptionReason = {
|
|
171
|
+
API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS",
|
|
172
|
+
CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN",
|
|
173
|
+
MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER",
|
|
174
|
+
};
|
|
178
175
|
export class ValidationException extends __BaseException {
|
|
179
176
|
constructor(opts) {
|
|
180
177
|
super({
|
|
@@ -188,14 +185,13 @@ export class ValidationException extends __BaseException {
|
|
|
188
185
|
this.reason = opts.reason;
|
|
189
186
|
}
|
|
190
187
|
}
|
|
191
|
-
export
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
})(ExecutionStatus || (ExecutionStatus = {}));
|
|
188
|
+
export const ExecutionStatus = {
|
|
189
|
+
ABORTED: "ABORTED",
|
|
190
|
+
FAILED: "FAILED",
|
|
191
|
+
RUNNING: "RUNNING",
|
|
192
|
+
SUCCEEDED: "SUCCEEDED",
|
|
193
|
+
TIMED_OUT: "TIMED_OUT",
|
|
194
|
+
};
|
|
199
195
|
export class ExecutionDoesNotExist extends __BaseException {
|
|
200
196
|
constructor(opts) {
|
|
201
197
|
super({
|
|
@@ -208,13 +204,12 @@ export class ExecutionDoesNotExist extends __BaseException {
|
|
|
208
204
|
Object.setPrototypeOf(this, ExecutionDoesNotExist.prototype);
|
|
209
205
|
}
|
|
210
206
|
}
|
|
211
|
-
export
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
})(MapRunStatus || (MapRunStatus = {}));
|
|
207
|
+
export const MapRunStatus = {
|
|
208
|
+
ABORTED: "ABORTED",
|
|
209
|
+
FAILED: "FAILED",
|
|
210
|
+
RUNNING: "RUNNING",
|
|
211
|
+
SUCCEEDED: "SUCCEEDED",
|
|
212
|
+
};
|
|
218
213
|
export class ResourceNotFound extends __BaseException {
|
|
219
214
|
constructor(opts) {
|
|
220
215
|
super({
|
|
@@ -228,11 +223,10 @@ export class ResourceNotFound extends __BaseException {
|
|
|
228
223
|
this.resourceName = opts.resourceName;
|
|
229
224
|
}
|
|
230
225
|
}
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
})(StateMachineStatus || (StateMachineStatus = {}));
|
|
226
|
+
export const StateMachineStatus = {
|
|
227
|
+
ACTIVE: "ACTIVE",
|
|
228
|
+
DELETING: "DELETING",
|
|
229
|
+
};
|
|
236
230
|
export class StateMachineDoesNotExist extends __BaseException {
|
|
237
231
|
constructor(opts) {
|
|
238
232
|
super({
|
|
@@ -245,68 +239,67 @@ export class StateMachineDoesNotExist extends __BaseException {
|
|
|
245
239
|
Object.setPrototypeOf(this, StateMachineDoesNotExist.prototype);
|
|
246
240
|
}
|
|
247
241
|
}
|
|
248
|
-
export
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
})(HistoryEventType || (HistoryEventType = {}));
|
|
242
|
+
export const HistoryEventType = {
|
|
243
|
+
ActivityFailed: "ActivityFailed",
|
|
244
|
+
ActivityScheduleFailed: "ActivityScheduleFailed",
|
|
245
|
+
ActivityScheduled: "ActivityScheduled",
|
|
246
|
+
ActivityStarted: "ActivityStarted",
|
|
247
|
+
ActivitySucceeded: "ActivitySucceeded",
|
|
248
|
+
ActivityTimedOut: "ActivityTimedOut",
|
|
249
|
+
ChoiceStateEntered: "ChoiceStateEntered",
|
|
250
|
+
ChoiceStateExited: "ChoiceStateExited",
|
|
251
|
+
ExecutionAborted: "ExecutionAborted",
|
|
252
|
+
ExecutionFailed: "ExecutionFailed",
|
|
253
|
+
ExecutionStarted: "ExecutionStarted",
|
|
254
|
+
ExecutionSucceeded: "ExecutionSucceeded",
|
|
255
|
+
ExecutionTimedOut: "ExecutionTimedOut",
|
|
256
|
+
FailStateEntered: "FailStateEntered",
|
|
257
|
+
LambdaFunctionFailed: "LambdaFunctionFailed",
|
|
258
|
+
LambdaFunctionScheduleFailed: "LambdaFunctionScheduleFailed",
|
|
259
|
+
LambdaFunctionScheduled: "LambdaFunctionScheduled",
|
|
260
|
+
LambdaFunctionStartFailed: "LambdaFunctionStartFailed",
|
|
261
|
+
LambdaFunctionStarted: "LambdaFunctionStarted",
|
|
262
|
+
LambdaFunctionSucceeded: "LambdaFunctionSucceeded",
|
|
263
|
+
LambdaFunctionTimedOut: "LambdaFunctionTimedOut",
|
|
264
|
+
MapIterationAborted: "MapIterationAborted",
|
|
265
|
+
MapIterationFailed: "MapIterationFailed",
|
|
266
|
+
MapIterationStarted: "MapIterationStarted",
|
|
267
|
+
MapIterationSucceeded: "MapIterationSucceeded",
|
|
268
|
+
MapRunAborted: "MapRunAborted",
|
|
269
|
+
MapRunFailed: "MapRunFailed",
|
|
270
|
+
MapRunStarted: "MapRunStarted",
|
|
271
|
+
MapRunSucceeded: "MapRunSucceeded",
|
|
272
|
+
MapStateAborted: "MapStateAborted",
|
|
273
|
+
MapStateEntered: "MapStateEntered",
|
|
274
|
+
MapStateExited: "MapStateExited",
|
|
275
|
+
MapStateFailed: "MapStateFailed",
|
|
276
|
+
MapStateStarted: "MapStateStarted",
|
|
277
|
+
MapStateSucceeded: "MapStateSucceeded",
|
|
278
|
+
ParallelStateAborted: "ParallelStateAborted",
|
|
279
|
+
ParallelStateEntered: "ParallelStateEntered",
|
|
280
|
+
ParallelStateExited: "ParallelStateExited",
|
|
281
|
+
ParallelStateFailed: "ParallelStateFailed",
|
|
282
|
+
ParallelStateStarted: "ParallelStateStarted",
|
|
283
|
+
ParallelStateSucceeded: "ParallelStateSucceeded",
|
|
284
|
+
PassStateEntered: "PassStateEntered",
|
|
285
|
+
PassStateExited: "PassStateExited",
|
|
286
|
+
SucceedStateEntered: "SucceedStateEntered",
|
|
287
|
+
SucceedStateExited: "SucceedStateExited",
|
|
288
|
+
TaskFailed: "TaskFailed",
|
|
289
|
+
TaskScheduled: "TaskScheduled",
|
|
290
|
+
TaskStartFailed: "TaskStartFailed",
|
|
291
|
+
TaskStarted: "TaskStarted",
|
|
292
|
+
TaskStateAborted: "TaskStateAborted",
|
|
293
|
+
TaskStateEntered: "TaskStateEntered",
|
|
294
|
+
TaskStateExited: "TaskStateExited",
|
|
295
|
+
TaskSubmitFailed: "TaskSubmitFailed",
|
|
296
|
+
TaskSubmitted: "TaskSubmitted",
|
|
297
|
+
TaskSucceeded: "TaskSucceeded",
|
|
298
|
+
TaskTimedOut: "TaskTimedOut",
|
|
299
|
+
WaitStateAborted: "WaitStateAborted",
|
|
300
|
+
WaitStateEntered: "WaitStateEntered",
|
|
301
|
+
WaitStateExited: "WaitStateExited",
|
|
302
|
+
};
|
|
310
303
|
export class InvalidToken extends __BaseException {
|
|
311
304
|
constructor(opts) {
|
|
312
305
|
super({
|
|
@@ -391,12 +384,11 @@ export class InvalidExecutionInput extends __BaseException {
|
|
|
391
384
|
Object.setPrototypeOf(this, InvalidExecutionInput.prototype);
|
|
392
385
|
}
|
|
393
386
|
}
|
|
394
|
-
export
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
})(SyncExecutionStatus || (SyncExecutionStatus = {}));
|
|
387
|
+
export const SyncExecutionStatus = {
|
|
388
|
+
FAILED: "FAILED",
|
|
389
|
+
SUCCEEDED: "SUCCEEDED",
|
|
390
|
+
TIMED_OUT: "TIMED_OUT",
|
|
391
|
+
};
|
|
400
392
|
export class MissingRequiredParameter extends __BaseException {
|
|
401
393
|
constructor(opts) {
|
|
402
394
|
super({
|
|
@@ -309,13 +309,18 @@ export interface LogDestination {
|
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* @public
|
|
312
|
+
* @enum
|
|
312
313
|
*/
|
|
313
|
-
export declare
|
|
314
|
-
ALL
|
|
315
|
-
ERROR
|
|
316
|
-
FATAL
|
|
317
|
-
OFF
|
|
318
|
-
}
|
|
314
|
+
export declare const LogLevel: {
|
|
315
|
+
readonly ALL: "ALL";
|
|
316
|
+
readonly ERROR: "ERROR";
|
|
317
|
+
readonly FATAL: "FATAL";
|
|
318
|
+
readonly OFF: "OFF";
|
|
319
|
+
};
|
|
320
|
+
/**
|
|
321
|
+
* @public
|
|
322
|
+
*/
|
|
323
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
319
324
|
/**
|
|
320
325
|
* @public
|
|
321
326
|
* <p>The <code>LoggingConfiguration</code> data type is used to set CloudWatch Logs
|
|
@@ -351,11 +356,16 @@ export interface TracingConfiguration {
|
|
|
351
356
|
}
|
|
352
357
|
/**
|
|
353
358
|
* @public
|
|
359
|
+
* @enum
|
|
354
360
|
*/
|
|
355
|
-
export declare
|
|
356
|
-
EXPRESS
|
|
357
|
-
STANDARD
|
|
358
|
-
}
|
|
361
|
+
export declare const StateMachineType: {
|
|
362
|
+
readonly EXPRESS: "EXPRESS";
|
|
363
|
+
readonly STANDARD: "STANDARD";
|
|
364
|
+
};
|
|
365
|
+
/**
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
export type StateMachineType = (typeof StateMachineType)[keyof typeof StateMachineType];
|
|
359
369
|
/**
|
|
360
370
|
* @public
|
|
361
371
|
*/
|
|
@@ -565,12 +575,17 @@ export interface DeleteStateMachineOutput {
|
|
|
565
575
|
}
|
|
566
576
|
/**
|
|
567
577
|
* @public
|
|
578
|
+
* @enum
|
|
568
579
|
*/
|
|
569
|
-
export declare
|
|
570
|
-
API_DOES_NOT_SUPPORT_LABELED_ARNS
|
|
571
|
-
CANNOT_UPDATE_COMPLETED_MAP_RUN
|
|
572
|
-
MISSING_REQUIRED_PARAMETER
|
|
573
|
-
}
|
|
580
|
+
export declare const ValidationExceptionReason: {
|
|
581
|
+
readonly API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS";
|
|
582
|
+
readonly CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN";
|
|
583
|
+
readonly MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER";
|
|
584
|
+
};
|
|
585
|
+
/**
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
574
589
|
/**
|
|
575
590
|
* @public
|
|
576
591
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
@@ -657,14 +672,19 @@ export interface CloudWatchEventsExecutionDataDetails {
|
|
|
657
672
|
}
|
|
658
673
|
/**
|
|
659
674
|
* @public
|
|
675
|
+
* @enum
|
|
660
676
|
*/
|
|
661
|
-
export declare
|
|
662
|
-
ABORTED
|
|
663
|
-
FAILED
|
|
664
|
-
RUNNING
|
|
665
|
-
SUCCEEDED
|
|
666
|
-
TIMED_OUT
|
|
667
|
-
}
|
|
677
|
+
export declare const ExecutionStatus: {
|
|
678
|
+
readonly ABORTED: "ABORTED";
|
|
679
|
+
readonly FAILED: "FAILED";
|
|
680
|
+
readonly RUNNING: "RUNNING";
|
|
681
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
682
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
683
|
+
};
|
|
684
|
+
/**
|
|
685
|
+
* @public
|
|
686
|
+
*/
|
|
687
|
+
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
668
688
|
/**
|
|
669
689
|
* @public
|
|
670
690
|
*/
|
|
@@ -851,13 +871,18 @@ export interface MapRunItemCounts {
|
|
|
851
871
|
}
|
|
852
872
|
/**
|
|
853
873
|
* @public
|
|
874
|
+
* @enum
|
|
854
875
|
*/
|
|
855
|
-
export declare
|
|
856
|
-
ABORTED
|
|
857
|
-
FAILED
|
|
858
|
-
RUNNING
|
|
859
|
-
SUCCEEDED
|
|
860
|
-
}
|
|
876
|
+
export declare const MapRunStatus: {
|
|
877
|
+
readonly ABORTED: "ABORTED";
|
|
878
|
+
readonly FAILED: "FAILED";
|
|
879
|
+
readonly RUNNING: "RUNNING";
|
|
880
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
881
|
+
};
|
|
882
|
+
/**
|
|
883
|
+
* @public
|
|
884
|
+
*/
|
|
885
|
+
export type MapRunStatus = (typeof MapRunStatus)[keyof typeof MapRunStatus];
|
|
861
886
|
/**
|
|
862
887
|
* @public
|
|
863
888
|
*/
|
|
@@ -928,11 +953,16 @@ export interface DescribeStateMachineInput {
|
|
|
928
953
|
}
|
|
929
954
|
/**
|
|
930
955
|
* @public
|
|
956
|
+
* @enum
|
|
931
957
|
*/
|
|
932
|
-
export declare
|
|
933
|
-
ACTIVE
|
|
934
|
-
DELETING
|
|
935
|
-
}
|
|
958
|
+
export declare const StateMachineStatus: {
|
|
959
|
+
readonly ACTIVE: "ACTIVE";
|
|
960
|
+
readonly DELETING: "DELETING";
|
|
961
|
+
};
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
export type StateMachineStatus = (typeof StateMachineStatus)[keyof typeof StateMachineStatus];
|
|
936
966
|
/**
|
|
937
967
|
* @public
|
|
938
968
|
*/
|
|
@@ -1599,68 +1629,73 @@ export interface TaskTimedOutEventDetails {
|
|
|
1599
1629
|
}
|
|
1600
1630
|
/**
|
|
1601
1631
|
* @public
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1632
|
+
* @enum
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const HistoryEventType: {
|
|
1635
|
+
readonly ActivityFailed: "ActivityFailed";
|
|
1636
|
+
readonly ActivityScheduleFailed: "ActivityScheduleFailed";
|
|
1637
|
+
readonly ActivityScheduled: "ActivityScheduled";
|
|
1638
|
+
readonly ActivityStarted: "ActivityStarted";
|
|
1639
|
+
readonly ActivitySucceeded: "ActivitySucceeded";
|
|
1640
|
+
readonly ActivityTimedOut: "ActivityTimedOut";
|
|
1641
|
+
readonly ChoiceStateEntered: "ChoiceStateEntered";
|
|
1642
|
+
readonly ChoiceStateExited: "ChoiceStateExited";
|
|
1643
|
+
readonly ExecutionAborted: "ExecutionAborted";
|
|
1644
|
+
readonly ExecutionFailed: "ExecutionFailed";
|
|
1645
|
+
readonly ExecutionStarted: "ExecutionStarted";
|
|
1646
|
+
readonly ExecutionSucceeded: "ExecutionSucceeded";
|
|
1647
|
+
readonly ExecutionTimedOut: "ExecutionTimedOut";
|
|
1648
|
+
readonly FailStateEntered: "FailStateEntered";
|
|
1649
|
+
readonly LambdaFunctionFailed: "LambdaFunctionFailed";
|
|
1650
|
+
readonly LambdaFunctionScheduleFailed: "LambdaFunctionScheduleFailed";
|
|
1651
|
+
readonly LambdaFunctionScheduled: "LambdaFunctionScheduled";
|
|
1652
|
+
readonly LambdaFunctionStartFailed: "LambdaFunctionStartFailed";
|
|
1653
|
+
readonly LambdaFunctionStarted: "LambdaFunctionStarted";
|
|
1654
|
+
readonly LambdaFunctionSucceeded: "LambdaFunctionSucceeded";
|
|
1655
|
+
readonly LambdaFunctionTimedOut: "LambdaFunctionTimedOut";
|
|
1656
|
+
readonly MapIterationAborted: "MapIterationAborted";
|
|
1657
|
+
readonly MapIterationFailed: "MapIterationFailed";
|
|
1658
|
+
readonly MapIterationStarted: "MapIterationStarted";
|
|
1659
|
+
readonly MapIterationSucceeded: "MapIterationSucceeded";
|
|
1660
|
+
readonly MapRunAborted: "MapRunAborted";
|
|
1661
|
+
readonly MapRunFailed: "MapRunFailed";
|
|
1662
|
+
readonly MapRunStarted: "MapRunStarted";
|
|
1663
|
+
readonly MapRunSucceeded: "MapRunSucceeded";
|
|
1664
|
+
readonly MapStateAborted: "MapStateAborted";
|
|
1665
|
+
readonly MapStateEntered: "MapStateEntered";
|
|
1666
|
+
readonly MapStateExited: "MapStateExited";
|
|
1667
|
+
readonly MapStateFailed: "MapStateFailed";
|
|
1668
|
+
readonly MapStateStarted: "MapStateStarted";
|
|
1669
|
+
readonly MapStateSucceeded: "MapStateSucceeded";
|
|
1670
|
+
readonly ParallelStateAborted: "ParallelStateAborted";
|
|
1671
|
+
readonly ParallelStateEntered: "ParallelStateEntered";
|
|
1672
|
+
readonly ParallelStateExited: "ParallelStateExited";
|
|
1673
|
+
readonly ParallelStateFailed: "ParallelStateFailed";
|
|
1674
|
+
readonly ParallelStateStarted: "ParallelStateStarted";
|
|
1675
|
+
readonly ParallelStateSucceeded: "ParallelStateSucceeded";
|
|
1676
|
+
readonly PassStateEntered: "PassStateEntered";
|
|
1677
|
+
readonly PassStateExited: "PassStateExited";
|
|
1678
|
+
readonly SucceedStateEntered: "SucceedStateEntered";
|
|
1679
|
+
readonly SucceedStateExited: "SucceedStateExited";
|
|
1680
|
+
readonly TaskFailed: "TaskFailed";
|
|
1681
|
+
readonly TaskScheduled: "TaskScheduled";
|
|
1682
|
+
readonly TaskStartFailed: "TaskStartFailed";
|
|
1683
|
+
readonly TaskStarted: "TaskStarted";
|
|
1684
|
+
readonly TaskStateAborted: "TaskStateAborted";
|
|
1685
|
+
readonly TaskStateEntered: "TaskStateEntered";
|
|
1686
|
+
readonly TaskStateExited: "TaskStateExited";
|
|
1687
|
+
readonly TaskSubmitFailed: "TaskSubmitFailed";
|
|
1688
|
+
readonly TaskSubmitted: "TaskSubmitted";
|
|
1689
|
+
readonly TaskSucceeded: "TaskSucceeded";
|
|
1690
|
+
readonly TaskTimedOut: "TaskTimedOut";
|
|
1691
|
+
readonly WaitStateAborted: "WaitStateAborted";
|
|
1692
|
+
readonly WaitStateEntered: "WaitStateEntered";
|
|
1693
|
+
readonly WaitStateExited: "WaitStateExited";
|
|
1694
|
+
};
|
|
1695
|
+
/**
|
|
1696
|
+
* @public
|
|
1697
|
+
*/
|
|
1698
|
+
export type HistoryEventType = (typeof HistoryEventType)[keyof typeof HistoryEventType];
|
|
1664
1699
|
/**
|
|
1665
1700
|
* @public
|
|
1666
1701
|
* <p>Contains details about the events of an execution.</p>
|
|
@@ -2383,12 +2418,17 @@ export interface BillingDetails {
|
|
|
2383
2418
|
}
|
|
2384
2419
|
/**
|
|
2385
2420
|
* @public
|
|
2421
|
+
* @enum
|
|
2386
2422
|
*/
|
|
2387
|
-
export declare
|
|
2388
|
-
FAILED
|
|
2389
|
-
SUCCEEDED
|
|
2390
|
-
TIMED_OUT
|
|
2391
|
-
}
|
|
2423
|
+
export declare const SyncExecutionStatus: {
|
|
2424
|
+
readonly FAILED: "FAILED";
|
|
2425
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2426
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
2427
|
+
};
|
|
2428
|
+
/**
|
|
2429
|
+
* @public
|
|
2430
|
+
*/
|
|
2431
|
+
export type SyncExecutionStatus = (typeof SyncExecutionStatus)[keyof typeof SyncExecutionStatus];
|
|
2392
2432
|
/**
|
|
2393
2433
|
* @public
|
|
2394
2434
|
*/
|
|
@@ -84,12 +84,13 @@ export interface CloudWatchLogsLogGroup {
|
|
|
84
84
|
export interface LogDestination {
|
|
85
85
|
cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
|
|
86
86
|
}
|
|
87
|
-
export declare
|
|
88
|
-
ALL
|
|
89
|
-
ERROR
|
|
90
|
-
FATAL
|
|
91
|
-
OFF
|
|
92
|
-
}
|
|
87
|
+
export declare const LogLevel: {
|
|
88
|
+
readonly ALL: "ALL";
|
|
89
|
+
readonly ERROR: "ERROR";
|
|
90
|
+
readonly FATAL: "FATAL";
|
|
91
|
+
readonly OFF: "OFF";
|
|
92
|
+
};
|
|
93
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
93
94
|
export interface LoggingConfiguration {
|
|
94
95
|
level?: LogLevel | string;
|
|
95
96
|
includeExecutionData?: boolean;
|
|
@@ -98,10 +99,12 @@ export interface LoggingConfiguration {
|
|
|
98
99
|
export interface TracingConfiguration {
|
|
99
100
|
enabled?: boolean;
|
|
100
101
|
}
|
|
101
|
-
export declare
|
|
102
|
-
EXPRESS
|
|
103
|
-
STANDARD
|
|
104
|
-
}
|
|
102
|
+
export declare const StateMachineType: {
|
|
103
|
+
readonly EXPRESS: "EXPRESS";
|
|
104
|
+
readonly STANDARD: "STANDARD";
|
|
105
|
+
};
|
|
106
|
+
export type StateMachineType =
|
|
107
|
+
(typeof StateMachineType)[keyof typeof StateMachineType];
|
|
105
108
|
export interface CreateStateMachineInput {
|
|
106
109
|
name: string | undefined;
|
|
107
110
|
definition: string | undefined;
|
|
@@ -175,11 +178,13 @@ export interface DeleteStateMachineInput {
|
|
|
175
178
|
stateMachineArn: string | undefined;
|
|
176
179
|
}
|
|
177
180
|
export interface DeleteStateMachineOutput {}
|
|
178
|
-
export declare
|
|
179
|
-
API_DOES_NOT_SUPPORT_LABELED_ARNS
|
|
180
|
-
CANNOT_UPDATE_COMPLETED_MAP_RUN
|
|
181
|
-
MISSING_REQUIRED_PARAMETER
|
|
182
|
-
}
|
|
181
|
+
export declare const ValidationExceptionReason: {
|
|
182
|
+
readonly API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS";
|
|
183
|
+
readonly CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN";
|
|
184
|
+
readonly MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER";
|
|
185
|
+
};
|
|
186
|
+
export type ValidationExceptionReason =
|
|
187
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
183
188
|
export declare class ValidationException extends __BaseException {
|
|
184
189
|
readonly name: "ValidationException";
|
|
185
190
|
readonly $fault: "client";
|
|
@@ -202,13 +207,15 @@ export interface DescribeExecutionInput {
|
|
|
202
207
|
export interface CloudWatchEventsExecutionDataDetails {
|
|
203
208
|
included?: boolean;
|
|
204
209
|
}
|
|
205
|
-
export declare
|
|
206
|
-
ABORTED
|
|
207
|
-
FAILED
|
|
208
|
-
RUNNING
|
|
209
|
-
SUCCEEDED
|
|
210
|
-
TIMED_OUT
|
|
211
|
-
}
|
|
210
|
+
export declare const ExecutionStatus: {
|
|
211
|
+
readonly ABORTED: "ABORTED";
|
|
212
|
+
readonly FAILED: "FAILED";
|
|
213
|
+
readonly RUNNING: "RUNNING";
|
|
214
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
215
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
216
|
+
};
|
|
217
|
+
export type ExecutionStatus =
|
|
218
|
+
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
212
219
|
export interface DescribeExecutionOutput {
|
|
213
220
|
executionArn: string | undefined;
|
|
214
221
|
stateMachineArn: string | undefined;
|
|
@@ -255,12 +262,13 @@ export interface MapRunItemCounts {
|
|
|
255
262
|
total: number | undefined;
|
|
256
263
|
resultsWritten: number | undefined;
|
|
257
264
|
}
|
|
258
|
-
export declare
|
|
259
|
-
ABORTED
|
|
260
|
-
FAILED
|
|
261
|
-
RUNNING
|
|
262
|
-
SUCCEEDED
|
|
263
|
-
}
|
|
265
|
+
export declare const MapRunStatus: {
|
|
266
|
+
readonly ABORTED: "ABORTED";
|
|
267
|
+
readonly FAILED: "FAILED";
|
|
268
|
+
readonly RUNNING: "RUNNING";
|
|
269
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
270
|
+
};
|
|
271
|
+
export type MapRunStatus = (typeof MapRunStatus)[keyof typeof MapRunStatus];
|
|
264
272
|
export interface DescribeMapRunOutput {
|
|
265
273
|
mapRunArn: string | undefined;
|
|
266
274
|
executionArn: string | undefined;
|
|
@@ -282,10 +290,12 @@ export declare class ResourceNotFound extends __BaseException {
|
|
|
282
290
|
export interface DescribeStateMachineInput {
|
|
283
291
|
stateMachineArn: string | undefined;
|
|
284
292
|
}
|
|
285
|
-
export declare
|
|
286
|
-
ACTIVE
|
|
287
|
-
DELETING
|
|
288
|
-
}
|
|
293
|
+
export declare const StateMachineStatus: {
|
|
294
|
+
readonly ACTIVE: "ACTIVE";
|
|
295
|
+
readonly DELETING: "DELETING";
|
|
296
|
+
};
|
|
297
|
+
export type StateMachineStatus =
|
|
298
|
+
(typeof StateMachineStatus)[keyof typeof StateMachineStatus];
|
|
289
299
|
export interface DescribeStateMachineOutput {
|
|
290
300
|
stateMachineArn: string | undefined;
|
|
291
301
|
name: string | undefined;
|
|
@@ -458,67 +468,69 @@ export interface TaskTimedOutEventDetails {
|
|
|
458
468
|
error?: string;
|
|
459
469
|
cause?: string;
|
|
460
470
|
}
|
|
461
|
-
export declare
|
|
462
|
-
ActivityFailed
|
|
463
|
-
ActivityScheduleFailed
|
|
464
|
-
ActivityScheduled
|
|
465
|
-
ActivityStarted
|
|
466
|
-
ActivitySucceeded
|
|
467
|
-
ActivityTimedOut
|
|
468
|
-
ChoiceStateEntered
|
|
469
|
-
ChoiceStateExited
|
|
470
|
-
ExecutionAborted
|
|
471
|
-
ExecutionFailed
|
|
472
|
-
ExecutionStarted
|
|
473
|
-
ExecutionSucceeded
|
|
474
|
-
ExecutionTimedOut
|
|
475
|
-
FailStateEntered
|
|
476
|
-
LambdaFunctionFailed
|
|
477
|
-
LambdaFunctionScheduleFailed
|
|
478
|
-
LambdaFunctionScheduled
|
|
479
|
-
LambdaFunctionStartFailed
|
|
480
|
-
LambdaFunctionStarted
|
|
481
|
-
LambdaFunctionSucceeded
|
|
482
|
-
LambdaFunctionTimedOut
|
|
483
|
-
MapIterationAborted
|
|
484
|
-
MapIterationFailed
|
|
485
|
-
MapIterationStarted
|
|
486
|
-
MapIterationSucceeded
|
|
487
|
-
MapRunAborted
|
|
488
|
-
MapRunFailed
|
|
489
|
-
MapRunStarted
|
|
490
|
-
MapRunSucceeded
|
|
491
|
-
MapStateAborted
|
|
492
|
-
MapStateEntered
|
|
493
|
-
MapStateExited
|
|
494
|
-
MapStateFailed
|
|
495
|
-
MapStateStarted
|
|
496
|
-
MapStateSucceeded
|
|
497
|
-
ParallelStateAborted
|
|
498
|
-
ParallelStateEntered
|
|
499
|
-
ParallelStateExited
|
|
500
|
-
ParallelStateFailed
|
|
501
|
-
ParallelStateStarted
|
|
502
|
-
ParallelStateSucceeded
|
|
503
|
-
PassStateEntered
|
|
504
|
-
PassStateExited
|
|
505
|
-
SucceedStateEntered
|
|
506
|
-
SucceedStateExited
|
|
507
|
-
TaskFailed
|
|
508
|
-
TaskScheduled
|
|
509
|
-
TaskStartFailed
|
|
510
|
-
TaskStarted
|
|
511
|
-
TaskStateAborted
|
|
512
|
-
TaskStateEntered
|
|
513
|
-
TaskStateExited
|
|
514
|
-
TaskSubmitFailed
|
|
515
|
-
TaskSubmitted
|
|
516
|
-
TaskSucceeded
|
|
517
|
-
TaskTimedOut
|
|
518
|
-
WaitStateAborted
|
|
519
|
-
WaitStateEntered
|
|
520
|
-
WaitStateExited
|
|
521
|
-
}
|
|
471
|
+
export declare const HistoryEventType: {
|
|
472
|
+
readonly ActivityFailed: "ActivityFailed";
|
|
473
|
+
readonly ActivityScheduleFailed: "ActivityScheduleFailed";
|
|
474
|
+
readonly ActivityScheduled: "ActivityScheduled";
|
|
475
|
+
readonly ActivityStarted: "ActivityStarted";
|
|
476
|
+
readonly ActivitySucceeded: "ActivitySucceeded";
|
|
477
|
+
readonly ActivityTimedOut: "ActivityTimedOut";
|
|
478
|
+
readonly ChoiceStateEntered: "ChoiceStateEntered";
|
|
479
|
+
readonly ChoiceStateExited: "ChoiceStateExited";
|
|
480
|
+
readonly ExecutionAborted: "ExecutionAborted";
|
|
481
|
+
readonly ExecutionFailed: "ExecutionFailed";
|
|
482
|
+
readonly ExecutionStarted: "ExecutionStarted";
|
|
483
|
+
readonly ExecutionSucceeded: "ExecutionSucceeded";
|
|
484
|
+
readonly ExecutionTimedOut: "ExecutionTimedOut";
|
|
485
|
+
readonly FailStateEntered: "FailStateEntered";
|
|
486
|
+
readonly LambdaFunctionFailed: "LambdaFunctionFailed";
|
|
487
|
+
readonly LambdaFunctionScheduleFailed: "LambdaFunctionScheduleFailed";
|
|
488
|
+
readonly LambdaFunctionScheduled: "LambdaFunctionScheduled";
|
|
489
|
+
readonly LambdaFunctionStartFailed: "LambdaFunctionStartFailed";
|
|
490
|
+
readonly LambdaFunctionStarted: "LambdaFunctionStarted";
|
|
491
|
+
readonly LambdaFunctionSucceeded: "LambdaFunctionSucceeded";
|
|
492
|
+
readonly LambdaFunctionTimedOut: "LambdaFunctionTimedOut";
|
|
493
|
+
readonly MapIterationAborted: "MapIterationAborted";
|
|
494
|
+
readonly MapIterationFailed: "MapIterationFailed";
|
|
495
|
+
readonly MapIterationStarted: "MapIterationStarted";
|
|
496
|
+
readonly MapIterationSucceeded: "MapIterationSucceeded";
|
|
497
|
+
readonly MapRunAborted: "MapRunAborted";
|
|
498
|
+
readonly MapRunFailed: "MapRunFailed";
|
|
499
|
+
readonly MapRunStarted: "MapRunStarted";
|
|
500
|
+
readonly MapRunSucceeded: "MapRunSucceeded";
|
|
501
|
+
readonly MapStateAborted: "MapStateAborted";
|
|
502
|
+
readonly MapStateEntered: "MapStateEntered";
|
|
503
|
+
readonly MapStateExited: "MapStateExited";
|
|
504
|
+
readonly MapStateFailed: "MapStateFailed";
|
|
505
|
+
readonly MapStateStarted: "MapStateStarted";
|
|
506
|
+
readonly MapStateSucceeded: "MapStateSucceeded";
|
|
507
|
+
readonly ParallelStateAborted: "ParallelStateAborted";
|
|
508
|
+
readonly ParallelStateEntered: "ParallelStateEntered";
|
|
509
|
+
readonly ParallelStateExited: "ParallelStateExited";
|
|
510
|
+
readonly ParallelStateFailed: "ParallelStateFailed";
|
|
511
|
+
readonly ParallelStateStarted: "ParallelStateStarted";
|
|
512
|
+
readonly ParallelStateSucceeded: "ParallelStateSucceeded";
|
|
513
|
+
readonly PassStateEntered: "PassStateEntered";
|
|
514
|
+
readonly PassStateExited: "PassStateExited";
|
|
515
|
+
readonly SucceedStateEntered: "SucceedStateEntered";
|
|
516
|
+
readonly SucceedStateExited: "SucceedStateExited";
|
|
517
|
+
readonly TaskFailed: "TaskFailed";
|
|
518
|
+
readonly TaskScheduled: "TaskScheduled";
|
|
519
|
+
readonly TaskStartFailed: "TaskStartFailed";
|
|
520
|
+
readonly TaskStarted: "TaskStarted";
|
|
521
|
+
readonly TaskStateAborted: "TaskStateAborted";
|
|
522
|
+
readonly TaskStateEntered: "TaskStateEntered";
|
|
523
|
+
readonly TaskStateExited: "TaskStateExited";
|
|
524
|
+
readonly TaskSubmitFailed: "TaskSubmitFailed";
|
|
525
|
+
readonly TaskSubmitted: "TaskSubmitted";
|
|
526
|
+
readonly TaskSucceeded: "TaskSucceeded";
|
|
527
|
+
readonly TaskTimedOut: "TaskTimedOut";
|
|
528
|
+
readonly WaitStateAborted: "WaitStateAborted";
|
|
529
|
+
readonly WaitStateEntered: "WaitStateEntered";
|
|
530
|
+
readonly WaitStateExited: "WaitStateExited";
|
|
531
|
+
};
|
|
532
|
+
export type HistoryEventType =
|
|
533
|
+
(typeof HistoryEventType)[keyof typeof HistoryEventType];
|
|
522
534
|
export interface HistoryEvent {
|
|
523
535
|
timestamp: Date | undefined;
|
|
524
536
|
type: HistoryEventType | string | undefined;
|
|
@@ -704,11 +716,13 @@ export interface BillingDetails {
|
|
|
704
716
|
billedMemoryUsedInMB?: number;
|
|
705
717
|
billedDurationInMilliseconds?: number;
|
|
706
718
|
}
|
|
707
|
-
export declare
|
|
708
|
-
FAILED
|
|
709
|
-
SUCCEEDED
|
|
710
|
-
TIMED_OUT
|
|
711
|
-
}
|
|
719
|
+
export declare const SyncExecutionStatus: {
|
|
720
|
+
readonly FAILED: "FAILED";
|
|
721
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
722
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
723
|
+
};
|
|
724
|
+
export type SyncExecutionStatus =
|
|
725
|
+
(typeof SyncExecutionStatus)[keyof typeof SyncExecutionStatus];
|
|
712
726
|
export interface StartSyncExecutionOutput {
|
|
713
727
|
executionArn: string | undefined;
|
|
714
728
|
stateMachineArn?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sfn",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|