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