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