@aws-sdk/client-sfn 3.131.0 → 3.137.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 +11 -0
- package/dist-cjs/commands/CreateActivityCommand.js +2 -2
- package/dist-cjs/commands/CreateStateMachineCommand.js +2 -2
- package/dist-cjs/commands/DeleteActivityCommand.js +2 -2
- package/dist-cjs/commands/DeleteStateMachineCommand.js +2 -2
- package/dist-cjs/commands/DescribeActivityCommand.js +2 -2
- package/dist-cjs/commands/DescribeExecutionCommand.js +2 -2
- package/dist-cjs/commands/DescribeStateMachineCommand.js +2 -2
- package/dist-cjs/commands/DescribeStateMachineForExecutionCommand.js +2 -2
- package/dist-cjs/commands/GetActivityTaskCommand.js +2 -2
- package/dist-cjs/commands/GetExecutionHistoryCommand.js +2 -2
- package/dist-cjs/commands/ListActivitiesCommand.js +2 -2
- package/dist-cjs/commands/ListExecutionsCommand.js +2 -2
- package/dist-cjs/commands/ListStateMachinesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/SendTaskFailureCommand.js +2 -2
- package/dist-cjs/commands/SendTaskHeartbeatCommand.js +2 -2
- package/dist-cjs/commands/SendTaskSuccessCommand.js +2 -2
- package/dist-cjs/commands/StartExecutionCommand.js +2 -2
- package/dist-cjs/commands/StartSyncExecutionCommand.js +2 -2
- package/dist-cjs/commands/StopExecutionCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateStateMachineCommand.js +2 -2
- package/dist-cjs/models/models_0.js +484 -658
- package/dist-es/commands/CreateActivityCommand.js +3 -3
- package/dist-es/commands/CreateStateMachineCommand.js +3 -3
- package/dist-es/commands/DeleteActivityCommand.js +3 -3
- package/dist-es/commands/DeleteStateMachineCommand.js +3 -3
- package/dist-es/commands/DescribeActivityCommand.js +3 -3
- package/dist-es/commands/DescribeExecutionCommand.js +3 -3
- package/dist-es/commands/DescribeStateMachineCommand.js +3 -3
- package/dist-es/commands/DescribeStateMachineForExecutionCommand.js +3 -3
- package/dist-es/commands/GetActivityTaskCommand.js +3 -3
- package/dist-es/commands/GetExecutionHistoryCommand.js +3 -3
- package/dist-es/commands/ListActivitiesCommand.js +3 -3
- package/dist-es/commands/ListExecutionsCommand.js +3 -3
- package/dist-es/commands/ListStateMachinesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/SendTaskFailureCommand.js +3 -3
- package/dist-es/commands/SendTaskHeartbeatCommand.js +3 -3
- package/dist-es/commands/SendTaskSuccessCommand.js +3 -3
- package/dist-es/commands/StartExecutionCommand.js +3 -3
- package/dist-es/commands/StartSyncExecutionCommand.js +3 -3
- package/dist-es/commands/StopExecutionCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateStateMachineCommand.js +3 -3
- package/dist-es/models/models_0.js +137 -398
- package/dist-types/models/models_0.d.ts +348 -522
- package/dist-types/ts3.4/models/models_0.d.ts +174 -348
- package/package.json +6 -6
|
@@ -14,10 +14,6 @@ export interface ActivityFailedEventDetails {
|
|
|
14
14
|
|
|
15
15
|
cause?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace ActivityFailedEventDetails {
|
|
18
|
-
|
|
19
|
-
const filterSensitiveLog: (obj: ActivityFailedEventDetails) => any;
|
|
20
|
-
}
|
|
21
17
|
|
|
22
18
|
export declare class ActivityLimitExceeded extends __BaseException {
|
|
23
19
|
readonly name: "ActivityLimitExceeded";
|
|
@@ -34,19 +30,11 @@ export interface ActivityListItem {
|
|
|
34
30
|
|
|
35
31
|
creationDate: Date | undefined;
|
|
36
32
|
}
|
|
37
|
-
export declare namespace ActivityListItem {
|
|
38
|
-
|
|
39
|
-
const filterSensitiveLog: (obj: ActivityListItem) => any;
|
|
40
|
-
}
|
|
41
33
|
|
|
42
34
|
export interface HistoryEventExecutionDataDetails {
|
|
43
35
|
|
|
44
36
|
truncated?: boolean;
|
|
45
37
|
}
|
|
46
|
-
export declare namespace HistoryEventExecutionDataDetails {
|
|
47
|
-
|
|
48
|
-
const filterSensitiveLog: (obj: HistoryEventExecutionDataDetails) => any;
|
|
49
|
-
}
|
|
50
38
|
|
|
51
39
|
export interface ActivityScheduledEventDetails {
|
|
52
40
|
|
|
@@ -60,10 +48,6 @@ export interface ActivityScheduledEventDetails {
|
|
|
60
48
|
|
|
61
49
|
heartbeatInSeconds?: number;
|
|
62
50
|
}
|
|
63
|
-
export declare namespace ActivityScheduledEventDetails {
|
|
64
|
-
|
|
65
|
-
const filterSensitiveLog: (obj: ActivityScheduledEventDetails) => any;
|
|
66
|
-
}
|
|
67
51
|
|
|
68
52
|
export interface ActivityScheduleFailedEventDetails {
|
|
69
53
|
|
|
@@ -71,19 +55,11 @@ export interface ActivityScheduleFailedEventDetails {
|
|
|
71
55
|
|
|
72
56
|
cause?: string;
|
|
73
57
|
}
|
|
74
|
-
export declare namespace ActivityScheduleFailedEventDetails {
|
|
75
|
-
|
|
76
|
-
const filterSensitiveLog: (obj: ActivityScheduleFailedEventDetails) => any;
|
|
77
|
-
}
|
|
78
58
|
|
|
79
59
|
export interface ActivityStartedEventDetails {
|
|
80
60
|
|
|
81
61
|
workerName?: string;
|
|
82
62
|
}
|
|
83
|
-
export declare namespace ActivityStartedEventDetails {
|
|
84
|
-
|
|
85
|
-
const filterSensitiveLog: (obj: ActivityStartedEventDetails) => any;
|
|
86
|
-
}
|
|
87
63
|
|
|
88
64
|
export interface ActivitySucceededEventDetails {
|
|
89
65
|
|
|
@@ -91,10 +67,6 @@ export interface ActivitySucceededEventDetails {
|
|
|
91
67
|
|
|
92
68
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
93
69
|
}
|
|
94
|
-
export declare namespace ActivitySucceededEventDetails {
|
|
95
|
-
|
|
96
|
-
const filterSensitiveLog: (obj: ActivitySucceededEventDetails) => any;
|
|
97
|
-
}
|
|
98
70
|
|
|
99
71
|
export interface ActivityTimedOutEventDetails {
|
|
100
72
|
|
|
@@ -102,10 +74,6 @@ export interface ActivityTimedOutEventDetails {
|
|
|
102
74
|
|
|
103
75
|
cause?: string;
|
|
104
76
|
}
|
|
105
|
-
export declare namespace ActivityTimedOutEventDetails {
|
|
106
|
-
|
|
107
|
-
const filterSensitiveLog: (obj: ActivityTimedOutEventDetails) => any;
|
|
108
|
-
}
|
|
109
77
|
|
|
110
78
|
export declare class ActivityWorkerLimitExceeded extends __BaseException {
|
|
111
79
|
readonly name: "ActivityWorkerLimitExceeded";
|
|
@@ -120,30 +88,18 @@ export interface Tag {
|
|
|
120
88
|
|
|
121
89
|
value?: string;
|
|
122
90
|
}
|
|
123
|
-
export declare namespace Tag {
|
|
124
|
-
|
|
125
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
126
|
-
}
|
|
127
91
|
export interface CreateActivityInput {
|
|
128
92
|
|
|
129
93
|
name: string | undefined;
|
|
130
94
|
|
|
131
95
|
tags?: Tag[];
|
|
132
96
|
}
|
|
133
|
-
export declare namespace CreateActivityInput {
|
|
134
|
-
|
|
135
|
-
const filterSensitiveLog: (obj: CreateActivityInput) => any;
|
|
136
|
-
}
|
|
137
97
|
export interface CreateActivityOutput {
|
|
138
98
|
|
|
139
99
|
activityArn: string | undefined;
|
|
140
100
|
|
|
141
101
|
creationDate: Date | undefined;
|
|
142
102
|
}
|
|
143
|
-
export declare namespace CreateActivityOutput {
|
|
144
|
-
|
|
145
|
-
const filterSensitiveLog: (obj: CreateActivityOutput) => any;
|
|
146
|
-
}
|
|
147
103
|
|
|
148
104
|
export declare class InvalidName extends __BaseException {
|
|
149
105
|
readonly name: "InvalidName";
|
|
@@ -164,19 +120,11 @@ export interface CloudWatchLogsLogGroup {
|
|
|
164
120
|
|
|
165
121
|
logGroupArn?: string;
|
|
166
122
|
}
|
|
167
|
-
export declare namespace CloudWatchLogsLogGroup {
|
|
168
|
-
|
|
169
|
-
const filterSensitiveLog: (obj: CloudWatchLogsLogGroup) => any;
|
|
170
|
-
}
|
|
171
123
|
|
|
172
124
|
export interface LogDestination {
|
|
173
125
|
|
|
174
126
|
cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
|
|
175
127
|
}
|
|
176
|
-
export declare namespace LogDestination {
|
|
177
|
-
|
|
178
|
-
const filterSensitiveLog: (obj: LogDestination) => any;
|
|
179
|
-
}
|
|
180
128
|
export declare type LogLevel = "ALL" | "ERROR" | "FATAL" | "OFF";
|
|
181
129
|
|
|
182
130
|
export interface LoggingConfiguration {
|
|
@@ -187,19 +135,11 @@ export interface LoggingConfiguration {
|
|
|
187
135
|
|
|
188
136
|
destinations?: LogDestination[];
|
|
189
137
|
}
|
|
190
|
-
export declare namespace LoggingConfiguration {
|
|
191
|
-
|
|
192
|
-
const filterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
193
|
-
}
|
|
194
138
|
|
|
195
139
|
export interface TracingConfiguration {
|
|
196
140
|
|
|
197
141
|
enabled?: boolean;
|
|
198
142
|
}
|
|
199
|
-
export declare namespace TracingConfiguration {
|
|
200
|
-
|
|
201
|
-
const filterSensitiveLog: (obj: TracingConfiguration) => any;
|
|
202
|
-
}
|
|
203
143
|
export declare type StateMachineType = "EXPRESS" | "STANDARD";
|
|
204
144
|
export interface CreateStateMachineInput {
|
|
205
145
|
|
|
@@ -217,20 +157,12 @@ export interface CreateStateMachineInput {
|
|
|
217
157
|
|
|
218
158
|
tracingConfiguration?: TracingConfiguration;
|
|
219
159
|
}
|
|
220
|
-
export declare namespace CreateStateMachineInput {
|
|
221
|
-
|
|
222
|
-
const filterSensitiveLog: (obj: CreateStateMachineInput) => any;
|
|
223
|
-
}
|
|
224
160
|
export interface CreateStateMachineOutput {
|
|
225
161
|
|
|
226
162
|
stateMachineArn: string | undefined;
|
|
227
163
|
|
|
228
164
|
creationDate: Date | undefined;
|
|
229
165
|
}
|
|
230
|
-
export declare namespace CreateStateMachineOutput {
|
|
231
|
-
|
|
232
|
-
const filterSensitiveLog: (obj: CreateStateMachineOutput) => any;
|
|
233
|
-
}
|
|
234
166
|
|
|
235
167
|
export declare class InvalidArn extends __BaseException {
|
|
236
168
|
readonly name: "InvalidArn";
|
|
@@ -291,38 +223,18 @@ export interface DeleteActivityInput {
|
|
|
291
223
|
|
|
292
224
|
activityArn: string | undefined;
|
|
293
225
|
}
|
|
294
|
-
export declare namespace DeleteActivityInput {
|
|
295
|
-
|
|
296
|
-
const filterSensitiveLog: (obj: DeleteActivityInput) => any;
|
|
297
|
-
}
|
|
298
226
|
export interface DeleteActivityOutput {
|
|
299
227
|
}
|
|
300
|
-
export declare namespace DeleteActivityOutput {
|
|
301
|
-
|
|
302
|
-
const filterSensitiveLog: (obj: DeleteActivityOutput) => any;
|
|
303
|
-
}
|
|
304
228
|
export interface DeleteStateMachineInput {
|
|
305
229
|
|
|
306
230
|
stateMachineArn: string | undefined;
|
|
307
231
|
}
|
|
308
|
-
export declare namespace DeleteStateMachineInput {
|
|
309
|
-
|
|
310
|
-
const filterSensitiveLog: (obj: DeleteStateMachineInput) => any;
|
|
311
|
-
}
|
|
312
232
|
export interface DeleteStateMachineOutput {
|
|
313
233
|
}
|
|
314
|
-
export declare namespace DeleteStateMachineOutput {
|
|
315
|
-
|
|
316
|
-
const filterSensitiveLog: (obj: DeleteStateMachineOutput) => any;
|
|
317
|
-
}
|
|
318
234
|
export interface DescribeActivityInput {
|
|
319
235
|
|
|
320
236
|
activityArn: string | undefined;
|
|
321
237
|
}
|
|
322
|
-
export declare namespace DescribeActivityInput {
|
|
323
|
-
|
|
324
|
-
const filterSensitiveLog: (obj: DescribeActivityInput) => any;
|
|
325
|
-
}
|
|
326
238
|
export interface DescribeActivityOutput {
|
|
327
239
|
|
|
328
240
|
activityArn: string | undefined;
|
|
@@ -331,27 +243,15 @@ export interface DescribeActivityOutput {
|
|
|
331
243
|
|
|
332
244
|
creationDate: Date | undefined;
|
|
333
245
|
}
|
|
334
|
-
export declare namespace DescribeActivityOutput {
|
|
335
|
-
|
|
336
|
-
const filterSensitiveLog: (obj: DescribeActivityOutput) => any;
|
|
337
|
-
}
|
|
338
246
|
export interface DescribeExecutionInput {
|
|
339
247
|
|
|
340
248
|
executionArn: string | undefined;
|
|
341
249
|
}
|
|
342
|
-
export declare namespace DescribeExecutionInput {
|
|
343
|
-
|
|
344
|
-
const filterSensitiveLog: (obj: DescribeExecutionInput) => any;
|
|
345
|
-
}
|
|
346
250
|
|
|
347
251
|
export interface CloudWatchEventsExecutionDataDetails {
|
|
348
252
|
|
|
349
253
|
included?: boolean;
|
|
350
254
|
}
|
|
351
|
-
export declare namespace CloudWatchEventsExecutionDataDetails {
|
|
352
|
-
|
|
353
|
-
const filterSensitiveLog: (obj: CloudWatchEventsExecutionDataDetails) => any;
|
|
354
|
-
}
|
|
355
255
|
export declare type ExecutionStatus = "ABORTED" | "FAILED" | "RUNNING" | "SUCCEEDED" | "TIMED_OUT";
|
|
356
256
|
export interface DescribeExecutionOutput {
|
|
357
257
|
|
|
@@ -377,10 +277,6 @@ export interface DescribeExecutionOutput {
|
|
|
377
277
|
|
|
378
278
|
traceHeader?: string;
|
|
379
279
|
}
|
|
380
|
-
export declare namespace DescribeExecutionOutput {
|
|
381
|
-
|
|
382
|
-
const filterSensitiveLog: (obj: DescribeExecutionOutput) => any;
|
|
383
|
-
}
|
|
384
280
|
|
|
385
281
|
export declare class ExecutionDoesNotExist extends __BaseException {
|
|
386
282
|
readonly name: "ExecutionDoesNotExist";
|
|
@@ -392,10 +288,6 @@ export interface DescribeStateMachineInput {
|
|
|
392
288
|
|
|
393
289
|
stateMachineArn: string | undefined;
|
|
394
290
|
}
|
|
395
|
-
export declare namespace DescribeStateMachineInput {
|
|
396
|
-
|
|
397
|
-
const filterSensitiveLog: (obj: DescribeStateMachineInput) => any;
|
|
398
|
-
}
|
|
399
291
|
export declare type StateMachineStatus = "ACTIVE" | "DELETING";
|
|
400
292
|
export interface DescribeStateMachineOutput {
|
|
401
293
|
|
|
@@ -417,10 +309,6 @@ export interface DescribeStateMachineOutput {
|
|
|
417
309
|
|
|
418
310
|
tracingConfiguration?: TracingConfiguration;
|
|
419
311
|
}
|
|
420
|
-
export declare namespace DescribeStateMachineOutput {
|
|
421
|
-
|
|
422
|
-
const filterSensitiveLog: (obj: DescribeStateMachineOutput) => any;
|
|
423
|
-
}
|
|
424
312
|
|
|
425
313
|
export declare class StateMachineDoesNotExist extends __BaseException {
|
|
426
314
|
readonly name: "StateMachineDoesNotExist";
|
|
@@ -432,10 +320,6 @@ export interface DescribeStateMachineForExecutionInput {
|
|
|
432
320
|
|
|
433
321
|
executionArn: string | undefined;
|
|
434
322
|
}
|
|
435
|
-
export declare namespace DescribeStateMachineForExecutionInput {
|
|
436
|
-
|
|
437
|
-
const filterSensitiveLog: (obj: DescribeStateMachineForExecutionInput) => any;
|
|
438
|
-
}
|
|
439
323
|
export interface DescribeStateMachineForExecutionOutput {
|
|
440
324
|
|
|
441
325
|
stateMachineArn: string | undefined;
|
|
@@ -452,30 +336,18 @@ export interface DescribeStateMachineForExecutionOutput {
|
|
|
452
336
|
|
|
453
337
|
tracingConfiguration?: TracingConfiguration;
|
|
454
338
|
}
|
|
455
|
-
export declare namespace DescribeStateMachineForExecutionOutput {
|
|
456
|
-
|
|
457
|
-
const filterSensitiveLog: (obj: DescribeStateMachineForExecutionOutput) => any;
|
|
458
|
-
}
|
|
459
339
|
export interface GetActivityTaskInput {
|
|
460
340
|
|
|
461
341
|
activityArn: string | undefined;
|
|
462
342
|
|
|
463
343
|
workerName?: string;
|
|
464
344
|
}
|
|
465
|
-
export declare namespace GetActivityTaskInput {
|
|
466
|
-
|
|
467
|
-
const filterSensitiveLog: (obj: GetActivityTaskInput) => any;
|
|
468
|
-
}
|
|
469
345
|
export interface GetActivityTaskOutput {
|
|
470
346
|
|
|
471
347
|
taskToken?: string;
|
|
472
348
|
|
|
473
349
|
input?: string;
|
|
474
350
|
}
|
|
475
|
-
export declare namespace GetActivityTaskOutput {
|
|
476
|
-
|
|
477
|
-
const filterSensitiveLog: (obj: GetActivityTaskOutput) => any;
|
|
478
|
-
}
|
|
479
351
|
export interface GetExecutionHistoryInput {
|
|
480
352
|
|
|
481
353
|
executionArn: string | undefined;
|
|
@@ -488,10 +360,6 @@ export interface GetExecutionHistoryInput {
|
|
|
488
360
|
|
|
489
361
|
includeExecutionData?: boolean;
|
|
490
362
|
}
|
|
491
|
-
export declare namespace GetExecutionHistoryInput {
|
|
492
|
-
|
|
493
|
-
const filterSensitiveLog: (obj: GetExecutionHistoryInput) => any;
|
|
494
|
-
}
|
|
495
363
|
|
|
496
364
|
export interface ExecutionAbortedEventDetails {
|
|
497
365
|
|
|
@@ -499,10 +367,6 @@ export interface ExecutionAbortedEventDetails {
|
|
|
499
367
|
|
|
500
368
|
cause?: string;
|
|
501
369
|
}
|
|
502
|
-
export declare namespace ExecutionAbortedEventDetails {
|
|
503
|
-
|
|
504
|
-
const filterSensitiveLog: (obj: ExecutionAbortedEventDetails) => any;
|
|
505
|
-
}
|
|
506
370
|
|
|
507
371
|
export interface ExecutionFailedEventDetails {
|
|
508
372
|
|
|
@@ -510,10 +374,6 @@ export interface ExecutionFailedEventDetails {
|
|
|
510
374
|
|
|
511
375
|
cause?: string;
|
|
512
376
|
}
|
|
513
|
-
export declare namespace ExecutionFailedEventDetails {
|
|
514
|
-
|
|
515
|
-
const filterSensitiveLog: (obj: ExecutionFailedEventDetails) => any;
|
|
516
|
-
}
|
|
517
377
|
|
|
518
378
|
export interface ExecutionStartedEventDetails {
|
|
519
379
|
|
|
@@ -523,10 +383,6 @@ export interface ExecutionStartedEventDetails {
|
|
|
523
383
|
|
|
524
384
|
roleArn?: string;
|
|
525
385
|
}
|
|
526
|
-
export declare namespace ExecutionStartedEventDetails {
|
|
527
|
-
|
|
528
|
-
const filterSensitiveLog: (obj: ExecutionStartedEventDetails) => any;
|
|
529
|
-
}
|
|
530
386
|
|
|
531
387
|
export interface ExecutionSucceededEventDetails {
|
|
532
388
|
|
|
@@ -534,10 +390,6 @@ export interface ExecutionSucceededEventDetails {
|
|
|
534
390
|
|
|
535
391
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
536
392
|
}
|
|
537
|
-
export declare namespace ExecutionSucceededEventDetails {
|
|
538
|
-
|
|
539
|
-
const filterSensitiveLog: (obj: ExecutionSucceededEventDetails) => any;
|
|
540
|
-
}
|
|
541
393
|
|
|
542
394
|
export interface ExecutionTimedOutEventDetails {
|
|
543
395
|
|
|
@@ -545,10 +397,6 @@ export interface ExecutionTimedOutEventDetails {
|
|
|
545
397
|
|
|
546
398
|
cause?: string;
|
|
547
399
|
}
|
|
548
|
-
export declare namespace ExecutionTimedOutEventDetails {
|
|
549
|
-
|
|
550
|
-
const filterSensitiveLog: (obj: ExecutionTimedOutEventDetails) => any;
|
|
551
|
-
}
|
|
552
400
|
|
|
553
401
|
export interface LambdaFunctionFailedEventDetails {
|
|
554
402
|
|
|
@@ -556,10 +404,6 @@ export interface LambdaFunctionFailedEventDetails {
|
|
|
556
404
|
|
|
557
405
|
cause?: string;
|
|
558
406
|
}
|
|
559
|
-
export declare namespace LambdaFunctionFailedEventDetails {
|
|
560
|
-
|
|
561
|
-
const filterSensitiveLog: (obj: LambdaFunctionFailedEventDetails) => any;
|
|
562
|
-
}
|
|
563
407
|
|
|
564
408
|
export interface LambdaFunctionScheduledEventDetails {
|
|
565
409
|
|
|
@@ -571,10 +415,6 @@ export interface LambdaFunctionScheduledEventDetails {
|
|
|
571
415
|
|
|
572
416
|
timeoutInSeconds?: number;
|
|
573
417
|
}
|
|
574
|
-
export declare namespace LambdaFunctionScheduledEventDetails {
|
|
575
|
-
|
|
576
|
-
const filterSensitiveLog: (obj: LambdaFunctionScheduledEventDetails) => any;
|
|
577
|
-
}
|
|
578
418
|
|
|
579
419
|
export interface LambdaFunctionScheduleFailedEventDetails {
|
|
580
420
|
|
|
@@ -582,10 +422,6 @@ export interface LambdaFunctionScheduleFailedEventDetails {
|
|
|
582
422
|
|
|
583
423
|
cause?: string;
|
|
584
424
|
}
|
|
585
|
-
export declare namespace LambdaFunctionScheduleFailedEventDetails {
|
|
586
|
-
|
|
587
|
-
const filterSensitiveLog: (obj: LambdaFunctionScheduleFailedEventDetails) => any;
|
|
588
|
-
}
|
|
589
425
|
|
|
590
426
|
export interface LambdaFunctionStartFailedEventDetails {
|
|
591
427
|
|
|
@@ -593,10 +429,6 @@ export interface LambdaFunctionStartFailedEventDetails {
|
|
|
593
429
|
|
|
594
430
|
cause?: string;
|
|
595
431
|
}
|
|
596
|
-
export declare namespace LambdaFunctionStartFailedEventDetails {
|
|
597
|
-
|
|
598
|
-
const filterSensitiveLog: (obj: LambdaFunctionStartFailedEventDetails) => any;
|
|
599
|
-
}
|
|
600
432
|
|
|
601
433
|
export interface LambdaFunctionSucceededEventDetails {
|
|
602
434
|
|
|
@@ -604,10 +436,6 @@ export interface LambdaFunctionSucceededEventDetails {
|
|
|
604
436
|
|
|
605
437
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
606
438
|
}
|
|
607
|
-
export declare namespace LambdaFunctionSucceededEventDetails {
|
|
608
|
-
|
|
609
|
-
const filterSensitiveLog: (obj: LambdaFunctionSucceededEventDetails) => any;
|
|
610
|
-
}
|
|
611
439
|
|
|
612
440
|
export interface LambdaFunctionTimedOutEventDetails {
|
|
613
441
|
|
|
@@ -615,10 +443,6 @@ export interface LambdaFunctionTimedOutEventDetails {
|
|
|
615
443
|
|
|
616
444
|
cause?: string;
|
|
617
445
|
}
|
|
618
|
-
export declare namespace LambdaFunctionTimedOutEventDetails {
|
|
619
|
-
|
|
620
|
-
const filterSensitiveLog: (obj: LambdaFunctionTimedOutEventDetails) => any;
|
|
621
|
-
}
|
|
622
446
|
|
|
623
447
|
export interface MapIterationEventDetails {
|
|
624
448
|
|
|
@@ -626,19 +450,11 @@ export interface MapIterationEventDetails {
|
|
|
626
450
|
|
|
627
451
|
index?: number;
|
|
628
452
|
}
|
|
629
|
-
export declare namespace MapIterationEventDetails {
|
|
630
|
-
|
|
631
|
-
const filterSensitiveLog: (obj: MapIterationEventDetails) => any;
|
|
632
|
-
}
|
|
633
453
|
|
|
634
454
|
export interface MapStateStartedEventDetails {
|
|
635
455
|
|
|
636
456
|
length?: number;
|
|
637
457
|
}
|
|
638
|
-
export declare namespace MapStateStartedEventDetails {
|
|
639
|
-
|
|
640
|
-
const filterSensitiveLog: (obj: MapStateStartedEventDetails) => any;
|
|
641
|
-
}
|
|
642
458
|
|
|
643
459
|
export interface StateEnteredEventDetails {
|
|
644
460
|
|
|
@@ -648,10 +464,6 @@ export interface StateEnteredEventDetails {
|
|
|
648
464
|
|
|
649
465
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
650
466
|
}
|
|
651
|
-
export declare namespace StateEnteredEventDetails {
|
|
652
|
-
|
|
653
|
-
const filterSensitiveLog: (obj: StateEnteredEventDetails) => any;
|
|
654
|
-
}
|
|
655
467
|
|
|
656
468
|
export interface StateExitedEventDetails {
|
|
657
469
|
|
|
@@ -661,10 +473,6 @@ export interface StateExitedEventDetails {
|
|
|
661
473
|
|
|
662
474
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
663
475
|
}
|
|
664
|
-
export declare namespace StateExitedEventDetails {
|
|
665
|
-
|
|
666
|
-
const filterSensitiveLog: (obj: StateExitedEventDetails) => any;
|
|
667
|
-
}
|
|
668
476
|
|
|
669
477
|
export interface TaskFailedEventDetails {
|
|
670
478
|
|
|
@@ -676,10 +484,6 @@ export interface TaskFailedEventDetails {
|
|
|
676
484
|
|
|
677
485
|
cause?: string;
|
|
678
486
|
}
|
|
679
|
-
export declare namespace TaskFailedEventDetails {
|
|
680
|
-
|
|
681
|
-
const filterSensitiveLog: (obj: TaskFailedEventDetails) => any;
|
|
682
|
-
}
|
|
683
487
|
|
|
684
488
|
export interface TaskScheduledEventDetails {
|
|
685
489
|
|
|
@@ -695,10 +499,6 @@ export interface TaskScheduledEventDetails {
|
|
|
695
499
|
|
|
696
500
|
heartbeatInSeconds?: number;
|
|
697
501
|
}
|
|
698
|
-
export declare namespace TaskScheduledEventDetails {
|
|
699
|
-
|
|
700
|
-
const filterSensitiveLog: (obj: TaskScheduledEventDetails) => any;
|
|
701
|
-
}
|
|
702
502
|
|
|
703
503
|
export interface TaskStartedEventDetails {
|
|
704
504
|
|
|
@@ -706,10 +506,6 @@ export interface TaskStartedEventDetails {
|
|
|
706
506
|
|
|
707
507
|
resource: string | undefined;
|
|
708
508
|
}
|
|
709
|
-
export declare namespace TaskStartedEventDetails {
|
|
710
|
-
|
|
711
|
-
const filterSensitiveLog: (obj: TaskStartedEventDetails) => any;
|
|
712
|
-
}
|
|
713
509
|
|
|
714
510
|
export interface TaskStartFailedEventDetails {
|
|
715
511
|
|
|
@@ -721,10 +517,6 @@ export interface TaskStartFailedEventDetails {
|
|
|
721
517
|
|
|
722
518
|
cause?: string;
|
|
723
519
|
}
|
|
724
|
-
export declare namespace TaskStartFailedEventDetails {
|
|
725
|
-
|
|
726
|
-
const filterSensitiveLog: (obj: TaskStartFailedEventDetails) => any;
|
|
727
|
-
}
|
|
728
520
|
|
|
729
521
|
export interface TaskSubmitFailedEventDetails {
|
|
730
522
|
|
|
@@ -736,10 +528,6 @@ export interface TaskSubmitFailedEventDetails {
|
|
|
736
528
|
|
|
737
529
|
cause?: string;
|
|
738
530
|
}
|
|
739
|
-
export declare namespace TaskSubmitFailedEventDetails {
|
|
740
|
-
|
|
741
|
-
const filterSensitiveLog: (obj: TaskSubmitFailedEventDetails) => any;
|
|
742
|
-
}
|
|
743
531
|
|
|
744
532
|
export interface TaskSubmittedEventDetails {
|
|
745
533
|
|
|
@@ -751,10 +539,6 @@ export interface TaskSubmittedEventDetails {
|
|
|
751
539
|
|
|
752
540
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
753
541
|
}
|
|
754
|
-
export declare namespace TaskSubmittedEventDetails {
|
|
755
|
-
|
|
756
|
-
const filterSensitiveLog: (obj: TaskSubmittedEventDetails) => any;
|
|
757
|
-
}
|
|
758
542
|
|
|
759
543
|
export interface TaskSucceededEventDetails {
|
|
760
544
|
|
|
@@ -766,10 +550,6 @@ export interface TaskSucceededEventDetails {
|
|
|
766
550
|
|
|
767
551
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
768
552
|
}
|
|
769
|
-
export declare namespace TaskSucceededEventDetails {
|
|
770
|
-
|
|
771
|
-
const filterSensitiveLog: (obj: TaskSucceededEventDetails) => any;
|
|
772
|
-
}
|
|
773
553
|
|
|
774
554
|
export interface TaskTimedOutEventDetails {
|
|
775
555
|
|
|
@@ -781,10 +561,6 @@ export interface TaskTimedOutEventDetails {
|
|
|
781
561
|
|
|
782
562
|
cause?: string;
|
|
783
563
|
}
|
|
784
|
-
export declare namespace TaskTimedOutEventDetails {
|
|
785
|
-
|
|
786
|
-
const filterSensitiveLog: (obj: TaskTimedOutEventDetails) => any;
|
|
787
|
-
}
|
|
788
564
|
export declare type HistoryEventType = "ActivityFailed" | "ActivityScheduleFailed" | "ActivityScheduled" | "ActivityStarted" | "ActivitySucceeded" | "ActivityTimedOut" | "ChoiceStateEntered" | "ChoiceStateExited" | "ExecutionAborted" | "ExecutionFailed" | "ExecutionStarted" | "ExecutionSucceeded" | "ExecutionTimedOut" | "FailStateEntered" | "LambdaFunctionFailed" | "LambdaFunctionScheduleFailed" | "LambdaFunctionScheduled" | "LambdaFunctionStartFailed" | "LambdaFunctionStarted" | "LambdaFunctionSucceeded" | "LambdaFunctionTimedOut" | "MapIterationAborted" | "MapIterationFailed" | "MapIterationStarted" | "MapIterationSucceeded" | "MapStateAborted" | "MapStateEntered" | "MapStateExited" | "MapStateFailed" | "MapStateStarted" | "MapStateSucceeded" | "ParallelStateAborted" | "ParallelStateEntered" | "ParallelStateExited" | "ParallelStateFailed" | "ParallelStateStarted" | "ParallelStateSucceeded" | "PassStateEntered" | "PassStateExited" | "SucceedStateEntered" | "SucceedStateExited" | "TaskFailed" | "TaskScheduled" | "TaskStartFailed" | "TaskStarted" | "TaskStateAborted" | "TaskStateEntered" | "TaskStateExited" | "TaskSubmitFailed" | "TaskSubmitted" | "TaskSucceeded" | "TaskTimedOut" | "WaitStateAborted" | "WaitStateEntered" | "WaitStateExited";
|
|
789
565
|
|
|
790
566
|
export interface HistoryEvent {
|
|
@@ -861,20 +637,12 @@ export interface HistoryEvent {
|
|
|
861
637
|
|
|
862
638
|
stateExitedEventDetails?: StateExitedEventDetails;
|
|
863
639
|
}
|
|
864
|
-
export declare namespace HistoryEvent {
|
|
865
|
-
|
|
866
|
-
const filterSensitiveLog: (obj: HistoryEvent) => any;
|
|
867
|
-
}
|
|
868
640
|
export interface GetExecutionHistoryOutput {
|
|
869
641
|
|
|
870
642
|
events: HistoryEvent[] | undefined;
|
|
871
643
|
|
|
872
644
|
nextToken?: string;
|
|
873
645
|
}
|
|
874
|
-
export declare namespace GetExecutionHistoryOutput {
|
|
875
|
-
|
|
876
|
-
const filterSensitiveLog: (obj: GetExecutionHistoryOutput) => any;
|
|
877
|
-
}
|
|
878
646
|
|
|
879
647
|
export declare class InvalidToken extends __BaseException {
|
|
880
648
|
readonly name: "InvalidToken";
|
|
@@ -888,20 +656,12 @@ export interface ListActivitiesInput {
|
|
|
888
656
|
|
|
889
657
|
nextToken?: string;
|
|
890
658
|
}
|
|
891
|
-
export declare namespace ListActivitiesInput {
|
|
892
|
-
|
|
893
|
-
const filterSensitiveLog: (obj: ListActivitiesInput) => any;
|
|
894
|
-
}
|
|
895
659
|
export interface ListActivitiesOutput {
|
|
896
660
|
|
|
897
661
|
activities: ActivityListItem[] | undefined;
|
|
898
662
|
|
|
899
663
|
nextToken?: string;
|
|
900
664
|
}
|
|
901
|
-
export declare namespace ListActivitiesOutput {
|
|
902
|
-
|
|
903
|
-
const filterSensitiveLog: (obj: ListActivitiesOutput) => any;
|
|
904
|
-
}
|
|
905
665
|
export interface ListExecutionsInput {
|
|
906
666
|
|
|
907
667
|
stateMachineArn: string | undefined;
|
|
@@ -912,10 +672,6 @@ export interface ListExecutionsInput {
|
|
|
912
672
|
|
|
913
673
|
nextToken?: string;
|
|
914
674
|
}
|
|
915
|
-
export declare namespace ListExecutionsInput {
|
|
916
|
-
|
|
917
|
-
const filterSensitiveLog: (obj: ListExecutionsInput) => any;
|
|
918
|
-
}
|
|
919
675
|
|
|
920
676
|
export interface ExecutionListItem {
|
|
921
677
|
|
|
@@ -931,30 +687,18 @@ export interface ExecutionListItem {
|
|
|
931
687
|
|
|
932
688
|
stopDate?: Date;
|
|
933
689
|
}
|
|
934
|
-
export declare namespace ExecutionListItem {
|
|
935
|
-
|
|
936
|
-
const filterSensitiveLog: (obj: ExecutionListItem) => any;
|
|
937
|
-
}
|
|
938
690
|
export interface ListExecutionsOutput {
|
|
939
691
|
|
|
940
692
|
executions: ExecutionListItem[] | undefined;
|
|
941
693
|
|
|
942
694
|
nextToken?: string;
|
|
943
695
|
}
|
|
944
|
-
export declare namespace ListExecutionsOutput {
|
|
945
|
-
|
|
946
|
-
const filterSensitiveLog: (obj: ListExecutionsOutput) => any;
|
|
947
|
-
}
|
|
948
696
|
export interface ListStateMachinesInput {
|
|
949
697
|
|
|
950
698
|
maxResults?: number;
|
|
951
699
|
|
|
952
700
|
nextToken?: string;
|
|
953
701
|
}
|
|
954
|
-
export declare namespace ListStateMachinesInput {
|
|
955
|
-
|
|
956
|
-
const filterSensitiveLog: (obj: ListStateMachinesInput) => any;
|
|
957
|
-
}
|
|
958
702
|
|
|
959
703
|
export interface StateMachineListItem {
|
|
960
704
|
|
|
@@ -966,35 +710,19 @@ export interface StateMachineListItem {
|
|
|
966
710
|
|
|
967
711
|
creationDate: Date | undefined;
|
|
968
712
|
}
|
|
969
|
-
export declare namespace StateMachineListItem {
|
|
970
|
-
|
|
971
|
-
const filterSensitiveLog: (obj: StateMachineListItem) => any;
|
|
972
|
-
}
|
|
973
713
|
export interface ListStateMachinesOutput {
|
|
974
714
|
stateMachines: StateMachineListItem[] | undefined;
|
|
975
715
|
|
|
976
716
|
nextToken?: string;
|
|
977
717
|
}
|
|
978
|
-
export declare namespace ListStateMachinesOutput {
|
|
979
|
-
|
|
980
|
-
const filterSensitiveLog: (obj: ListStateMachinesOutput) => any;
|
|
981
|
-
}
|
|
982
718
|
export interface ListTagsForResourceInput {
|
|
983
719
|
|
|
984
720
|
resourceArn: string | undefined;
|
|
985
721
|
}
|
|
986
|
-
export declare namespace ListTagsForResourceInput {
|
|
987
|
-
|
|
988
|
-
const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
989
|
-
}
|
|
990
722
|
export interface ListTagsForResourceOutput {
|
|
991
723
|
|
|
992
724
|
tags?: Tag[];
|
|
993
725
|
}
|
|
994
|
-
export declare namespace ListTagsForResourceOutput {
|
|
995
|
-
|
|
996
|
-
const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
997
|
-
}
|
|
998
726
|
|
|
999
727
|
export declare class ResourceNotFound extends __BaseException {
|
|
1000
728
|
readonly name: "ResourceNotFound";
|
|
@@ -1011,16 +739,8 @@ export interface SendTaskFailureInput {
|
|
|
1011
739
|
|
|
1012
740
|
cause?: string;
|
|
1013
741
|
}
|
|
1014
|
-
export declare namespace SendTaskFailureInput {
|
|
1015
|
-
|
|
1016
|
-
const filterSensitiveLog: (obj: SendTaskFailureInput) => any;
|
|
1017
|
-
}
|
|
1018
742
|
export interface SendTaskFailureOutput {
|
|
1019
743
|
}
|
|
1020
|
-
export declare namespace SendTaskFailureOutput {
|
|
1021
|
-
|
|
1022
|
-
const filterSensitiveLog: (obj: SendTaskFailureOutput) => any;
|
|
1023
|
-
}
|
|
1024
744
|
export declare class TaskDoesNotExist extends __BaseException {
|
|
1025
745
|
readonly name: "TaskDoesNotExist";
|
|
1026
746
|
readonly $fault: "client";
|
|
@@ -1037,16 +757,8 @@ export interface SendTaskHeartbeatInput {
|
|
|
1037
757
|
|
|
1038
758
|
taskToken: string | undefined;
|
|
1039
759
|
}
|
|
1040
|
-
export declare namespace SendTaskHeartbeatInput {
|
|
1041
|
-
|
|
1042
|
-
const filterSensitiveLog: (obj: SendTaskHeartbeatInput) => any;
|
|
1043
|
-
}
|
|
1044
760
|
export interface SendTaskHeartbeatOutput {
|
|
1045
761
|
}
|
|
1046
|
-
export declare namespace SendTaskHeartbeatOutput {
|
|
1047
|
-
|
|
1048
|
-
const filterSensitiveLog: (obj: SendTaskHeartbeatOutput) => any;
|
|
1049
|
-
}
|
|
1050
762
|
|
|
1051
763
|
export declare class InvalidOutput extends __BaseException {
|
|
1052
764
|
readonly name: "InvalidOutput";
|
|
@@ -1060,16 +772,8 @@ export interface SendTaskSuccessInput {
|
|
|
1060
772
|
|
|
1061
773
|
output: string | undefined;
|
|
1062
774
|
}
|
|
1063
|
-
export declare namespace SendTaskSuccessInput {
|
|
1064
|
-
|
|
1065
|
-
const filterSensitiveLog: (obj: SendTaskSuccessInput) => any;
|
|
1066
|
-
}
|
|
1067
775
|
export interface SendTaskSuccessOutput {
|
|
1068
776
|
}
|
|
1069
|
-
export declare namespace SendTaskSuccessOutput {
|
|
1070
|
-
|
|
1071
|
-
const filterSensitiveLog: (obj: SendTaskSuccessOutput) => any;
|
|
1072
|
-
}
|
|
1073
777
|
|
|
1074
778
|
export declare class ExecutionAlreadyExists extends __BaseException {
|
|
1075
779
|
readonly name: "ExecutionAlreadyExists";
|
|
@@ -1101,20 +805,12 @@ export interface StartExecutionInput {
|
|
|
1101
805
|
|
|
1102
806
|
traceHeader?: string;
|
|
1103
807
|
}
|
|
1104
|
-
export declare namespace StartExecutionInput {
|
|
1105
|
-
|
|
1106
|
-
const filterSensitiveLog: (obj: StartExecutionInput) => any;
|
|
1107
|
-
}
|
|
1108
808
|
export interface StartExecutionOutput {
|
|
1109
809
|
|
|
1110
810
|
executionArn: string | undefined;
|
|
1111
811
|
|
|
1112
812
|
startDate: Date | undefined;
|
|
1113
813
|
}
|
|
1114
|
-
export declare namespace StartExecutionOutput {
|
|
1115
|
-
|
|
1116
|
-
const filterSensitiveLog: (obj: StartExecutionOutput) => any;
|
|
1117
|
-
}
|
|
1118
814
|
export interface StartSyncExecutionInput {
|
|
1119
815
|
|
|
1120
816
|
stateMachineArn: string | undefined;
|
|
@@ -1125,10 +821,6 @@ export interface StartSyncExecutionInput {
|
|
|
1125
821
|
|
|
1126
822
|
traceHeader?: string;
|
|
1127
823
|
}
|
|
1128
|
-
export declare namespace StartSyncExecutionInput {
|
|
1129
|
-
|
|
1130
|
-
const filterSensitiveLog: (obj: StartSyncExecutionInput) => any;
|
|
1131
|
-
}
|
|
1132
824
|
|
|
1133
825
|
export interface BillingDetails {
|
|
1134
826
|
|
|
@@ -1136,10 +828,6 @@ export interface BillingDetails {
|
|
|
1136
828
|
|
|
1137
829
|
billedDurationInMilliseconds?: number;
|
|
1138
830
|
}
|
|
1139
|
-
export declare namespace BillingDetails {
|
|
1140
|
-
|
|
1141
|
-
const filterSensitiveLog: (obj: BillingDetails) => any;
|
|
1142
|
-
}
|
|
1143
831
|
export declare type SyncExecutionStatus = "FAILED" | "SUCCEEDED" | "TIMED_OUT";
|
|
1144
832
|
export interface StartSyncExecutionOutput {
|
|
1145
833
|
|
|
@@ -1171,10 +859,6 @@ export interface StartSyncExecutionOutput {
|
|
|
1171
859
|
|
|
1172
860
|
billingDetails?: BillingDetails;
|
|
1173
861
|
}
|
|
1174
|
-
export declare namespace StartSyncExecutionOutput {
|
|
1175
|
-
|
|
1176
|
-
const filterSensitiveLog: (obj: StartSyncExecutionOutput) => any;
|
|
1177
|
-
}
|
|
1178
862
|
export interface StopExecutionInput {
|
|
1179
863
|
|
|
1180
864
|
executionArn: string | undefined;
|
|
@@ -1183,50 +867,26 @@ export interface StopExecutionInput {
|
|
|
1183
867
|
|
|
1184
868
|
cause?: string;
|
|
1185
869
|
}
|
|
1186
|
-
export declare namespace StopExecutionInput {
|
|
1187
|
-
|
|
1188
|
-
const filterSensitiveLog: (obj: StopExecutionInput) => any;
|
|
1189
|
-
}
|
|
1190
870
|
export interface StopExecutionOutput {
|
|
1191
871
|
|
|
1192
872
|
stopDate: Date | undefined;
|
|
1193
873
|
}
|
|
1194
|
-
export declare namespace StopExecutionOutput {
|
|
1195
|
-
|
|
1196
|
-
const filterSensitiveLog: (obj: StopExecutionOutput) => any;
|
|
1197
|
-
}
|
|
1198
874
|
export interface TagResourceInput {
|
|
1199
875
|
|
|
1200
876
|
resourceArn: string | undefined;
|
|
1201
877
|
|
|
1202
878
|
tags: Tag[] | undefined;
|
|
1203
879
|
}
|
|
1204
|
-
export declare namespace TagResourceInput {
|
|
1205
|
-
|
|
1206
|
-
const filterSensitiveLog: (obj: TagResourceInput) => any;
|
|
1207
|
-
}
|
|
1208
880
|
export interface TagResourceOutput {
|
|
1209
881
|
}
|
|
1210
|
-
export declare namespace TagResourceOutput {
|
|
1211
|
-
|
|
1212
|
-
const filterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
1213
|
-
}
|
|
1214
882
|
export interface UntagResourceInput {
|
|
1215
883
|
|
|
1216
884
|
resourceArn: string | undefined;
|
|
1217
885
|
|
|
1218
886
|
tagKeys: string[] | undefined;
|
|
1219
887
|
}
|
|
1220
|
-
export declare namespace UntagResourceInput {
|
|
1221
|
-
|
|
1222
|
-
const filterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
1223
|
-
}
|
|
1224
888
|
export interface UntagResourceOutput {
|
|
1225
889
|
}
|
|
1226
|
-
export declare namespace UntagResourceOutput {
|
|
1227
|
-
|
|
1228
|
-
const filterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
1229
|
-
}
|
|
1230
890
|
|
|
1231
891
|
export declare class MissingRequiredParameter extends __BaseException {
|
|
1232
892
|
readonly name: "MissingRequiredParameter";
|
|
@@ -1246,15 +906,181 @@ export interface UpdateStateMachineInput {
|
|
|
1246
906
|
|
|
1247
907
|
tracingConfiguration?: TracingConfiguration;
|
|
1248
908
|
}
|
|
1249
|
-
export declare namespace UpdateStateMachineInput {
|
|
1250
|
-
|
|
1251
|
-
const filterSensitiveLog: (obj: UpdateStateMachineInput) => any;
|
|
1252
|
-
}
|
|
1253
909
|
export interface UpdateStateMachineOutput {
|
|
1254
910
|
|
|
1255
911
|
updateDate: Date | undefined;
|
|
1256
912
|
}
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
913
|
+
|
|
914
|
+
export declare const ActivityFailedEventDetailsFilterSensitiveLog: (obj: ActivityFailedEventDetails) => any;
|
|
915
|
+
|
|
916
|
+
export declare const ActivityListItemFilterSensitiveLog: (obj: ActivityListItem) => any;
|
|
917
|
+
|
|
918
|
+
export declare const HistoryEventExecutionDataDetailsFilterSensitiveLog: (obj: HistoryEventExecutionDataDetails) => any;
|
|
919
|
+
|
|
920
|
+
export declare const ActivityScheduledEventDetailsFilterSensitiveLog: (obj: ActivityScheduledEventDetails) => any;
|
|
921
|
+
|
|
922
|
+
export declare const ActivityScheduleFailedEventDetailsFilterSensitiveLog: (obj: ActivityScheduleFailedEventDetails) => any;
|
|
923
|
+
|
|
924
|
+
export declare const ActivityStartedEventDetailsFilterSensitiveLog: (obj: ActivityStartedEventDetails) => any;
|
|
925
|
+
|
|
926
|
+
export declare const ActivitySucceededEventDetailsFilterSensitiveLog: (obj: ActivitySucceededEventDetails) => any;
|
|
927
|
+
|
|
928
|
+
export declare const ActivityTimedOutEventDetailsFilterSensitiveLog: (obj: ActivityTimedOutEventDetails) => any;
|
|
929
|
+
|
|
930
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
931
|
+
|
|
932
|
+
export declare const CreateActivityInputFilterSensitiveLog: (obj: CreateActivityInput) => any;
|
|
933
|
+
|
|
934
|
+
export declare const CreateActivityOutputFilterSensitiveLog: (obj: CreateActivityOutput) => any;
|
|
935
|
+
|
|
936
|
+
export declare const CloudWatchLogsLogGroupFilterSensitiveLog: (obj: CloudWatchLogsLogGroup) => any;
|
|
937
|
+
|
|
938
|
+
export declare const LogDestinationFilterSensitiveLog: (obj: LogDestination) => any;
|
|
939
|
+
|
|
940
|
+
export declare const LoggingConfigurationFilterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
941
|
+
|
|
942
|
+
export declare const TracingConfigurationFilterSensitiveLog: (obj: TracingConfiguration) => any;
|
|
943
|
+
|
|
944
|
+
export declare const CreateStateMachineInputFilterSensitiveLog: (obj: CreateStateMachineInput) => any;
|
|
945
|
+
|
|
946
|
+
export declare const CreateStateMachineOutputFilterSensitiveLog: (obj: CreateStateMachineOutput) => any;
|
|
947
|
+
|
|
948
|
+
export declare const DeleteActivityInputFilterSensitiveLog: (obj: DeleteActivityInput) => any;
|
|
949
|
+
|
|
950
|
+
export declare const DeleteActivityOutputFilterSensitiveLog: (obj: DeleteActivityOutput) => any;
|
|
951
|
+
|
|
952
|
+
export declare const DeleteStateMachineInputFilterSensitiveLog: (obj: DeleteStateMachineInput) => any;
|
|
953
|
+
|
|
954
|
+
export declare const DeleteStateMachineOutputFilterSensitiveLog: (obj: DeleteStateMachineOutput) => any;
|
|
955
|
+
|
|
956
|
+
export declare const DescribeActivityInputFilterSensitiveLog: (obj: DescribeActivityInput) => any;
|
|
957
|
+
|
|
958
|
+
export declare const DescribeActivityOutputFilterSensitiveLog: (obj: DescribeActivityOutput) => any;
|
|
959
|
+
|
|
960
|
+
export declare const DescribeExecutionInputFilterSensitiveLog: (obj: DescribeExecutionInput) => any;
|
|
961
|
+
|
|
962
|
+
export declare const CloudWatchEventsExecutionDataDetailsFilterSensitiveLog: (obj: CloudWatchEventsExecutionDataDetails) => any;
|
|
963
|
+
|
|
964
|
+
export declare const DescribeExecutionOutputFilterSensitiveLog: (obj: DescribeExecutionOutput) => any;
|
|
965
|
+
|
|
966
|
+
export declare const DescribeStateMachineInputFilterSensitiveLog: (obj: DescribeStateMachineInput) => any;
|
|
967
|
+
|
|
968
|
+
export declare const DescribeStateMachineOutputFilterSensitiveLog: (obj: DescribeStateMachineOutput) => any;
|
|
969
|
+
|
|
970
|
+
export declare const DescribeStateMachineForExecutionInputFilterSensitiveLog: (obj: DescribeStateMachineForExecutionInput) => any;
|
|
971
|
+
|
|
972
|
+
export declare const DescribeStateMachineForExecutionOutputFilterSensitiveLog: (obj: DescribeStateMachineForExecutionOutput) => any;
|
|
973
|
+
|
|
974
|
+
export declare const GetActivityTaskInputFilterSensitiveLog: (obj: GetActivityTaskInput) => any;
|
|
975
|
+
|
|
976
|
+
export declare const GetActivityTaskOutputFilterSensitiveLog: (obj: GetActivityTaskOutput) => any;
|
|
977
|
+
|
|
978
|
+
export declare const GetExecutionHistoryInputFilterSensitiveLog: (obj: GetExecutionHistoryInput) => any;
|
|
979
|
+
|
|
980
|
+
export declare const ExecutionAbortedEventDetailsFilterSensitiveLog: (obj: ExecutionAbortedEventDetails) => any;
|
|
981
|
+
|
|
982
|
+
export declare const ExecutionFailedEventDetailsFilterSensitiveLog: (obj: ExecutionFailedEventDetails) => any;
|
|
983
|
+
|
|
984
|
+
export declare const ExecutionStartedEventDetailsFilterSensitiveLog: (obj: ExecutionStartedEventDetails) => any;
|
|
985
|
+
|
|
986
|
+
export declare const ExecutionSucceededEventDetailsFilterSensitiveLog: (obj: ExecutionSucceededEventDetails) => any;
|
|
987
|
+
|
|
988
|
+
export declare const ExecutionTimedOutEventDetailsFilterSensitiveLog: (obj: ExecutionTimedOutEventDetails) => any;
|
|
989
|
+
|
|
990
|
+
export declare const LambdaFunctionFailedEventDetailsFilterSensitiveLog: (obj: LambdaFunctionFailedEventDetails) => any;
|
|
991
|
+
|
|
992
|
+
export declare const LambdaFunctionScheduledEventDetailsFilterSensitiveLog: (obj: LambdaFunctionScheduledEventDetails) => any;
|
|
993
|
+
|
|
994
|
+
export declare const LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog: (obj: LambdaFunctionScheduleFailedEventDetails) => any;
|
|
995
|
+
|
|
996
|
+
export declare const LambdaFunctionStartFailedEventDetailsFilterSensitiveLog: (obj: LambdaFunctionStartFailedEventDetails) => any;
|
|
997
|
+
|
|
998
|
+
export declare const LambdaFunctionSucceededEventDetailsFilterSensitiveLog: (obj: LambdaFunctionSucceededEventDetails) => any;
|
|
999
|
+
|
|
1000
|
+
export declare const LambdaFunctionTimedOutEventDetailsFilterSensitiveLog: (obj: LambdaFunctionTimedOutEventDetails) => any;
|
|
1001
|
+
|
|
1002
|
+
export declare const MapIterationEventDetailsFilterSensitiveLog: (obj: MapIterationEventDetails) => any;
|
|
1003
|
+
|
|
1004
|
+
export declare const MapStateStartedEventDetailsFilterSensitiveLog: (obj: MapStateStartedEventDetails) => any;
|
|
1005
|
+
|
|
1006
|
+
export declare const StateEnteredEventDetailsFilterSensitiveLog: (obj: StateEnteredEventDetails) => any;
|
|
1007
|
+
|
|
1008
|
+
export declare const StateExitedEventDetailsFilterSensitiveLog: (obj: StateExitedEventDetails) => any;
|
|
1009
|
+
|
|
1010
|
+
export declare const TaskFailedEventDetailsFilterSensitiveLog: (obj: TaskFailedEventDetails) => any;
|
|
1011
|
+
|
|
1012
|
+
export declare const TaskScheduledEventDetailsFilterSensitiveLog: (obj: TaskScheduledEventDetails) => any;
|
|
1013
|
+
|
|
1014
|
+
export declare const TaskStartedEventDetailsFilterSensitiveLog: (obj: TaskStartedEventDetails) => any;
|
|
1015
|
+
|
|
1016
|
+
export declare const TaskStartFailedEventDetailsFilterSensitiveLog: (obj: TaskStartFailedEventDetails) => any;
|
|
1017
|
+
|
|
1018
|
+
export declare const TaskSubmitFailedEventDetailsFilterSensitiveLog: (obj: TaskSubmitFailedEventDetails) => any;
|
|
1019
|
+
|
|
1020
|
+
export declare const TaskSubmittedEventDetailsFilterSensitiveLog: (obj: TaskSubmittedEventDetails) => any;
|
|
1021
|
+
|
|
1022
|
+
export declare const TaskSucceededEventDetailsFilterSensitiveLog: (obj: TaskSucceededEventDetails) => any;
|
|
1023
|
+
|
|
1024
|
+
export declare const TaskTimedOutEventDetailsFilterSensitiveLog: (obj: TaskTimedOutEventDetails) => any;
|
|
1025
|
+
|
|
1026
|
+
export declare const HistoryEventFilterSensitiveLog: (obj: HistoryEvent) => any;
|
|
1027
|
+
|
|
1028
|
+
export declare const GetExecutionHistoryOutputFilterSensitiveLog: (obj: GetExecutionHistoryOutput) => any;
|
|
1029
|
+
|
|
1030
|
+
export declare const ListActivitiesInputFilterSensitiveLog: (obj: ListActivitiesInput) => any;
|
|
1031
|
+
|
|
1032
|
+
export declare const ListActivitiesOutputFilterSensitiveLog: (obj: ListActivitiesOutput) => any;
|
|
1033
|
+
|
|
1034
|
+
export declare const ListExecutionsInputFilterSensitiveLog: (obj: ListExecutionsInput) => any;
|
|
1035
|
+
|
|
1036
|
+
export declare const ExecutionListItemFilterSensitiveLog: (obj: ExecutionListItem) => any;
|
|
1037
|
+
|
|
1038
|
+
export declare const ListExecutionsOutputFilterSensitiveLog: (obj: ListExecutionsOutput) => any;
|
|
1039
|
+
|
|
1040
|
+
export declare const ListStateMachinesInputFilterSensitiveLog: (obj: ListStateMachinesInput) => any;
|
|
1041
|
+
|
|
1042
|
+
export declare const StateMachineListItemFilterSensitiveLog: (obj: StateMachineListItem) => any;
|
|
1043
|
+
|
|
1044
|
+
export declare const ListStateMachinesOutputFilterSensitiveLog: (obj: ListStateMachinesOutput) => any;
|
|
1045
|
+
|
|
1046
|
+
export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
1047
|
+
|
|
1048
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
1049
|
+
|
|
1050
|
+
export declare const SendTaskFailureInputFilterSensitiveLog: (obj: SendTaskFailureInput) => any;
|
|
1051
|
+
|
|
1052
|
+
export declare const SendTaskFailureOutputFilterSensitiveLog: (obj: SendTaskFailureOutput) => any;
|
|
1053
|
+
|
|
1054
|
+
export declare const SendTaskHeartbeatInputFilterSensitiveLog: (obj: SendTaskHeartbeatInput) => any;
|
|
1055
|
+
|
|
1056
|
+
export declare const SendTaskHeartbeatOutputFilterSensitiveLog: (obj: SendTaskHeartbeatOutput) => any;
|
|
1057
|
+
|
|
1058
|
+
export declare const SendTaskSuccessInputFilterSensitiveLog: (obj: SendTaskSuccessInput) => any;
|
|
1059
|
+
|
|
1060
|
+
export declare const SendTaskSuccessOutputFilterSensitiveLog: (obj: SendTaskSuccessOutput) => any;
|
|
1061
|
+
|
|
1062
|
+
export declare const StartExecutionInputFilterSensitiveLog: (obj: StartExecutionInput) => any;
|
|
1063
|
+
|
|
1064
|
+
export declare const StartExecutionOutputFilterSensitiveLog: (obj: StartExecutionOutput) => any;
|
|
1065
|
+
|
|
1066
|
+
export declare const StartSyncExecutionInputFilterSensitiveLog: (obj: StartSyncExecutionInput) => any;
|
|
1067
|
+
|
|
1068
|
+
export declare const BillingDetailsFilterSensitiveLog: (obj: BillingDetails) => any;
|
|
1069
|
+
|
|
1070
|
+
export declare const StartSyncExecutionOutputFilterSensitiveLog: (obj: StartSyncExecutionOutput) => any;
|
|
1071
|
+
|
|
1072
|
+
export declare const StopExecutionInputFilterSensitiveLog: (obj: StopExecutionInput) => any;
|
|
1073
|
+
|
|
1074
|
+
export declare const StopExecutionOutputFilterSensitiveLog: (obj: StopExecutionOutput) => any;
|
|
1075
|
+
|
|
1076
|
+
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
1077
|
+
|
|
1078
|
+
export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
1079
|
+
|
|
1080
|
+
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
1081
|
+
|
|
1082
|
+
export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
1083
|
+
|
|
1084
|
+
export declare const UpdateStateMachineInputFilterSensitiveLog: (obj: UpdateStateMachineInput) => any;
|
|
1085
|
+
|
|
1086
|
+
export declare const UpdateStateMachineOutputFilterSensitiveLog: (obj: UpdateStateMachineOutput) => any;
|