@aws-sdk/client-sfn 3.169.0 → 3.171.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SFN.d.ts +395 -120
  3. package/dist-types/ts3.4/SFNClient.d.ts +241 -96
  4. package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/SFNServiceException.d.ts +7 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +905 -1086
  33. package/dist-types/ts3.4/pagination/GetExecutionHistoryPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  35. package/dist-types/ts3.4/pagination/ListActivitiesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListStateMachinesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  39. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +281 -71
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  44. package/package.json +34 -34
@@ -1,1086 +1,905 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { SFNServiceException as __BaseException } from "./SFNServiceException";
3
-
4
- export declare class ActivityDoesNotExist extends __BaseException {
5
- readonly name: "ActivityDoesNotExist";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<ActivityDoesNotExist, __BaseException>);
9
- }
10
-
11
- export interface ActivityFailedEventDetails {
12
-
13
- error?: string;
14
-
15
- cause?: string;
16
- }
17
-
18
- export declare class ActivityLimitExceeded extends __BaseException {
19
- readonly name: "ActivityLimitExceeded";
20
- readonly $fault: "client";
21
-
22
- constructor(opts: __ExceptionOptionType<ActivityLimitExceeded, __BaseException>);
23
- }
24
-
25
- export interface ActivityListItem {
26
-
27
- activityArn: string | undefined;
28
-
29
- name: string | undefined;
30
-
31
- creationDate: Date | undefined;
32
- }
33
-
34
- export interface HistoryEventExecutionDataDetails {
35
-
36
- truncated?: boolean;
37
- }
38
-
39
- export interface ActivityScheduledEventDetails {
40
-
41
- resource: string | undefined;
42
-
43
- input?: string;
44
-
45
- inputDetails?: HistoryEventExecutionDataDetails;
46
-
47
- timeoutInSeconds?: number;
48
-
49
- heartbeatInSeconds?: number;
50
- }
51
-
52
- export interface ActivityScheduleFailedEventDetails {
53
-
54
- error?: string;
55
-
56
- cause?: string;
57
- }
58
-
59
- export interface ActivityStartedEventDetails {
60
-
61
- workerName?: string;
62
- }
63
-
64
- export interface ActivitySucceededEventDetails {
65
-
66
- output?: string;
67
-
68
- outputDetails?: HistoryEventExecutionDataDetails;
69
- }
70
-
71
- export interface ActivityTimedOutEventDetails {
72
-
73
- error?: string;
74
-
75
- cause?: string;
76
- }
77
-
78
- export declare class ActivityWorkerLimitExceeded extends __BaseException {
79
- readonly name: "ActivityWorkerLimitExceeded";
80
- readonly $fault: "client";
81
-
82
- constructor(opts: __ExceptionOptionType<ActivityWorkerLimitExceeded, __BaseException>);
83
- }
84
-
85
- export interface Tag {
86
-
87
- key?: string;
88
-
89
- value?: string;
90
- }
91
- export interface CreateActivityInput {
92
-
93
- name: string | undefined;
94
-
95
- tags?: Tag[];
96
- }
97
- export interface CreateActivityOutput {
98
-
99
- activityArn: string | undefined;
100
-
101
- creationDate: Date | undefined;
102
- }
103
-
104
- export declare class InvalidName extends __BaseException {
105
- readonly name: "InvalidName";
106
- readonly $fault: "client";
107
-
108
- constructor(opts: __ExceptionOptionType<InvalidName, __BaseException>);
109
- }
110
-
111
- export declare class TooManyTags extends __BaseException {
112
- readonly name: "TooManyTags";
113
- readonly $fault: "client";
114
- resourceName?: string;
115
-
116
- constructor(opts: __ExceptionOptionType<TooManyTags, __BaseException>);
117
- }
118
-
119
- export interface CloudWatchLogsLogGroup {
120
-
121
- logGroupArn?: string;
122
- }
123
-
124
- export interface LogDestination {
125
-
126
- cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
127
- }
128
- export declare type LogLevel = "ALL" | "ERROR" | "FATAL" | "OFF";
129
-
130
- export interface LoggingConfiguration {
131
-
132
- level?: LogLevel | string;
133
-
134
- includeExecutionData?: boolean;
135
-
136
- destinations?: LogDestination[];
137
- }
138
-
139
- export interface TracingConfiguration {
140
-
141
- enabled?: boolean;
142
- }
143
- export declare type StateMachineType = "EXPRESS" | "STANDARD";
144
- export interface CreateStateMachineInput {
145
-
146
- name: string | undefined;
147
-
148
- definition: string | undefined;
149
-
150
- roleArn: string | undefined;
151
-
152
- type?: StateMachineType | string;
153
-
154
- loggingConfiguration?: LoggingConfiguration;
155
-
156
- tags?: Tag[];
157
-
158
- tracingConfiguration?: TracingConfiguration;
159
- }
160
- export interface CreateStateMachineOutput {
161
-
162
- stateMachineArn: string | undefined;
163
-
164
- creationDate: Date | undefined;
165
- }
166
-
167
- export declare class InvalidArn extends __BaseException {
168
- readonly name: "InvalidArn";
169
- readonly $fault: "client";
170
-
171
- constructor(opts: __ExceptionOptionType<InvalidArn, __BaseException>);
172
- }
173
-
174
- export declare class InvalidDefinition extends __BaseException {
175
- readonly name: "InvalidDefinition";
176
- readonly $fault: "client";
177
-
178
- constructor(opts: __ExceptionOptionType<InvalidDefinition, __BaseException>);
179
- }
180
-
181
- export declare class InvalidLoggingConfiguration extends __BaseException {
182
- readonly name: "InvalidLoggingConfiguration";
183
- readonly $fault: "client";
184
-
185
- constructor(opts: __ExceptionOptionType<InvalidLoggingConfiguration, __BaseException>);
186
- }
187
-
188
- export declare class InvalidTracingConfiguration extends __BaseException {
189
- readonly name: "InvalidTracingConfiguration";
190
- readonly $fault: "client";
191
-
192
- constructor(opts: __ExceptionOptionType<InvalidTracingConfiguration, __BaseException>);
193
- }
194
-
195
- export declare class StateMachineAlreadyExists extends __BaseException {
196
- readonly name: "StateMachineAlreadyExists";
197
- readonly $fault: "client";
198
-
199
- constructor(opts: __ExceptionOptionType<StateMachineAlreadyExists, __BaseException>);
200
- }
201
-
202
- export declare class StateMachineDeleting extends __BaseException {
203
- readonly name: "StateMachineDeleting";
204
- readonly $fault: "client";
205
-
206
- constructor(opts: __ExceptionOptionType<StateMachineDeleting, __BaseException>);
207
- }
208
-
209
- export declare class StateMachineLimitExceeded extends __BaseException {
210
- readonly name: "StateMachineLimitExceeded";
211
- readonly $fault: "client";
212
-
213
- constructor(opts: __ExceptionOptionType<StateMachineLimitExceeded, __BaseException>);
214
- }
215
-
216
- export declare class StateMachineTypeNotSupported extends __BaseException {
217
- readonly name: "StateMachineTypeNotSupported";
218
- readonly $fault: "client";
219
-
220
- constructor(opts: __ExceptionOptionType<StateMachineTypeNotSupported, __BaseException>);
221
- }
222
- export interface DeleteActivityInput {
223
-
224
- activityArn: string | undefined;
225
- }
226
- export interface DeleteActivityOutput {
227
- }
228
- export interface DeleteStateMachineInput {
229
-
230
- stateMachineArn: string | undefined;
231
- }
232
- export interface DeleteStateMachineOutput {
233
- }
234
- export interface DescribeActivityInput {
235
-
236
- activityArn: string | undefined;
237
- }
238
- export interface DescribeActivityOutput {
239
-
240
- activityArn: string | undefined;
241
-
242
- name: string | undefined;
243
-
244
- creationDate: Date | undefined;
245
- }
246
- export interface DescribeExecutionInput {
247
-
248
- executionArn: string | undefined;
249
- }
250
-
251
- export interface CloudWatchEventsExecutionDataDetails {
252
-
253
- included?: boolean;
254
- }
255
- export declare type ExecutionStatus = "ABORTED" | "FAILED" | "RUNNING" | "SUCCEEDED" | "TIMED_OUT";
256
- export interface DescribeExecutionOutput {
257
-
258
- executionArn: string | undefined;
259
-
260
- stateMachineArn: string | undefined;
261
-
262
- name?: string;
263
-
264
- status: ExecutionStatus | string | undefined;
265
-
266
- startDate: Date | undefined;
267
-
268
- stopDate?: Date;
269
-
270
- input?: string;
271
-
272
- inputDetails?: CloudWatchEventsExecutionDataDetails;
273
-
274
- output?: string;
275
-
276
- outputDetails?: CloudWatchEventsExecutionDataDetails;
277
-
278
- traceHeader?: string;
279
- }
280
-
281
- export declare class ExecutionDoesNotExist extends __BaseException {
282
- readonly name: "ExecutionDoesNotExist";
283
- readonly $fault: "client";
284
-
285
- constructor(opts: __ExceptionOptionType<ExecutionDoesNotExist, __BaseException>);
286
- }
287
- export interface DescribeStateMachineInput {
288
-
289
- stateMachineArn: string | undefined;
290
- }
291
- export declare type StateMachineStatus = "ACTIVE" | "DELETING";
292
- export interface DescribeStateMachineOutput {
293
-
294
- stateMachineArn: string | undefined;
295
-
296
- name: string | undefined;
297
-
298
- status?: StateMachineStatus | string;
299
-
300
- definition: string | undefined;
301
-
302
- roleArn: string | undefined;
303
-
304
- type: StateMachineType | string | undefined;
305
-
306
- creationDate: Date | undefined;
307
-
308
- loggingConfiguration?: LoggingConfiguration;
309
-
310
- tracingConfiguration?: TracingConfiguration;
311
- }
312
-
313
- export declare class StateMachineDoesNotExist extends __BaseException {
314
- readonly name: "StateMachineDoesNotExist";
315
- readonly $fault: "client";
316
-
317
- constructor(opts: __ExceptionOptionType<StateMachineDoesNotExist, __BaseException>);
318
- }
319
- export interface DescribeStateMachineForExecutionInput {
320
-
321
- executionArn: string | undefined;
322
- }
323
- export interface DescribeStateMachineForExecutionOutput {
324
-
325
- stateMachineArn: string | undefined;
326
-
327
- name: string | undefined;
328
-
329
- definition: string | undefined;
330
-
331
- roleArn: string | undefined;
332
-
333
- updateDate: Date | undefined;
334
-
335
- loggingConfiguration?: LoggingConfiguration;
336
-
337
- tracingConfiguration?: TracingConfiguration;
338
- }
339
- export interface GetActivityTaskInput {
340
-
341
- activityArn: string | undefined;
342
-
343
- workerName?: string;
344
- }
345
- export interface GetActivityTaskOutput {
346
-
347
- taskToken?: string;
348
-
349
- input?: string;
350
- }
351
- export interface GetExecutionHistoryInput {
352
-
353
- executionArn: string | undefined;
354
-
355
- maxResults?: number;
356
-
357
- reverseOrder?: boolean;
358
-
359
- nextToken?: string;
360
-
361
- includeExecutionData?: boolean;
362
- }
363
-
364
- export interface ExecutionAbortedEventDetails {
365
-
366
- error?: string;
367
-
368
- cause?: string;
369
- }
370
-
371
- export interface ExecutionFailedEventDetails {
372
-
373
- error?: string;
374
-
375
- cause?: string;
376
- }
377
-
378
- export interface ExecutionStartedEventDetails {
379
-
380
- input?: string;
381
-
382
- inputDetails?: HistoryEventExecutionDataDetails;
383
-
384
- roleArn?: string;
385
- }
386
-
387
- export interface ExecutionSucceededEventDetails {
388
-
389
- output?: string;
390
-
391
- outputDetails?: HistoryEventExecutionDataDetails;
392
- }
393
-
394
- export interface ExecutionTimedOutEventDetails {
395
-
396
- error?: string;
397
-
398
- cause?: string;
399
- }
400
-
401
- export interface LambdaFunctionFailedEventDetails {
402
-
403
- error?: string;
404
-
405
- cause?: string;
406
- }
407
-
408
- export interface LambdaFunctionScheduledEventDetails {
409
-
410
- resource: string | undefined;
411
-
412
- input?: string;
413
-
414
- inputDetails?: HistoryEventExecutionDataDetails;
415
-
416
- timeoutInSeconds?: number;
417
- }
418
-
419
- export interface LambdaFunctionScheduleFailedEventDetails {
420
-
421
- error?: string;
422
-
423
- cause?: string;
424
- }
425
-
426
- export interface LambdaFunctionStartFailedEventDetails {
427
-
428
- error?: string;
429
-
430
- cause?: string;
431
- }
432
-
433
- export interface LambdaFunctionSucceededEventDetails {
434
-
435
- output?: string;
436
-
437
- outputDetails?: HistoryEventExecutionDataDetails;
438
- }
439
-
440
- export interface LambdaFunctionTimedOutEventDetails {
441
-
442
- error?: string;
443
-
444
- cause?: string;
445
- }
446
-
447
- export interface MapIterationEventDetails {
448
-
449
- name?: string;
450
-
451
- index?: number;
452
- }
453
-
454
- export interface MapStateStartedEventDetails {
455
-
456
- length?: number;
457
- }
458
-
459
- export interface StateEnteredEventDetails {
460
-
461
- name: string | undefined;
462
-
463
- input?: string;
464
-
465
- inputDetails?: HistoryEventExecutionDataDetails;
466
- }
467
-
468
- export interface StateExitedEventDetails {
469
-
470
- name: string | undefined;
471
-
472
- output?: string;
473
-
474
- outputDetails?: HistoryEventExecutionDataDetails;
475
- }
476
-
477
- export interface TaskFailedEventDetails {
478
-
479
- resourceType: string | undefined;
480
-
481
- resource: string | undefined;
482
-
483
- error?: string;
484
-
485
- cause?: string;
486
- }
487
-
488
- export interface TaskScheduledEventDetails {
489
-
490
- resourceType: string | undefined;
491
-
492
- resource: string | undefined;
493
-
494
- region: string | undefined;
495
-
496
- parameters: string | undefined;
497
-
498
- timeoutInSeconds?: number;
499
-
500
- heartbeatInSeconds?: number;
501
- }
502
-
503
- export interface TaskStartedEventDetails {
504
-
505
- resourceType: string | undefined;
506
-
507
- resource: string | undefined;
508
- }
509
-
510
- export interface TaskStartFailedEventDetails {
511
-
512
- resourceType: string | undefined;
513
-
514
- resource: string | undefined;
515
-
516
- error?: string;
517
-
518
- cause?: string;
519
- }
520
-
521
- export interface TaskSubmitFailedEventDetails {
522
-
523
- resourceType: string | undefined;
524
-
525
- resource: string | undefined;
526
-
527
- error?: string;
528
-
529
- cause?: string;
530
- }
531
-
532
- export interface TaskSubmittedEventDetails {
533
-
534
- resourceType: string | undefined;
535
-
536
- resource: string | undefined;
537
-
538
- output?: string;
539
-
540
- outputDetails?: HistoryEventExecutionDataDetails;
541
- }
542
-
543
- export interface TaskSucceededEventDetails {
544
-
545
- resourceType: string | undefined;
546
-
547
- resource: string | undefined;
548
-
549
- output?: string;
550
-
551
- outputDetails?: HistoryEventExecutionDataDetails;
552
- }
553
-
554
- export interface TaskTimedOutEventDetails {
555
-
556
- resourceType: string | undefined;
557
-
558
- resource: string | undefined;
559
-
560
- error?: string;
561
-
562
- cause?: string;
563
- }
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";
565
-
566
- export interface HistoryEvent {
567
-
568
- timestamp: Date | undefined;
569
-
570
- type: HistoryEventType | string | undefined;
571
-
572
- id: number | undefined;
573
-
574
- previousEventId?: number;
575
-
576
- activityFailedEventDetails?: ActivityFailedEventDetails;
577
-
578
- activityScheduleFailedEventDetails?: ActivityScheduleFailedEventDetails;
579
-
580
- activityScheduledEventDetails?: ActivityScheduledEventDetails;
581
-
582
- activityStartedEventDetails?: ActivityStartedEventDetails;
583
-
584
- activitySucceededEventDetails?: ActivitySucceededEventDetails;
585
-
586
- activityTimedOutEventDetails?: ActivityTimedOutEventDetails;
587
-
588
- taskFailedEventDetails?: TaskFailedEventDetails;
589
-
590
- taskScheduledEventDetails?: TaskScheduledEventDetails;
591
-
592
- taskStartFailedEventDetails?: TaskStartFailedEventDetails;
593
-
594
- taskStartedEventDetails?: TaskStartedEventDetails;
595
-
596
- taskSubmitFailedEventDetails?: TaskSubmitFailedEventDetails;
597
-
598
- taskSubmittedEventDetails?: TaskSubmittedEventDetails;
599
-
600
- taskSucceededEventDetails?: TaskSucceededEventDetails;
601
-
602
- taskTimedOutEventDetails?: TaskTimedOutEventDetails;
603
-
604
- executionFailedEventDetails?: ExecutionFailedEventDetails;
605
-
606
- executionStartedEventDetails?: ExecutionStartedEventDetails;
607
-
608
- executionSucceededEventDetails?: ExecutionSucceededEventDetails;
609
-
610
- executionAbortedEventDetails?: ExecutionAbortedEventDetails;
611
-
612
- executionTimedOutEventDetails?: ExecutionTimedOutEventDetails;
613
-
614
- mapStateStartedEventDetails?: MapStateStartedEventDetails;
615
-
616
- mapIterationStartedEventDetails?: MapIterationEventDetails;
617
-
618
- mapIterationSucceededEventDetails?: MapIterationEventDetails;
619
-
620
- mapIterationFailedEventDetails?: MapIterationEventDetails;
621
-
622
- mapIterationAbortedEventDetails?: MapIterationEventDetails;
623
-
624
- lambdaFunctionFailedEventDetails?: LambdaFunctionFailedEventDetails;
625
-
626
- lambdaFunctionScheduleFailedEventDetails?: LambdaFunctionScheduleFailedEventDetails;
627
-
628
- lambdaFunctionScheduledEventDetails?: LambdaFunctionScheduledEventDetails;
629
-
630
- lambdaFunctionStartFailedEventDetails?: LambdaFunctionStartFailedEventDetails;
631
-
632
- lambdaFunctionSucceededEventDetails?: LambdaFunctionSucceededEventDetails;
633
-
634
- lambdaFunctionTimedOutEventDetails?: LambdaFunctionTimedOutEventDetails;
635
-
636
- stateEnteredEventDetails?: StateEnteredEventDetails;
637
-
638
- stateExitedEventDetails?: StateExitedEventDetails;
639
- }
640
- export interface GetExecutionHistoryOutput {
641
-
642
- events: HistoryEvent[] | undefined;
643
-
644
- nextToken?: string;
645
- }
646
-
647
- export declare class InvalidToken extends __BaseException {
648
- readonly name: "InvalidToken";
649
- readonly $fault: "client";
650
-
651
- constructor(opts: __ExceptionOptionType<InvalidToken, __BaseException>);
652
- }
653
- export interface ListActivitiesInput {
654
-
655
- maxResults?: number;
656
-
657
- nextToken?: string;
658
- }
659
- export interface ListActivitiesOutput {
660
-
661
- activities: ActivityListItem[] | undefined;
662
-
663
- nextToken?: string;
664
- }
665
- export interface ListExecutionsInput {
666
-
667
- stateMachineArn: string | undefined;
668
-
669
- statusFilter?: ExecutionStatus | string;
670
-
671
- maxResults?: number;
672
-
673
- nextToken?: string;
674
- }
675
-
676
- export interface ExecutionListItem {
677
-
678
- executionArn: string | undefined;
679
-
680
- stateMachineArn: string | undefined;
681
-
682
- name: string | undefined;
683
-
684
- status: ExecutionStatus | string | undefined;
685
-
686
- startDate: Date | undefined;
687
-
688
- stopDate?: Date;
689
- }
690
- export interface ListExecutionsOutput {
691
-
692
- executions: ExecutionListItem[] | undefined;
693
-
694
- nextToken?: string;
695
- }
696
- export interface ListStateMachinesInput {
697
-
698
- maxResults?: number;
699
-
700
- nextToken?: string;
701
- }
702
-
703
- export interface StateMachineListItem {
704
-
705
- stateMachineArn: string | undefined;
706
-
707
- name: string | undefined;
708
-
709
- type: StateMachineType | string | undefined;
710
-
711
- creationDate: Date | undefined;
712
- }
713
- export interface ListStateMachinesOutput {
714
- stateMachines: StateMachineListItem[] | undefined;
715
-
716
- nextToken?: string;
717
- }
718
- export interface ListTagsForResourceInput {
719
-
720
- resourceArn: string | undefined;
721
- }
722
- export interface ListTagsForResourceOutput {
723
-
724
- tags?: Tag[];
725
- }
726
-
727
- export declare class ResourceNotFound extends __BaseException {
728
- readonly name: "ResourceNotFound";
729
- readonly $fault: "client";
730
- resourceName?: string;
731
-
732
- constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
733
- }
734
- export interface SendTaskFailureInput {
735
-
736
- taskToken: string | undefined;
737
-
738
- error?: string;
739
-
740
- cause?: string;
741
- }
742
- export interface SendTaskFailureOutput {
743
- }
744
- export declare class TaskDoesNotExist extends __BaseException {
745
- readonly name: "TaskDoesNotExist";
746
- readonly $fault: "client";
747
-
748
- constructor(opts: __ExceptionOptionType<TaskDoesNotExist, __BaseException>);
749
- }
750
- export declare class TaskTimedOut extends __BaseException {
751
- readonly name: "TaskTimedOut";
752
- readonly $fault: "client";
753
-
754
- constructor(opts: __ExceptionOptionType<TaskTimedOut, __BaseException>);
755
- }
756
- export interface SendTaskHeartbeatInput {
757
-
758
- taskToken: string | undefined;
759
- }
760
- export interface SendTaskHeartbeatOutput {
761
- }
762
-
763
- export declare class InvalidOutput extends __BaseException {
764
- readonly name: "InvalidOutput";
765
- readonly $fault: "client";
766
-
767
- constructor(opts: __ExceptionOptionType<InvalidOutput, __BaseException>);
768
- }
769
- export interface SendTaskSuccessInput {
770
-
771
- taskToken: string | undefined;
772
-
773
- output: string | undefined;
774
- }
775
- export interface SendTaskSuccessOutput {
776
- }
777
-
778
- export declare class ExecutionAlreadyExists extends __BaseException {
779
- readonly name: "ExecutionAlreadyExists";
780
- readonly $fault: "client";
781
-
782
- constructor(opts: __ExceptionOptionType<ExecutionAlreadyExists, __BaseException>);
783
- }
784
-
785
- export declare class ExecutionLimitExceeded extends __BaseException {
786
- readonly name: "ExecutionLimitExceeded";
787
- readonly $fault: "client";
788
-
789
- constructor(opts: __ExceptionOptionType<ExecutionLimitExceeded, __BaseException>);
790
- }
791
-
792
- export declare class InvalidExecutionInput extends __BaseException {
793
- readonly name: "InvalidExecutionInput";
794
- readonly $fault: "client";
795
-
796
- constructor(opts: __ExceptionOptionType<InvalidExecutionInput, __BaseException>);
797
- }
798
- export interface StartExecutionInput {
799
-
800
- stateMachineArn: string | undefined;
801
-
802
- name?: string;
803
-
804
- input?: string;
805
-
806
- traceHeader?: string;
807
- }
808
- export interface StartExecutionOutput {
809
-
810
- executionArn: string | undefined;
811
-
812
- startDate: Date | undefined;
813
- }
814
- export interface StartSyncExecutionInput {
815
-
816
- stateMachineArn: string | undefined;
817
-
818
- name?: string;
819
-
820
- input?: string;
821
-
822
- traceHeader?: string;
823
- }
824
-
825
- export interface BillingDetails {
826
-
827
- billedMemoryUsedInMB?: number;
828
-
829
- billedDurationInMilliseconds?: number;
830
- }
831
- export declare type SyncExecutionStatus = "FAILED" | "SUCCEEDED" | "TIMED_OUT";
832
- export interface StartSyncExecutionOutput {
833
-
834
- executionArn: string | undefined;
835
-
836
- stateMachineArn?: string;
837
-
838
- name?: string;
839
-
840
- startDate: Date | undefined;
841
-
842
- stopDate: Date | undefined;
843
-
844
- status: SyncExecutionStatus | string | undefined;
845
-
846
- error?: string;
847
-
848
- cause?: string;
849
-
850
- input?: string;
851
-
852
- inputDetails?: CloudWatchEventsExecutionDataDetails;
853
-
854
- output?: string;
855
-
856
- outputDetails?: CloudWatchEventsExecutionDataDetails;
857
-
858
- traceHeader?: string;
859
-
860
- billingDetails?: BillingDetails;
861
- }
862
- export interface StopExecutionInput {
863
-
864
- executionArn: string | undefined;
865
-
866
- error?: string;
867
-
868
- cause?: string;
869
- }
870
- export interface StopExecutionOutput {
871
-
872
- stopDate: Date | undefined;
873
- }
874
- export interface TagResourceInput {
875
-
876
- resourceArn: string | undefined;
877
-
878
- tags: Tag[] | undefined;
879
- }
880
- export interface TagResourceOutput {
881
- }
882
- export interface UntagResourceInput {
883
-
884
- resourceArn: string | undefined;
885
-
886
- tagKeys: string[] | undefined;
887
- }
888
- export interface UntagResourceOutput {
889
- }
890
-
891
- export declare class MissingRequiredParameter extends __BaseException {
892
- readonly name: "MissingRequiredParameter";
893
- readonly $fault: "client";
894
-
895
- constructor(opts: __ExceptionOptionType<MissingRequiredParameter, __BaseException>);
896
- }
897
- export interface UpdateStateMachineInput {
898
-
899
- stateMachineArn: string | undefined;
900
-
901
- definition?: string;
902
-
903
- roleArn?: string;
904
-
905
- loggingConfiguration?: LoggingConfiguration;
906
-
907
- tracingConfiguration?: TracingConfiguration;
908
- }
909
- export interface UpdateStateMachineOutput {
910
-
911
- updateDate: Date | undefined;
912
- }
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;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SFNServiceException as __BaseException } from "./SFNServiceException";
3
+ export declare class ActivityDoesNotExist extends __BaseException {
4
+ readonly name: "ActivityDoesNotExist";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<ActivityDoesNotExist, __BaseException>
8
+ );
9
+ }
10
+ export interface ActivityFailedEventDetails {
11
+ error?: string;
12
+ cause?: string;
13
+ }
14
+ export declare class ActivityLimitExceeded extends __BaseException {
15
+ readonly name: "ActivityLimitExceeded";
16
+ readonly $fault: "client";
17
+ constructor(
18
+ opts: __ExceptionOptionType<ActivityLimitExceeded, __BaseException>
19
+ );
20
+ }
21
+ export interface ActivityListItem {
22
+ activityArn: string | undefined;
23
+ name: string | undefined;
24
+ creationDate: Date | undefined;
25
+ }
26
+ export interface HistoryEventExecutionDataDetails {
27
+ truncated?: boolean;
28
+ }
29
+ export interface ActivityScheduledEventDetails {
30
+ resource: string | undefined;
31
+ input?: string;
32
+ inputDetails?: HistoryEventExecutionDataDetails;
33
+ timeoutInSeconds?: number;
34
+ heartbeatInSeconds?: number;
35
+ }
36
+ export interface ActivityScheduleFailedEventDetails {
37
+ error?: string;
38
+ cause?: string;
39
+ }
40
+ export interface ActivityStartedEventDetails {
41
+ workerName?: string;
42
+ }
43
+ export interface ActivitySucceededEventDetails {
44
+ output?: string;
45
+ outputDetails?: HistoryEventExecutionDataDetails;
46
+ }
47
+ export interface ActivityTimedOutEventDetails {
48
+ error?: string;
49
+ cause?: string;
50
+ }
51
+ export declare class ActivityWorkerLimitExceeded extends __BaseException {
52
+ readonly name: "ActivityWorkerLimitExceeded";
53
+ readonly $fault: "client";
54
+ constructor(
55
+ opts: __ExceptionOptionType<ActivityWorkerLimitExceeded, __BaseException>
56
+ );
57
+ }
58
+ export interface Tag {
59
+ key?: string;
60
+ value?: string;
61
+ }
62
+ export interface CreateActivityInput {
63
+ name: string | undefined;
64
+ tags?: Tag[];
65
+ }
66
+ export interface CreateActivityOutput {
67
+ activityArn: string | undefined;
68
+ creationDate: Date | undefined;
69
+ }
70
+ export declare class InvalidName extends __BaseException {
71
+ readonly name: "InvalidName";
72
+ readonly $fault: "client";
73
+ constructor(opts: __ExceptionOptionType<InvalidName, __BaseException>);
74
+ }
75
+ export declare class TooManyTags extends __BaseException {
76
+ readonly name: "TooManyTags";
77
+ readonly $fault: "client";
78
+ resourceName?: string;
79
+ constructor(opts: __ExceptionOptionType<TooManyTags, __BaseException>);
80
+ }
81
+ export interface CloudWatchLogsLogGroup {
82
+ logGroupArn?: string;
83
+ }
84
+ export interface LogDestination {
85
+ cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
86
+ }
87
+ export declare type LogLevel = "ALL" | "ERROR" | "FATAL" | "OFF";
88
+ export interface LoggingConfiguration {
89
+ level?: LogLevel | string;
90
+ includeExecutionData?: boolean;
91
+ destinations?: LogDestination[];
92
+ }
93
+ export interface TracingConfiguration {
94
+ enabled?: boolean;
95
+ }
96
+ export declare type StateMachineType = "EXPRESS" | "STANDARD";
97
+ export interface CreateStateMachineInput {
98
+ name: string | undefined;
99
+ definition: string | undefined;
100
+ roleArn: string | undefined;
101
+ type?: StateMachineType | string;
102
+ loggingConfiguration?: LoggingConfiguration;
103
+ tags?: Tag[];
104
+ tracingConfiguration?: TracingConfiguration;
105
+ }
106
+ export interface CreateStateMachineOutput {
107
+ stateMachineArn: string | undefined;
108
+ creationDate: Date | undefined;
109
+ }
110
+ export declare class InvalidArn extends __BaseException {
111
+ readonly name: "InvalidArn";
112
+ readonly $fault: "client";
113
+ constructor(opts: __ExceptionOptionType<InvalidArn, __BaseException>);
114
+ }
115
+ export declare class InvalidDefinition extends __BaseException {
116
+ readonly name: "InvalidDefinition";
117
+ readonly $fault: "client";
118
+ constructor(opts: __ExceptionOptionType<InvalidDefinition, __BaseException>);
119
+ }
120
+ export declare class InvalidLoggingConfiguration extends __BaseException {
121
+ readonly name: "InvalidLoggingConfiguration";
122
+ readonly $fault: "client";
123
+ constructor(
124
+ opts: __ExceptionOptionType<InvalidLoggingConfiguration, __BaseException>
125
+ );
126
+ }
127
+ export declare class InvalidTracingConfiguration extends __BaseException {
128
+ readonly name: "InvalidTracingConfiguration";
129
+ readonly $fault: "client";
130
+ constructor(
131
+ opts: __ExceptionOptionType<InvalidTracingConfiguration, __BaseException>
132
+ );
133
+ }
134
+ export declare class StateMachineAlreadyExists extends __BaseException {
135
+ readonly name: "StateMachineAlreadyExists";
136
+ readonly $fault: "client";
137
+ constructor(
138
+ opts: __ExceptionOptionType<StateMachineAlreadyExists, __BaseException>
139
+ );
140
+ }
141
+ export declare class StateMachineDeleting extends __BaseException {
142
+ readonly name: "StateMachineDeleting";
143
+ readonly $fault: "client";
144
+ constructor(
145
+ opts: __ExceptionOptionType<StateMachineDeleting, __BaseException>
146
+ );
147
+ }
148
+ export declare class StateMachineLimitExceeded extends __BaseException {
149
+ readonly name: "StateMachineLimitExceeded";
150
+ readonly $fault: "client";
151
+ constructor(
152
+ opts: __ExceptionOptionType<StateMachineLimitExceeded, __BaseException>
153
+ );
154
+ }
155
+ export declare class StateMachineTypeNotSupported extends __BaseException {
156
+ readonly name: "StateMachineTypeNotSupported";
157
+ readonly $fault: "client";
158
+ constructor(
159
+ opts: __ExceptionOptionType<StateMachineTypeNotSupported, __BaseException>
160
+ );
161
+ }
162
+ export interface DeleteActivityInput {
163
+ activityArn: string | undefined;
164
+ }
165
+ export interface DeleteActivityOutput {}
166
+ export interface DeleteStateMachineInput {
167
+ stateMachineArn: string | undefined;
168
+ }
169
+ export interface DeleteStateMachineOutput {}
170
+ export interface DescribeActivityInput {
171
+ activityArn: string | undefined;
172
+ }
173
+ export interface DescribeActivityOutput {
174
+ activityArn: string | undefined;
175
+ name: string | undefined;
176
+ creationDate: Date | undefined;
177
+ }
178
+ export interface DescribeExecutionInput {
179
+ executionArn: string | undefined;
180
+ }
181
+ export interface CloudWatchEventsExecutionDataDetails {
182
+ included?: boolean;
183
+ }
184
+ export declare type ExecutionStatus =
185
+ | "ABORTED"
186
+ | "FAILED"
187
+ | "RUNNING"
188
+ | "SUCCEEDED"
189
+ | "TIMED_OUT";
190
+ export interface DescribeExecutionOutput {
191
+ executionArn: string | undefined;
192
+ stateMachineArn: string | undefined;
193
+ name?: string;
194
+ status: ExecutionStatus | string | undefined;
195
+ startDate: Date | undefined;
196
+ stopDate?: Date;
197
+ input?: string;
198
+ inputDetails?: CloudWatchEventsExecutionDataDetails;
199
+ output?: string;
200
+ outputDetails?: CloudWatchEventsExecutionDataDetails;
201
+ traceHeader?: string;
202
+ }
203
+ export declare class ExecutionDoesNotExist extends __BaseException {
204
+ readonly name: "ExecutionDoesNotExist";
205
+ readonly $fault: "client";
206
+ constructor(
207
+ opts: __ExceptionOptionType<ExecutionDoesNotExist, __BaseException>
208
+ );
209
+ }
210
+ export interface DescribeStateMachineInput {
211
+ stateMachineArn: string | undefined;
212
+ }
213
+ export declare type StateMachineStatus = "ACTIVE" | "DELETING";
214
+ export interface DescribeStateMachineOutput {
215
+ stateMachineArn: string | undefined;
216
+ name: string | undefined;
217
+ status?: StateMachineStatus | string;
218
+ definition: string | undefined;
219
+ roleArn: string | undefined;
220
+ type: StateMachineType | string | undefined;
221
+ creationDate: Date | undefined;
222
+ loggingConfiguration?: LoggingConfiguration;
223
+ tracingConfiguration?: TracingConfiguration;
224
+ }
225
+ export declare class StateMachineDoesNotExist extends __BaseException {
226
+ readonly name: "StateMachineDoesNotExist";
227
+ readonly $fault: "client";
228
+ constructor(
229
+ opts: __ExceptionOptionType<StateMachineDoesNotExist, __BaseException>
230
+ );
231
+ }
232
+ export interface DescribeStateMachineForExecutionInput {
233
+ executionArn: string | undefined;
234
+ }
235
+ export interface DescribeStateMachineForExecutionOutput {
236
+ stateMachineArn: string | undefined;
237
+ name: string | undefined;
238
+ definition: string | undefined;
239
+ roleArn: string | undefined;
240
+ updateDate: Date | undefined;
241
+ loggingConfiguration?: LoggingConfiguration;
242
+ tracingConfiguration?: TracingConfiguration;
243
+ }
244
+ export interface GetActivityTaskInput {
245
+ activityArn: string | undefined;
246
+ workerName?: string;
247
+ }
248
+ export interface GetActivityTaskOutput {
249
+ taskToken?: string;
250
+ input?: string;
251
+ }
252
+ export interface GetExecutionHistoryInput {
253
+ executionArn: string | undefined;
254
+ maxResults?: number;
255
+ reverseOrder?: boolean;
256
+ nextToken?: string;
257
+ includeExecutionData?: boolean;
258
+ }
259
+ export interface ExecutionAbortedEventDetails {
260
+ error?: string;
261
+ cause?: string;
262
+ }
263
+ export interface ExecutionFailedEventDetails {
264
+ error?: string;
265
+ cause?: string;
266
+ }
267
+ export interface ExecutionStartedEventDetails {
268
+ input?: string;
269
+ inputDetails?: HistoryEventExecutionDataDetails;
270
+ roleArn?: string;
271
+ }
272
+ export interface ExecutionSucceededEventDetails {
273
+ output?: string;
274
+ outputDetails?: HistoryEventExecutionDataDetails;
275
+ }
276
+ export interface ExecutionTimedOutEventDetails {
277
+ error?: string;
278
+ cause?: string;
279
+ }
280
+ export interface LambdaFunctionFailedEventDetails {
281
+ error?: string;
282
+ cause?: string;
283
+ }
284
+ export interface LambdaFunctionScheduledEventDetails {
285
+ resource: string | undefined;
286
+ input?: string;
287
+ inputDetails?: HistoryEventExecutionDataDetails;
288
+ timeoutInSeconds?: number;
289
+ }
290
+ export interface LambdaFunctionScheduleFailedEventDetails {
291
+ error?: string;
292
+ cause?: string;
293
+ }
294
+ export interface LambdaFunctionStartFailedEventDetails {
295
+ error?: string;
296
+ cause?: string;
297
+ }
298
+ export interface LambdaFunctionSucceededEventDetails {
299
+ output?: string;
300
+ outputDetails?: HistoryEventExecutionDataDetails;
301
+ }
302
+ export interface LambdaFunctionTimedOutEventDetails {
303
+ error?: string;
304
+ cause?: string;
305
+ }
306
+ export interface MapIterationEventDetails {
307
+ name?: string;
308
+ index?: number;
309
+ }
310
+ export interface MapStateStartedEventDetails {
311
+ length?: number;
312
+ }
313
+ export interface StateEnteredEventDetails {
314
+ name: string | undefined;
315
+ input?: string;
316
+ inputDetails?: HistoryEventExecutionDataDetails;
317
+ }
318
+ export interface StateExitedEventDetails {
319
+ name: string | undefined;
320
+ output?: string;
321
+ outputDetails?: HistoryEventExecutionDataDetails;
322
+ }
323
+ export interface TaskFailedEventDetails {
324
+ resourceType: string | undefined;
325
+ resource: string | undefined;
326
+ error?: string;
327
+ cause?: string;
328
+ }
329
+ export interface TaskScheduledEventDetails {
330
+ resourceType: string | undefined;
331
+ resource: string | undefined;
332
+ region: string | undefined;
333
+ parameters: string | undefined;
334
+ timeoutInSeconds?: number;
335
+ heartbeatInSeconds?: number;
336
+ }
337
+ export interface TaskStartedEventDetails {
338
+ resourceType: string | undefined;
339
+ resource: string | undefined;
340
+ }
341
+ export interface TaskStartFailedEventDetails {
342
+ resourceType: string | undefined;
343
+ resource: string | undefined;
344
+ error?: string;
345
+ cause?: string;
346
+ }
347
+ export interface TaskSubmitFailedEventDetails {
348
+ resourceType: string | undefined;
349
+ resource: string | undefined;
350
+ error?: string;
351
+ cause?: string;
352
+ }
353
+ export interface TaskSubmittedEventDetails {
354
+ resourceType: string | undefined;
355
+ resource: string | undefined;
356
+ output?: string;
357
+ outputDetails?: HistoryEventExecutionDataDetails;
358
+ }
359
+ export interface TaskSucceededEventDetails {
360
+ resourceType: string | undefined;
361
+ resource: string | undefined;
362
+ output?: string;
363
+ outputDetails?: HistoryEventExecutionDataDetails;
364
+ }
365
+ export interface TaskTimedOutEventDetails {
366
+ resourceType: string | undefined;
367
+ resource: string | undefined;
368
+ error?: string;
369
+ cause?: string;
370
+ }
371
+ export declare type HistoryEventType =
372
+ | "ActivityFailed"
373
+ | "ActivityScheduleFailed"
374
+ | "ActivityScheduled"
375
+ | "ActivityStarted"
376
+ | "ActivitySucceeded"
377
+ | "ActivityTimedOut"
378
+ | "ChoiceStateEntered"
379
+ | "ChoiceStateExited"
380
+ | "ExecutionAborted"
381
+ | "ExecutionFailed"
382
+ | "ExecutionStarted"
383
+ | "ExecutionSucceeded"
384
+ | "ExecutionTimedOut"
385
+ | "FailStateEntered"
386
+ | "LambdaFunctionFailed"
387
+ | "LambdaFunctionScheduleFailed"
388
+ | "LambdaFunctionScheduled"
389
+ | "LambdaFunctionStartFailed"
390
+ | "LambdaFunctionStarted"
391
+ | "LambdaFunctionSucceeded"
392
+ | "LambdaFunctionTimedOut"
393
+ | "MapIterationAborted"
394
+ | "MapIterationFailed"
395
+ | "MapIterationStarted"
396
+ | "MapIterationSucceeded"
397
+ | "MapStateAborted"
398
+ | "MapStateEntered"
399
+ | "MapStateExited"
400
+ | "MapStateFailed"
401
+ | "MapStateStarted"
402
+ | "MapStateSucceeded"
403
+ | "ParallelStateAborted"
404
+ | "ParallelStateEntered"
405
+ | "ParallelStateExited"
406
+ | "ParallelStateFailed"
407
+ | "ParallelStateStarted"
408
+ | "ParallelStateSucceeded"
409
+ | "PassStateEntered"
410
+ | "PassStateExited"
411
+ | "SucceedStateEntered"
412
+ | "SucceedStateExited"
413
+ | "TaskFailed"
414
+ | "TaskScheduled"
415
+ | "TaskStartFailed"
416
+ | "TaskStarted"
417
+ | "TaskStateAborted"
418
+ | "TaskStateEntered"
419
+ | "TaskStateExited"
420
+ | "TaskSubmitFailed"
421
+ | "TaskSubmitted"
422
+ | "TaskSucceeded"
423
+ | "TaskTimedOut"
424
+ | "WaitStateAborted"
425
+ | "WaitStateEntered"
426
+ | "WaitStateExited";
427
+ export interface HistoryEvent {
428
+ timestamp: Date | undefined;
429
+ type: HistoryEventType | string | undefined;
430
+ id: number | undefined;
431
+ previousEventId?: number;
432
+ activityFailedEventDetails?: ActivityFailedEventDetails;
433
+ activityScheduleFailedEventDetails?: ActivityScheduleFailedEventDetails;
434
+ activityScheduledEventDetails?: ActivityScheduledEventDetails;
435
+ activityStartedEventDetails?: ActivityStartedEventDetails;
436
+ activitySucceededEventDetails?: ActivitySucceededEventDetails;
437
+ activityTimedOutEventDetails?: ActivityTimedOutEventDetails;
438
+ taskFailedEventDetails?: TaskFailedEventDetails;
439
+ taskScheduledEventDetails?: TaskScheduledEventDetails;
440
+ taskStartFailedEventDetails?: TaskStartFailedEventDetails;
441
+ taskStartedEventDetails?: TaskStartedEventDetails;
442
+ taskSubmitFailedEventDetails?: TaskSubmitFailedEventDetails;
443
+ taskSubmittedEventDetails?: TaskSubmittedEventDetails;
444
+ taskSucceededEventDetails?: TaskSucceededEventDetails;
445
+ taskTimedOutEventDetails?: TaskTimedOutEventDetails;
446
+ executionFailedEventDetails?: ExecutionFailedEventDetails;
447
+ executionStartedEventDetails?: ExecutionStartedEventDetails;
448
+ executionSucceededEventDetails?: ExecutionSucceededEventDetails;
449
+ executionAbortedEventDetails?: ExecutionAbortedEventDetails;
450
+ executionTimedOutEventDetails?: ExecutionTimedOutEventDetails;
451
+ mapStateStartedEventDetails?: MapStateStartedEventDetails;
452
+ mapIterationStartedEventDetails?: MapIterationEventDetails;
453
+ mapIterationSucceededEventDetails?: MapIterationEventDetails;
454
+ mapIterationFailedEventDetails?: MapIterationEventDetails;
455
+ mapIterationAbortedEventDetails?: MapIterationEventDetails;
456
+ lambdaFunctionFailedEventDetails?: LambdaFunctionFailedEventDetails;
457
+ lambdaFunctionScheduleFailedEventDetails?: LambdaFunctionScheduleFailedEventDetails;
458
+ lambdaFunctionScheduledEventDetails?: LambdaFunctionScheduledEventDetails;
459
+ lambdaFunctionStartFailedEventDetails?: LambdaFunctionStartFailedEventDetails;
460
+ lambdaFunctionSucceededEventDetails?: LambdaFunctionSucceededEventDetails;
461
+ lambdaFunctionTimedOutEventDetails?: LambdaFunctionTimedOutEventDetails;
462
+ stateEnteredEventDetails?: StateEnteredEventDetails;
463
+ stateExitedEventDetails?: StateExitedEventDetails;
464
+ }
465
+ export interface GetExecutionHistoryOutput {
466
+ events: HistoryEvent[] | undefined;
467
+ nextToken?: string;
468
+ }
469
+ export declare class InvalidToken extends __BaseException {
470
+ readonly name: "InvalidToken";
471
+ readonly $fault: "client";
472
+ constructor(opts: __ExceptionOptionType<InvalidToken, __BaseException>);
473
+ }
474
+ export interface ListActivitiesInput {
475
+ maxResults?: number;
476
+ nextToken?: string;
477
+ }
478
+ export interface ListActivitiesOutput {
479
+ activities: ActivityListItem[] | undefined;
480
+ nextToken?: string;
481
+ }
482
+ export interface ListExecutionsInput {
483
+ stateMachineArn: string | undefined;
484
+ statusFilter?: ExecutionStatus | string;
485
+ maxResults?: number;
486
+ nextToken?: string;
487
+ }
488
+ export interface ExecutionListItem {
489
+ executionArn: string | undefined;
490
+ stateMachineArn: string | undefined;
491
+ name: string | undefined;
492
+ status: ExecutionStatus | string | undefined;
493
+ startDate: Date | undefined;
494
+ stopDate?: Date;
495
+ }
496
+ export interface ListExecutionsOutput {
497
+ executions: ExecutionListItem[] | undefined;
498
+ nextToken?: string;
499
+ }
500
+ export interface ListStateMachinesInput {
501
+ maxResults?: number;
502
+ nextToken?: string;
503
+ }
504
+ export interface StateMachineListItem {
505
+ stateMachineArn: string | undefined;
506
+ name: string | undefined;
507
+ type: StateMachineType | string | undefined;
508
+ creationDate: Date | undefined;
509
+ }
510
+ export interface ListStateMachinesOutput {
511
+ stateMachines: StateMachineListItem[] | undefined;
512
+ nextToken?: string;
513
+ }
514
+ export interface ListTagsForResourceInput {
515
+ resourceArn: string | undefined;
516
+ }
517
+ export interface ListTagsForResourceOutput {
518
+ tags?: Tag[];
519
+ }
520
+ export declare class ResourceNotFound extends __BaseException {
521
+ readonly name: "ResourceNotFound";
522
+ readonly $fault: "client";
523
+ resourceName?: string;
524
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
525
+ }
526
+ export interface SendTaskFailureInput {
527
+ taskToken: string | undefined;
528
+ error?: string;
529
+ cause?: string;
530
+ }
531
+ export interface SendTaskFailureOutput {}
532
+ export declare class TaskDoesNotExist extends __BaseException {
533
+ readonly name: "TaskDoesNotExist";
534
+ readonly $fault: "client";
535
+ constructor(opts: __ExceptionOptionType<TaskDoesNotExist, __BaseException>);
536
+ }
537
+ export declare class TaskTimedOut extends __BaseException {
538
+ readonly name: "TaskTimedOut";
539
+ readonly $fault: "client";
540
+ constructor(opts: __ExceptionOptionType<TaskTimedOut, __BaseException>);
541
+ }
542
+ export interface SendTaskHeartbeatInput {
543
+ taskToken: string | undefined;
544
+ }
545
+ export interface SendTaskHeartbeatOutput {}
546
+ export declare class InvalidOutput extends __BaseException {
547
+ readonly name: "InvalidOutput";
548
+ readonly $fault: "client";
549
+ constructor(opts: __ExceptionOptionType<InvalidOutput, __BaseException>);
550
+ }
551
+ export interface SendTaskSuccessInput {
552
+ taskToken: string | undefined;
553
+ output: string | undefined;
554
+ }
555
+ export interface SendTaskSuccessOutput {}
556
+ export declare class ExecutionAlreadyExists extends __BaseException {
557
+ readonly name: "ExecutionAlreadyExists";
558
+ readonly $fault: "client";
559
+ constructor(
560
+ opts: __ExceptionOptionType<ExecutionAlreadyExists, __BaseException>
561
+ );
562
+ }
563
+ export declare class ExecutionLimitExceeded extends __BaseException {
564
+ readonly name: "ExecutionLimitExceeded";
565
+ readonly $fault: "client";
566
+ constructor(
567
+ opts: __ExceptionOptionType<ExecutionLimitExceeded, __BaseException>
568
+ );
569
+ }
570
+ export declare class InvalidExecutionInput extends __BaseException {
571
+ readonly name: "InvalidExecutionInput";
572
+ readonly $fault: "client";
573
+ constructor(
574
+ opts: __ExceptionOptionType<InvalidExecutionInput, __BaseException>
575
+ );
576
+ }
577
+ export interface StartExecutionInput {
578
+ stateMachineArn: string | undefined;
579
+ name?: string;
580
+ input?: string;
581
+ traceHeader?: string;
582
+ }
583
+ export interface StartExecutionOutput {
584
+ executionArn: string | undefined;
585
+ startDate: Date | undefined;
586
+ }
587
+ export interface StartSyncExecutionInput {
588
+ stateMachineArn: string | undefined;
589
+ name?: string;
590
+ input?: string;
591
+ traceHeader?: string;
592
+ }
593
+ export interface BillingDetails {
594
+ billedMemoryUsedInMB?: number;
595
+ billedDurationInMilliseconds?: number;
596
+ }
597
+ export declare type SyncExecutionStatus = "FAILED" | "SUCCEEDED" | "TIMED_OUT";
598
+ export interface StartSyncExecutionOutput {
599
+ executionArn: string | undefined;
600
+ stateMachineArn?: string;
601
+ name?: string;
602
+ startDate: Date | undefined;
603
+ stopDate: Date | undefined;
604
+ status: SyncExecutionStatus | string | undefined;
605
+ error?: string;
606
+ cause?: string;
607
+ input?: string;
608
+ inputDetails?: CloudWatchEventsExecutionDataDetails;
609
+ output?: string;
610
+ outputDetails?: CloudWatchEventsExecutionDataDetails;
611
+ traceHeader?: string;
612
+ billingDetails?: BillingDetails;
613
+ }
614
+ export interface StopExecutionInput {
615
+ executionArn: string | undefined;
616
+ error?: string;
617
+ cause?: string;
618
+ }
619
+ export interface StopExecutionOutput {
620
+ stopDate: Date | undefined;
621
+ }
622
+ export interface TagResourceInput {
623
+ resourceArn: string | undefined;
624
+ tags: Tag[] | undefined;
625
+ }
626
+ export interface TagResourceOutput {}
627
+ export interface UntagResourceInput {
628
+ resourceArn: string | undefined;
629
+ tagKeys: string[] | undefined;
630
+ }
631
+ export interface UntagResourceOutput {}
632
+ export declare class MissingRequiredParameter extends __BaseException {
633
+ readonly name: "MissingRequiredParameter";
634
+ readonly $fault: "client";
635
+ constructor(
636
+ opts: __ExceptionOptionType<MissingRequiredParameter, __BaseException>
637
+ );
638
+ }
639
+ export interface UpdateStateMachineInput {
640
+ stateMachineArn: string | undefined;
641
+ definition?: string;
642
+ roleArn?: string;
643
+ loggingConfiguration?: LoggingConfiguration;
644
+ tracingConfiguration?: TracingConfiguration;
645
+ }
646
+ export interface UpdateStateMachineOutput {
647
+ updateDate: Date | undefined;
648
+ }
649
+ export declare const ActivityFailedEventDetailsFilterSensitiveLog: (
650
+ obj: ActivityFailedEventDetails
651
+ ) => any;
652
+ export declare const ActivityListItemFilterSensitiveLog: (
653
+ obj: ActivityListItem
654
+ ) => any;
655
+ export declare const HistoryEventExecutionDataDetailsFilterSensitiveLog: (
656
+ obj: HistoryEventExecutionDataDetails
657
+ ) => any;
658
+ export declare const ActivityScheduledEventDetailsFilterSensitiveLog: (
659
+ obj: ActivityScheduledEventDetails
660
+ ) => any;
661
+ export declare const ActivityScheduleFailedEventDetailsFilterSensitiveLog: (
662
+ obj: ActivityScheduleFailedEventDetails
663
+ ) => any;
664
+ export declare const ActivityStartedEventDetailsFilterSensitiveLog: (
665
+ obj: ActivityStartedEventDetails
666
+ ) => any;
667
+ export declare const ActivitySucceededEventDetailsFilterSensitiveLog: (
668
+ obj: ActivitySucceededEventDetails
669
+ ) => any;
670
+ export declare const ActivityTimedOutEventDetailsFilterSensitiveLog: (
671
+ obj: ActivityTimedOutEventDetails
672
+ ) => any;
673
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
674
+ export declare const CreateActivityInputFilterSensitiveLog: (
675
+ obj: CreateActivityInput
676
+ ) => any;
677
+ export declare const CreateActivityOutputFilterSensitiveLog: (
678
+ obj: CreateActivityOutput
679
+ ) => any;
680
+ export declare const CloudWatchLogsLogGroupFilterSensitiveLog: (
681
+ obj: CloudWatchLogsLogGroup
682
+ ) => any;
683
+ export declare const LogDestinationFilterSensitiveLog: (
684
+ obj: LogDestination
685
+ ) => any;
686
+ export declare const LoggingConfigurationFilterSensitiveLog: (
687
+ obj: LoggingConfiguration
688
+ ) => any;
689
+ export declare const TracingConfigurationFilterSensitiveLog: (
690
+ obj: TracingConfiguration
691
+ ) => any;
692
+ export declare const CreateStateMachineInputFilterSensitiveLog: (
693
+ obj: CreateStateMachineInput
694
+ ) => any;
695
+ export declare const CreateStateMachineOutputFilterSensitiveLog: (
696
+ obj: CreateStateMachineOutput
697
+ ) => any;
698
+ export declare const DeleteActivityInputFilterSensitiveLog: (
699
+ obj: DeleteActivityInput
700
+ ) => any;
701
+ export declare const DeleteActivityOutputFilterSensitiveLog: (
702
+ obj: DeleteActivityOutput
703
+ ) => any;
704
+ export declare const DeleteStateMachineInputFilterSensitiveLog: (
705
+ obj: DeleteStateMachineInput
706
+ ) => any;
707
+ export declare const DeleteStateMachineOutputFilterSensitiveLog: (
708
+ obj: DeleteStateMachineOutput
709
+ ) => any;
710
+ export declare const DescribeActivityInputFilterSensitiveLog: (
711
+ obj: DescribeActivityInput
712
+ ) => any;
713
+ export declare const DescribeActivityOutputFilterSensitiveLog: (
714
+ obj: DescribeActivityOutput
715
+ ) => any;
716
+ export declare const DescribeExecutionInputFilterSensitiveLog: (
717
+ obj: DescribeExecutionInput
718
+ ) => any;
719
+ export declare const CloudWatchEventsExecutionDataDetailsFilterSensitiveLog: (
720
+ obj: CloudWatchEventsExecutionDataDetails
721
+ ) => any;
722
+ export declare const DescribeExecutionOutputFilterSensitiveLog: (
723
+ obj: DescribeExecutionOutput
724
+ ) => any;
725
+ export declare const DescribeStateMachineInputFilterSensitiveLog: (
726
+ obj: DescribeStateMachineInput
727
+ ) => any;
728
+ export declare const DescribeStateMachineOutputFilterSensitiveLog: (
729
+ obj: DescribeStateMachineOutput
730
+ ) => any;
731
+ export declare const DescribeStateMachineForExecutionInputFilterSensitiveLog: (
732
+ obj: DescribeStateMachineForExecutionInput
733
+ ) => any;
734
+ export declare const DescribeStateMachineForExecutionOutputFilterSensitiveLog: (
735
+ obj: DescribeStateMachineForExecutionOutput
736
+ ) => any;
737
+ export declare const GetActivityTaskInputFilterSensitiveLog: (
738
+ obj: GetActivityTaskInput
739
+ ) => any;
740
+ export declare const GetActivityTaskOutputFilterSensitiveLog: (
741
+ obj: GetActivityTaskOutput
742
+ ) => any;
743
+ export declare const GetExecutionHistoryInputFilterSensitiveLog: (
744
+ obj: GetExecutionHistoryInput
745
+ ) => any;
746
+ export declare const ExecutionAbortedEventDetailsFilterSensitiveLog: (
747
+ obj: ExecutionAbortedEventDetails
748
+ ) => any;
749
+ export declare const ExecutionFailedEventDetailsFilterSensitiveLog: (
750
+ obj: ExecutionFailedEventDetails
751
+ ) => any;
752
+ export declare const ExecutionStartedEventDetailsFilterSensitiveLog: (
753
+ obj: ExecutionStartedEventDetails
754
+ ) => any;
755
+ export declare const ExecutionSucceededEventDetailsFilterSensitiveLog: (
756
+ obj: ExecutionSucceededEventDetails
757
+ ) => any;
758
+ export declare const ExecutionTimedOutEventDetailsFilterSensitiveLog: (
759
+ obj: ExecutionTimedOutEventDetails
760
+ ) => any;
761
+ export declare const LambdaFunctionFailedEventDetailsFilterSensitiveLog: (
762
+ obj: LambdaFunctionFailedEventDetails
763
+ ) => any;
764
+ export declare const LambdaFunctionScheduledEventDetailsFilterSensitiveLog: (
765
+ obj: LambdaFunctionScheduledEventDetails
766
+ ) => any;
767
+ export declare const LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog: (
768
+ obj: LambdaFunctionScheduleFailedEventDetails
769
+ ) => any;
770
+ export declare const LambdaFunctionStartFailedEventDetailsFilterSensitiveLog: (
771
+ obj: LambdaFunctionStartFailedEventDetails
772
+ ) => any;
773
+ export declare const LambdaFunctionSucceededEventDetailsFilterSensitiveLog: (
774
+ obj: LambdaFunctionSucceededEventDetails
775
+ ) => any;
776
+ export declare const LambdaFunctionTimedOutEventDetailsFilterSensitiveLog: (
777
+ obj: LambdaFunctionTimedOutEventDetails
778
+ ) => any;
779
+ export declare const MapIterationEventDetailsFilterSensitiveLog: (
780
+ obj: MapIterationEventDetails
781
+ ) => any;
782
+ export declare const MapStateStartedEventDetailsFilterSensitiveLog: (
783
+ obj: MapStateStartedEventDetails
784
+ ) => any;
785
+ export declare const StateEnteredEventDetailsFilterSensitiveLog: (
786
+ obj: StateEnteredEventDetails
787
+ ) => any;
788
+ export declare const StateExitedEventDetailsFilterSensitiveLog: (
789
+ obj: StateExitedEventDetails
790
+ ) => any;
791
+ export declare const TaskFailedEventDetailsFilterSensitiveLog: (
792
+ obj: TaskFailedEventDetails
793
+ ) => any;
794
+ export declare const TaskScheduledEventDetailsFilterSensitiveLog: (
795
+ obj: TaskScheduledEventDetails
796
+ ) => any;
797
+ export declare const TaskStartedEventDetailsFilterSensitiveLog: (
798
+ obj: TaskStartedEventDetails
799
+ ) => any;
800
+ export declare const TaskStartFailedEventDetailsFilterSensitiveLog: (
801
+ obj: TaskStartFailedEventDetails
802
+ ) => any;
803
+ export declare const TaskSubmitFailedEventDetailsFilterSensitiveLog: (
804
+ obj: TaskSubmitFailedEventDetails
805
+ ) => any;
806
+ export declare const TaskSubmittedEventDetailsFilterSensitiveLog: (
807
+ obj: TaskSubmittedEventDetails
808
+ ) => any;
809
+ export declare const TaskSucceededEventDetailsFilterSensitiveLog: (
810
+ obj: TaskSucceededEventDetails
811
+ ) => any;
812
+ export declare const TaskTimedOutEventDetailsFilterSensitiveLog: (
813
+ obj: TaskTimedOutEventDetails
814
+ ) => any;
815
+ export declare const HistoryEventFilterSensitiveLog: (obj: HistoryEvent) => any;
816
+ export declare const GetExecutionHistoryOutputFilterSensitiveLog: (
817
+ obj: GetExecutionHistoryOutput
818
+ ) => any;
819
+ export declare const ListActivitiesInputFilterSensitiveLog: (
820
+ obj: ListActivitiesInput
821
+ ) => any;
822
+ export declare const ListActivitiesOutputFilterSensitiveLog: (
823
+ obj: ListActivitiesOutput
824
+ ) => any;
825
+ export declare const ListExecutionsInputFilterSensitiveLog: (
826
+ obj: ListExecutionsInput
827
+ ) => any;
828
+ export declare const ExecutionListItemFilterSensitiveLog: (
829
+ obj: ExecutionListItem
830
+ ) => any;
831
+ export declare const ListExecutionsOutputFilterSensitiveLog: (
832
+ obj: ListExecutionsOutput
833
+ ) => any;
834
+ export declare const ListStateMachinesInputFilterSensitiveLog: (
835
+ obj: ListStateMachinesInput
836
+ ) => any;
837
+ export declare const StateMachineListItemFilterSensitiveLog: (
838
+ obj: StateMachineListItem
839
+ ) => any;
840
+ export declare const ListStateMachinesOutputFilterSensitiveLog: (
841
+ obj: ListStateMachinesOutput
842
+ ) => any;
843
+ export declare const ListTagsForResourceInputFilterSensitiveLog: (
844
+ obj: ListTagsForResourceInput
845
+ ) => any;
846
+ export declare const ListTagsForResourceOutputFilterSensitiveLog: (
847
+ obj: ListTagsForResourceOutput
848
+ ) => any;
849
+ export declare const SendTaskFailureInputFilterSensitiveLog: (
850
+ obj: SendTaskFailureInput
851
+ ) => any;
852
+ export declare const SendTaskFailureOutputFilterSensitiveLog: (
853
+ obj: SendTaskFailureOutput
854
+ ) => any;
855
+ export declare const SendTaskHeartbeatInputFilterSensitiveLog: (
856
+ obj: SendTaskHeartbeatInput
857
+ ) => any;
858
+ export declare const SendTaskHeartbeatOutputFilterSensitiveLog: (
859
+ obj: SendTaskHeartbeatOutput
860
+ ) => any;
861
+ export declare const SendTaskSuccessInputFilterSensitiveLog: (
862
+ obj: SendTaskSuccessInput
863
+ ) => any;
864
+ export declare const SendTaskSuccessOutputFilterSensitiveLog: (
865
+ obj: SendTaskSuccessOutput
866
+ ) => any;
867
+ export declare const StartExecutionInputFilterSensitiveLog: (
868
+ obj: StartExecutionInput
869
+ ) => any;
870
+ export declare const StartExecutionOutputFilterSensitiveLog: (
871
+ obj: StartExecutionOutput
872
+ ) => any;
873
+ export declare const StartSyncExecutionInputFilterSensitiveLog: (
874
+ obj: StartSyncExecutionInput
875
+ ) => any;
876
+ export declare const BillingDetailsFilterSensitiveLog: (
877
+ obj: BillingDetails
878
+ ) => any;
879
+ export declare const StartSyncExecutionOutputFilterSensitiveLog: (
880
+ obj: StartSyncExecutionOutput
881
+ ) => any;
882
+ export declare const StopExecutionInputFilterSensitiveLog: (
883
+ obj: StopExecutionInput
884
+ ) => any;
885
+ export declare const StopExecutionOutputFilterSensitiveLog: (
886
+ obj: StopExecutionOutput
887
+ ) => any;
888
+ export declare const TagResourceInputFilterSensitiveLog: (
889
+ obj: TagResourceInput
890
+ ) => any;
891
+ export declare const TagResourceOutputFilterSensitiveLog: (
892
+ obj: TagResourceOutput
893
+ ) => any;
894
+ export declare const UntagResourceInputFilterSensitiveLog: (
895
+ obj: UntagResourceInput
896
+ ) => any;
897
+ export declare const UntagResourceOutputFilterSensitiveLog: (
898
+ obj: UntagResourceOutput
899
+ ) => any;
900
+ export declare const UpdateStateMachineInputFilterSensitiveLog: (
901
+ obj: UpdateStateMachineInput
902
+ ) => any;
903
+ export declare const UpdateStateMachineOutputFilterSensitiveLog: (
904
+ obj: UpdateStateMachineOutput
905
+ ) => any;