@aws-sdk/client-sfn 3.170.0 → 3.178.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SFN.d.ts +0 -23
- package/dist-types/ts3.4/SFNClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/SFNServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -355
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,221 +1,160 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SFNServiceException as __BaseException } from "./SFNServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class ActivityDoesNotExist extends __BaseException {
|
|
5
4
|
readonly name: "ActivityDoesNotExist";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<ActivityDoesNotExist, __BaseException>
|
|
10
8
|
);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export interface ActivityFailedEventDetails {
|
|
14
11
|
error?: string;
|
|
15
|
-
|
|
16
12
|
cause?: string;
|
|
17
13
|
}
|
|
18
|
-
|
|
19
14
|
export declare class ActivityLimitExceeded extends __BaseException {
|
|
20
15
|
readonly name: "ActivityLimitExceeded";
|
|
21
16
|
readonly $fault: "client";
|
|
22
|
-
|
|
23
17
|
constructor(
|
|
24
18
|
opts: __ExceptionOptionType<ActivityLimitExceeded, __BaseException>
|
|
25
19
|
);
|
|
26
20
|
}
|
|
27
|
-
|
|
28
21
|
export interface ActivityListItem {
|
|
29
22
|
activityArn: string | undefined;
|
|
30
|
-
|
|
31
23
|
name: string | undefined;
|
|
32
|
-
|
|
33
24
|
creationDate: Date | undefined;
|
|
34
25
|
}
|
|
35
|
-
|
|
36
26
|
export interface HistoryEventExecutionDataDetails {
|
|
37
27
|
truncated?: boolean;
|
|
38
28
|
}
|
|
39
|
-
|
|
40
29
|
export interface ActivityScheduledEventDetails {
|
|
41
30
|
resource: string | undefined;
|
|
42
|
-
|
|
43
31
|
input?: string;
|
|
44
|
-
|
|
45
32
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
46
|
-
|
|
47
33
|
timeoutInSeconds?: number;
|
|
48
|
-
|
|
49
34
|
heartbeatInSeconds?: number;
|
|
50
35
|
}
|
|
51
|
-
|
|
52
36
|
export interface ActivityScheduleFailedEventDetails {
|
|
53
37
|
error?: string;
|
|
54
|
-
|
|
55
38
|
cause?: string;
|
|
56
39
|
}
|
|
57
|
-
|
|
58
40
|
export interface ActivityStartedEventDetails {
|
|
59
41
|
workerName?: string;
|
|
60
42
|
}
|
|
61
|
-
|
|
62
43
|
export interface ActivitySucceededEventDetails {
|
|
63
44
|
output?: string;
|
|
64
|
-
|
|
65
45
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
66
46
|
}
|
|
67
|
-
|
|
68
47
|
export interface ActivityTimedOutEventDetails {
|
|
69
48
|
error?: string;
|
|
70
|
-
|
|
71
49
|
cause?: string;
|
|
72
50
|
}
|
|
73
|
-
|
|
74
51
|
export declare class ActivityWorkerLimitExceeded extends __BaseException {
|
|
75
52
|
readonly name: "ActivityWorkerLimitExceeded";
|
|
76
53
|
readonly $fault: "client";
|
|
77
|
-
|
|
78
54
|
constructor(
|
|
79
55
|
opts: __ExceptionOptionType<ActivityWorkerLimitExceeded, __BaseException>
|
|
80
56
|
);
|
|
81
57
|
}
|
|
82
|
-
|
|
83
58
|
export interface Tag {
|
|
84
59
|
key?: string;
|
|
85
|
-
|
|
86
60
|
value?: string;
|
|
87
61
|
}
|
|
88
62
|
export interface CreateActivityInput {
|
|
89
63
|
name: string | undefined;
|
|
90
|
-
|
|
91
64
|
tags?: Tag[];
|
|
92
65
|
}
|
|
93
66
|
export interface CreateActivityOutput {
|
|
94
67
|
activityArn: string | undefined;
|
|
95
|
-
|
|
96
68
|
creationDate: Date | undefined;
|
|
97
69
|
}
|
|
98
|
-
|
|
99
70
|
export declare class InvalidName extends __BaseException {
|
|
100
71
|
readonly name: "InvalidName";
|
|
101
72
|
readonly $fault: "client";
|
|
102
|
-
|
|
103
73
|
constructor(opts: __ExceptionOptionType<InvalidName, __BaseException>);
|
|
104
74
|
}
|
|
105
|
-
|
|
106
75
|
export declare class TooManyTags extends __BaseException {
|
|
107
76
|
readonly name: "TooManyTags";
|
|
108
77
|
readonly $fault: "client";
|
|
109
78
|
resourceName?: string;
|
|
110
|
-
|
|
111
79
|
constructor(opts: __ExceptionOptionType<TooManyTags, __BaseException>);
|
|
112
80
|
}
|
|
113
|
-
|
|
114
81
|
export interface CloudWatchLogsLogGroup {
|
|
115
82
|
logGroupArn?: string;
|
|
116
83
|
}
|
|
117
|
-
|
|
118
84
|
export interface LogDestination {
|
|
119
85
|
cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
|
|
120
86
|
}
|
|
121
87
|
export declare type LogLevel = "ALL" | "ERROR" | "FATAL" | "OFF";
|
|
122
|
-
|
|
123
88
|
export interface LoggingConfiguration {
|
|
124
89
|
level?: LogLevel | string;
|
|
125
|
-
|
|
126
90
|
includeExecutionData?: boolean;
|
|
127
|
-
|
|
128
91
|
destinations?: LogDestination[];
|
|
129
92
|
}
|
|
130
|
-
|
|
131
93
|
export interface TracingConfiguration {
|
|
132
94
|
enabled?: boolean;
|
|
133
95
|
}
|
|
134
96
|
export declare type StateMachineType = "EXPRESS" | "STANDARD";
|
|
135
97
|
export interface CreateStateMachineInput {
|
|
136
98
|
name: string | undefined;
|
|
137
|
-
|
|
138
99
|
definition: string | undefined;
|
|
139
|
-
|
|
140
100
|
roleArn: string | undefined;
|
|
141
|
-
|
|
142
101
|
type?: StateMachineType | string;
|
|
143
|
-
|
|
144
102
|
loggingConfiguration?: LoggingConfiguration;
|
|
145
|
-
|
|
146
103
|
tags?: Tag[];
|
|
147
|
-
|
|
148
104
|
tracingConfiguration?: TracingConfiguration;
|
|
149
105
|
}
|
|
150
106
|
export interface CreateStateMachineOutput {
|
|
151
107
|
stateMachineArn: string | undefined;
|
|
152
|
-
|
|
153
108
|
creationDate: Date | undefined;
|
|
154
109
|
}
|
|
155
|
-
|
|
156
110
|
export declare class InvalidArn extends __BaseException {
|
|
157
111
|
readonly name: "InvalidArn";
|
|
158
112
|
readonly $fault: "client";
|
|
159
|
-
|
|
160
113
|
constructor(opts: __ExceptionOptionType<InvalidArn, __BaseException>);
|
|
161
114
|
}
|
|
162
|
-
|
|
163
115
|
export declare class InvalidDefinition extends __BaseException {
|
|
164
116
|
readonly name: "InvalidDefinition";
|
|
165
117
|
readonly $fault: "client";
|
|
166
|
-
|
|
167
118
|
constructor(opts: __ExceptionOptionType<InvalidDefinition, __BaseException>);
|
|
168
119
|
}
|
|
169
|
-
|
|
170
120
|
export declare class InvalidLoggingConfiguration extends __BaseException {
|
|
171
121
|
readonly name: "InvalidLoggingConfiguration";
|
|
172
122
|
readonly $fault: "client";
|
|
173
|
-
|
|
174
123
|
constructor(
|
|
175
124
|
opts: __ExceptionOptionType<InvalidLoggingConfiguration, __BaseException>
|
|
176
125
|
);
|
|
177
126
|
}
|
|
178
|
-
|
|
179
127
|
export declare class InvalidTracingConfiguration extends __BaseException {
|
|
180
128
|
readonly name: "InvalidTracingConfiguration";
|
|
181
129
|
readonly $fault: "client";
|
|
182
|
-
|
|
183
130
|
constructor(
|
|
184
131
|
opts: __ExceptionOptionType<InvalidTracingConfiguration, __BaseException>
|
|
185
132
|
);
|
|
186
133
|
}
|
|
187
|
-
|
|
188
134
|
export declare class StateMachineAlreadyExists extends __BaseException {
|
|
189
135
|
readonly name: "StateMachineAlreadyExists";
|
|
190
136
|
readonly $fault: "client";
|
|
191
|
-
|
|
192
137
|
constructor(
|
|
193
138
|
opts: __ExceptionOptionType<StateMachineAlreadyExists, __BaseException>
|
|
194
139
|
);
|
|
195
140
|
}
|
|
196
|
-
|
|
197
141
|
export declare class StateMachineDeleting extends __BaseException {
|
|
198
142
|
readonly name: "StateMachineDeleting";
|
|
199
143
|
readonly $fault: "client";
|
|
200
|
-
|
|
201
144
|
constructor(
|
|
202
145
|
opts: __ExceptionOptionType<StateMachineDeleting, __BaseException>
|
|
203
146
|
);
|
|
204
147
|
}
|
|
205
|
-
|
|
206
148
|
export declare class StateMachineLimitExceeded extends __BaseException {
|
|
207
149
|
readonly name: "StateMachineLimitExceeded";
|
|
208
150
|
readonly $fault: "client";
|
|
209
|
-
|
|
210
151
|
constructor(
|
|
211
152
|
opts: __ExceptionOptionType<StateMachineLimitExceeded, __BaseException>
|
|
212
153
|
);
|
|
213
154
|
}
|
|
214
|
-
|
|
215
155
|
export declare class StateMachineTypeNotSupported extends __BaseException {
|
|
216
156
|
readonly name: "StateMachineTypeNotSupported";
|
|
217
157
|
readonly $fault: "client";
|
|
218
|
-
|
|
219
158
|
constructor(
|
|
220
159
|
opts: __ExceptionOptionType<StateMachineTypeNotSupported, __BaseException>
|
|
221
160
|
);
|
|
@@ -233,15 +172,12 @@ export interface DescribeActivityInput {
|
|
|
233
172
|
}
|
|
234
173
|
export interface DescribeActivityOutput {
|
|
235
174
|
activityArn: string | undefined;
|
|
236
|
-
|
|
237
175
|
name: string | undefined;
|
|
238
|
-
|
|
239
176
|
creationDate: Date | undefined;
|
|
240
177
|
}
|
|
241
178
|
export interface DescribeExecutionInput {
|
|
242
179
|
executionArn: string | undefined;
|
|
243
180
|
}
|
|
244
|
-
|
|
245
181
|
export interface CloudWatchEventsExecutionDataDetails {
|
|
246
182
|
included?: boolean;
|
|
247
183
|
}
|
|
@@ -253,32 +189,20 @@ export declare type ExecutionStatus =
|
|
|
253
189
|
| "TIMED_OUT";
|
|
254
190
|
export interface DescribeExecutionOutput {
|
|
255
191
|
executionArn: string | undefined;
|
|
256
|
-
|
|
257
192
|
stateMachineArn: string | undefined;
|
|
258
|
-
|
|
259
193
|
name?: string;
|
|
260
|
-
|
|
261
194
|
status: ExecutionStatus | string | undefined;
|
|
262
|
-
|
|
263
195
|
startDate: Date | undefined;
|
|
264
|
-
|
|
265
196
|
stopDate?: Date;
|
|
266
|
-
|
|
267
197
|
input?: string;
|
|
268
|
-
|
|
269
198
|
inputDetails?: CloudWatchEventsExecutionDataDetails;
|
|
270
|
-
|
|
271
199
|
output?: string;
|
|
272
|
-
|
|
273
200
|
outputDetails?: CloudWatchEventsExecutionDataDetails;
|
|
274
|
-
|
|
275
201
|
traceHeader?: string;
|
|
276
202
|
}
|
|
277
|
-
|
|
278
203
|
export declare class ExecutionDoesNotExist extends __BaseException {
|
|
279
204
|
readonly name: "ExecutionDoesNotExist";
|
|
280
205
|
readonly $fault: "client";
|
|
281
|
-
|
|
282
206
|
constructor(
|
|
283
207
|
opts: __ExceptionOptionType<ExecutionDoesNotExist, __BaseException>
|
|
284
208
|
);
|
|
@@ -289,28 +213,18 @@ export interface DescribeStateMachineInput {
|
|
|
289
213
|
export declare type StateMachineStatus = "ACTIVE" | "DELETING";
|
|
290
214
|
export interface DescribeStateMachineOutput {
|
|
291
215
|
stateMachineArn: string | undefined;
|
|
292
|
-
|
|
293
216
|
name: string | undefined;
|
|
294
|
-
|
|
295
217
|
status?: StateMachineStatus | string;
|
|
296
|
-
|
|
297
218
|
definition: string | undefined;
|
|
298
|
-
|
|
299
219
|
roleArn: string | undefined;
|
|
300
|
-
|
|
301
220
|
type: StateMachineType | string | undefined;
|
|
302
|
-
|
|
303
221
|
creationDate: Date | undefined;
|
|
304
|
-
|
|
305
222
|
loggingConfiguration?: LoggingConfiguration;
|
|
306
|
-
|
|
307
223
|
tracingConfiguration?: TracingConfiguration;
|
|
308
224
|
}
|
|
309
|
-
|
|
310
225
|
export declare class StateMachineDoesNotExist extends __BaseException {
|
|
311
226
|
readonly name: "StateMachineDoesNotExist";
|
|
312
227
|
readonly $fault: "client";
|
|
313
|
-
|
|
314
228
|
constructor(
|
|
315
229
|
opts: __ExceptionOptionType<StateMachineDoesNotExist, __BaseException>
|
|
316
230
|
);
|
|
@@ -320,216 +234,138 @@ export interface DescribeStateMachineForExecutionInput {
|
|
|
320
234
|
}
|
|
321
235
|
export interface DescribeStateMachineForExecutionOutput {
|
|
322
236
|
stateMachineArn: string | undefined;
|
|
323
|
-
|
|
324
237
|
name: string | undefined;
|
|
325
|
-
|
|
326
238
|
definition: string | undefined;
|
|
327
|
-
|
|
328
239
|
roleArn: string | undefined;
|
|
329
|
-
|
|
330
240
|
updateDate: Date | undefined;
|
|
331
|
-
|
|
332
241
|
loggingConfiguration?: LoggingConfiguration;
|
|
333
|
-
|
|
334
242
|
tracingConfiguration?: TracingConfiguration;
|
|
335
243
|
}
|
|
336
244
|
export interface GetActivityTaskInput {
|
|
337
245
|
activityArn: string | undefined;
|
|
338
|
-
|
|
339
246
|
workerName?: string;
|
|
340
247
|
}
|
|
341
248
|
export interface GetActivityTaskOutput {
|
|
342
249
|
taskToken?: string;
|
|
343
|
-
|
|
344
250
|
input?: string;
|
|
345
251
|
}
|
|
346
252
|
export interface GetExecutionHistoryInput {
|
|
347
253
|
executionArn: string | undefined;
|
|
348
|
-
|
|
349
254
|
maxResults?: number;
|
|
350
|
-
|
|
351
255
|
reverseOrder?: boolean;
|
|
352
|
-
|
|
353
256
|
nextToken?: string;
|
|
354
|
-
|
|
355
257
|
includeExecutionData?: boolean;
|
|
356
258
|
}
|
|
357
|
-
|
|
358
259
|
export interface ExecutionAbortedEventDetails {
|
|
359
260
|
error?: string;
|
|
360
|
-
|
|
361
261
|
cause?: string;
|
|
362
262
|
}
|
|
363
|
-
|
|
364
263
|
export interface ExecutionFailedEventDetails {
|
|
365
264
|
error?: string;
|
|
366
|
-
|
|
367
265
|
cause?: string;
|
|
368
266
|
}
|
|
369
|
-
|
|
370
267
|
export interface ExecutionStartedEventDetails {
|
|
371
268
|
input?: string;
|
|
372
|
-
|
|
373
269
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
374
|
-
|
|
375
270
|
roleArn?: string;
|
|
376
271
|
}
|
|
377
|
-
|
|
378
272
|
export interface ExecutionSucceededEventDetails {
|
|
379
273
|
output?: string;
|
|
380
|
-
|
|
381
274
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
382
275
|
}
|
|
383
|
-
|
|
384
276
|
export interface ExecutionTimedOutEventDetails {
|
|
385
277
|
error?: string;
|
|
386
|
-
|
|
387
278
|
cause?: string;
|
|
388
279
|
}
|
|
389
|
-
|
|
390
280
|
export interface LambdaFunctionFailedEventDetails {
|
|
391
281
|
error?: string;
|
|
392
|
-
|
|
393
282
|
cause?: string;
|
|
394
283
|
}
|
|
395
|
-
|
|
396
284
|
export interface LambdaFunctionScheduledEventDetails {
|
|
397
285
|
resource: string | undefined;
|
|
398
|
-
|
|
399
286
|
input?: string;
|
|
400
|
-
|
|
401
287
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
402
|
-
|
|
403
288
|
timeoutInSeconds?: number;
|
|
404
289
|
}
|
|
405
|
-
|
|
406
290
|
export interface LambdaFunctionScheduleFailedEventDetails {
|
|
407
291
|
error?: string;
|
|
408
|
-
|
|
409
292
|
cause?: string;
|
|
410
293
|
}
|
|
411
|
-
|
|
412
294
|
export interface LambdaFunctionStartFailedEventDetails {
|
|
413
295
|
error?: string;
|
|
414
|
-
|
|
415
296
|
cause?: string;
|
|
416
297
|
}
|
|
417
|
-
|
|
418
298
|
export interface LambdaFunctionSucceededEventDetails {
|
|
419
299
|
output?: string;
|
|
420
|
-
|
|
421
300
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
422
301
|
}
|
|
423
|
-
|
|
424
302
|
export interface LambdaFunctionTimedOutEventDetails {
|
|
425
303
|
error?: string;
|
|
426
|
-
|
|
427
304
|
cause?: string;
|
|
428
305
|
}
|
|
429
|
-
|
|
430
306
|
export interface MapIterationEventDetails {
|
|
431
307
|
name?: string;
|
|
432
|
-
|
|
433
308
|
index?: number;
|
|
434
309
|
}
|
|
435
|
-
|
|
436
310
|
export interface MapStateStartedEventDetails {
|
|
437
311
|
length?: number;
|
|
438
312
|
}
|
|
439
|
-
|
|
440
313
|
export interface StateEnteredEventDetails {
|
|
441
314
|
name: string | undefined;
|
|
442
|
-
|
|
443
315
|
input?: string;
|
|
444
|
-
|
|
445
316
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
446
317
|
}
|
|
447
|
-
|
|
448
318
|
export interface StateExitedEventDetails {
|
|
449
319
|
name: string | undefined;
|
|
450
|
-
|
|
451
320
|
output?: string;
|
|
452
|
-
|
|
453
321
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
454
322
|
}
|
|
455
|
-
|
|
456
323
|
export interface TaskFailedEventDetails {
|
|
457
324
|
resourceType: string | undefined;
|
|
458
|
-
|
|
459
325
|
resource: string | undefined;
|
|
460
|
-
|
|
461
326
|
error?: string;
|
|
462
|
-
|
|
463
327
|
cause?: string;
|
|
464
328
|
}
|
|
465
|
-
|
|
466
329
|
export interface TaskScheduledEventDetails {
|
|
467
330
|
resourceType: string | undefined;
|
|
468
|
-
|
|
469
331
|
resource: string | undefined;
|
|
470
|
-
|
|
471
332
|
region: string | undefined;
|
|
472
|
-
|
|
473
333
|
parameters: string | undefined;
|
|
474
|
-
|
|
475
334
|
timeoutInSeconds?: number;
|
|
476
|
-
|
|
477
335
|
heartbeatInSeconds?: number;
|
|
478
336
|
}
|
|
479
|
-
|
|
480
337
|
export interface TaskStartedEventDetails {
|
|
481
338
|
resourceType: string | undefined;
|
|
482
|
-
|
|
483
339
|
resource: string | undefined;
|
|
484
340
|
}
|
|
485
|
-
|
|
486
341
|
export interface TaskStartFailedEventDetails {
|
|
487
342
|
resourceType: string | undefined;
|
|
488
|
-
|
|
489
343
|
resource: string | undefined;
|
|
490
|
-
|
|
491
344
|
error?: string;
|
|
492
|
-
|
|
493
345
|
cause?: string;
|
|
494
346
|
}
|
|
495
|
-
|
|
496
347
|
export interface TaskSubmitFailedEventDetails {
|
|
497
348
|
resourceType: string | undefined;
|
|
498
|
-
|
|
499
349
|
resource: string | undefined;
|
|
500
|
-
|
|
501
350
|
error?: string;
|
|
502
|
-
|
|
503
351
|
cause?: string;
|
|
504
352
|
}
|
|
505
|
-
|
|
506
353
|
export interface TaskSubmittedEventDetails {
|
|
507
354
|
resourceType: string | undefined;
|
|
508
|
-
|
|
509
355
|
resource: string | undefined;
|
|
510
|
-
|
|
511
356
|
output?: string;
|
|
512
|
-
|
|
513
357
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
514
358
|
}
|
|
515
|
-
|
|
516
359
|
export interface TaskSucceededEventDetails {
|
|
517
360
|
resourceType: string | undefined;
|
|
518
|
-
|
|
519
361
|
resource: string | undefined;
|
|
520
|
-
|
|
521
362
|
output?: string;
|
|
522
|
-
|
|
523
363
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
524
364
|
}
|
|
525
|
-
|
|
526
365
|
export interface TaskTimedOutEventDetails {
|
|
527
366
|
resourceType: string | undefined;
|
|
528
|
-
|
|
529
367
|
resource: string | undefined;
|
|
530
|
-
|
|
531
368
|
error?: string;
|
|
532
|
-
|
|
533
369
|
cause?: string;
|
|
534
370
|
}
|
|
535
371
|
export declare type HistoryEventType =
|
|
@@ -588,148 +424,91 @@ export declare type HistoryEventType =
|
|
|
588
424
|
| "WaitStateAborted"
|
|
589
425
|
| "WaitStateEntered"
|
|
590
426
|
| "WaitStateExited";
|
|
591
|
-
|
|
592
427
|
export interface HistoryEvent {
|
|
593
428
|
timestamp: Date | undefined;
|
|
594
|
-
|
|
595
429
|
type: HistoryEventType | string | undefined;
|
|
596
|
-
|
|
597
430
|
id: number | undefined;
|
|
598
|
-
|
|
599
431
|
previousEventId?: number;
|
|
600
|
-
|
|
601
432
|
activityFailedEventDetails?: ActivityFailedEventDetails;
|
|
602
|
-
|
|
603
433
|
activityScheduleFailedEventDetails?: ActivityScheduleFailedEventDetails;
|
|
604
|
-
|
|
605
434
|
activityScheduledEventDetails?: ActivityScheduledEventDetails;
|
|
606
|
-
|
|
607
435
|
activityStartedEventDetails?: ActivityStartedEventDetails;
|
|
608
|
-
|
|
609
436
|
activitySucceededEventDetails?: ActivitySucceededEventDetails;
|
|
610
|
-
|
|
611
437
|
activityTimedOutEventDetails?: ActivityTimedOutEventDetails;
|
|
612
|
-
|
|
613
438
|
taskFailedEventDetails?: TaskFailedEventDetails;
|
|
614
|
-
|
|
615
439
|
taskScheduledEventDetails?: TaskScheduledEventDetails;
|
|
616
|
-
|
|
617
440
|
taskStartFailedEventDetails?: TaskStartFailedEventDetails;
|
|
618
|
-
|
|
619
441
|
taskStartedEventDetails?: TaskStartedEventDetails;
|
|
620
|
-
|
|
621
442
|
taskSubmitFailedEventDetails?: TaskSubmitFailedEventDetails;
|
|
622
|
-
|
|
623
443
|
taskSubmittedEventDetails?: TaskSubmittedEventDetails;
|
|
624
|
-
|
|
625
444
|
taskSucceededEventDetails?: TaskSucceededEventDetails;
|
|
626
|
-
|
|
627
445
|
taskTimedOutEventDetails?: TaskTimedOutEventDetails;
|
|
628
|
-
|
|
629
446
|
executionFailedEventDetails?: ExecutionFailedEventDetails;
|
|
630
|
-
|
|
631
447
|
executionStartedEventDetails?: ExecutionStartedEventDetails;
|
|
632
|
-
|
|
633
448
|
executionSucceededEventDetails?: ExecutionSucceededEventDetails;
|
|
634
|
-
|
|
635
449
|
executionAbortedEventDetails?: ExecutionAbortedEventDetails;
|
|
636
|
-
|
|
637
450
|
executionTimedOutEventDetails?: ExecutionTimedOutEventDetails;
|
|
638
|
-
|
|
639
451
|
mapStateStartedEventDetails?: MapStateStartedEventDetails;
|
|
640
|
-
|
|
641
452
|
mapIterationStartedEventDetails?: MapIterationEventDetails;
|
|
642
|
-
|
|
643
453
|
mapIterationSucceededEventDetails?: MapIterationEventDetails;
|
|
644
|
-
|
|
645
454
|
mapIterationFailedEventDetails?: MapIterationEventDetails;
|
|
646
|
-
|
|
647
455
|
mapIterationAbortedEventDetails?: MapIterationEventDetails;
|
|
648
|
-
|
|
649
456
|
lambdaFunctionFailedEventDetails?: LambdaFunctionFailedEventDetails;
|
|
650
|
-
|
|
651
457
|
lambdaFunctionScheduleFailedEventDetails?: LambdaFunctionScheduleFailedEventDetails;
|
|
652
|
-
|
|
653
458
|
lambdaFunctionScheduledEventDetails?: LambdaFunctionScheduledEventDetails;
|
|
654
|
-
|
|
655
459
|
lambdaFunctionStartFailedEventDetails?: LambdaFunctionStartFailedEventDetails;
|
|
656
|
-
|
|
657
460
|
lambdaFunctionSucceededEventDetails?: LambdaFunctionSucceededEventDetails;
|
|
658
|
-
|
|
659
461
|
lambdaFunctionTimedOutEventDetails?: LambdaFunctionTimedOutEventDetails;
|
|
660
|
-
|
|
661
462
|
stateEnteredEventDetails?: StateEnteredEventDetails;
|
|
662
|
-
|
|
663
463
|
stateExitedEventDetails?: StateExitedEventDetails;
|
|
664
464
|
}
|
|
665
465
|
export interface GetExecutionHistoryOutput {
|
|
666
466
|
events: HistoryEvent[] | undefined;
|
|
667
|
-
|
|
668
467
|
nextToken?: string;
|
|
669
468
|
}
|
|
670
|
-
|
|
671
469
|
export declare class InvalidToken extends __BaseException {
|
|
672
470
|
readonly name: "InvalidToken";
|
|
673
471
|
readonly $fault: "client";
|
|
674
|
-
|
|
675
472
|
constructor(opts: __ExceptionOptionType<InvalidToken, __BaseException>);
|
|
676
473
|
}
|
|
677
474
|
export interface ListActivitiesInput {
|
|
678
475
|
maxResults?: number;
|
|
679
|
-
|
|
680
476
|
nextToken?: string;
|
|
681
477
|
}
|
|
682
478
|
export interface ListActivitiesOutput {
|
|
683
479
|
activities: ActivityListItem[] | undefined;
|
|
684
|
-
|
|
685
480
|
nextToken?: string;
|
|
686
481
|
}
|
|
687
482
|
export interface ListExecutionsInput {
|
|
688
483
|
stateMachineArn: string | undefined;
|
|
689
|
-
|
|
690
484
|
statusFilter?: ExecutionStatus | string;
|
|
691
|
-
|
|
692
485
|
maxResults?: number;
|
|
693
|
-
|
|
694
486
|
nextToken?: string;
|
|
695
487
|
}
|
|
696
|
-
|
|
697
488
|
export interface ExecutionListItem {
|
|
698
489
|
executionArn: string | undefined;
|
|
699
|
-
|
|
700
490
|
stateMachineArn: string | undefined;
|
|
701
|
-
|
|
702
491
|
name: string | undefined;
|
|
703
|
-
|
|
704
492
|
status: ExecutionStatus | string | undefined;
|
|
705
|
-
|
|
706
493
|
startDate: Date | undefined;
|
|
707
|
-
|
|
708
494
|
stopDate?: Date;
|
|
709
495
|
}
|
|
710
496
|
export interface ListExecutionsOutput {
|
|
711
497
|
executions: ExecutionListItem[] | undefined;
|
|
712
|
-
|
|
713
498
|
nextToken?: string;
|
|
714
499
|
}
|
|
715
500
|
export interface ListStateMachinesInput {
|
|
716
501
|
maxResults?: number;
|
|
717
|
-
|
|
718
502
|
nextToken?: string;
|
|
719
503
|
}
|
|
720
|
-
|
|
721
504
|
export interface StateMachineListItem {
|
|
722
505
|
stateMachineArn: string | undefined;
|
|
723
|
-
|
|
724
506
|
name: string | undefined;
|
|
725
|
-
|
|
726
507
|
type: StateMachineType | string | undefined;
|
|
727
|
-
|
|
728
508
|
creationDate: Date | undefined;
|
|
729
509
|
}
|
|
730
510
|
export interface ListStateMachinesOutput {
|
|
731
511
|
stateMachines: StateMachineListItem[] | undefined;
|
|
732
|
-
|
|
733
512
|
nextToken?: string;
|
|
734
513
|
}
|
|
735
514
|
export interface ListTagsForResourceInput {
|
|
@@ -738,142 +517,103 @@ export interface ListTagsForResourceInput {
|
|
|
738
517
|
export interface ListTagsForResourceOutput {
|
|
739
518
|
tags?: Tag[];
|
|
740
519
|
}
|
|
741
|
-
|
|
742
520
|
export declare class ResourceNotFound extends __BaseException {
|
|
743
521
|
readonly name: "ResourceNotFound";
|
|
744
522
|
readonly $fault: "client";
|
|
745
523
|
resourceName?: string;
|
|
746
|
-
|
|
747
524
|
constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
|
|
748
525
|
}
|
|
749
526
|
export interface SendTaskFailureInput {
|
|
750
527
|
taskToken: string | undefined;
|
|
751
|
-
|
|
752
528
|
error?: string;
|
|
753
|
-
|
|
754
529
|
cause?: string;
|
|
755
530
|
}
|
|
756
531
|
export interface SendTaskFailureOutput {}
|
|
757
532
|
export declare class TaskDoesNotExist extends __BaseException {
|
|
758
533
|
readonly name: "TaskDoesNotExist";
|
|
759
534
|
readonly $fault: "client";
|
|
760
|
-
|
|
761
535
|
constructor(opts: __ExceptionOptionType<TaskDoesNotExist, __BaseException>);
|
|
762
536
|
}
|
|
763
537
|
export declare class TaskTimedOut extends __BaseException {
|
|
764
538
|
readonly name: "TaskTimedOut";
|
|
765
539
|
readonly $fault: "client";
|
|
766
|
-
|
|
767
540
|
constructor(opts: __ExceptionOptionType<TaskTimedOut, __BaseException>);
|
|
768
541
|
}
|
|
769
542
|
export interface SendTaskHeartbeatInput {
|
|
770
543
|
taskToken: string | undefined;
|
|
771
544
|
}
|
|
772
545
|
export interface SendTaskHeartbeatOutput {}
|
|
773
|
-
|
|
774
546
|
export declare class InvalidOutput extends __BaseException {
|
|
775
547
|
readonly name: "InvalidOutput";
|
|
776
548
|
readonly $fault: "client";
|
|
777
|
-
|
|
778
549
|
constructor(opts: __ExceptionOptionType<InvalidOutput, __BaseException>);
|
|
779
550
|
}
|
|
780
551
|
export interface SendTaskSuccessInput {
|
|
781
552
|
taskToken: string | undefined;
|
|
782
|
-
|
|
783
553
|
output: string | undefined;
|
|
784
554
|
}
|
|
785
555
|
export interface SendTaskSuccessOutput {}
|
|
786
|
-
|
|
787
556
|
export declare class ExecutionAlreadyExists extends __BaseException {
|
|
788
557
|
readonly name: "ExecutionAlreadyExists";
|
|
789
558
|
readonly $fault: "client";
|
|
790
|
-
|
|
791
559
|
constructor(
|
|
792
560
|
opts: __ExceptionOptionType<ExecutionAlreadyExists, __BaseException>
|
|
793
561
|
);
|
|
794
562
|
}
|
|
795
|
-
|
|
796
563
|
export declare class ExecutionLimitExceeded extends __BaseException {
|
|
797
564
|
readonly name: "ExecutionLimitExceeded";
|
|
798
565
|
readonly $fault: "client";
|
|
799
|
-
|
|
800
566
|
constructor(
|
|
801
567
|
opts: __ExceptionOptionType<ExecutionLimitExceeded, __BaseException>
|
|
802
568
|
);
|
|
803
569
|
}
|
|
804
|
-
|
|
805
570
|
export declare class InvalidExecutionInput extends __BaseException {
|
|
806
571
|
readonly name: "InvalidExecutionInput";
|
|
807
572
|
readonly $fault: "client";
|
|
808
|
-
|
|
809
573
|
constructor(
|
|
810
574
|
opts: __ExceptionOptionType<InvalidExecutionInput, __BaseException>
|
|
811
575
|
);
|
|
812
576
|
}
|
|
813
577
|
export interface StartExecutionInput {
|
|
814
578
|
stateMachineArn: string | undefined;
|
|
815
|
-
|
|
816
579
|
name?: string;
|
|
817
|
-
|
|
818
580
|
input?: string;
|
|
819
|
-
|
|
820
581
|
traceHeader?: string;
|
|
821
582
|
}
|
|
822
583
|
export interface StartExecutionOutput {
|
|
823
584
|
executionArn: string | undefined;
|
|
824
|
-
|
|
825
585
|
startDate: Date | undefined;
|
|
826
586
|
}
|
|
827
587
|
export interface StartSyncExecutionInput {
|
|
828
588
|
stateMachineArn: string | undefined;
|
|
829
|
-
|
|
830
589
|
name?: string;
|
|
831
|
-
|
|
832
590
|
input?: string;
|
|
833
|
-
|
|
834
591
|
traceHeader?: string;
|
|
835
592
|
}
|
|
836
|
-
|
|
837
593
|
export interface BillingDetails {
|
|
838
594
|
billedMemoryUsedInMB?: number;
|
|
839
|
-
|
|
840
595
|
billedDurationInMilliseconds?: number;
|
|
841
596
|
}
|
|
842
597
|
export declare type SyncExecutionStatus = "FAILED" | "SUCCEEDED" | "TIMED_OUT";
|
|
843
598
|
export interface StartSyncExecutionOutput {
|
|
844
599
|
executionArn: string | undefined;
|
|
845
|
-
|
|
846
600
|
stateMachineArn?: string;
|
|
847
|
-
|
|
848
601
|
name?: string;
|
|
849
|
-
|
|
850
602
|
startDate: Date | undefined;
|
|
851
|
-
|
|
852
603
|
stopDate: Date | undefined;
|
|
853
|
-
|
|
854
604
|
status: SyncExecutionStatus | string | undefined;
|
|
855
|
-
|
|
856
605
|
error?: string;
|
|
857
|
-
|
|
858
606
|
cause?: string;
|
|
859
|
-
|
|
860
607
|
input?: string;
|
|
861
|
-
|
|
862
608
|
inputDetails?: CloudWatchEventsExecutionDataDetails;
|
|
863
|
-
|
|
864
609
|
output?: string;
|
|
865
|
-
|
|
866
610
|
outputDetails?: CloudWatchEventsExecutionDataDetails;
|
|
867
|
-
|
|
868
611
|
traceHeader?: string;
|
|
869
|
-
|
|
870
612
|
billingDetails?: BillingDetails;
|
|
871
613
|
}
|
|
872
614
|
export interface StopExecutionInput {
|
|
873
615
|
executionArn: string | undefined;
|
|
874
|
-
|
|
875
616
|
error?: string;
|
|
876
|
-
|
|
877
617
|
cause?: string;
|
|
878
618
|
}
|
|
879
619
|
export interface StopExecutionOutput {
|
|
@@ -881,380 +621,285 @@ export interface StopExecutionOutput {
|
|
|
881
621
|
}
|
|
882
622
|
export interface TagResourceInput {
|
|
883
623
|
resourceArn: string | undefined;
|
|
884
|
-
|
|
885
624
|
tags: Tag[] | undefined;
|
|
886
625
|
}
|
|
887
626
|
export interface TagResourceOutput {}
|
|
888
627
|
export interface UntagResourceInput {
|
|
889
628
|
resourceArn: string | undefined;
|
|
890
|
-
|
|
891
629
|
tagKeys: string[] | undefined;
|
|
892
630
|
}
|
|
893
631
|
export interface UntagResourceOutput {}
|
|
894
|
-
|
|
895
632
|
export declare class MissingRequiredParameter extends __BaseException {
|
|
896
633
|
readonly name: "MissingRequiredParameter";
|
|
897
634
|
readonly $fault: "client";
|
|
898
|
-
|
|
899
635
|
constructor(
|
|
900
636
|
opts: __ExceptionOptionType<MissingRequiredParameter, __BaseException>
|
|
901
637
|
);
|
|
902
638
|
}
|
|
903
639
|
export interface UpdateStateMachineInput {
|
|
904
640
|
stateMachineArn: string | undefined;
|
|
905
|
-
|
|
906
641
|
definition?: string;
|
|
907
|
-
|
|
908
642
|
roleArn?: string;
|
|
909
|
-
|
|
910
643
|
loggingConfiguration?: LoggingConfiguration;
|
|
911
|
-
|
|
912
644
|
tracingConfiguration?: TracingConfiguration;
|
|
913
645
|
}
|
|
914
646
|
export interface UpdateStateMachineOutput {
|
|
915
647
|
updateDate: Date | undefined;
|
|
916
648
|
}
|
|
917
|
-
|
|
918
649
|
export declare const ActivityFailedEventDetailsFilterSensitiveLog: (
|
|
919
650
|
obj: ActivityFailedEventDetails
|
|
920
651
|
) => any;
|
|
921
|
-
|
|
922
652
|
export declare const ActivityListItemFilterSensitiveLog: (
|
|
923
653
|
obj: ActivityListItem
|
|
924
654
|
) => any;
|
|
925
|
-
|
|
926
655
|
export declare const HistoryEventExecutionDataDetailsFilterSensitiveLog: (
|
|
927
656
|
obj: HistoryEventExecutionDataDetails
|
|
928
657
|
) => any;
|
|
929
|
-
|
|
930
658
|
export declare const ActivityScheduledEventDetailsFilterSensitiveLog: (
|
|
931
659
|
obj: ActivityScheduledEventDetails
|
|
932
660
|
) => any;
|
|
933
|
-
|
|
934
661
|
export declare const ActivityScheduleFailedEventDetailsFilterSensitiveLog: (
|
|
935
662
|
obj: ActivityScheduleFailedEventDetails
|
|
936
663
|
) => any;
|
|
937
|
-
|
|
938
664
|
export declare const ActivityStartedEventDetailsFilterSensitiveLog: (
|
|
939
665
|
obj: ActivityStartedEventDetails
|
|
940
666
|
) => any;
|
|
941
|
-
|
|
942
667
|
export declare const ActivitySucceededEventDetailsFilterSensitiveLog: (
|
|
943
668
|
obj: ActivitySucceededEventDetails
|
|
944
669
|
) => any;
|
|
945
|
-
|
|
946
670
|
export declare const ActivityTimedOutEventDetailsFilterSensitiveLog: (
|
|
947
671
|
obj: ActivityTimedOutEventDetails
|
|
948
672
|
) => any;
|
|
949
|
-
|
|
950
673
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
951
|
-
|
|
952
674
|
export declare const CreateActivityInputFilterSensitiveLog: (
|
|
953
675
|
obj: CreateActivityInput
|
|
954
676
|
) => any;
|
|
955
|
-
|
|
956
677
|
export declare const CreateActivityOutputFilterSensitiveLog: (
|
|
957
678
|
obj: CreateActivityOutput
|
|
958
679
|
) => any;
|
|
959
|
-
|
|
960
680
|
export declare const CloudWatchLogsLogGroupFilterSensitiveLog: (
|
|
961
681
|
obj: CloudWatchLogsLogGroup
|
|
962
682
|
) => any;
|
|
963
|
-
|
|
964
683
|
export declare const LogDestinationFilterSensitiveLog: (
|
|
965
684
|
obj: LogDestination
|
|
966
685
|
) => any;
|
|
967
|
-
|
|
968
686
|
export declare const LoggingConfigurationFilterSensitiveLog: (
|
|
969
687
|
obj: LoggingConfiguration
|
|
970
688
|
) => any;
|
|
971
|
-
|
|
972
689
|
export declare const TracingConfigurationFilterSensitiveLog: (
|
|
973
690
|
obj: TracingConfiguration
|
|
974
691
|
) => any;
|
|
975
|
-
|
|
976
692
|
export declare const CreateStateMachineInputFilterSensitiveLog: (
|
|
977
693
|
obj: CreateStateMachineInput
|
|
978
694
|
) => any;
|
|
979
|
-
|
|
980
695
|
export declare const CreateStateMachineOutputFilterSensitiveLog: (
|
|
981
696
|
obj: CreateStateMachineOutput
|
|
982
697
|
) => any;
|
|
983
|
-
|
|
984
698
|
export declare const DeleteActivityInputFilterSensitiveLog: (
|
|
985
699
|
obj: DeleteActivityInput
|
|
986
700
|
) => any;
|
|
987
|
-
|
|
988
701
|
export declare const DeleteActivityOutputFilterSensitiveLog: (
|
|
989
702
|
obj: DeleteActivityOutput
|
|
990
703
|
) => any;
|
|
991
|
-
|
|
992
704
|
export declare const DeleteStateMachineInputFilterSensitiveLog: (
|
|
993
705
|
obj: DeleteStateMachineInput
|
|
994
706
|
) => any;
|
|
995
|
-
|
|
996
707
|
export declare const DeleteStateMachineOutputFilterSensitiveLog: (
|
|
997
708
|
obj: DeleteStateMachineOutput
|
|
998
709
|
) => any;
|
|
999
|
-
|
|
1000
710
|
export declare const DescribeActivityInputFilterSensitiveLog: (
|
|
1001
711
|
obj: DescribeActivityInput
|
|
1002
712
|
) => any;
|
|
1003
|
-
|
|
1004
713
|
export declare const DescribeActivityOutputFilterSensitiveLog: (
|
|
1005
714
|
obj: DescribeActivityOutput
|
|
1006
715
|
) => any;
|
|
1007
|
-
|
|
1008
716
|
export declare const DescribeExecutionInputFilterSensitiveLog: (
|
|
1009
717
|
obj: DescribeExecutionInput
|
|
1010
718
|
) => any;
|
|
1011
|
-
|
|
1012
719
|
export declare const CloudWatchEventsExecutionDataDetailsFilterSensitiveLog: (
|
|
1013
720
|
obj: CloudWatchEventsExecutionDataDetails
|
|
1014
721
|
) => any;
|
|
1015
|
-
|
|
1016
722
|
export declare const DescribeExecutionOutputFilterSensitiveLog: (
|
|
1017
723
|
obj: DescribeExecutionOutput
|
|
1018
724
|
) => any;
|
|
1019
|
-
|
|
1020
725
|
export declare const DescribeStateMachineInputFilterSensitiveLog: (
|
|
1021
726
|
obj: DescribeStateMachineInput
|
|
1022
727
|
) => any;
|
|
1023
|
-
|
|
1024
728
|
export declare const DescribeStateMachineOutputFilterSensitiveLog: (
|
|
1025
729
|
obj: DescribeStateMachineOutput
|
|
1026
730
|
) => any;
|
|
1027
|
-
|
|
1028
731
|
export declare const DescribeStateMachineForExecutionInputFilterSensitiveLog: (
|
|
1029
732
|
obj: DescribeStateMachineForExecutionInput
|
|
1030
733
|
) => any;
|
|
1031
|
-
|
|
1032
734
|
export declare const DescribeStateMachineForExecutionOutputFilterSensitiveLog: (
|
|
1033
735
|
obj: DescribeStateMachineForExecutionOutput
|
|
1034
736
|
) => any;
|
|
1035
|
-
|
|
1036
737
|
export declare const GetActivityTaskInputFilterSensitiveLog: (
|
|
1037
738
|
obj: GetActivityTaskInput
|
|
1038
739
|
) => any;
|
|
1039
|
-
|
|
1040
740
|
export declare const GetActivityTaskOutputFilterSensitiveLog: (
|
|
1041
741
|
obj: GetActivityTaskOutput
|
|
1042
742
|
) => any;
|
|
1043
|
-
|
|
1044
743
|
export declare const GetExecutionHistoryInputFilterSensitiveLog: (
|
|
1045
744
|
obj: GetExecutionHistoryInput
|
|
1046
745
|
) => any;
|
|
1047
|
-
|
|
1048
746
|
export declare const ExecutionAbortedEventDetailsFilterSensitiveLog: (
|
|
1049
747
|
obj: ExecutionAbortedEventDetails
|
|
1050
748
|
) => any;
|
|
1051
|
-
|
|
1052
749
|
export declare const ExecutionFailedEventDetailsFilterSensitiveLog: (
|
|
1053
750
|
obj: ExecutionFailedEventDetails
|
|
1054
751
|
) => any;
|
|
1055
|
-
|
|
1056
752
|
export declare const ExecutionStartedEventDetailsFilterSensitiveLog: (
|
|
1057
753
|
obj: ExecutionStartedEventDetails
|
|
1058
754
|
) => any;
|
|
1059
|
-
|
|
1060
755
|
export declare const ExecutionSucceededEventDetailsFilterSensitiveLog: (
|
|
1061
756
|
obj: ExecutionSucceededEventDetails
|
|
1062
757
|
) => any;
|
|
1063
|
-
|
|
1064
758
|
export declare const ExecutionTimedOutEventDetailsFilterSensitiveLog: (
|
|
1065
759
|
obj: ExecutionTimedOutEventDetails
|
|
1066
760
|
) => any;
|
|
1067
|
-
|
|
1068
761
|
export declare const LambdaFunctionFailedEventDetailsFilterSensitiveLog: (
|
|
1069
762
|
obj: LambdaFunctionFailedEventDetails
|
|
1070
763
|
) => any;
|
|
1071
|
-
|
|
1072
764
|
export declare const LambdaFunctionScheduledEventDetailsFilterSensitiveLog: (
|
|
1073
765
|
obj: LambdaFunctionScheduledEventDetails
|
|
1074
766
|
) => any;
|
|
1075
|
-
|
|
1076
767
|
export declare const LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog: (
|
|
1077
768
|
obj: LambdaFunctionScheduleFailedEventDetails
|
|
1078
769
|
) => any;
|
|
1079
|
-
|
|
1080
770
|
export declare const LambdaFunctionStartFailedEventDetailsFilterSensitiveLog: (
|
|
1081
771
|
obj: LambdaFunctionStartFailedEventDetails
|
|
1082
772
|
) => any;
|
|
1083
|
-
|
|
1084
773
|
export declare const LambdaFunctionSucceededEventDetailsFilterSensitiveLog: (
|
|
1085
774
|
obj: LambdaFunctionSucceededEventDetails
|
|
1086
775
|
) => any;
|
|
1087
|
-
|
|
1088
776
|
export declare const LambdaFunctionTimedOutEventDetailsFilterSensitiveLog: (
|
|
1089
777
|
obj: LambdaFunctionTimedOutEventDetails
|
|
1090
778
|
) => any;
|
|
1091
|
-
|
|
1092
779
|
export declare const MapIterationEventDetailsFilterSensitiveLog: (
|
|
1093
780
|
obj: MapIterationEventDetails
|
|
1094
781
|
) => any;
|
|
1095
|
-
|
|
1096
782
|
export declare const MapStateStartedEventDetailsFilterSensitiveLog: (
|
|
1097
783
|
obj: MapStateStartedEventDetails
|
|
1098
784
|
) => any;
|
|
1099
|
-
|
|
1100
785
|
export declare const StateEnteredEventDetailsFilterSensitiveLog: (
|
|
1101
786
|
obj: StateEnteredEventDetails
|
|
1102
787
|
) => any;
|
|
1103
|
-
|
|
1104
788
|
export declare const StateExitedEventDetailsFilterSensitiveLog: (
|
|
1105
789
|
obj: StateExitedEventDetails
|
|
1106
790
|
) => any;
|
|
1107
|
-
|
|
1108
791
|
export declare const TaskFailedEventDetailsFilterSensitiveLog: (
|
|
1109
792
|
obj: TaskFailedEventDetails
|
|
1110
793
|
) => any;
|
|
1111
|
-
|
|
1112
794
|
export declare const TaskScheduledEventDetailsFilterSensitiveLog: (
|
|
1113
795
|
obj: TaskScheduledEventDetails
|
|
1114
796
|
) => any;
|
|
1115
|
-
|
|
1116
797
|
export declare const TaskStartedEventDetailsFilterSensitiveLog: (
|
|
1117
798
|
obj: TaskStartedEventDetails
|
|
1118
799
|
) => any;
|
|
1119
|
-
|
|
1120
800
|
export declare const TaskStartFailedEventDetailsFilterSensitiveLog: (
|
|
1121
801
|
obj: TaskStartFailedEventDetails
|
|
1122
802
|
) => any;
|
|
1123
|
-
|
|
1124
803
|
export declare const TaskSubmitFailedEventDetailsFilterSensitiveLog: (
|
|
1125
804
|
obj: TaskSubmitFailedEventDetails
|
|
1126
805
|
) => any;
|
|
1127
|
-
|
|
1128
806
|
export declare const TaskSubmittedEventDetailsFilterSensitiveLog: (
|
|
1129
807
|
obj: TaskSubmittedEventDetails
|
|
1130
808
|
) => any;
|
|
1131
|
-
|
|
1132
809
|
export declare const TaskSucceededEventDetailsFilterSensitiveLog: (
|
|
1133
810
|
obj: TaskSucceededEventDetails
|
|
1134
811
|
) => any;
|
|
1135
|
-
|
|
1136
812
|
export declare const TaskTimedOutEventDetailsFilterSensitiveLog: (
|
|
1137
813
|
obj: TaskTimedOutEventDetails
|
|
1138
814
|
) => any;
|
|
1139
|
-
|
|
1140
815
|
export declare const HistoryEventFilterSensitiveLog: (obj: HistoryEvent) => any;
|
|
1141
|
-
|
|
1142
816
|
export declare const GetExecutionHistoryOutputFilterSensitiveLog: (
|
|
1143
817
|
obj: GetExecutionHistoryOutput
|
|
1144
818
|
) => any;
|
|
1145
|
-
|
|
1146
819
|
export declare const ListActivitiesInputFilterSensitiveLog: (
|
|
1147
820
|
obj: ListActivitiesInput
|
|
1148
821
|
) => any;
|
|
1149
|
-
|
|
1150
822
|
export declare const ListActivitiesOutputFilterSensitiveLog: (
|
|
1151
823
|
obj: ListActivitiesOutput
|
|
1152
824
|
) => any;
|
|
1153
|
-
|
|
1154
825
|
export declare const ListExecutionsInputFilterSensitiveLog: (
|
|
1155
826
|
obj: ListExecutionsInput
|
|
1156
827
|
) => any;
|
|
1157
|
-
|
|
1158
828
|
export declare const ExecutionListItemFilterSensitiveLog: (
|
|
1159
829
|
obj: ExecutionListItem
|
|
1160
830
|
) => any;
|
|
1161
|
-
|
|
1162
831
|
export declare const ListExecutionsOutputFilterSensitiveLog: (
|
|
1163
832
|
obj: ListExecutionsOutput
|
|
1164
833
|
) => any;
|
|
1165
|
-
|
|
1166
834
|
export declare const ListStateMachinesInputFilterSensitiveLog: (
|
|
1167
835
|
obj: ListStateMachinesInput
|
|
1168
836
|
) => any;
|
|
1169
|
-
|
|
1170
837
|
export declare const StateMachineListItemFilterSensitiveLog: (
|
|
1171
838
|
obj: StateMachineListItem
|
|
1172
839
|
) => any;
|
|
1173
|
-
|
|
1174
840
|
export declare const ListStateMachinesOutputFilterSensitiveLog: (
|
|
1175
841
|
obj: ListStateMachinesOutput
|
|
1176
842
|
) => any;
|
|
1177
|
-
|
|
1178
843
|
export declare const ListTagsForResourceInputFilterSensitiveLog: (
|
|
1179
844
|
obj: ListTagsForResourceInput
|
|
1180
845
|
) => any;
|
|
1181
|
-
|
|
1182
846
|
export declare const ListTagsForResourceOutputFilterSensitiveLog: (
|
|
1183
847
|
obj: ListTagsForResourceOutput
|
|
1184
848
|
) => any;
|
|
1185
|
-
|
|
1186
849
|
export declare const SendTaskFailureInputFilterSensitiveLog: (
|
|
1187
850
|
obj: SendTaskFailureInput
|
|
1188
851
|
) => any;
|
|
1189
|
-
|
|
1190
852
|
export declare const SendTaskFailureOutputFilterSensitiveLog: (
|
|
1191
853
|
obj: SendTaskFailureOutput
|
|
1192
854
|
) => any;
|
|
1193
|
-
|
|
1194
855
|
export declare const SendTaskHeartbeatInputFilterSensitiveLog: (
|
|
1195
856
|
obj: SendTaskHeartbeatInput
|
|
1196
857
|
) => any;
|
|
1197
|
-
|
|
1198
858
|
export declare const SendTaskHeartbeatOutputFilterSensitiveLog: (
|
|
1199
859
|
obj: SendTaskHeartbeatOutput
|
|
1200
860
|
) => any;
|
|
1201
|
-
|
|
1202
861
|
export declare const SendTaskSuccessInputFilterSensitiveLog: (
|
|
1203
862
|
obj: SendTaskSuccessInput
|
|
1204
863
|
) => any;
|
|
1205
|
-
|
|
1206
864
|
export declare const SendTaskSuccessOutputFilterSensitiveLog: (
|
|
1207
865
|
obj: SendTaskSuccessOutput
|
|
1208
866
|
) => any;
|
|
1209
|
-
|
|
1210
867
|
export declare const StartExecutionInputFilterSensitiveLog: (
|
|
1211
868
|
obj: StartExecutionInput
|
|
1212
869
|
) => any;
|
|
1213
|
-
|
|
1214
870
|
export declare const StartExecutionOutputFilterSensitiveLog: (
|
|
1215
871
|
obj: StartExecutionOutput
|
|
1216
872
|
) => any;
|
|
1217
|
-
|
|
1218
873
|
export declare const StartSyncExecutionInputFilterSensitiveLog: (
|
|
1219
874
|
obj: StartSyncExecutionInput
|
|
1220
875
|
) => any;
|
|
1221
|
-
|
|
1222
876
|
export declare const BillingDetailsFilterSensitiveLog: (
|
|
1223
877
|
obj: BillingDetails
|
|
1224
878
|
) => any;
|
|
1225
|
-
|
|
1226
879
|
export declare const StartSyncExecutionOutputFilterSensitiveLog: (
|
|
1227
880
|
obj: StartSyncExecutionOutput
|
|
1228
881
|
) => any;
|
|
1229
|
-
|
|
1230
882
|
export declare const StopExecutionInputFilterSensitiveLog: (
|
|
1231
883
|
obj: StopExecutionInput
|
|
1232
884
|
) => any;
|
|
1233
|
-
|
|
1234
885
|
export declare const StopExecutionOutputFilterSensitiveLog: (
|
|
1235
886
|
obj: StopExecutionOutput
|
|
1236
887
|
) => any;
|
|
1237
|
-
|
|
1238
888
|
export declare const TagResourceInputFilterSensitiveLog: (
|
|
1239
889
|
obj: TagResourceInput
|
|
1240
890
|
) => any;
|
|
1241
|
-
|
|
1242
891
|
export declare const TagResourceOutputFilterSensitiveLog: (
|
|
1243
892
|
obj: TagResourceOutput
|
|
1244
893
|
) => any;
|
|
1245
|
-
|
|
1246
894
|
export declare const UntagResourceInputFilterSensitiveLog: (
|
|
1247
895
|
obj: UntagResourceInput
|
|
1248
896
|
) => any;
|
|
1249
|
-
|
|
1250
897
|
export declare const UntagResourceOutputFilterSensitiveLog: (
|
|
1251
898
|
obj: UntagResourceOutput
|
|
1252
899
|
) => any;
|
|
1253
|
-
|
|
1254
900
|
export declare const UpdateStateMachineInputFilterSensitiveLog: (
|
|
1255
901
|
obj: UpdateStateMachineInput
|
|
1256
902
|
) => any;
|
|
1257
|
-
|
|
1258
903
|
export declare const UpdateStateMachineOutputFilterSensitiveLog: (
|
|
1259
904
|
obj: UpdateStateMachineOutput
|
|
1260
905
|
) => any;
|