@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
|
@@ -24,12 +24,6 @@ export interface ActivityFailedEventDetails {
|
|
|
24
24
|
*/
|
|
25
25
|
cause?: string;
|
|
26
26
|
}
|
|
27
|
-
export declare namespace ActivityFailedEventDetails {
|
|
28
|
-
/**
|
|
29
|
-
* @internal
|
|
30
|
-
*/
|
|
31
|
-
const filterSensitiveLog: (obj: ActivityFailedEventDetails) => any;
|
|
32
|
-
}
|
|
33
27
|
/**
|
|
34
28
|
* <p>The maximum number of activities has been reached. Existing activities must be deleted
|
|
35
29
|
* before a new activity can be created.</p>
|
|
@@ -81,12 +75,6 @@ export interface ActivityListItem {
|
|
|
81
75
|
*/
|
|
82
76
|
creationDate: Date | undefined;
|
|
83
77
|
}
|
|
84
|
-
export declare namespace ActivityListItem {
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
const filterSensitiveLog: (obj: ActivityListItem) => any;
|
|
89
|
-
}
|
|
90
78
|
/**
|
|
91
79
|
* <p>Provides details about input or output in an execution history event.</p>
|
|
92
80
|
*/
|
|
@@ -97,12 +85,6 @@ export interface HistoryEventExecutionDataDetails {
|
|
|
97
85
|
*/
|
|
98
86
|
truncated?: boolean;
|
|
99
87
|
}
|
|
100
|
-
export declare namespace HistoryEventExecutionDataDetails {
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
const filterSensitiveLog: (obj: HistoryEventExecutionDataDetails) => any;
|
|
105
|
-
}
|
|
106
88
|
/**
|
|
107
89
|
* <p>Contains details about an activity scheduled during an execution.</p>
|
|
108
90
|
*/
|
|
@@ -128,12 +110,6 @@ export interface ActivityScheduledEventDetails {
|
|
|
128
110
|
*/
|
|
129
111
|
heartbeatInSeconds?: number;
|
|
130
112
|
}
|
|
131
|
-
export declare namespace ActivityScheduledEventDetails {
|
|
132
|
-
/**
|
|
133
|
-
* @internal
|
|
134
|
-
*/
|
|
135
|
-
const filterSensitiveLog: (obj: ActivityScheduledEventDetails) => any;
|
|
136
|
-
}
|
|
137
113
|
/**
|
|
138
114
|
* <p>Contains details about an activity schedule failure that occurred during an
|
|
139
115
|
* execution.</p>
|
|
@@ -148,12 +124,6 @@ export interface ActivityScheduleFailedEventDetails {
|
|
|
148
124
|
*/
|
|
149
125
|
cause?: string;
|
|
150
126
|
}
|
|
151
|
-
export declare namespace ActivityScheduleFailedEventDetails {
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
const filterSensitiveLog: (obj: ActivityScheduleFailedEventDetails) => any;
|
|
156
|
-
}
|
|
157
127
|
/**
|
|
158
128
|
* <p>Contains details about the start of an activity during an execution.</p>
|
|
159
129
|
*/
|
|
@@ -164,12 +134,6 @@ export interface ActivityStartedEventDetails {
|
|
|
164
134
|
*/
|
|
165
135
|
workerName?: string;
|
|
166
136
|
}
|
|
167
|
-
export declare namespace ActivityStartedEventDetails {
|
|
168
|
-
/**
|
|
169
|
-
* @internal
|
|
170
|
-
*/
|
|
171
|
-
const filterSensitiveLog: (obj: ActivityStartedEventDetails) => any;
|
|
172
|
-
}
|
|
173
137
|
/**
|
|
174
138
|
* <p>Contains details about an activity that successfully terminated during an
|
|
175
139
|
* execution.</p>
|
|
@@ -184,12 +148,6 @@ export interface ActivitySucceededEventDetails {
|
|
|
184
148
|
*/
|
|
185
149
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
186
150
|
}
|
|
187
|
-
export declare namespace ActivitySucceededEventDetails {
|
|
188
|
-
/**
|
|
189
|
-
* @internal
|
|
190
|
-
*/
|
|
191
|
-
const filterSensitiveLog: (obj: ActivitySucceededEventDetails) => any;
|
|
192
|
-
}
|
|
193
151
|
/**
|
|
194
152
|
* <p>Contains details about an activity timeout that occurred during an execution.</p>
|
|
195
153
|
*/
|
|
@@ -203,12 +161,6 @@ export interface ActivityTimedOutEventDetails {
|
|
|
203
161
|
*/
|
|
204
162
|
cause?: string;
|
|
205
163
|
}
|
|
206
|
-
export declare namespace ActivityTimedOutEventDetails {
|
|
207
|
-
/**
|
|
208
|
-
* @internal
|
|
209
|
-
*/
|
|
210
|
-
const filterSensitiveLog: (obj: ActivityTimedOutEventDetails) => any;
|
|
211
|
-
}
|
|
212
164
|
/**
|
|
213
165
|
* <p>The maximum number of workers concurrently polling for activity tasks has been
|
|
214
166
|
* reached.</p>
|
|
@@ -240,12 +192,6 @@ export interface Tag {
|
|
|
240
192
|
*/
|
|
241
193
|
value?: string;
|
|
242
194
|
}
|
|
243
|
-
export declare namespace Tag {
|
|
244
|
-
/**
|
|
245
|
-
* @internal
|
|
246
|
-
*/
|
|
247
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
248
|
-
}
|
|
249
195
|
export interface CreateActivityInput {
|
|
250
196
|
/**
|
|
251
197
|
* <p>The name of the activity to create. This name must be unique for your AWS account and region for 90 days. For more information,
|
|
@@ -285,12 +231,6 @@ export interface CreateActivityInput {
|
|
|
285
231
|
*/
|
|
286
232
|
tags?: Tag[];
|
|
287
233
|
}
|
|
288
|
-
export declare namespace CreateActivityInput {
|
|
289
|
-
/**
|
|
290
|
-
* @internal
|
|
291
|
-
*/
|
|
292
|
-
const filterSensitiveLog: (obj: CreateActivityInput) => any;
|
|
293
|
-
}
|
|
294
234
|
export interface CreateActivityOutput {
|
|
295
235
|
/**
|
|
296
236
|
* <p>The Amazon Resource Name (ARN) that identifies the created activity.</p>
|
|
@@ -301,12 +241,6 @@ export interface CreateActivityOutput {
|
|
|
301
241
|
*/
|
|
302
242
|
creationDate: Date | undefined;
|
|
303
243
|
}
|
|
304
|
-
export declare namespace CreateActivityOutput {
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
const filterSensitiveLog: (obj: CreateActivityOutput) => any;
|
|
309
|
-
}
|
|
310
244
|
/**
|
|
311
245
|
* <p>The provided name is invalid.</p>
|
|
312
246
|
*/
|
|
@@ -342,12 +276,6 @@ export interface CloudWatchLogsLogGroup {
|
|
|
342
276
|
*/
|
|
343
277
|
logGroupArn?: string;
|
|
344
278
|
}
|
|
345
|
-
export declare namespace CloudWatchLogsLogGroup {
|
|
346
|
-
/**
|
|
347
|
-
* @internal
|
|
348
|
-
*/
|
|
349
|
-
const filterSensitiveLog: (obj: CloudWatchLogsLogGroup) => any;
|
|
350
|
-
}
|
|
351
279
|
/**
|
|
352
280
|
* <p></p>
|
|
353
281
|
*/
|
|
@@ -357,12 +285,6 @@ export interface LogDestination {
|
|
|
357
285
|
*/
|
|
358
286
|
cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
|
|
359
287
|
}
|
|
360
|
-
export declare namespace LogDestination {
|
|
361
|
-
/**
|
|
362
|
-
* @internal
|
|
363
|
-
*/
|
|
364
|
-
const filterSensitiveLog: (obj: LogDestination) => any;
|
|
365
|
-
}
|
|
366
288
|
export declare type LogLevel = "ALL" | "ERROR" | "FATAL" | "OFF";
|
|
367
289
|
/**
|
|
368
290
|
* <p>The <code>LoggingConfiguration</code> data type is used to set CloudWatch Logs
|
|
@@ -384,12 +306,6 @@ export interface LoggingConfiguration {
|
|
|
384
306
|
*/
|
|
385
307
|
destinations?: LogDestination[];
|
|
386
308
|
}
|
|
387
|
-
export declare namespace LoggingConfiguration {
|
|
388
|
-
/**
|
|
389
|
-
* @internal
|
|
390
|
-
*/
|
|
391
|
-
const filterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
392
|
-
}
|
|
393
309
|
/**
|
|
394
310
|
* <p>Selects whether or not the state machine's AWS X-Ray tracing is enabled. Default is <code>false</code>
|
|
395
311
|
* </p>
|
|
@@ -400,12 +316,6 @@ export interface TracingConfiguration {
|
|
|
400
316
|
*/
|
|
401
317
|
enabled?: boolean;
|
|
402
318
|
}
|
|
403
|
-
export declare namespace TracingConfiguration {
|
|
404
|
-
/**
|
|
405
|
-
* @internal
|
|
406
|
-
*/
|
|
407
|
-
const filterSensitiveLog: (obj: TracingConfiguration) => any;
|
|
408
|
-
}
|
|
409
319
|
export declare type StateMachineType = "EXPRESS" | "STANDARD";
|
|
410
320
|
export interface CreateStateMachineInput {
|
|
411
321
|
/**
|
|
@@ -471,12 +381,6 @@ export interface CreateStateMachineInput {
|
|
|
471
381
|
*/
|
|
472
382
|
tracingConfiguration?: TracingConfiguration;
|
|
473
383
|
}
|
|
474
|
-
export declare namespace CreateStateMachineInput {
|
|
475
|
-
/**
|
|
476
|
-
* @internal
|
|
477
|
-
*/
|
|
478
|
-
const filterSensitiveLog: (obj: CreateStateMachineInput) => any;
|
|
479
|
-
}
|
|
480
384
|
export interface CreateStateMachineOutput {
|
|
481
385
|
/**
|
|
482
386
|
* <p>The Amazon Resource Name (ARN) that identifies the created state machine.</p>
|
|
@@ -487,12 +391,6 @@ export interface CreateStateMachineOutput {
|
|
|
487
391
|
*/
|
|
488
392
|
creationDate: Date | undefined;
|
|
489
393
|
}
|
|
490
|
-
export declare namespace CreateStateMachineOutput {
|
|
491
|
-
/**
|
|
492
|
-
* @internal
|
|
493
|
-
*/
|
|
494
|
-
const filterSensitiveLog: (obj: CreateStateMachineOutput) => any;
|
|
495
|
-
}
|
|
496
394
|
/**
|
|
497
395
|
* <p>The provided Amazon Resource Name (ARN) is invalid.</p>
|
|
498
396
|
*/
|
|
@@ -589,52 +487,22 @@ export interface DeleteActivityInput {
|
|
|
589
487
|
*/
|
|
590
488
|
activityArn: string | undefined;
|
|
591
489
|
}
|
|
592
|
-
export declare namespace DeleteActivityInput {
|
|
593
|
-
/**
|
|
594
|
-
* @internal
|
|
595
|
-
*/
|
|
596
|
-
const filterSensitiveLog: (obj: DeleteActivityInput) => any;
|
|
597
|
-
}
|
|
598
490
|
export interface DeleteActivityOutput {
|
|
599
491
|
}
|
|
600
|
-
export declare namespace DeleteActivityOutput {
|
|
601
|
-
/**
|
|
602
|
-
* @internal
|
|
603
|
-
*/
|
|
604
|
-
const filterSensitiveLog: (obj: DeleteActivityOutput) => any;
|
|
605
|
-
}
|
|
606
492
|
export interface DeleteStateMachineInput {
|
|
607
493
|
/**
|
|
608
494
|
* <p>The Amazon Resource Name (ARN) of the state machine to delete.</p>
|
|
609
495
|
*/
|
|
610
496
|
stateMachineArn: string | undefined;
|
|
611
497
|
}
|
|
612
|
-
export declare namespace DeleteStateMachineInput {
|
|
613
|
-
/**
|
|
614
|
-
* @internal
|
|
615
|
-
*/
|
|
616
|
-
const filterSensitiveLog: (obj: DeleteStateMachineInput) => any;
|
|
617
|
-
}
|
|
618
498
|
export interface DeleteStateMachineOutput {
|
|
619
499
|
}
|
|
620
|
-
export declare namespace DeleteStateMachineOutput {
|
|
621
|
-
/**
|
|
622
|
-
* @internal
|
|
623
|
-
*/
|
|
624
|
-
const filterSensitiveLog: (obj: DeleteStateMachineOutput) => any;
|
|
625
|
-
}
|
|
626
500
|
export interface DescribeActivityInput {
|
|
627
501
|
/**
|
|
628
502
|
* <p>The Amazon Resource Name (ARN) of the activity to describe.</p>
|
|
629
503
|
*/
|
|
630
504
|
activityArn: string | undefined;
|
|
631
505
|
}
|
|
632
|
-
export declare namespace DescribeActivityInput {
|
|
633
|
-
/**
|
|
634
|
-
* @internal
|
|
635
|
-
*/
|
|
636
|
-
const filterSensitiveLog: (obj: DescribeActivityInput) => any;
|
|
637
|
-
}
|
|
638
506
|
export interface DescribeActivityOutput {
|
|
639
507
|
/**
|
|
640
508
|
* <p>The Amazon Resource Name (ARN) that identifies the activity.</p>
|
|
@@ -671,24 +539,12 @@ export interface DescribeActivityOutput {
|
|
|
671
539
|
*/
|
|
672
540
|
creationDate: Date | undefined;
|
|
673
541
|
}
|
|
674
|
-
export declare namespace DescribeActivityOutput {
|
|
675
|
-
/**
|
|
676
|
-
* @internal
|
|
677
|
-
*/
|
|
678
|
-
const filterSensitiveLog: (obj: DescribeActivityOutput) => any;
|
|
679
|
-
}
|
|
680
542
|
export interface DescribeExecutionInput {
|
|
681
543
|
/**
|
|
682
544
|
* <p>The Amazon Resource Name (ARN) of the execution to describe.</p>
|
|
683
545
|
*/
|
|
684
546
|
executionArn: string | undefined;
|
|
685
547
|
}
|
|
686
|
-
export declare namespace DescribeExecutionInput {
|
|
687
|
-
/**
|
|
688
|
-
* @internal
|
|
689
|
-
*/
|
|
690
|
-
const filterSensitiveLog: (obj: DescribeExecutionInput) => any;
|
|
691
|
-
}
|
|
692
548
|
/**
|
|
693
549
|
* <p>Provides details about execution input or output.</p>
|
|
694
550
|
*/
|
|
@@ -699,12 +555,6 @@ export interface CloudWatchEventsExecutionDataDetails {
|
|
|
699
555
|
*/
|
|
700
556
|
included?: boolean;
|
|
701
557
|
}
|
|
702
|
-
export declare namespace CloudWatchEventsExecutionDataDetails {
|
|
703
|
-
/**
|
|
704
|
-
* @internal
|
|
705
|
-
*/
|
|
706
|
-
const filterSensitiveLog: (obj: CloudWatchEventsExecutionDataDetails) => any;
|
|
707
|
-
}
|
|
708
558
|
export declare type ExecutionStatus = "ABORTED" | "FAILED" | "RUNNING" | "SUCCEEDED" | "TIMED_OUT";
|
|
709
559
|
export interface DescribeExecutionOutput {
|
|
710
560
|
/**
|
|
@@ -778,12 +628,6 @@ export interface DescribeExecutionOutput {
|
|
|
778
628
|
*/
|
|
779
629
|
traceHeader?: string;
|
|
780
630
|
}
|
|
781
|
-
export declare namespace DescribeExecutionOutput {
|
|
782
|
-
/**
|
|
783
|
-
* @internal
|
|
784
|
-
*/
|
|
785
|
-
const filterSensitiveLog: (obj: DescribeExecutionOutput) => any;
|
|
786
|
-
}
|
|
787
631
|
/**
|
|
788
632
|
* <p>The specified execution does not exist.</p>
|
|
789
633
|
*/
|
|
@@ -801,12 +645,6 @@ export interface DescribeStateMachineInput {
|
|
|
801
645
|
*/
|
|
802
646
|
stateMachineArn: string | undefined;
|
|
803
647
|
}
|
|
804
|
-
export declare namespace DescribeStateMachineInput {
|
|
805
|
-
/**
|
|
806
|
-
* @internal
|
|
807
|
-
*/
|
|
808
|
-
const filterSensitiveLog: (obj: DescribeStateMachineInput) => any;
|
|
809
|
-
}
|
|
810
648
|
export declare type StateMachineStatus = "ACTIVE" | "DELETING";
|
|
811
649
|
export interface DescribeStateMachineOutput {
|
|
812
650
|
/**
|
|
@@ -871,12 +709,6 @@ export interface DescribeStateMachineOutput {
|
|
|
871
709
|
*/
|
|
872
710
|
tracingConfiguration?: TracingConfiguration;
|
|
873
711
|
}
|
|
874
|
-
export declare namespace DescribeStateMachineOutput {
|
|
875
|
-
/**
|
|
876
|
-
* @internal
|
|
877
|
-
*/
|
|
878
|
-
const filterSensitiveLog: (obj: DescribeStateMachineOutput) => any;
|
|
879
|
-
}
|
|
880
712
|
/**
|
|
881
713
|
* <p>The specified state machine does not exist.</p>
|
|
882
714
|
*/
|
|
@@ -894,12 +726,6 @@ export interface DescribeStateMachineForExecutionInput {
|
|
|
894
726
|
*/
|
|
895
727
|
executionArn: string | undefined;
|
|
896
728
|
}
|
|
897
|
-
export declare namespace DescribeStateMachineForExecutionInput {
|
|
898
|
-
/**
|
|
899
|
-
* @internal
|
|
900
|
-
*/
|
|
901
|
-
const filterSensitiveLog: (obj: DescribeStateMachineForExecutionInput) => any;
|
|
902
|
-
}
|
|
903
729
|
export interface DescribeStateMachineForExecutionOutput {
|
|
904
730
|
/**
|
|
905
731
|
* <p>The Amazon Resource Name (ARN) of the state machine associated with the execution.</p>
|
|
@@ -932,12 +758,6 @@ export interface DescribeStateMachineForExecutionOutput {
|
|
|
932
758
|
*/
|
|
933
759
|
tracingConfiguration?: TracingConfiguration;
|
|
934
760
|
}
|
|
935
|
-
export declare namespace DescribeStateMachineForExecutionOutput {
|
|
936
|
-
/**
|
|
937
|
-
* @internal
|
|
938
|
-
*/
|
|
939
|
-
const filterSensitiveLog: (obj: DescribeStateMachineForExecutionOutput) => any;
|
|
940
|
-
}
|
|
941
761
|
export interface GetActivityTaskInput {
|
|
942
762
|
/**
|
|
943
763
|
* <p>The Amazon Resource Name (ARN) of the activity to retrieve tasks from (assigned when you create the task
|
|
@@ -950,12 +770,6 @@ export interface GetActivityTaskInput {
|
|
|
950
770
|
*/
|
|
951
771
|
workerName?: string;
|
|
952
772
|
}
|
|
953
|
-
export declare namespace GetActivityTaskInput {
|
|
954
|
-
/**
|
|
955
|
-
* @internal
|
|
956
|
-
*/
|
|
957
|
-
const filterSensitiveLog: (obj: GetActivityTaskInput) => any;
|
|
958
|
-
}
|
|
959
773
|
export interface GetActivityTaskOutput {
|
|
960
774
|
/**
|
|
961
775
|
* <p>A token that identifies the scheduled task. This token must be copied and included in
|
|
@@ -969,12 +783,6 @@ export interface GetActivityTaskOutput {
|
|
|
969
783
|
*/
|
|
970
784
|
input?: string;
|
|
971
785
|
}
|
|
972
|
-
export declare namespace GetActivityTaskOutput {
|
|
973
|
-
/**
|
|
974
|
-
* @internal
|
|
975
|
-
*/
|
|
976
|
-
const filterSensitiveLog: (obj: GetActivityTaskOutput) => any;
|
|
977
|
-
}
|
|
978
786
|
export interface GetExecutionHistoryInput {
|
|
979
787
|
/**
|
|
980
788
|
* <p>The Amazon Resource Name (ARN) of the execution.</p>
|
|
@@ -1001,12 +809,6 @@ export interface GetExecutionHistoryInput {
|
|
|
1001
809
|
*/
|
|
1002
810
|
includeExecutionData?: boolean;
|
|
1003
811
|
}
|
|
1004
|
-
export declare namespace GetExecutionHistoryInput {
|
|
1005
|
-
/**
|
|
1006
|
-
* @internal
|
|
1007
|
-
*/
|
|
1008
|
-
const filterSensitiveLog: (obj: GetExecutionHistoryInput) => any;
|
|
1009
|
-
}
|
|
1010
812
|
/**
|
|
1011
813
|
* <p>Contains details about an abort of an execution.</p>
|
|
1012
814
|
*/
|
|
@@ -1020,12 +822,6 @@ export interface ExecutionAbortedEventDetails {
|
|
|
1020
822
|
*/
|
|
1021
823
|
cause?: string;
|
|
1022
824
|
}
|
|
1023
|
-
export declare namespace ExecutionAbortedEventDetails {
|
|
1024
|
-
/**
|
|
1025
|
-
* @internal
|
|
1026
|
-
*/
|
|
1027
|
-
const filterSensitiveLog: (obj: ExecutionAbortedEventDetails) => any;
|
|
1028
|
-
}
|
|
1029
825
|
/**
|
|
1030
826
|
* <p>Contains details about an execution failure event.</p>
|
|
1031
827
|
*/
|
|
@@ -1039,12 +835,6 @@ export interface ExecutionFailedEventDetails {
|
|
|
1039
835
|
*/
|
|
1040
836
|
cause?: string;
|
|
1041
837
|
}
|
|
1042
|
-
export declare namespace ExecutionFailedEventDetails {
|
|
1043
|
-
/**
|
|
1044
|
-
* @internal
|
|
1045
|
-
*/
|
|
1046
|
-
const filterSensitiveLog: (obj: ExecutionFailedEventDetails) => any;
|
|
1047
|
-
}
|
|
1048
838
|
/**
|
|
1049
839
|
* <p>Contains details about the start of the execution.</p>
|
|
1050
840
|
*/
|
|
@@ -1062,12 +852,6 @@ export interface ExecutionStartedEventDetails {
|
|
|
1062
852
|
*/
|
|
1063
853
|
roleArn?: string;
|
|
1064
854
|
}
|
|
1065
|
-
export declare namespace ExecutionStartedEventDetails {
|
|
1066
|
-
/**
|
|
1067
|
-
* @internal
|
|
1068
|
-
*/
|
|
1069
|
-
const filterSensitiveLog: (obj: ExecutionStartedEventDetails) => any;
|
|
1070
|
-
}
|
|
1071
855
|
/**
|
|
1072
856
|
* <p>Contains details about the successful termination of the execution.</p>
|
|
1073
857
|
*/
|
|
@@ -1081,12 +865,6 @@ export interface ExecutionSucceededEventDetails {
|
|
|
1081
865
|
*/
|
|
1082
866
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
1083
867
|
}
|
|
1084
|
-
export declare namespace ExecutionSucceededEventDetails {
|
|
1085
|
-
/**
|
|
1086
|
-
* @internal
|
|
1087
|
-
*/
|
|
1088
|
-
const filterSensitiveLog: (obj: ExecutionSucceededEventDetails) => any;
|
|
1089
|
-
}
|
|
1090
868
|
/**
|
|
1091
869
|
* <p>Contains details about the execution timeout that occurred during the execution.</p>
|
|
1092
870
|
*/
|
|
@@ -1100,12 +878,6 @@ export interface ExecutionTimedOutEventDetails {
|
|
|
1100
878
|
*/
|
|
1101
879
|
cause?: string;
|
|
1102
880
|
}
|
|
1103
|
-
export declare namespace ExecutionTimedOutEventDetails {
|
|
1104
|
-
/**
|
|
1105
|
-
* @internal
|
|
1106
|
-
*/
|
|
1107
|
-
const filterSensitiveLog: (obj: ExecutionTimedOutEventDetails) => any;
|
|
1108
|
-
}
|
|
1109
881
|
/**
|
|
1110
882
|
* <p>Contains details about a lambda function that failed during an execution.</p>
|
|
1111
883
|
*/
|
|
@@ -1119,12 +891,6 @@ export interface LambdaFunctionFailedEventDetails {
|
|
|
1119
891
|
*/
|
|
1120
892
|
cause?: string;
|
|
1121
893
|
}
|
|
1122
|
-
export declare namespace LambdaFunctionFailedEventDetails {
|
|
1123
|
-
/**
|
|
1124
|
-
* @internal
|
|
1125
|
-
*/
|
|
1126
|
-
const filterSensitiveLog: (obj: LambdaFunctionFailedEventDetails) => any;
|
|
1127
|
-
}
|
|
1128
894
|
/**
|
|
1129
895
|
* <p>Contains details about a lambda function scheduled during an execution.</p>
|
|
1130
896
|
*/
|
|
@@ -1146,12 +912,6 @@ export interface LambdaFunctionScheduledEventDetails {
|
|
|
1146
912
|
*/
|
|
1147
913
|
timeoutInSeconds?: number;
|
|
1148
914
|
}
|
|
1149
|
-
export declare namespace LambdaFunctionScheduledEventDetails {
|
|
1150
|
-
/**
|
|
1151
|
-
* @internal
|
|
1152
|
-
*/
|
|
1153
|
-
const filterSensitiveLog: (obj: LambdaFunctionScheduledEventDetails) => any;
|
|
1154
|
-
}
|
|
1155
915
|
/**
|
|
1156
916
|
* <p>Contains details about a failed lambda function schedule event that occurred during an
|
|
1157
917
|
* execution.</p>
|
|
@@ -1166,12 +926,6 @@ export interface LambdaFunctionScheduleFailedEventDetails {
|
|
|
1166
926
|
*/
|
|
1167
927
|
cause?: string;
|
|
1168
928
|
}
|
|
1169
|
-
export declare namespace LambdaFunctionScheduleFailedEventDetails {
|
|
1170
|
-
/**
|
|
1171
|
-
* @internal
|
|
1172
|
-
*/
|
|
1173
|
-
const filterSensitiveLog: (obj: LambdaFunctionScheduleFailedEventDetails) => any;
|
|
1174
|
-
}
|
|
1175
929
|
/**
|
|
1176
930
|
* <p>Contains details about a lambda function that failed to start during an execution.</p>
|
|
1177
931
|
*/
|
|
@@ -1185,12 +939,6 @@ export interface LambdaFunctionStartFailedEventDetails {
|
|
|
1185
939
|
*/
|
|
1186
940
|
cause?: string;
|
|
1187
941
|
}
|
|
1188
|
-
export declare namespace LambdaFunctionStartFailedEventDetails {
|
|
1189
|
-
/**
|
|
1190
|
-
* @internal
|
|
1191
|
-
*/
|
|
1192
|
-
const filterSensitiveLog: (obj: LambdaFunctionStartFailedEventDetails) => any;
|
|
1193
|
-
}
|
|
1194
942
|
/**
|
|
1195
943
|
* <p>Contains details about a lambda function that successfully terminated during an
|
|
1196
944
|
* execution.</p>
|
|
@@ -1205,12 +953,6 @@ export interface LambdaFunctionSucceededEventDetails {
|
|
|
1205
953
|
*/
|
|
1206
954
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
1207
955
|
}
|
|
1208
|
-
export declare namespace LambdaFunctionSucceededEventDetails {
|
|
1209
|
-
/**
|
|
1210
|
-
* @internal
|
|
1211
|
-
*/
|
|
1212
|
-
const filterSensitiveLog: (obj: LambdaFunctionSucceededEventDetails) => any;
|
|
1213
|
-
}
|
|
1214
956
|
/**
|
|
1215
957
|
* <p>Contains details about a lambda function timeout that occurred during an execution.</p>
|
|
1216
958
|
*/
|
|
@@ -1224,12 +966,6 @@ export interface LambdaFunctionTimedOutEventDetails {
|
|
|
1224
966
|
*/
|
|
1225
967
|
cause?: string;
|
|
1226
968
|
}
|
|
1227
|
-
export declare namespace LambdaFunctionTimedOutEventDetails {
|
|
1228
|
-
/**
|
|
1229
|
-
* @internal
|
|
1230
|
-
*/
|
|
1231
|
-
const filterSensitiveLog: (obj: LambdaFunctionTimedOutEventDetails) => any;
|
|
1232
|
-
}
|
|
1233
969
|
/**
|
|
1234
970
|
* <p>Contains details about an iteration of a Map state.</p>
|
|
1235
971
|
*/
|
|
@@ -1243,12 +979,6 @@ export interface MapIterationEventDetails {
|
|
|
1243
979
|
*/
|
|
1244
980
|
index?: number;
|
|
1245
981
|
}
|
|
1246
|
-
export declare namespace MapIterationEventDetails {
|
|
1247
|
-
/**
|
|
1248
|
-
* @internal
|
|
1249
|
-
*/
|
|
1250
|
-
const filterSensitiveLog: (obj: MapIterationEventDetails) => any;
|
|
1251
|
-
}
|
|
1252
982
|
/**
|
|
1253
983
|
* <p>Details about a Map state that was started.</p>
|
|
1254
984
|
*/
|
|
@@ -1258,12 +988,6 @@ export interface MapStateStartedEventDetails {
|
|
|
1258
988
|
*/
|
|
1259
989
|
length?: number;
|
|
1260
990
|
}
|
|
1261
|
-
export declare namespace MapStateStartedEventDetails {
|
|
1262
|
-
/**
|
|
1263
|
-
* @internal
|
|
1264
|
-
*/
|
|
1265
|
-
const filterSensitiveLog: (obj: MapStateStartedEventDetails) => any;
|
|
1266
|
-
}
|
|
1267
991
|
/**
|
|
1268
992
|
* <p>Contains details about a state entered during an execution.</p>
|
|
1269
993
|
*/
|
|
@@ -1281,12 +1005,6 @@ export interface StateEnteredEventDetails {
|
|
|
1281
1005
|
*/
|
|
1282
1006
|
inputDetails?: HistoryEventExecutionDataDetails;
|
|
1283
1007
|
}
|
|
1284
|
-
export declare namespace StateEnteredEventDetails {
|
|
1285
|
-
/**
|
|
1286
|
-
* @internal
|
|
1287
|
-
*/
|
|
1288
|
-
const filterSensitiveLog: (obj: StateEnteredEventDetails) => any;
|
|
1289
|
-
}
|
|
1290
1008
|
/**
|
|
1291
1009
|
* <p>Contains details about an exit from a state during an execution.</p>
|
|
1292
1010
|
*/
|
|
@@ -1326,12 +1044,6 @@ export interface StateExitedEventDetails {
|
|
|
1326
1044
|
*/
|
|
1327
1045
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
1328
1046
|
}
|
|
1329
|
-
export declare namespace StateExitedEventDetails {
|
|
1330
|
-
/**
|
|
1331
|
-
* @internal
|
|
1332
|
-
*/
|
|
1333
|
-
const filterSensitiveLog: (obj: StateExitedEventDetails) => any;
|
|
1334
|
-
}
|
|
1335
1047
|
/**
|
|
1336
1048
|
* <p>Contains details about a task failure event.</p>
|
|
1337
1049
|
*/
|
|
@@ -1353,12 +1065,6 @@ export interface TaskFailedEventDetails {
|
|
|
1353
1065
|
*/
|
|
1354
1066
|
cause?: string;
|
|
1355
1067
|
}
|
|
1356
|
-
export declare namespace TaskFailedEventDetails {
|
|
1357
|
-
/**
|
|
1358
|
-
* @internal
|
|
1359
|
-
*/
|
|
1360
|
-
const filterSensitiveLog: (obj: TaskFailedEventDetails) => any;
|
|
1361
|
-
}
|
|
1362
1068
|
/**
|
|
1363
1069
|
* <p>Contains details about a task scheduled during an execution.</p>
|
|
1364
1070
|
*/
|
|
@@ -1389,12 +1095,6 @@ export interface TaskScheduledEventDetails {
|
|
|
1389
1095
|
*/
|
|
1390
1096
|
heartbeatInSeconds?: number;
|
|
1391
1097
|
}
|
|
1392
|
-
export declare namespace TaskScheduledEventDetails {
|
|
1393
|
-
/**
|
|
1394
|
-
* @internal
|
|
1395
|
-
*/
|
|
1396
|
-
const filterSensitiveLog: (obj: TaskScheduledEventDetails) => any;
|
|
1397
|
-
}
|
|
1398
1098
|
/**
|
|
1399
1099
|
* <p>Contains details about the start of a task during an execution.</p>
|
|
1400
1100
|
*/
|
|
@@ -1408,12 +1108,6 @@ export interface TaskStartedEventDetails {
|
|
|
1408
1108
|
*/
|
|
1409
1109
|
resource: string | undefined;
|
|
1410
1110
|
}
|
|
1411
|
-
export declare namespace TaskStartedEventDetails {
|
|
1412
|
-
/**
|
|
1413
|
-
* @internal
|
|
1414
|
-
*/
|
|
1415
|
-
const filterSensitiveLog: (obj: TaskStartedEventDetails) => any;
|
|
1416
|
-
}
|
|
1417
1111
|
/**
|
|
1418
1112
|
* <p>Contains details about a task that failed to start during an execution.</p>
|
|
1419
1113
|
*/
|
|
@@ -1435,12 +1129,6 @@ export interface TaskStartFailedEventDetails {
|
|
|
1435
1129
|
*/
|
|
1436
1130
|
cause?: string;
|
|
1437
1131
|
}
|
|
1438
|
-
export declare namespace TaskStartFailedEventDetails {
|
|
1439
|
-
/**
|
|
1440
|
-
* @internal
|
|
1441
|
-
*/
|
|
1442
|
-
const filterSensitiveLog: (obj: TaskStartFailedEventDetails) => any;
|
|
1443
|
-
}
|
|
1444
1132
|
/**
|
|
1445
1133
|
* <p>Contains details about a task that failed to submit during an execution.</p>
|
|
1446
1134
|
*/
|
|
@@ -1462,12 +1150,6 @@ export interface TaskSubmitFailedEventDetails {
|
|
|
1462
1150
|
*/
|
|
1463
1151
|
cause?: string;
|
|
1464
1152
|
}
|
|
1465
|
-
export declare namespace TaskSubmitFailedEventDetails {
|
|
1466
|
-
/**
|
|
1467
|
-
* @internal
|
|
1468
|
-
*/
|
|
1469
|
-
const filterSensitiveLog: (obj: TaskSubmitFailedEventDetails) => any;
|
|
1470
|
-
}
|
|
1471
1153
|
/**
|
|
1472
1154
|
* <p>Contains details about a task submitted to a resource .</p>
|
|
1473
1155
|
*/
|
|
@@ -1489,12 +1171,6 @@ export interface TaskSubmittedEventDetails {
|
|
|
1489
1171
|
*/
|
|
1490
1172
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
1491
1173
|
}
|
|
1492
|
-
export declare namespace TaskSubmittedEventDetails {
|
|
1493
|
-
/**
|
|
1494
|
-
* @internal
|
|
1495
|
-
*/
|
|
1496
|
-
const filterSensitiveLog: (obj: TaskSubmittedEventDetails) => any;
|
|
1497
|
-
}
|
|
1498
1174
|
/**
|
|
1499
1175
|
* <p>Contains details about the successful completion of a task state.</p>
|
|
1500
1176
|
*/
|
|
@@ -1517,12 +1193,6 @@ export interface TaskSucceededEventDetails {
|
|
|
1517
1193
|
*/
|
|
1518
1194
|
outputDetails?: HistoryEventExecutionDataDetails;
|
|
1519
1195
|
}
|
|
1520
|
-
export declare namespace TaskSucceededEventDetails {
|
|
1521
|
-
/**
|
|
1522
|
-
* @internal
|
|
1523
|
-
*/
|
|
1524
|
-
const filterSensitiveLog: (obj: TaskSucceededEventDetails) => any;
|
|
1525
|
-
}
|
|
1526
1196
|
/**
|
|
1527
1197
|
* <p>Contains details about a resource timeout that occurred during an execution.</p>
|
|
1528
1198
|
*/
|
|
@@ -1544,12 +1214,6 @@ export interface TaskTimedOutEventDetails {
|
|
|
1544
1214
|
*/
|
|
1545
1215
|
cause?: string;
|
|
1546
1216
|
}
|
|
1547
|
-
export declare namespace TaskTimedOutEventDetails {
|
|
1548
|
-
/**
|
|
1549
|
-
* @internal
|
|
1550
|
-
*/
|
|
1551
|
-
const filterSensitiveLog: (obj: TaskTimedOutEventDetails) => any;
|
|
1552
|
-
}
|
|
1553
1217
|
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";
|
|
1554
1218
|
/**
|
|
1555
1219
|
* <p>Contains details about the events of an execution.</p>
|
|
@@ -1703,12 +1367,6 @@ export interface HistoryEvent {
|
|
|
1703
1367
|
*/
|
|
1704
1368
|
stateExitedEventDetails?: StateExitedEventDetails;
|
|
1705
1369
|
}
|
|
1706
|
-
export declare namespace HistoryEvent {
|
|
1707
|
-
/**
|
|
1708
|
-
* @internal
|
|
1709
|
-
*/
|
|
1710
|
-
const filterSensitiveLog: (obj: HistoryEvent) => any;
|
|
1711
|
-
}
|
|
1712
1370
|
export interface GetExecutionHistoryOutput {
|
|
1713
1371
|
/**
|
|
1714
1372
|
* <p>The list of events that occurred in the execution.</p>
|
|
@@ -1720,12 +1378,6 @@ export interface GetExecutionHistoryOutput {
|
|
|
1720
1378
|
*/
|
|
1721
1379
|
nextToken?: string;
|
|
1722
1380
|
}
|
|
1723
|
-
export declare namespace GetExecutionHistoryOutput {
|
|
1724
|
-
/**
|
|
1725
|
-
* @internal
|
|
1726
|
-
*/
|
|
1727
|
-
const filterSensitiveLog: (obj: GetExecutionHistoryOutput) => any;
|
|
1728
|
-
}
|
|
1729
1381
|
/**
|
|
1730
1382
|
* <p>The provided token is invalid.</p>
|
|
1731
1383
|
*/
|
|
@@ -1750,12 +1402,6 @@ export interface ListActivitiesInput {
|
|
|
1750
1402
|
*/
|
|
1751
1403
|
nextToken?: string;
|
|
1752
1404
|
}
|
|
1753
|
-
export declare namespace ListActivitiesInput {
|
|
1754
|
-
/**
|
|
1755
|
-
* @internal
|
|
1756
|
-
*/
|
|
1757
|
-
const filterSensitiveLog: (obj: ListActivitiesInput) => any;
|
|
1758
|
-
}
|
|
1759
1405
|
export interface ListActivitiesOutput {
|
|
1760
1406
|
/**
|
|
1761
1407
|
* <p>The list of activities.</p>
|
|
@@ -1767,12 +1413,6 @@ export interface ListActivitiesOutput {
|
|
|
1767
1413
|
*/
|
|
1768
1414
|
nextToken?: string;
|
|
1769
1415
|
}
|
|
1770
|
-
export declare namespace ListActivitiesOutput {
|
|
1771
|
-
/**
|
|
1772
|
-
* @internal
|
|
1773
|
-
*/
|
|
1774
|
-
const filterSensitiveLog: (obj: ListActivitiesOutput) => any;
|
|
1775
|
-
}
|
|
1776
1416
|
export interface ListExecutionsInput {
|
|
1777
1417
|
/**
|
|
1778
1418
|
* <p>The Amazon Resource Name (ARN) of the state machine whose executions is listed.</p>
|
|
@@ -1795,12 +1435,6 @@ export interface ListExecutionsInput {
|
|
|
1795
1435
|
*/
|
|
1796
1436
|
nextToken?: string;
|
|
1797
1437
|
}
|
|
1798
|
-
export declare namespace ListExecutionsInput {
|
|
1799
|
-
/**
|
|
1800
|
-
* @internal
|
|
1801
|
-
*/
|
|
1802
|
-
const filterSensitiveLog: (obj: ListExecutionsInput) => any;
|
|
1803
|
-
}
|
|
1804
1438
|
/**
|
|
1805
1439
|
* <p>Contains details about an execution.</p>
|
|
1806
1440
|
*/
|
|
@@ -1852,12 +1486,6 @@ export interface ExecutionListItem {
|
|
|
1852
1486
|
*/
|
|
1853
1487
|
stopDate?: Date;
|
|
1854
1488
|
}
|
|
1855
|
-
export declare namespace ExecutionListItem {
|
|
1856
|
-
/**
|
|
1857
|
-
* @internal
|
|
1858
|
-
*/
|
|
1859
|
-
const filterSensitiveLog: (obj: ExecutionListItem) => any;
|
|
1860
|
-
}
|
|
1861
1489
|
export interface ListExecutionsOutput {
|
|
1862
1490
|
/**
|
|
1863
1491
|
* <p>The list of matching executions.</p>
|
|
@@ -1869,12 +1497,6 @@ export interface ListExecutionsOutput {
|
|
|
1869
1497
|
*/
|
|
1870
1498
|
nextToken?: string;
|
|
1871
1499
|
}
|
|
1872
|
-
export declare namespace ListExecutionsOutput {
|
|
1873
|
-
/**
|
|
1874
|
-
* @internal
|
|
1875
|
-
*/
|
|
1876
|
-
const filterSensitiveLog: (obj: ListExecutionsOutput) => any;
|
|
1877
|
-
}
|
|
1878
1500
|
export interface ListStateMachinesInput {
|
|
1879
1501
|
/**
|
|
1880
1502
|
* <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.
|
|
@@ -1888,12 +1510,6 @@ export interface ListStateMachinesInput {
|
|
|
1888
1510
|
*/
|
|
1889
1511
|
nextToken?: string;
|
|
1890
1512
|
}
|
|
1891
|
-
export declare namespace ListStateMachinesInput {
|
|
1892
|
-
/**
|
|
1893
|
-
* @internal
|
|
1894
|
-
*/
|
|
1895
|
-
const filterSensitiveLog: (obj: ListStateMachinesInput) => any;
|
|
1896
|
-
}
|
|
1897
1513
|
/**
|
|
1898
1514
|
* <p>Contains details about the state machine.</p>
|
|
1899
1515
|
*/
|
|
@@ -1937,12 +1553,6 @@ export interface StateMachineListItem {
|
|
|
1937
1553
|
*/
|
|
1938
1554
|
creationDate: Date | undefined;
|
|
1939
1555
|
}
|
|
1940
|
-
export declare namespace StateMachineListItem {
|
|
1941
|
-
/**
|
|
1942
|
-
* @internal
|
|
1943
|
-
*/
|
|
1944
|
-
const filterSensitiveLog: (obj: StateMachineListItem) => any;
|
|
1945
|
-
}
|
|
1946
1556
|
export interface ListStateMachinesOutput {
|
|
1947
1557
|
stateMachines: StateMachineListItem[] | undefined;
|
|
1948
1558
|
/**
|
|
@@ -1951,36 +1561,18 @@ export interface ListStateMachinesOutput {
|
|
|
1951
1561
|
*/
|
|
1952
1562
|
nextToken?: string;
|
|
1953
1563
|
}
|
|
1954
|
-
export declare namespace ListStateMachinesOutput {
|
|
1955
|
-
/**
|
|
1956
|
-
* @internal
|
|
1957
|
-
*/
|
|
1958
|
-
const filterSensitiveLog: (obj: ListStateMachinesOutput) => any;
|
|
1959
|
-
}
|
|
1960
1564
|
export interface ListTagsForResourceInput {
|
|
1961
1565
|
/**
|
|
1962
1566
|
* <p>The Amazon Resource Name (ARN) for the Step Functions state machine or activity.</p>
|
|
1963
1567
|
*/
|
|
1964
1568
|
resourceArn: string | undefined;
|
|
1965
1569
|
}
|
|
1966
|
-
export declare namespace ListTagsForResourceInput {
|
|
1967
|
-
/**
|
|
1968
|
-
* @internal
|
|
1969
|
-
*/
|
|
1970
|
-
const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
1971
|
-
}
|
|
1972
1570
|
export interface ListTagsForResourceOutput {
|
|
1973
1571
|
/**
|
|
1974
1572
|
* <p>An array of tags associated with the resource.</p>
|
|
1975
1573
|
*/
|
|
1976
1574
|
tags?: Tag[];
|
|
1977
1575
|
}
|
|
1978
|
-
export declare namespace ListTagsForResourceOutput {
|
|
1979
|
-
/**
|
|
1980
|
-
* @internal
|
|
1981
|
-
*/
|
|
1982
|
-
const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
1983
|
-
}
|
|
1984
1576
|
/**
|
|
1985
1577
|
* <p>Could not find the referenced resource. Only state machine and activity ARNs are
|
|
1986
1578
|
* supported.</p>
|
|
@@ -2010,20 +1602,8 @@ export interface SendTaskFailureInput {
|
|
|
2010
1602
|
*/
|
|
2011
1603
|
cause?: string;
|
|
2012
1604
|
}
|
|
2013
|
-
export declare namespace SendTaskFailureInput {
|
|
2014
|
-
/**
|
|
2015
|
-
* @internal
|
|
2016
|
-
*/
|
|
2017
|
-
const filterSensitiveLog: (obj: SendTaskFailureInput) => any;
|
|
2018
|
-
}
|
|
2019
1605
|
export interface SendTaskFailureOutput {
|
|
2020
1606
|
}
|
|
2021
|
-
export declare namespace SendTaskFailureOutput {
|
|
2022
|
-
/**
|
|
2023
|
-
* @internal
|
|
2024
|
-
*/
|
|
2025
|
-
const filterSensitiveLog: (obj: SendTaskFailureOutput) => any;
|
|
2026
|
-
}
|
|
2027
1607
|
export declare class TaskDoesNotExist extends __BaseException {
|
|
2028
1608
|
readonly name: "TaskDoesNotExist";
|
|
2029
1609
|
readonly $fault: "client";
|
|
@@ -2048,20 +1628,8 @@ export interface SendTaskHeartbeatInput {
|
|
|
2048
1628
|
*/
|
|
2049
1629
|
taskToken: string | undefined;
|
|
2050
1630
|
}
|
|
2051
|
-
export declare namespace SendTaskHeartbeatInput {
|
|
2052
|
-
/**
|
|
2053
|
-
* @internal
|
|
2054
|
-
*/
|
|
2055
|
-
const filterSensitiveLog: (obj: SendTaskHeartbeatInput) => any;
|
|
2056
|
-
}
|
|
2057
1631
|
export interface SendTaskHeartbeatOutput {
|
|
2058
1632
|
}
|
|
2059
|
-
export declare namespace SendTaskHeartbeatOutput {
|
|
2060
|
-
/**
|
|
2061
|
-
* @internal
|
|
2062
|
-
*/
|
|
2063
|
-
const filterSensitiveLog: (obj: SendTaskHeartbeatOutput) => any;
|
|
2064
|
-
}
|
|
2065
1633
|
/**
|
|
2066
1634
|
* <p>The provided JSON output data is invalid.</p>
|
|
2067
1635
|
*/
|
|
@@ -2085,20 +1653,8 @@ export interface SendTaskSuccessInput {
|
|
|
2085
1653
|
*/
|
|
2086
1654
|
output: string | undefined;
|
|
2087
1655
|
}
|
|
2088
|
-
export declare namespace SendTaskSuccessInput {
|
|
2089
|
-
/**
|
|
2090
|
-
* @internal
|
|
2091
|
-
*/
|
|
2092
|
-
const filterSensitiveLog: (obj: SendTaskSuccessInput) => any;
|
|
2093
|
-
}
|
|
2094
1656
|
export interface SendTaskSuccessOutput {
|
|
2095
1657
|
}
|
|
2096
|
-
export declare namespace SendTaskSuccessOutput {
|
|
2097
|
-
/**
|
|
2098
|
-
* @internal
|
|
2099
|
-
*/
|
|
2100
|
-
const filterSensitiveLog: (obj: SendTaskSuccessOutput) => any;
|
|
2101
|
-
}
|
|
2102
1658
|
/**
|
|
2103
1659
|
* <p>The execution has the same <code>name</code> as another execution (but a different
|
|
2104
1660
|
* <code>input</code>).</p>
|
|
@@ -2189,12 +1745,6 @@ export interface StartExecutionInput {
|
|
|
2189
1745
|
*/
|
|
2190
1746
|
traceHeader?: string;
|
|
2191
1747
|
}
|
|
2192
|
-
export declare namespace StartExecutionInput {
|
|
2193
|
-
/**
|
|
2194
|
-
* @internal
|
|
2195
|
-
*/
|
|
2196
|
-
const filterSensitiveLog: (obj: StartExecutionInput) => any;
|
|
2197
|
-
}
|
|
2198
1748
|
export interface StartExecutionOutput {
|
|
2199
1749
|
/**
|
|
2200
1750
|
* <p>The Amazon Resource Name (ARN) that identifies the execution.</p>
|
|
@@ -2205,12 +1755,6 @@ export interface StartExecutionOutput {
|
|
|
2205
1755
|
*/
|
|
2206
1756
|
startDate: Date | undefined;
|
|
2207
1757
|
}
|
|
2208
|
-
export declare namespace StartExecutionOutput {
|
|
2209
|
-
/**
|
|
2210
|
-
* @internal
|
|
2211
|
-
*/
|
|
2212
|
-
const filterSensitiveLog: (obj: StartExecutionOutput) => any;
|
|
2213
|
-
}
|
|
2214
1758
|
export interface StartSyncExecutionInput {
|
|
2215
1759
|
/**
|
|
2216
1760
|
* <p>The Amazon Resource Name (ARN) of the state machine to execute.</p>
|
|
@@ -2238,12 +1782,6 @@ export interface StartSyncExecutionInput {
|
|
|
2238
1782
|
*/
|
|
2239
1783
|
traceHeader?: string;
|
|
2240
1784
|
}
|
|
2241
|
-
export declare namespace StartSyncExecutionInput {
|
|
2242
|
-
/**
|
|
2243
|
-
* @internal
|
|
2244
|
-
*/
|
|
2245
|
-
const filterSensitiveLog: (obj: StartSyncExecutionInput) => any;
|
|
2246
|
-
}
|
|
2247
1785
|
/**
|
|
2248
1786
|
* <p>An object that describes workflow billing details.</p>
|
|
2249
1787
|
*/
|
|
@@ -2257,12 +1795,6 @@ export interface BillingDetails {
|
|
|
2257
1795
|
*/
|
|
2258
1796
|
billedDurationInMilliseconds?: number;
|
|
2259
1797
|
}
|
|
2260
|
-
export declare namespace BillingDetails {
|
|
2261
|
-
/**
|
|
2262
|
-
* @internal
|
|
2263
|
-
*/
|
|
2264
|
-
const filterSensitiveLog: (obj: BillingDetails) => any;
|
|
2265
|
-
}
|
|
2266
1798
|
export declare type SyncExecutionStatus = "FAILED" | "SUCCEEDED" | "TIMED_OUT";
|
|
2267
1799
|
export interface StartSyncExecutionOutput {
|
|
2268
1800
|
/**
|
|
@@ -2327,12 +1859,6 @@ export interface StartSyncExecutionOutput {
|
|
|
2327
1859
|
*/
|
|
2328
1860
|
billingDetails?: BillingDetails;
|
|
2329
1861
|
}
|
|
2330
|
-
export declare namespace StartSyncExecutionOutput {
|
|
2331
|
-
/**
|
|
2332
|
-
* @internal
|
|
2333
|
-
*/
|
|
2334
|
-
const filterSensitiveLog: (obj: StartSyncExecutionOutput) => any;
|
|
2335
|
-
}
|
|
2336
1862
|
export interface StopExecutionInput {
|
|
2337
1863
|
/**
|
|
2338
1864
|
* <p>The Amazon Resource Name (ARN) of the execution to stop.</p>
|
|
@@ -2347,24 +1873,12 @@ export interface StopExecutionInput {
|
|
|
2347
1873
|
*/
|
|
2348
1874
|
cause?: string;
|
|
2349
1875
|
}
|
|
2350
|
-
export declare namespace StopExecutionInput {
|
|
2351
|
-
/**
|
|
2352
|
-
* @internal
|
|
2353
|
-
*/
|
|
2354
|
-
const filterSensitiveLog: (obj: StopExecutionInput) => any;
|
|
2355
|
-
}
|
|
2356
1876
|
export interface StopExecutionOutput {
|
|
2357
1877
|
/**
|
|
2358
1878
|
* <p>The date the execution is stopped.</p>
|
|
2359
1879
|
*/
|
|
2360
1880
|
stopDate: Date | undefined;
|
|
2361
1881
|
}
|
|
2362
|
-
export declare namespace StopExecutionOutput {
|
|
2363
|
-
/**
|
|
2364
|
-
* @internal
|
|
2365
|
-
*/
|
|
2366
|
-
const filterSensitiveLog: (obj: StopExecutionOutput) => any;
|
|
2367
|
-
}
|
|
2368
1882
|
export interface TagResourceInput {
|
|
2369
1883
|
/**
|
|
2370
1884
|
* <p>The Amazon Resource Name (ARN) for the Step Functions state machine or activity.</p>
|
|
@@ -2376,20 +1890,8 @@ export interface TagResourceInput {
|
|
|
2376
1890
|
*/
|
|
2377
1891
|
tags: Tag[] | undefined;
|
|
2378
1892
|
}
|
|
2379
|
-
export declare namespace TagResourceInput {
|
|
2380
|
-
/**
|
|
2381
|
-
* @internal
|
|
2382
|
-
*/
|
|
2383
|
-
const filterSensitiveLog: (obj: TagResourceInput) => any;
|
|
2384
|
-
}
|
|
2385
1893
|
export interface TagResourceOutput {
|
|
2386
1894
|
}
|
|
2387
|
-
export declare namespace TagResourceOutput {
|
|
2388
|
-
/**
|
|
2389
|
-
* @internal
|
|
2390
|
-
*/
|
|
2391
|
-
const filterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
2392
|
-
}
|
|
2393
1895
|
export interface UntagResourceInput {
|
|
2394
1896
|
/**
|
|
2395
1897
|
* <p>The Amazon Resource Name (ARN) for the Step Functions state machine or activity.</p>
|
|
@@ -2400,20 +1902,8 @@ export interface UntagResourceInput {
|
|
|
2400
1902
|
*/
|
|
2401
1903
|
tagKeys: string[] | undefined;
|
|
2402
1904
|
}
|
|
2403
|
-
export declare namespace UntagResourceInput {
|
|
2404
|
-
/**
|
|
2405
|
-
* @internal
|
|
2406
|
-
*/
|
|
2407
|
-
const filterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
2408
|
-
}
|
|
2409
1905
|
export interface UntagResourceOutput {
|
|
2410
1906
|
}
|
|
2411
|
-
export declare namespace UntagResourceOutput {
|
|
2412
|
-
/**
|
|
2413
|
-
* @internal
|
|
2414
|
-
*/
|
|
2415
|
-
const filterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
2416
|
-
}
|
|
2417
1907
|
/**
|
|
2418
1908
|
* <p>Request is missing a required parameter. This error occurs if both <code>definition</code>
|
|
2419
1909
|
* and <code>roleArn</code> are not specified.</p>
|
|
@@ -2449,21 +1939,357 @@ export interface UpdateStateMachineInput {
|
|
|
2449
1939
|
*/
|
|
2450
1940
|
tracingConfiguration?: TracingConfiguration;
|
|
2451
1941
|
}
|
|
2452
|
-
export declare namespace UpdateStateMachineInput {
|
|
2453
|
-
/**
|
|
2454
|
-
* @internal
|
|
2455
|
-
*/
|
|
2456
|
-
const filterSensitiveLog: (obj: UpdateStateMachineInput) => any;
|
|
2457
|
-
}
|
|
2458
1942
|
export interface UpdateStateMachineOutput {
|
|
2459
1943
|
/**
|
|
2460
1944
|
* <p>The date and time the state machine was updated.</p>
|
|
2461
1945
|
*/
|
|
2462
1946
|
updateDate: Date | undefined;
|
|
2463
1947
|
}
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
1948
|
+
/**
|
|
1949
|
+
* @internal
|
|
1950
|
+
*/
|
|
1951
|
+
export declare const ActivityFailedEventDetailsFilterSensitiveLog: (obj: ActivityFailedEventDetails) => any;
|
|
1952
|
+
/**
|
|
1953
|
+
* @internal
|
|
1954
|
+
*/
|
|
1955
|
+
export declare const ActivityListItemFilterSensitiveLog: (obj: ActivityListItem) => any;
|
|
1956
|
+
/**
|
|
1957
|
+
* @internal
|
|
1958
|
+
*/
|
|
1959
|
+
export declare const HistoryEventExecutionDataDetailsFilterSensitiveLog: (obj: HistoryEventExecutionDataDetails) => any;
|
|
1960
|
+
/**
|
|
1961
|
+
* @internal
|
|
1962
|
+
*/
|
|
1963
|
+
export declare const ActivityScheduledEventDetailsFilterSensitiveLog: (obj: ActivityScheduledEventDetails) => any;
|
|
1964
|
+
/**
|
|
1965
|
+
* @internal
|
|
1966
|
+
*/
|
|
1967
|
+
export declare const ActivityScheduleFailedEventDetailsFilterSensitiveLog: (obj: ActivityScheduleFailedEventDetails) => any;
|
|
1968
|
+
/**
|
|
1969
|
+
* @internal
|
|
1970
|
+
*/
|
|
1971
|
+
export declare const ActivityStartedEventDetailsFilterSensitiveLog: (obj: ActivityStartedEventDetails) => any;
|
|
1972
|
+
/**
|
|
1973
|
+
* @internal
|
|
1974
|
+
*/
|
|
1975
|
+
export declare const ActivitySucceededEventDetailsFilterSensitiveLog: (obj: ActivitySucceededEventDetails) => any;
|
|
1976
|
+
/**
|
|
1977
|
+
* @internal
|
|
1978
|
+
*/
|
|
1979
|
+
export declare const ActivityTimedOutEventDetailsFilterSensitiveLog: (obj: ActivityTimedOutEventDetails) => any;
|
|
1980
|
+
/**
|
|
1981
|
+
* @internal
|
|
1982
|
+
*/
|
|
1983
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1984
|
+
/**
|
|
1985
|
+
* @internal
|
|
1986
|
+
*/
|
|
1987
|
+
export declare const CreateActivityInputFilterSensitiveLog: (obj: CreateActivityInput) => any;
|
|
1988
|
+
/**
|
|
1989
|
+
* @internal
|
|
1990
|
+
*/
|
|
1991
|
+
export declare const CreateActivityOutputFilterSensitiveLog: (obj: CreateActivityOutput) => any;
|
|
1992
|
+
/**
|
|
1993
|
+
* @internal
|
|
1994
|
+
*/
|
|
1995
|
+
export declare const CloudWatchLogsLogGroupFilterSensitiveLog: (obj: CloudWatchLogsLogGroup) => any;
|
|
1996
|
+
/**
|
|
1997
|
+
* @internal
|
|
1998
|
+
*/
|
|
1999
|
+
export declare const LogDestinationFilterSensitiveLog: (obj: LogDestination) => any;
|
|
2000
|
+
/**
|
|
2001
|
+
* @internal
|
|
2002
|
+
*/
|
|
2003
|
+
export declare const LoggingConfigurationFilterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
2004
|
+
/**
|
|
2005
|
+
* @internal
|
|
2006
|
+
*/
|
|
2007
|
+
export declare const TracingConfigurationFilterSensitiveLog: (obj: TracingConfiguration) => any;
|
|
2008
|
+
/**
|
|
2009
|
+
* @internal
|
|
2010
|
+
*/
|
|
2011
|
+
export declare const CreateStateMachineInputFilterSensitiveLog: (obj: CreateStateMachineInput) => any;
|
|
2012
|
+
/**
|
|
2013
|
+
* @internal
|
|
2014
|
+
*/
|
|
2015
|
+
export declare const CreateStateMachineOutputFilterSensitiveLog: (obj: CreateStateMachineOutput) => any;
|
|
2016
|
+
/**
|
|
2017
|
+
* @internal
|
|
2018
|
+
*/
|
|
2019
|
+
export declare const DeleteActivityInputFilterSensitiveLog: (obj: DeleteActivityInput) => any;
|
|
2020
|
+
/**
|
|
2021
|
+
* @internal
|
|
2022
|
+
*/
|
|
2023
|
+
export declare const DeleteActivityOutputFilterSensitiveLog: (obj: DeleteActivityOutput) => any;
|
|
2024
|
+
/**
|
|
2025
|
+
* @internal
|
|
2026
|
+
*/
|
|
2027
|
+
export declare const DeleteStateMachineInputFilterSensitiveLog: (obj: DeleteStateMachineInput) => any;
|
|
2028
|
+
/**
|
|
2029
|
+
* @internal
|
|
2030
|
+
*/
|
|
2031
|
+
export declare const DeleteStateMachineOutputFilterSensitiveLog: (obj: DeleteStateMachineOutput) => any;
|
|
2032
|
+
/**
|
|
2033
|
+
* @internal
|
|
2034
|
+
*/
|
|
2035
|
+
export declare const DescribeActivityInputFilterSensitiveLog: (obj: DescribeActivityInput) => any;
|
|
2036
|
+
/**
|
|
2037
|
+
* @internal
|
|
2038
|
+
*/
|
|
2039
|
+
export declare const DescribeActivityOutputFilterSensitiveLog: (obj: DescribeActivityOutput) => any;
|
|
2040
|
+
/**
|
|
2041
|
+
* @internal
|
|
2042
|
+
*/
|
|
2043
|
+
export declare const DescribeExecutionInputFilterSensitiveLog: (obj: DescribeExecutionInput) => any;
|
|
2044
|
+
/**
|
|
2045
|
+
* @internal
|
|
2046
|
+
*/
|
|
2047
|
+
export declare const CloudWatchEventsExecutionDataDetailsFilterSensitiveLog: (obj: CloudWatchEventsExecutionDataDetails) => any;
|
|
2048
|
+
/**
|
|
2049
|
+
* @internal
|
|
2050
|
+
*/
|
|
2051
|
+
export declare const DescribeExecutionOutputFilterSensitiveLog: (obj: DescribeExecutionOutput) => any;
|
|
2052
|
+
/**
|
|
2053
|
+
* @internal
|
|
2054
|
+
*/
|
|
2055
|
+
export declare const DescribeStateMachineInputFilterSensitiveLog: (obj: DescribeStateMachineInput) => any;
|
|
2056
|
+
/**
|
|
2057
|
+
* @internal
|
|
2058
|
+
*/
|
|
2059
|
+
export declare const DescribeStateMachineOutputFilterSensitiveLog: (obj: DescribeStateMachineOutput) => any;
|
|
2060
|
+
/**
|
|
2061
|
+
* @internal
|
|
2062
|
+
*/
|
|
2063
|
+
export declare const DescribeStateMachineForExecutionInputFilterSensitiveLog: (obj: DescribeStateMachineForExecutionInput) => any;
|
|
2064
|
+
/**
|
|
2065
|
+
* @internal
|
|
2066
|
+
*/
|
|
2067
|
+
export declare const DescribeStateMachineForExecutionOutputFilterSensitiveLog: (obj: DescribeStateMachineForExecutionOutput) => any;
|
|
2068
|
+
/**
|
|
2069
|
+
* @internal
|
|
2070
|
+
*/
|
|
2071
|
+
export declare const GetActivityTaskInputFilterSensitiveLog: (obj: GetActivityTaskInput) => any;
|
|
2072
|
+
/**
|
|
2073
|
+
* @internal
|
|
2074
|
+
*/
|
|
2075
|
+
export declare const GetActivityTaskOutputFilterSensitiveLog: (obj: GetActivityTaskOutput) => any;
|
|
2076
|
+
/**
|
|
2077
|
+
* @internal
|
|
2078
|
+
*/
|
|
2079
|
+
export declare const GetExecutionHistoryInputFilterSensitiveLog: (obj: GetExecutionHistoryInput) => any;
|
|
2080
|
+
/**
|
|
2081
|
+
* @internal
|
|
2082
|
+
*/
|
|
2083
|
+
export declare const ExecutionAbortedEventDetailsFilterSensitiveLog: (obj: ExecutionAbortedEventDetails) => any;
|
|
2084
|
+
/**
|
|
2085
|
+
* @internal
|
|
2086
|
+
*/
|
|
2087
|
+
export declare const ExecutionFailedEventDetailsFilterSensitiveLog: (obj: ExecutionFailedEventDetails) => any;
|
|
2088
|
+
/**
|
|
2089
|
+
* @internal
|
|
2090
|
+
*/
|
|
2091
|
+
export declare const ExecutionStartedEventDetailsFilterSensitiveLog: (obj: ExecutionStartedEventDetails) => any;
|
|
2092
|
+
/**
|
|
2093
|
+
* @internal
|
|
2094
|
+
*/
|
|
2095
|
+
export declare const ExecutionSucceededEventDetailsFilterSensitiveLog: (obj: ExecutionSucceededEventDetails) => any;
|
|
2096
|
+
/**
|
|
2097
|
+
* @internal
|
|
2098
|
+
*/
|
|
2099
|
+
export declare const ExecutionTimedOutEventDetailsFilterSensitiveLog: (obj: ExecutionTimedOutEventDetails) => any;
|
|
2100
|
+
/**
|
|
2101
|
+
* @internal
|
|
2102
|
+
*/
|
|
2103
|
+
export declare const LambdaFunctionFailedEventDetailsFilterSensitiveLog: (obj: LambdaFunctionFailedEventDetails) => any;
|
|
2104
|
+
/**
|
|
2105
|
+
* @internal
|
|
2106
|
+
*/
|
|
2107
|
+
export declare const LambdaFunctionScheduledEventDetailsFilterSensitiveLog: (obj: LambdaFunctionScheduledEventDetails) => any;
|
|
2108
|
+
/**
|
|
2109
|
+
* @internal
|
|
2110
|
+
*/
|
|
2111
|
+
export declare const LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog: (obj: LambdaFunctionScheduleFailedEventDetails) => any;
|
|
2112
|
+
/**
|
|
2113
|
+
* @internal
|
|
2114
|
+
*/
|
|
2115
|
+
export declare const LambdaFunctionStartFailedEventDetailsFilterSensitiveLog: (obj: LambdaFunctionStartFailedEventDetails) => any;
|
|
2116
|
+
/**
|
|
2117
|
+
* @internal
|
|
2118
|
+
*/
|
|
2119
|
+
export declare const LambdaFunctionSucceededEventDetailsFilterSensitiveLog: (obj: LambdaFunctionSucceededEventDetails) => any;
|
|
2120
|
+
/**
|
|
2121
|
+
* @internal
|
|
2122
|
+
*/
|
|
2123
|
+
export declare const LambdaFunctionTimedOutEventDetailsFilterSensitiveLog: (obj: LambdaFunctionTimedOutEventDetails) => any;
|
|
2124
|
+
/**
|
|
2125
|
+
* @internal
|
|
2126
|
+
*/
|
|
2127
|
+
export declare const MapIterationEventDetailsFilterSensitiveLog: (obj: MapIterationEventDetails) => any;
|
|
2128
|
+
/**
|
|
2129
|
+
* @internal
|
|
2130
|
+
*/
|
|
2131
|
+
export declare const MapStateStartedEventDetailsFilterSensitiveLog: (obj: MapStateStartedEventDetails) => any;
|
|
2132
|
+
/**
|
|
2133
|
+
* @internal
|
|
2134
|
+
*/
|
|
2135
|
+
export declare const StateEnteredEventDetailsFilterSensitiveLog: (obj: StateEnteredEventDetails) => any;
|
|
2136
|
+
/**
|
|
2137
|
+
* @internal
|
|
2138
|
+
*/
|
|
2139
|
+
export declare const StateExitedEventDetailsFilterSensitiveLog: (obj: StateExitedEventDetails) => any;
|
|
2140
|
+
/**
|
|
2141
|
+
* @internal
|
|
2142
|
+
*/
|
|
2143
|
+
export declare const TaskFailedEventDetailsFilterSensitiveLog: (obj: TaskFailedEventDetails) => any;
|
|
2144
|
+
/**
|
|
2145
|
+
* @internal
|
|
2146
|
+
*/
|
|
2147
|
+
export declare const TaskScheduledEventDetailsFilterSensitiveLog: (obj: TaskScheduledEventDetails) => any;
|
|
2148
|
+
/**
|
|
2149
|
+
* @internal
|
|
2150
|
+
*/
|
|
2151
|
+
export declare const TaskStartedEventDetailsFilterSensitiveLog: (obj: TaskStartedEventDetails) => any;
|
|
2152
|
+
/**
|
|
2153
|
+
* @internal
|
|
2154
|
+
*/
|
|
2155
|
+
export declare const TaskStartFailedEventDetailsFilterSensitiveLog: (obj: TaskStartFailedEventDetails) => any;
|
|
2156
|
+
/**
|
|
2157
|
+
* @internal
|
|
2158
|
+
*/
|
|
2159
|
+
export declare const TaskSubmitFailedEventDetailsFilterSensitiveLog: (obj: TaskSubmitFailedEventDetails) => any;
|
|
2160
|
+
/**
|
|
2161
|
+
* @internal
|
|
2162
|
+
*/
|
|
2163
|
+
export declare const TaskSubmittedEventDetailsFilterSensitiveLog: (obj: TaskSubmittedEventDetails) => any;
|
|
2164
|
+
/**
|
|
2165
|
+
* @internal
|
|
2166
|
+
*/
|
|
2167
|
+
export declare const TaskSucceededEventDetailsFilterSensitiveLog: (obj: TaskSucceededEventDetails) => any;
|
|
2168
|
+
/**
|
|
2169
|
+
* @internal
|
|
2170
|
+
*/
|
|
2171
|
+
export declare const TaskTimedOutEventDetailsFilterSensitiveLog: (obj: TaskTimedOutEventDetails) => any;
|
|
2172
|
+
/**
|
|
2173
|
+
* @internal
|
|
2174
|
+
*/
|
|
2175
|
+
export declare const HistoryEventFilterSensitiveLog: (obj: HistoryEvent) => any;
|
|
2176
|
+
/**
|
|
2177
|
+
* @internal
|
|
2178
|
+
*/
|
|
2179
|
+
export declare const GetExecutionHistoryOutputFilterSensitiveLog: (obj: GetExecutionHistoryOutput) => any;
|
|
2180
|
+
/**
|
|
2181
|
+
* @internal
|
|
2182
|
+
*/
|
|
2183
|
+
export declare const ListActivitiesInputFilterSensitiveLog: (obj: ListActivitiesInput) => any;
|
|
2184
|
+
/**
|
|
2185
|
+
* @internal
|
|
2186
|
+
*/
|
|
2187
|
+
export declare const ListActivitiesOutputFilterSensitiveLog: (obj: ListActivitiesOutput) => any;
|
|
2188
|
+
/**
|
|
2189
|
+
* @internal
|
|
2190
|
+
*/
|
|
2191
|
+
export declare const ListExecutionsInputFilterSensitiveLog: (obj: ListExecutionsInput) => any;
|
|
2192
|
+
/**
|
|
2193
|
+
* @internal
|
|
2194
|
+
*/
|
|
2195
|
+
export declare const ExecutionListItemFilterSensitiveLog: (obj: ExecutionListItem) => any;
|
|
2196
|
+
/**
|
|
2197
|
+
* @internal
|
|
2198
|
+
*/
|
|
2199
|
+
export declare const ListExecutionsOutputFilterSensitiveLog: (obj: ListExecutionsOutput) => any;
|
|
2200
|
+
/**
|
|
2201
|
+
* @internal
|
|
2202
|
+
*/
|
|
2203
|
+
export declare const ListStateMachinesInputFilterSensitiveLog: (obj: ListStateMachinesInput) => any;
|
|
2204
|
+
/**
|
|
2205
|
+
* @internal
|
|
2206
|
+
*/
|
|
2207
|
+
export declare const StateMachineListItemFilterSensitiveLog: (obj: StateMachineListItem) => any;
|
|
2208
|
+
/**
|
|
2209
|
+
* @internal
|
|
2210
|
+
*/
|
|
2211
|
+
export declare const ListStateMachinesOutputFilterSensitiveLog: (obj: ListStateMachinesOutput) => any;
|
|
2212
|
+
/**
|
|
2213
|
+
* @internal
|
|
2214
|
+
*/
|
|
2215
|
+
export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
2216
|
+
/**
|
|
2217
|
+
* @internal
|
|
2218
|
+
*/
|
|
2219
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
2220
|
+
/**
|
|
2221
|
+
* @internal
|
|
2222
|
+
*/
|
|
2223
|
+
export declare const SendTaskFailureInputFilterSensitiveLog: (obj: SendTaskFailureInput) => any;
|
|
2224
|
+
/**
|
|
2225
|
+
* @internal
|
|
2226
|
+
*/
|
|
2227
|
+
export declare const SendTaskFailureOutputFilterSensitiveLog: (obj: SendTaskFailureOutput) => any;
|
|
2228
|
+
/**
|
|
2229
|
+
* @internal
|
|
2230
|
+
*/
|
|
2231
|
+
export declare const SendTaskHeartbeatInputFilterSensitiveLog: (obj: SendTaskHeartbeatInput) => any;
|
|
2232
|
+
/**
|
|
2233
|
+
* @internal
|
|
2234
|
+
*/
|
|
2235
|
+
export declare const SendTaskHeartbeatOutputFilterSensitiveLog: (obj: SendTaskHeartbeatOutput) => any;
|
|
2236
|
+
/**
|
|
2237
|
+
* @internal
|
|
2238
|
+
*/
|
|
2239
|
+
export declare const SendTaskSuccessInputFilterSensitiveLog: (obj: SendTaskSuccessInput) => any;
|
|
2240
|
+
/**
|
|
2241
|
+
* @internal
|
|
2242
|
+
*/
|
|
2243
|
+
export declare const SendTaskSuccessOutputFilterSensitiveLog: (obj: SendTaskSuccessOutput) => any;
|
|
2244
|
+
/**
|
|
2245
|
+
* @internal
|
|
2246
|
+
*/
|
|
2247
|
+
export declare const StartExecutionInputFilterSensitiveLog: (obj: StartExecutionInput) => any;
|
|
2248
|
+
/**
|
|
2249
|
+
* @internal
|
|
2250
|
+
*/
|
|
2251
|
+
export declare const StartExecutionOutputFilterSensitiveLog: (obj: StartExecutionOutput) => any;
|
|
2252
|
+
/**
|
|
2253
|
+
* @internal
|
|
2254
|
+
*/
|
|
2255
|
+
export declare const StartSyncExecutionInputFilterSensitiveLog: (obj: StartSyncExecutionInput) => any;
|
|
2256
|
+
/**
|
|
2257
|
+
* @internal
|
|
2258
|
+
*/
|
|
2259
|
+
export declare const BillingDetailsFilterSensitiveLog: (obj: BillingDetails) => any;
|
|
2260
|
+
/**
|
|
2261
|
+
* @internal
|
|
2262
|
+
*/
|
|
2263
|
+
export declare const StartSyncExecutionOutputFilterSensitiveLog: (obj: StartSyncExecutionOutput) => any;
|
|
2264
|
+
/**
|
|
2265
|
+
* @internal
|
|
2266
|
+
*/
|
|
2267
|
+
export declare const StopExecutionInputFilterSensitiveLog: (obj: StopExecutionInput) => any;
|
|
2268
|
+
/**
|
|
2269
|
+
* @internal
|
|
2270
|
+
*/
|
|
2271
|
+
export declare const StopExecutionOutputFilterSensitiveLog: (obj: StopExecutionOutput) => any;
|
|
2272
|
+
/**
|
|
2273
|
+
* @internal
|
|
2274
|
+
*/
|
|
2275
|
+
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
2276
|
+
/**
|
|
2277
|
+
* @internal
|
|
2278
|
+
*/
|
|
2279
|
+
export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
2280
|
+
/**
|
|
2281
|
+
* @internal
|
|
2282
|
+
*/
|
|
2283
|
+
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
2284
|
+
/**
|
|
2285
|
+
* @internal
|
|
2286
|
+
*/
|
|
2287
|
+
export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
2288
|
+
/**
|
|
2289
|
+
* @internal
|
|
2290
|
+
*/
|
|
2291
|
+
export declare const UpdateStateMachineInputFilterSensitiveLog: (obj: UpdateStateMachineInput) => any;
|
|
2292
|
+
/**
|
|
2293
|
+
* @internal
|
|
2294
|
+
*/
|
|
2295
|
+
export declare const UpdateStateMachineOutputFilterSensitiveLog: (obj: UpdateStateMachineOutput) => any;
|