@aws-sdk/client-swf 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/SWF.d.ts +38 -0
- package/dist-types/SWFClient.d.ts +24 -4
- package/dist-types/commands/CountClosedWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/CountOpenWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/CountPendingActivityTasksCommand.d.ts +16 -0
- package/dist-types/commands/CountPendingDecisionTasksCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateDomainCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/DescribeActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowExecutionHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListActivityTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListClosedWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
- package/dist-types/commands/ListOpenWorkflowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkflowTypesCommand.d.ts +16 -0
- package/dist-types/commands/PollForActivityTaskCommand.d.ts +16 -0
- package/dist-types/commands/PollForDecisionTaskCommand.d.ts +16 -0
- package/dist-types/commands/RecordActivityTaskHeartbeatCommand.d.ts +16 -0
- package/dist-types/commands/RegisterActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/RegisterDomainCommand.d.ts +16 -0
- package/dist-types/commands/RegisterWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/RequestCancelWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/RespondActivityTaskCanceledCommand.d.ts +16 -0
- package/dist-types/commands/RespondActivityTaskCompletedCommand.d.ts +16 -0
- package/dist-types/commands/RespondActivityTaskFailedCommand.d.ts +16 -0
- package/dist-types/commands/RespondDecisionTaskCompletedCommand.d.ts +16 -0
- package/dist-types/commands/SignalWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StartWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TerminateWorkflowExecutionCommand.d.ts +16 -0
- package/dist-types/commands/UndeprecateActivityTypeCommand.d.ts +16 -0
- package/dist-types/commands/UndeprecateDomainCommand.d.ts +16 -0
- package/dist-types/commands/UndeprecateWorkflowTypeCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/SWFServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +303 -0
- package/dist-types/pagination/GetWorkflowExecutionHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListActivityTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClosedWorkflowExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOpenWorkflowExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkflowTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/PollForDecisionTaskPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SWFServiceException as __BaseException } from "./SWFServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Represents an activity type.</p>
|
|
5
6
|
*/
|
|
6
7
|
export interface ActivityType {
|
|
@@ -20,6 +21,7 @@ export interface ActivityType {
|
|
|
20
21
|
version: string | undefined;
|
|
21
22
|
}
|
|
22
23
|
/**
|
|
24
|
+
* @public
|
|
23
25
|
* <p>Represents a workflow execution.</p>
|
|
24
26
|
*/
|
|
25
27
|
export interface WorkflowExecution {
|
|
@@ -33,6 +35,7 @@ export interface WorkflowExecution {
|
|
|
33
35
|
runId: string | undefined;
|
|
34
36
|
}
|
|
35
37
|
/**
|
|
38
|
+
* @public
|
|
36
39
|
* <p>Unit of work sent to an activity worker.</p>
|
|
37
40
|
*/
|
|
38
41
|
export interface ActivityTask {
|
|
@@ -62,6 +65,7 @@ export interface ActivityTask {
|
|
|
62
65
|
input?: string;
|
|
63
66
|
}
|
|
64
67
|
/**
|
|
68
|
+
* @public
|
|
65
69
|
* <p>Provides the details of the <code>ActivityTaskCanceled</code> event.</p>
|
|
66
70
|
*/
|
|
67
71
|
export interface ActivityTaskCanceledEventAttributes {
|
|
@@ -85,6 +89,7 @@ export interface ActivityTaskCanceledEventAttributes {
|
|
|
85
89
|
latestCancelRequestedEventId?: number;
|
|
86
90
|
}
|
|
87
91
|
/**
|
|
92
|
+
* @public
|
|
88
93
|
* <p>Provides the details of the <code>ActivityTaskCancelRequested</code> event.</p>
|
|
89
94
|
*/
|
|
90
95
|
export interface ActivityTaskCancelRequestedEventAttributes {
|
|
@@ -99,6 +104,7 @@ export interface ActivityTaskCancelRequestedEventAttributes {
|
|
|
99
104
|
activityId: string | undefined;
|
|
100
105
|
}
|
|
101
106
|
/**
|
|
107
|
+
* @public
|
|
102
108
|
* <p>Provides the details of the <code>ActivityTaskCompleted</code> event.</p>
|
|
103
109
|
*/
|
|
104
110
|
export interface ActivityTaskCompletedEventAttributes {
|
|
@@ -118,6 +124,7 @@ export interface ActivityTaskCompletedEventAttributes {
|
|
|
118
124
|
startedEventId: number | undefined;
|
|
119
125
|
}
|
|
120
126
|
/**
|
|
127
|
+
* @public
|
|
121
128
|
* <p>Provides the details of the <code>ActivityTaskFailed</code> event.</p>
|
|
122
129
|
*/
|
|
123
130
|
export interface ActivityTaskFailedEventAttributes {
|
|
@@ -141,6 +148,7 @@ export interface ActivityTaskFailedEventAttributes {
|
|
|
141
148
|
startedEventId: number | undefined;
|
|
142
149
|
}
|
|
143
150
|
/**
|
|
151
|
+
* @public
|
|
144
152
|
* <p>Represents a task list.</p>
|
|
145
153
|
*/
|
|
146
154
|
export interface TaskList {
|
|
@@ -150,6 +158,7 @@ export interface TaskList {
|
|
|
150
158
|
name: string | undefined;
|
|
151
159
|
}
|
|
152
160
|
/**
|
|
161
|
+
* @public
|
|
153
162
|
* <p>Provides the details of the <code>ActivityTaskScheduled</code> event.</p>
|
|
154
163
|
*/
|
|
155
164
|
export interface ActivityTaskScheduledEventAttributes {
|
|
@@ -206,6 +215,7 @@ export interface ActivityTaskScheduledEventAttributes {
|
|
|
206
215
|
heartbeatTimeout?: string;
|
|
207
216
|
}
|
|
208
217
|
/**
|
|
218
|
+
* @public
|
|
209
219
|
* <p>Provides the details of the <code>ActivityTaskStarted</code> event.</p>
|
|
210
220
|
*/
|
|
211
221
|
export interface ActivityTaskStartedEventAttributes {
|
|
@@ -219,6 +229,7 @@ export interface ActivityTaskStartedEventAttributes {
|
|
|
219
229
|
scheduledEventId: number | undefined;
|
|
220
230
|
}
|
|
221
231
|
/**
|
|
232
|
+
* @public
|
|
222
233
|
* <p>Status information about an activity task.</p>
|
|
223
234
|
*/
|
|
224
235
|
export interface ActivityTaskStatus {
|
|
@@ -227,6 +238,9 @@ export interface ActivityTaskStatus {
|
|
|
227
238
|
*/
|
|
228
239
|
cancelRequested: boolean | undefined;
|
|
229
240
|
}
|
|
241
|
+
/**
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
230
244
|
export declare enum ActivityTaskTimeoutType {
|
|
231
245
|
HEARTBEAT = "HEARTBEAT",
|
|
232
246
|
SCHEDULE_TO_CLOSE = "SCHEDULE_TO_CLOSE",
|
|
@@ -234,6 +248,7 @@ export declare enum ActivityTaskTimeoutType {
|
|
|
234
248
|
START_TO_CLOSE = "START_TO_CLOSE"
|
|
235
249
|
}
|
|
236
250
|
/**
|
|
251
|
+
* @public
|
|
237
252
|
* <p>Provides the details of the <code>ActivityTaskTimedOut</code> event.</p>
|
|
238
253
|
*/
|
|
239
254
|
export interface ActivityTaskTimedOutEventAttributes {
|
|
@@ -258,6 +273,7 @@ export interface ActivityTaskTimedOutEventAttributes {
|
|
|
258
273
|
details?: string;
|
|
259
274
|
}
|
|
260
275
|
/**
|
|
276
|
+
* @public
|
|
261
277
|
* <p>Configuration settings registered with the activity type.</p>
|
|
262
278
|
*/
|
|
263
279
|
export interface ActivityTypeConfiguration {
|
|
@@ -319,11 +335,15 @@ export interface ActivityTypeConfiguration {
|
|
|
319
335
|
*/
|
|
320
336
|
defaultTaskScheduleToCloseTimeout?: string;
|
|
321
337
|
}
|
|
338
|
+
/**
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
322
341
|
export declare enum RegistrationStatus {
|
|
323
342
|
DEPRECATED = "DEPRECATED",
|
|
324
343
|
REGISTERED = "REGISTERED"
|
|
325
344
|
}
|
|
326
345
|
/**
|
|
346
|
+
* @public
|
|
327
347
|
* <p>Detailed information about an activity type.</p>
|
|
328
348
|
*/
|
|
329
349
|
export interface ActivityTypeInfo {
|
|
@@ -349,6 +369,7 @@ export interface ActivityTypeInfo {
|
|
|
349
369
|
deprecationDate?: Date;
|
|
350
370
|
}
|
|
351
371
|
/**
|
|
372
|
+
* @public
|
|
352
373
|
* <p>Detailed information about an activity type.</p>
|
|
353
374
|
*/
|
|
354
375
|
export interface ActivityTypeDetail {
|
|
@@ -378,6 +399,7 @@ export interface ActivityTypeDetail {
|
|
|
378
399
|
configuration: ActivityTypeConfiguration | undefined;
|
|
379
400
|
}
|
|
380
401
|
/**
|
|
402
|
+
* @public
|
|
381
403
|
* <p>Contains a paginated list of activity type information structures.</p>
|
|
382
404
|
*/
|
|
383
405
|
export interface ActivityTypeInfos {
|
|
@@ -394,6 +416,7 @@ export interface ActivityTypeInfos {
|
|
|
394
416
|
nextPageToken?: string;
|
|
395
417
|
}
|
|
396
418
|
/**
|
|
419
|
+
* @public
|
|
397
420
|
* <p>Provides the details of the <code>CancelTimer</code> decision.</p>
|
|
398
421
|
* <p>
|
|
399
422
|
* <b>Access Control</b>
|
|
@@ -423,11 +446,15 @@ export interface CancelTimerDecisionAttributes {
|
|
|
423
446
|
*/
|
|
424
447
|
timerId: string | undefined;
|
|
425
448
|
}
|
|
449
|
+
/**
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
426
452
|
export declare enum CancelTimerFailedCause {
|
|
427
453
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED",
|
|
428
454
|
TIMER_ID_UNKNOWN = "TIMER_ID_UNKNOWN"
|
|
429
455
|
}
|
|
430
456
|
/**
|
|
457
|
+
* @public
|
|
431
458
|
* <p>Provides the details of the <code>CancelTimerFailed</code> event.</p>
|
|
432
459
|
*/
|
|
433
460
|
export interface CancelTimerFailedEventAttributes {
|
|
@@ -450,6 +477,7 @@ export interface CancelTimerFailedEventAttributes {
|
|
|
450
477
|
decisionTaskCompletedEventId: number | undefined;
|
|
451
478
|
}
|
|
452
479
|
/**
|
|
480
|
+
* @public
|
|
453
481
|
* <p>Provides the details of the <code>CancelWorkflowExecution</code> decision.</p>
|
|
454
482
|
* <p>
|
|
455
483
|
* <b>Access Control</b>
|
|
@@ -479,11 +507,15 @@ export interface CancelWorkflowExecutionDecisionAttributes {
|
|
|
479
507
|
*/
|
|
480
508
|
details?: string;
|
|
481
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
482
513
|
export declare enum CancelWorkflowExecutionFailedCause {
|
|
483
514
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED",
|
|
484
515
|
UNHANDLED_DECISION = "UNHANDLED_DECISION"
|
|
485
516
|
}
|
|
486
517
|
/**
|
|
518
|
+
* @public
|
|
487
519
|
* <p>Provides the details of the <code>CancelWorkflowExecutionFailed</code> event.</p>
|
|
488
520
|
*/
|
|
489
521
|
export interface CancelWorkflowExecutionFailedEventAttributes {
|
|
@@ -501,12 +533,16 @@ export interface CancelWorkflowExecutionFailedEventAttributes {
|
|
|
501
533
|
*/
|
|
502
534
|
decisionTaskCompletedEventId: number | undefined;
|
|
503
535
|
}
|
|
536
|
+
/**
|
|
537
|
+
* @public
|
|
538
|
+
*/
|
|
504
539
|
export declare enum ChildPolicy {
|
|
505
540
|
ABANDON = "ABANDON",
|
|
506
541
|
REQUEST_CANCEL = "REQUEST_CANCEL",
|
|
507
542
|
TERMINATE = "TERMINATE"
|
|
508
543
|
}
|
|
509
544
|
/**
|
|
545
|
+
* @public
|
|
510
546
|
* <p>Represents a workflow type.</p>
|
|
511
547
|
*/
|
|
512
548
|
export interface WorkflowType {
|
|
@@ -528,6 +564,7 @@ export interface WorkflowType {
|
|
|
528
564
|
version: string | undefined;
|
|
529
565
|
}
|
|
530
566
|
/**
|
|
567
|
+
* @public
|
|
531
568
|
* <p>Provide details of the <code>ChildWorkflowExecutionCanceled</code> event.</p>
|
|
532
569
|
*/
|
|
533
570
|
export interface ChildWorkflowExecutionCanceledEventAttributes {
|
|
@@ -559,6 +596,7 @@ export interface ChildWorkflowExecutionCanceledEventAttributes {
|
|
|
559
596
|
startedEventId: number | undefined;
|
|
560
597
|
}
|
|
561
598
|
/**
|
|
599
|
+
* @public
|
|
562
600
|
* <p>Provides the details of the <code>ChildWorkflowExecutionCompleted</code> event.</p>
|
|
563
601
|
*/
|
|
564
602
|
export interface ChildWorkflowExecutionCompletedEventAttributes {
|
|
@@ -587,6 +625,7 @@ export interface ChildWorkflowExecutionCompletedEventAttributes {
|
|
|
587
625
|
startedEventId: number | undefined;
|
|
588
626
|
}
|
|
589
627
|
/**
|
|
628
|
+
* @public
|
|
590
629
|
* <p>Provides the details of the <code>ChildWorkflowExecutionFailed</code> event.</p>
|
|
591
630
|
*/
|
|
592
631
|
export interface ChildWorkflowExecutionFailedEventAttributes {
|
|
@@ -622,6 +661,7 @@ export interface ChildWorkflowExecutionFailedEventAttributes {
|
|
|
622
661
|
startedEventId: number | undefined;
|
|
623
662
|
}
|
|
624
663
|
/**
|
|
664
|
+
* @public
|
|
625
665
|
* <p>Provides the details of the <code>ChildWorkflowExecutionStarted</code> event.</p>
|
|
626
666
|
*/
|
|
627
667
|
export interface ChildWorkflowExecutionStartedEventAttributes {
|
|
@@ -643,6 +683,7 @@ export interface ChildWorkflowExecutionStartedEventAttributes {
|
|
|
643
683
|
initiatedEventId: number | undefined;
|
|
644
684
|
}
|
|
645
685
|
/**
|
|
686
|
+
* @public
|
|
646
687
|
* <p>Provides the details of the <code>ChildWorkflowExecutionTerminated</code> event.</p>
|
|
647
688
|
*/
|
|
648
689
|
export interface ChildWorkflowExecutionTerminatedEventAttributes {
|
|
@@ -669,10 +710,14 @@ export interface ChildWorkflowExecutionTerminatedEventAttributes {
|
|
|
669
710
|
*/
|
|
670
711
|
startedEventId: number | undefined;
|
|
671
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* @public
|
|
715
|
+
*/
|
|
672
716
|
export declare enum WorkflowExecutionTimeoutType {
|
|
673
717
|
START_TO_CLOSE = "START_TO_CLOSE"
|
|
674
718
|
}
|
|
675
719
|
/**
|
|
720
|
+
* @public
|
|
676
721
|
* <p>Provides the details of the <code>ChildWorkflowExecutionTimedOut</code> event.</p>
|
|
677
722
|
*/
|
|
678
723
|
export interface ChildWorkflowExecutionTimedOutEventAttributes {
|
|
@@ -702,6 +747,9 @@ export interface ChildWorkflowExecutionTimedOutEventAttributes {
|
|
|
702
747
|
*/
|
|
703
748
|
startedEventId: number | undefined;
|
|
704
749
|
}
|
|
750
|
+
/**
|
|
751
|
+
* @public
|
|
752
|
+
*/
|
|
705
753
|
export declare enum CloseStatus {
|
|
706
754
|
CANCELED = "CANCELED",
|
|
707
755
|
COMPLETED = "COMPLETED",
|
|
@@ -711,6 +759,7 @@ export declare enum CloseStatus {
|
|
|
711
759
|
TIMED_OUT = "TIMED_OUT"
|
|
712
760
|
}
|
|
713
761
|
/**
|
|
762
|
+
* @public
|
|
714
763
|
* <p>Used to filter the closed workflow executions in visibility APIs by their close status.</p>
|
|
715
764
|
*/
|
|
716
765
|
export interface CloseStatusFilter {
|
|
@@ -722,6 +771,7 @@ export interface CloseStatusFilter {
|
|
|
722
771
|
status: CloseStatus | string | undefined;
|
|
723
772
|
}
|
|
724
773
|
/**
|
|
774
|
+
* @public
|
|
725
775
|
* <p>Provides the details of the <code>CompleteWorkflowExecution</code> decision.</p>
|
|
726
776
|
* <p>
|
|
727
777
|
* <b>Access Control</b>
|
|
@@ -750,11 +800,15 @@ export interface CompleteWorkflowExecutionDecisionAttributes {
|
|
|
750
800
|
*/
|
|
751
801
|
result?: string;
|
|
752
802
|
}
|
|
803
|
+
/**
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
753
806
|
export declare enum CompleteWorkflowExecutionFailedCause {
|
|
754
807
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED",
|
|
755
808
|
UNHANDLED_DECISION = "UNHANDLED_DECISION"
|
|
756
809
|
}
|
|
757
810
|
/**
|
|
811
|
+
* @public
|
|
758
812
|
* <p>Provides the details of the <code>CompleteWorkflowExecutionFailed</code> event.</p>
|
|
759
813
|
*/
|
|
760
814
|
export interface CompleteWorkflowExecutionFailedEventAttributes {
|
|
@@ -775,6 +829,7 @@ export interface CompleteWorkflowExecutionFailedEventAttributes {
|
|
|
775
829
|
decisionTaskCompletedEventId: number | undefined;
|
|
776
830
|
}
|
|
777
831
|
/**
|
|
832
|
+
* @public
|
|
778
833
|
* <p>Provides the details of the <code>ContinueAsNewWorkflowExecution</code> decision.</p>
|
|
779
834
|
* <p>
|
|
780
835
|
* <b>Access Control</b>
|
|
@@ -892,6 +947,9 @@ export interface ContinueAsNewWorkflowExecutionDecisionAttributes {
|
|
|
892
947
|
*/
|
|
893
948
|
lambdaRole?: string;
|
|
894
949
|
}
|
|
950
|
+
/**
|
|
951
|
+
* @public
|
|
952
|
+
*/
|
|
895
953
|
export declare enum ContinueAsNewWorkflowExecutionFailedCause {
|
|
896
954
|
CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED = "CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED",
|
|
897
955
|
DEFAULT_CHILD_POLICY_UNDEFINED = "DEFAULT_CHILD_POLICY_UNDEFINED",
|
|
@@ -904,6 +962,7 @@ export declare enum ContinueAsNewWorkflowExecutionFailedCause {
|
|
|
904
962
|
WORKFLOW_TYPE_DOES_NOT_EXIST = "WORKFLOW_TYPE_DOES_NOT_EXIST"
|
|
905
963
|
}
|
|
906
964
|
/**
|
|
965
|
+
* @public
|
|
907
966
|
* <p>Provides the details of the <code>ContinueAsNewWorkflowExecutionFailed</code> event.</p>
|
|
908
967
|
*/
|
|
909
968
|
export interface ContinueAsNewWorkflowExecutionFailedEventAttributes {
|
|
@@ -924,6 +983,7 @@ export interface ContinueAsNewWorkflowExecutionFailedEventAttributes {
|
|
|
924
983
|
decisionTaskCompletedEventId: number | undefined;
|
|
925
984
|
}
|
|
926
985
|
/**
|
|
986
|
+
* @public
|
|
927
987
|
* <p>Used to filter the workflow executions in visibility APIs by various time-based rules. Each parameter, if
|
|
928
988
|
* specified, defines a rule that must be satisfied by each returned query result. The parameter values are in the <a href="https://en.wikipedia.org/wiki/Unix_time">Unix Time format</a>. For example:
|
|
929
989
|
* <code>"oldestDate": 1325376070.</code>
|
|
@@ -940,6 +1000,7 @@ export interface ExecutionTimeFilter {
|
|
|
940
1000
|
latestDate?: Date;
|
|
941
1001
|
}
|
|
942
1002
|
/**
|
|
1003
|
+
* @public
|
|
943
1004
|
* <p>Used to filter the workflow executions in visibility APIs by their <code>workflowId</code>.</p>
|
|
944
1005
|
*/
|
|
945
1006
|
export interface WorkflowExecutionFilter {
|
|
@@ -949,6 +1010,7 @@ export interface WorkflowExecutionFilter {
|
|
|
949
1010
|
workflowId: string | undefined;
|
|
950
1011
|
}
|
|
951
1012
|
/**
|
|
1013
|
+
* @public
|
|
952
1014
|
* <p>Used to filter the workflow executions in visibility APIs based on a tag.</p>
|
|
953
1015
|
*/
|
|
954
1016
|
export interface TagFilter {
|
|
@@ -961,6 +1023,7 @@ export interface TagFilter {
|
|
|
961
1023
|
tag: string | undefined;
|
|
962
1024
|
}
|
|
963
1025
|
/**
|
|
1026
|
+
* @public
|
|
964
1027
|
* <p>Used to filter workflow execution query results by type. Each parameter, if specified, defines a rule that must be satisfied by each returned result.</p>
|
|
965
1028
|
*/
|
|
966
1029
|
export interface WorkflowTypeFilter {
|
|
@@ -974,6 +1037,9 @@ export interface WorkflowTypeFilter {
|
|
|
974
1037
|
*/
|
|
975
1038
|
version?: string;
|
|
976
1039
|
}
|
|
1040
|
+
/**
|
|
1041
|
+
* @public
|
|
1042
|
+
*/
|
|
977
1043
|
export interface CountClosedWorkflowExecutionsInput {
|
|
978
1044
|
/**
|
|
979
1045
|
* <p>The name of the domain containing the workflow executions to count.</p>
|
|
@@ -1045,6 +1111,7 @@ export interface CountClosedWorkflowExecutionsInput {
|
|
|
1045
1111
|
closeStatusFilter?: CloseStatusFilter;
|
|
1046
1112
|
}
|
|
1047
1113
|
/**
|
|
1114
|
+
* @public
|
|
1048
1115
|
* <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
|
|
1049
1116
|
*/
|
|
1050
1117
|
export declare class OperationNotPermittedFault extends __BaseException {
|
|
@@ -1056,6 +1123,7 @@ export declare class OperationNotPermittedFault extends __BaseException {
|
|
|
1056
1123
|
constructor(opts: __ExceptionOptionType<OperationNotPermittedFault, __BaseException>);
|
|
1057
1124
|
}
|
|
1058
1125
|
/**
|
|
1126
|
+
* @public
|
|
1059
1127
|
* <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
|
|
1060
1128
|
*/
|
|
1061
1129
|
export declare class UnknownResourceFault extends __BaseException {
|
|
@@ -1067,6 +1135,7 @@ export declare class UnknownResourceFault extends __BaseException {
|
|
|
1067
1135
|
constructor(opts: __ExceptionOptionType<UnknownResourceFault, __BaseException>);
|
|
1068
1136
|
}
|
|
1069
1137
|
/**
|
|
1138
|
+
* @public
|
|
1070
1139
|
* <p>Contains the count of workflow executions returned from <a>CountOpenWorkflowExecutions</a> or
|
|
1071
1140
|
* <a>CountClosedWorkflowExecutions</a>
|
|
1072
1141
|
* </p>
|
|
@@ -1081,6 +1150,9 @@ export interface WorkflowExecutionCount {
|
|
|
1081
1150
|
*/
|
|
1082
1151
|
truncated?: boolean;
|
|
1083
1152
|
}
|
|
1153
|
+
/**
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1084
1156
|
export interface CountOpenWorkflowExecutionsInput {
|
|
1085
1157
|
/**
|
|
1086
1158
|
* <p>The name of the domain containing the workflow executions to count.</p>
|
|
@@ -1121,6 +1193,9 @@ export interface CountOpenWorkflowExecutionsInput {
|
|
|
1121
1193
|
*/
|
|
1122
1194
|
executionFilter?: WorkflowExecutionFilter;
|
|
1123
1195
|
}
|
|
1196
|
+
/**
|
|
1197
|
+
* @public
|
|
1198
|
+
*/
|
|
1124
1199
|
export interface CountPendingActivityTasksInput {
|
|
1125
1200
|
/**
|
|
1126
1201
|
* <p>The name of the domain that contains the task list.</p>
|
|
@@ -1132,6 +1207,7 @@ export interface CountPendingActivityTasksInput {
|
|
|
1132
1207
|
taskList: TaskList | undefined;
|
|
1133
1208
|
}
|
|
1134
1209
|
/**
|
|
1210
|
+
* @public
|
|
1135
1211
|
* <p>Contains the count of tasks in a task list.</p>
|
|
1136
1212
|
*/
|
|
1137
1213
|
export interface PendingTaskCount {
|
|
@@ -1144,6 +1220,9 @@ export interface PendingTaskCount {
|
|
|
1144
1220
|
*/
|
|
1145
1221
|
truncated?: boolean;
|
|
1146
1222
|
}
|
|
1223
|
+
/**
|
|
1224
|
+
* @public
|
|
1225
|
+
*/
|
|
1147
1226
|
export interface CountPendingDecisionTasksInput {
|
|
1148
1227
|
/**
|
|
1149
1228
|
* <p>The name of the domain that contains the task list.</p>
|
|
@@ -1154,6 +1233,9 @@ export interface CountPendingDecisionTasksInput {
|
|
|
1154
1233
|
*/
|
|
1155
1234
|
taskList: TaskList | undefined;
|
|
1156
1235
|
}
|
|
1236
|
+
/**
|
|
1237
|
+
* @public
|
|
1238
|
+
*/
|
|
1157
1239
|
export declare enum DecisionType {
|
|
1158
1240
|
CancelTimer = "CancelTimer",
|
|
1159
1241
|
CancelWorkflowExecution = "CancelWorkflowExecution",
|
|
@@ -1170,6 +1252,7 @@ export declare enum DecisionType {
|
|
|
1170
1252
|
StartTimer = "StartTimer"
|
|
1171
1253
|
}
|
|
1172
1254
|
/**
|
|
1255
|
+
* @public
|
|
1173
1256
|
* <p>Provides the details of the <code>FailWorkflowExecution</code> decision.</p>
|
|
1174
1257
|
* <p>
|
|
1175
1258
|
* <b>Access Control</b>
|
|
@@ -1205,6 +1288,7 @@ export interface FailWorkflowExecutionDecisionAttributes {
|
|
|
1205
1288
|
details?: string;
|
|
1206
1289
|
}
|
|
1207
1290
|
/**
|
|
1291
|
+
* @public
|
|
1208
1292
|
* <p>Provides the details of the <code>RecordMarker</code> decision.</p>
|
|
1209
1293
|
* <p>
|
|
1210
1294
|
* <b>Access Control</b>
|
|
@@ -1240,6 +1324,7 @@ export interface RecordMarkerDecisionAttributes {
|
|
|
1240
1324
|
details?: string;
|
|
1241
1325
|
}
|
|
1242
1326
|
/**
|
|
1327
|
+
* @public
|
|
1243
1328
|
* <p>Provides the details of the <code>RequestCancelActivityTask</code> decision.</p>
|
|
1244
1329
|
* <p>
|
|
1245
1330
|
* <b>Access Control</b>
|
|
@@ -1270,6 +1355,7 @@ export interface RequestCancelActivityTaskDecisionAttributes {
|
|
|
1270
1355
|
activityId: string | undefined;
|
|
1271
1356
|
}
|
|
1272
1357
|
/**
|
|
1358
|
+
* @public
|
|
1273
1359
|
* <p>Provides the details of the <code>RequestCancelExternalWorkflowExecution</code> decision.</p>
|
|
1274
1360
|
* <p>
|
|
1275
1361
|
* <b>Access Control</b>
|
|
@@ -1308,6 +1394,7 @@ export interface RequestCancelExternalWorkflowExecutionDecisionAttributes {
|
|
|
1308
1394
|
control?: string;
|
|
1309
1395
|
}
|
|
1310
1396
|
/**
|
|
1397
|
+
* @public
|
|
1311
1398
|
* <p>Provides the details of the <code>ScheduleActivityTask</code> decision.</p>
|
|
1312
1399
|
* <p>
|
|
1313
1400
|
* <b>Access Control</b>
|
|
@@ -1425,6 +1512,7 @@ export interface ScheduleActivityTaskDecisionAttributes {
|
|
|
1425
1512
|
heartbeatTimeout?: string;
|
|
1426
1513
|
}
|
|
1427
1514
|
/**
|
|
1515
|
+
* @public
|
|
1428
1516
|
* <p>Decision attributes specified in <code>scheduleLambdaFunctionDecisionAttributes</code> within the list of
|
|
1429
1517
|
* decisions <code>decisions</code> passed to <a>RespondDecisionTaskCompleted</a>.</p>
|
|
1430
1518
|
*/
|
|
@@ -1452,6 +1540,7 @@ export interface ScheduleLambdaFunctionDecisionAttributes {
|
|
|
1452
1540
|
startToCloseTimeout?: string;
|
|
1453
1541
|
}
|
|
1454
1542
|
/**
|
|
1543
|
+
* @public
|
|
1455
1544
|
* <p>Provides the details of the <code>SignalExternalWorkflowExecution</code> decision.</p>
|
|
1456
1545
|
* <p>
|
|
1457
1546
|
* <b>Access Control</b>
|
|
@@ -1502,6 +1591,7 @@ export interface SignalExternalWorkflowExecutionDecisionAttributes {
|
|
|
1502
1591
|
control?: string;
|
|
1503
1592
|
}
|
|
1504
1593
|
/**
|
|
1594
|
+
* @public
|
|
1505
1595
|
* <p>Provides the details of the <code>StartChildWorkflowExecution</code> decision.</p>
|
|
1506
1596
|
* <p>
|
|
1507
1597
|
* <b>Access Control</b>
|
|
@@ -1641,6 +1731,7 @@ export interface StartChildWorkflowExecutionDecisionAttributes {
|
|
|
1641
1731
|
lambdaRole?: string;
|
|
1642
1732
|
}
|
|
1643
1733
|
/**
|
|
1734
|
+
* @public
|
|
1644
1735
|
* <p>Provides the details of the <code>StartTimer</code> decision.</p>
|
|
1645
1736
|
* <p>
|
|
1646
1737
|
* <b>Access Control</b>
|
|
@@ -1683,6 +1774,7 @@ export interface StartTimerDecisionAttributes {
|
|
|
1683
1774
|
startToFireTimeout: string | undefined;
|
|
1684
1775
|
}
|
|
1685
1776
|
/**
|
|
1777
|
+
* @public
|
|
1686
1778
|
* <p>Specifies a decision made by the decider. A decision can be one of these types:</p>
|
|
1687
1779
|
* <ul>
|
|
1688
1780
|
* <li>
|
|
@@ -2019,6 +2111,7 @@ export interface Decision {
|
|
|
2019
2111
|
scheduleLambdaFunctionDecisionAttributes?: ScheduleLambdaFunctionDecisionAttributes;
|
|
2020
2112
|
}
|
|
2021
2113
|
/**
|
|
2114
|
+
* @public
|
|
2022
2115
|
* <p>Provides the details of the <code>DecisionTaskCompleted</code> event.</p>
|
|
2023
2116
|
*/
|
|
2024
2117
|
export interface DecisionTaskCompletedEventAttributes {
|
|
@@ -2040,6 +2133,7 @@ export interface DecisionTaskCompletedEventAttributes {
|
|
|
2040
2133
|
startedEventId: number | undefined;
|
|
2041
2134
|
}
|
|
2042
2135
|
/**
|
|
2136
|
+
* @public
|
|
2043
2137
|
* <p>Provides details about the <code>DecisionTaskScheduled</code> event.</p>
|
|
2044
2138
|
*/
|
|
2045
2139
|
export interface DecisionTaskScheduledEventAttributes {
|
|
@@ -2062,6 +2156,7 @@ export interface DecisionTaskScheduledEventAttributes {
|
|
|
2062
2156
|
startToCloseTimeout?: string;
|
|
2063
2157
|
}
|
|
2064
2158
|
/**
|
|
2159
|
+
* @public
|
|
2065
2160
|
* <p>Provides the details of the <code>DecisionTaskStarted</code> event.</p>
|
|
2066
2161
|
*/
|
|
2067
2162
|
export interface DecisionTaskStartedEventAttributes {
|
|
@@ -2076,10 +2171,14 @@ export interface DecisionTaskStartedEventAttributes {
|
|
|
2076
2171
|
*/
|
|
2077
2172
|
scheduledEventId: number | undefined;
|
|
2078
2173
|
}
|
|
2174
|
+
/**
|
|
2175
|
+
* @public
|
|
2176
|
+
*/
|
|
2079
2177
|
export declare enum DecisionTaskTimeoutType {
|
|
2080
2178
|
START_TO_CLOSE = "START_TO_CLOSE"
|
|
2081
2179
|
}
|
|
2082
2180
|
/**
|
|
2181
|
+
* @public
|
|
2083
2182
|
* <p>Provides the details of the <code>DecisionTaskTimedOut</code> event.</p>
|
|
2084
2183
|
*/
|
|
2085
2184
|
export interface DecisionTaskTimedOutEventAttributes {
|
|
@@ -2100,6 +2199,9 @@ export interface DecisionTaskTimedOutEventAttributes {
|
|
|
2100
2199
|
*/
|
|
2101
2200
|
startedEventId: number | undefined;
|
|
2102
2201
|
}
|
|
2202
|
+
/**
|
|
2203
|
+
* @public
|
|
2204
|
+
*/
|
|
2103
2205
|
export declare enum EventType {
|
|
2104
2206
|
ActivityTaskCancelRequested = "ActivityTaskCancelRequested",
|
|
2105
2207
|
ActivityTaskCanceled = "ActivityTaskCanceled",
|
|
@@ -2157,6 +2259,7 @@ export declare enum EventType {
|
|
|
2157
2259
|
WorkflowExecutionTimedOut = "WorkflowExecutionTimedOut"
|
|
2158
2260
|
}
|
|
2159
2261
|
/**
|
|
2262
|
+
* @public
|
|
2160
2263
|
* <p>Provides the details of the <code>ExternalWorkflowExecutionCancelRequested</code> event.</p>
|
|
2161
2264
|
*/
|
|
2162
2265
|
export interface ExternalWorkflowExecutionCancelRequestedEventAttributes {
|
|
@@ -2173,6 +2276,7 @@ export interface ExternalWorkflowExecutionCancelRequestedEventAttributes {
|
|
|
2173
2276
|
initiatedEventId: number | undefined;
|
|
2174
2277
|
}
|
|
2175
2278
|
/**
|
|
2279
|
+
* @public
|
|
2176
2280
|
* <p>Provides the details of the <code>ExternalWorkflowExecutionSignaled</code> event.</p>
|
|
2177
2281
|
*/
|
|
2178
2282
|
export interface ExternalWorkflowExecutionSignaledEventAttributes {
|
|
@@ -2187,11 +2291,15 @@ export interface ExternalWorkflowExecutionSignaledEventAttributes {
|
|
|
2187
2291
|
*/
|
|
2188
2292
|
initiatedEventId: number | undefined;
|
|
2189
2293
|
}
|
|
2294
|
+
/**
|
|
2295
|
+
* @public
|
|
2296
|
+
*/
|
|
2190
2297
|
export declare enum FailWorkflowExecutionFailedCause {
|
|
2191
2298
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED",
|
|
2192
2299
|
UNHANDLED_DECISION = "UNHANDLED_DECISION"
|
|
2193
2300
|
}
|
|
2194
2301
|
/**
|
|
2302
|
+
* @public
|
|
2195
2303
|
* <p>Provides the details of the <code>FailWorkflowExecutionFailed</code> event.</p>
|
|
2196
2304
|
*/
|
|
2197
2305
|
export interface FailWorkflowExecutionFailedEventAttributes {
|
|
@@ -2212,6 +2320,7 @@ export interface FailWorkflowExecutionFailedEventAttributes {
|
|
|
2212
2320
|
decisionTaskCompletedEventId: number | undefined;
|
|
2213
2321
|
}
|
|
2214
2322
|
/**
|
|
2323
|
+
* @public
|
|
2215
2324
|
* <p>Provides the details of the <code>LambdaFunctionCompleted</code> event. It isn't set
|
|
2216
2325
|
* for other event types.</p>
|
|
2217
2326
|
*/
|
|
@@ -2232,6 +2341,7 @@ export interface LambdaFunctionCompletedEventAttributes {
|
|
|
2232
2341
|
result?: string;
|
|
2233
2342
|
}
|
|
2234
2343
|
/**
|
|
2344
|
+
* @public
|
|
2235
2345
|
* <p>Provides the details of the <code>LambdaFunctionFailed</code> event. It isn't set for
|
|
2236
2346
|
* other event types.</p>
|
|
2237
2347
|
*/
|
|
@@ -2256,6 +2366,7 @@ export interface LambdaFunctionFailedEventAttributes {
|
|
|
2256
2366
|
details?: string;
|
|
2257
2367
|
}
|
|
2258
2368
|
/**
|
|
2369
|
+
* @public
|
|
2259
2370
|
* <p>Provides the details of the <code>LambdaFunctionScheduled</code> event. It isn't set
|
|
2260
2371
|
* for other event types.</p>
|
|
2261
2372
|
*/
|
|
@@ -2288,6 +2399,7 @@ export interface LambdaFunctionScheduledEventAttributes {
|
|
|
2288
2399
|
decisionTaskCompletedEventId: number | undefined;
|
|
2289
2400
|
}
|
|
2290
2401
|
/**
|
|
2402
|
+
* @public
|
|
2291
2403
|
* <p>Provides the details of the <code>LambdaFunctionStarted</code> event. It isn't set for
|
|
2292
2404
|
* other event types.</p>
|
|
2293
2405
|
*/
|
|
@@ -2298,10 +2410,14 @@ export interface LambdaFunctionStartedEventAttributes {
|
|
|
2298
2410
|
*/
|
|
2299
2411
|
scheduledEventId: number | undefined;
|
|
2300
2412
|
}
|
|
2413
|
+
/**
|
|
2414
|
+
* @public
|
|
2415
|
+
*/
|
|
2301
2416
|
export declare enum LambdaFunctionTimeoutType {
|
|
2302
2417
|
START_TO_CLOSE = "START_TO_CLOSE"
|
|
2303
2418
|
}
|
|
2304
2419
|
/**
|
|
2420
|
+
* @public
|
|
2305
2421
|
* <p>Provides details of the <code>LambdaFunctionTimedOut</code> event.</p>
|
|
2306
2422
|
*/
|
|
2307
2423
|
export interface LambdaFunctionTimedOutEventAttributes {
|
|
@@ -2321,6 +2437,7 @@ export interface LambdaFunctionTimedOutEventAttributes {
|
|
|
2321
2437
|
timeoutType?: LambdaFunctionTimeoutType | string;
|
|
2322
2438
|
}
|
|
2323
2439
|
/**
|
|
2440
|
+
* @public
|
|
2324
2441
|
* <p>Provides the details of the <code>MarkerRecorded</code> event.</p>
|
|
2325
2442
|
*/
|
|
2326
2443
|
export interface MarkerRecordedEventAttributes {
|
|
@@ -2339,10 +2456,14 @@ export interface MarkerRecordedEventAttributes {
|
|
|
2339
2456
|
*/
|
|
2340
2457
|
decisionTaskCompletedEventId: number | undefined;
|
|
2341
2458
|
}
|
|
2459
|
+
/**
|
|
2460
|
+
* @public
|
|
2461
|
+
*/
|
|
2342
2462
|
export declare enum RecordMarkerFailedCause {
|
|
2343
2463
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED"
|
|
2344
2464
|
}
|
|
2345
2465
|
/**
|
|
2466
|
+
* @public
|
|
2346
2467
|
* <p>Provides the details of the <code>RecordMarkerFailed</code> event.</p>
|
|
2347
2468
|
*/
|
|
2348
2469
|
export interface RecordMarkerFailedEventAttributes {
|
|
@@ -2366,11 +2487,15 @@ export interface RecordMarkerFailedEventAttributes {
|
|
|
2366
2487
|
*/
|
|
2367
2488
|
decisionTaskCompletedEventId: number | undefined;
|
|
2368
2489
|
}
|
|
2490
|
+
/**
|
|
2491
|
+
* @public
|
|
2492
|
+
*/
|
|
2369
2493
|
export declare enum RequestCancelActivityTaskFailedCause {
|
|
2370
2494
|
ACTIVITY_ID_UNKNOWN = "ACTIVITY_ID_UNKNOWN",
|
|
2371
2495
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED"
|
|
2372
2496
|
}
|
|
2373
2497
|
/**
|
|
2498
|
+
* @public
|
|
2374
2499
|
* <p>Provides the details of the <code>RequestCancelActivityTaskFailed</code> event.</p>
|
|
2375
2500
|
*/
|
|
2376
2501
|
export interface RequestCancelActivityTaskFailedEventAttributes {
|
|
@@ -2394,12 +2519,16 @@ export interface RequestCancelActivityTaskFailedEventAttributes {
|
|
|
2394
2519
|
*/
|
|
2395
2520
|
decisionTaskCompletedEventId: number | undefined;
|
|
2396
2521
|
}
|
|
2522
|
+
/**
|
|
2523
|
+
* @public
|
|
2524
|
+
*/
|
|
2397
2525
|
export declare enum RequestCancelExternalWorkflowExecutionFailedCause {
|
|
2398
2526
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED",
|
|
2399
2527
|
REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED = "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED",
|
|
2400
2528
|
UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION = "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION"
|
|
2401
2529
|
}
|
|
2402
2530
|
/**
|
|
2531
|
+
* @public
|
|
2403
2532
|
* <p>Provides the details of the <code>RequestCancelExternalWorkflowExecutionFailed</code> event.</p>
|
|
2404
2533
|
*/
|
|
2405
2534
|
export interface RequestCancelExternalWorkflowExecutionFailedEventAttributes {
|
|
@@ -2440,6 +2569,7 @@ export interface RequestCancelExternalWorkflowExecutionFailedEventAttributes {
|
|
|
2440
2569
|
control?: string;
|
|
2441
2570
|
}
|
|
2442
2571
|
/**
|
|
2572
|
+
* @public
|
|
2443
2573
|
* <p>Provides the details of the <code>RequestCancelExternalWorkflowExecutionInitiated</code> event.</p>
|
|
2444
2574
|
*/
|
|
2445
2575
|
export interface RequestCancelExternalWorkflowExecutionInitiatedEventAttributes {
|
|
@@ -2463,6 +2593,9 @@ export interface RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
|
|
|
2463
2593
|
*/
|
|
2464
2594
|
control?: string;
|
|
2465
2595
|
}
|
|
2596
|
+
/**
|
|
2597
|
+
* @public
|
|
2598
|
+
*/
|
|
2466
2599
|
export declare enum ScheduleActivityTaskFailedCause {
|
|
2467
2600
|
ACTIVITY_CREATION_RATE_EXCEEDED = "ACTIVITY_CREATION_RATE_EXCEEDED",
|
|
2468
2601
|
ACTIVITY_ID_ALREADY_IN_USE = "ACTIVITY_ID_ALREADY_IN_USE",
|
|
@@ -2477,6 +2610,7 @@ export declare enum ScheduleActivityTaskFailedCause {
|
|
|
2477
2610
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED"
|
|
2478
2611
|
}
|
|
2479
2612
|
/**
|
|
2613
|
+
* @public
|
|
2480
2614
|
* <p>Provides the details of the <code>ScheduleActivityTaskFailed</code> event.</p>
|
|
2481
2615
|
*/
|
|
2482
2616
|
export interface ScheduleActivityTaskFailedEventAttributes {
|
|
@@ -2504,6 +2638,9 @@ export interface ScheduleActivityTaskFailedEventAttributes {
|
|
|
2504
2638
|
*/
|
|
2505
2639
|
decisionTaskCompletedEventId: number | undefined;
|
|
2506
2640
|
}
|
|
2641
|
+
/**
|
|
2642
|
+
* @public
|
|
2643
|
+
*/
|
|
2507
2644
|
export declare enum ScheduleLambdaFunctionFailedCause {
|
|
2508
2645
|
ID_ALREADY_IN_USE = "ID_ALREADY_IN_USE",
|
|
2509
2646
|
LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED = "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED",
|
|
@@ -2511,6 +2648,7 @@ export declare enum ScheduleLambdaFunctionFailedCause {
|
|
|
2511
2648
|
OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED = "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED"
|
|
2512
2649
|
}
|
|
2513
2650
|
/**
|
|
2651
|
+
* @public
|
|
2514
2652
|
* <p>Provides the details of the <code>ScheduleLambdaFunctionFailed</code> event. It isn't
|
|
2515
2653
|
* set for other event types.</p>
|
|
2516
2654
|
*/
|
|
@@ -2541,12 +2679,16 @@ export interface ScheduleLambdaFunctionFailedEventAttributes {
|
|
|
2541
2679
|
*/
|
|
2542
2680
|
decisionTaskCompletedEventId: number | undefined;
|
|
2543
2681
|
}
|
|
2682
|
+
/**
|
|
2683
|
+
* @public
|
|
2684
|
+
*/
|
|
2544
2685
|
export declare enum SignalExternalWorkflowExecutionFailedCause {
|
|
2545
2686
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED",
|
|
2546
2687
|
SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED = "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED",
|
|
2547
2688
|
UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION = "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION"
|
|
2548
2689
|
}
|
|
2549
2690
|
/**
|
|
2691
|
+
* @public
|
|
2550
2692
|
* <p>Provides the details of the <code>SignalExternalWorkflowExecutionFailed</code> event.</p>
|
|
2551
2693
|
*/
|
|
2552
2694
|
export interface SignalExternalWorkflowExecutionFailedEventAttributes {
|
|
@@ -2586,6 +2728,7 @@ export interface SignalExternalWorkflowExecutionFailedEventAttributes {
|
|
|
2586
2728
|
control?: string;
|
|
2587
2729
|
}
|
|
2588
2730
|
/**
|
|
2731
|
+
* @public
|
|
2589
2732
|
* <p>Provides the details of the <code>SignalExternalWorkflowExecutionInitiated</code> event.</p>
|
|
2590
2733
|
*/
|
|
2591
2734
|
export interface SignalExternalWorkflowExecutionInitiatedEventAttributes {
|
|
@@ -2616,6 +2759,9 @@ export interface SignalExternalWorkflowExecutionInitiatedEventAttributes {
|
|
|
2616
2759
|
*/
|
|
2617
2760
|
control?: string;
|
|
2618
2761
|
}
|
|
2762
|
+
/**
|
|
2763
|
+
* @public
|
|
2764
|
+
*/
|
|
2619
2765
|
export declare enum StartChildWorkflowExecutionFailedCause {
|
|
2620
2766
|
CHILD_CREATION_RATE_EXCEEDED = "CHILD_CREATION_RATE_EXCEEDED",
|
|
2621
2767
|
DEFAULT_CHILD_POLICY_UNDEFINED = "DEFAULT_CHILD_POLICY_UNDEFINED",
|
|
@@ -2630,6 +2776,7 @@ export declare enum StartChildWorkflowExecutionFailedCause {
|
|
|
2630
2776
|
WORKFLOW_TYPE_DOES_NOT_EXIST = "WORKFLOW_TYPE_DOES_NOT_EXIST"
|
|
2631
2777
|
}
|
|
2632
2778
|
/**
|
|
2779
|
+
* @public
|
|
2633
2780
|
* <p>Provides the details of the <code>StartChildWorkflowExecutionFailed</code> event.</p>
|
|
2634
2781
|
*/
|
|
2635
2782
|
export interface StartChildWorkflowExecutionFailedEventAttributes {
|
|
@@ -2672,6 +2819,7 @@ export interface StartChildWorkflowExecutionFailedEventAttributes {
|
|
|
2672
2819
|
control?: string;
|
|
2673
2820
|
}
|
|
2674
2821
|
/**
|
|
2822
|
+
* @public
|
|
2675
2823
|
* <p>Provides the details of the <code>StartChildWorkflowExecutionInitiated</code> event.</p>
|
|
2676
2824
|
*/
|
|
2677
2825
|
export interface StartChildWorkflowExecutionInitiatedEventAttributes {
|
|
@@ -2751,10 +2899,14 @@ export interface StartChildWorkflowExecutionInitiatedEventAttributes {
|
|
|
2751
2899
|
*/
|
|
2752
2900
|
lambdaRole?: string;
|
|
2753
2901
|
}
|
|
2902
|
+
/**
|
|
2903
|
+
* @public
|
|
2904
|
+
*/
|
|
2754
2905
|
export declare enum StartLambdaFunctionFailedCause {
|
|
2755
2906
|
ASSUME_ROLE_FAILED = "ASSUME_ROLE_FAILED"
|
|
2756
2907
|
}
|
|
2757
2908
|
/**
|
|
2909
|
+
* @public
|
|
2758
2910
|
* <p>Provides the details of the <code>StartLambdaFunctionFailed</code> event. It isn't set
|
|
2759
2911
|
* for other event types.</p>
|
|
2760
2912
|
*/
|
|
@@ -2779,6 +2931,9 @@ export interface StartLambdaFunctionFailedEventAttributes {
|
|
|
2779
2931
|
*/
|
|
2780
2932
|
message?: string;
|
|
2781
2933
|
}
|
|
2934
|
+
/**
|
|
2935
|
+
* @public
|
|
2936
|
+
*/
|
|
2782
2937
|
export declare enum StartTimerFailedCause {
|
|
2783
2938
|
OPEN_TIMERS_LIMIT_EXCEEDED = "OPEN_TIMERS_LIMIT_EXCEEDED",
|
|
2784
2939
|
OPERATION_NOT_PERMITTED = "OPERATION_NOT_PERMITTED",
|
|
@@ -2786,6 +2941,7 @@ export declare enum StartTimerFailedCause {
|
|
|
2786
2941
|
TIMER_ID_ALREADY_IN_USE = "TIMER_ID_ALREADY_IN_USE"
|
|
2787
2942
|
}
|
|
2788
2943
|
/**
|
|
2944
|
+
* @public
|
|
2789
2945
|
* <p>Provides the details of the <code>StartTimerFailed</code> event.</p>
|
|
2790
2946
|
*/
|
|
2791
2947
|
export interface StartTimerFailedEventAttributes {
|
|
@@ -2810,6 +2966,7 @@ export interface StartTimerFailedEventAttributes {
|
|
|
2810
2966
|
decisionTaskCompletedEventId: number | undefined;
|
|
2811
2967
|
}
|
|
2812
2968
|
/**
|
|
2969
|
+
* @public
|
|
2813
2970
|
* <p>
|
|
2814
2971
|
* Provides the details of the <code>TimerCanceled</code> event.
|
|
2815
2972
|
* </p>
|
|
@@ -2833,6 +2990,7 @@ export interface TimerCanceledEventAttributes {
|
|
|
2833
2990
|
decisionTaskCompletedEventId: number | undefined;
|
|
2834
2991
|
}
|
|
2835
2992
|
/**
|
|
2993
|
+
* @public
|
|
2836
2994
|
* <p>Provides the details of the <code>TimerFired</code> event.</p>
|
|
2837
2995
|
*/
|
|
2838
2996
|
export interface TimerFiredEventAttributes {
|
|
@@ -2848,6 +3006,7 @@ export interface TimerFiredEventAttributes {
|
|
|
2848
3006
|
startedEventId: number | undefined;
|
|
2849
3007
|
}
|
|
2850
3008
|
/**
|
|
3009
|
+
* @public
|
|
2851
3010
|
* <p>Provides the details of the <code>TimerStarted</code> event.</p>
|
|
2852
3011
|
*/
|
|
2853
3012
|
export interface TimerStartedEventAttributes {
|
|
@@ -2872,6 +3031,7 @@ export interface TimerStartedEventAttributes {
|
|
|
2872
3031
|
decisionTaskCompletedEventId: number | undefined;
|
|
2873
3032
|
}
|
|
2874
3033
|
/**
|
|
3034
|
+
* @public
|
|
2875
3035
|
* <p>Provides the details of the <code>WorkflowExecutionCanceled</code> event.</p>
|
|
2876
3036
|
*/
|
|
2877
3037
|
export interface WorkflowExecutionCanceledEventAttributes {
|
|
@@ -2886,10 +3046,14 @@ export interface WorkflowExecutionCanceledEventAttributes {
|
|
|
2886
3046
|
*/
|
|
2887
3047
|
decisionTaskCompletedEventId: number | undefined;
|
|
2888
3048
|
}
|
|
3049
|
+
/**
|
|
3050
|
+
* @public
|
|
3051
|
+
*/
|
|
2889
3052
|
export declare enum WorkflowExecutionCancelRequestedCause {
|
|
2890
3053
|
CHILD_POLICY_APPLIED = "CHILD_POLICY_APPLIED"
|
|
2891
3054
|
}
|
|
2892
3055
|
/**
|
|
3056
|
+
* @public
|
|
2893
3057
|
* <p>Provides the details of the <code>WorkflowExecutionCancelRequested</code> event.</p>
|
|
2894
3058
|
*/
|
|
2895
3059
|
export interface WorkflowExecutionCancelRequestedEventAttributes {
|
|
@@ -2910,6 +3074,7 @@ export interface WorkflowExecutionCancelRequestedEventAttributes {
|
|
|
2910
3074
|
cause?: WorkflowExecutionCancelRequestedCause | string;
|
|
2911
3075
|
}
|
|
2912
3076
|
/**
|
|
3077
|
+
* @public
|
|
2913
3078
|
* <p>Provides the details of the <code>WorkflowExecutionCompleted</code> event.</p>
|
|
2914
3079
|
*/
|
|
2915
3080
|
export interface WorkflowExecutionCompletedEventAttributes {
|
|
@@ -2925,6 +3090,7 @@ export interface WorkflowExecutionCompletedEventAttributes {
|
|
|
2925
3090
|
decisionTaskCompletedEventId: number | undefined;
|
|
2926
3091
|
}
|
|
2927
3092
|
/**
|
|
3093
|
+
* @public
|
|
2928
3094
|
* <p>Provides the details of the <code>WorkflowExecutionContinuedAsNew</code> event.</p>
|
|
2929
3095
|
*/
|
|
2930
3096
|
export interface WorkflowExecutionContinuedAsNewEventAttributes {
|
|
@@ -2998,6 +3164,7 @@ export interface WorkflowExecutionContinuedAsNewEventAttributes {
|
|
|
2998
3164
|
lambdaRole?: string;
|
|
2999
3165
|
}
|
|
3000
3166
|
/**
|
|
3167
|
+
* @public
|
|
3001
3168
|
* <p>Provides the details of the <code>WorkflowExecutionFailed</code> event.</p>
|
|
3002
3169
|
*/
|
|
3003
3170
|
export interface WorkflowExecutionFailedEventAttributes {
|
|
@@ -3017,6 +3184,7 @@ export interface WorkflowExecutionFailedEventAttributes {
|
|
|
3017
3184
|
decisionTaskCompletedEventId: number | undefined;
|
|
3018
3185
|
}
|
|
3019
3186
|
/**
|
|
3187
|
+
* @public
|
|
3020
3188
|
* <p>Provides the details of the <code>WorkflowExecutionSignaled</code> event.</p>
|
|
3021
3189
|
*/
|
|
3022
3190
|
export interface WorkflowExecutionSignaledEventAttributes {
|
|
@@ -3042,6 +3210,7 @@ export interface WorkflowExecutionSignaledEventAttributes {
|
|
|
3042
3210
|
externalInitiatedEventId?: number;
|
|
3043
3211
|
}
|
|
3044
3212
|
/**
|
|
3213
|
+
* @public
|
|
3045
3214
|
* <p>Provides details of <code>WorkflowExecutionStarted</code> event.</p>
|
|
3046
3215
|
*/
|
|
3047
3216
|
export interface WorkflowExecutionStartedEventAttributes {
|
|
@@ -3120,12 +3289,16 @@ export interface WorkflowExecutionStartedEventAttributes {
|
|
|
3120
3289
|
*/
|
|
3121
3290
|
lambdaRole?: string;
|
|
3122
3291
|
}
|
|
3292
|
+
/**
|
|
3293
|
+
* @public
|
|
3294
|
+
*/
|
|
3123
3295
|
export declare enum WorkflowExecutionTerminatedCause {
|
|
3124
3296
|
CHILD_POLICY_APPLIED = "CHILD_POLICY_APPLIED",
|
|
3125
3297
|
EVENT_LIMIT_EXCEEDED = "EVENT_LIMIT_EXCEEDED",
|
|
3126
3298
|
OPERATOR_INITIATED = "OPERATOR_INITIATED"
|
|
3127
3299
|
}
|
|
3128
3300
|
/**
|
|
3301
|
+
* @public
|
|
3129
3302
|
* <p>Provides the details of the <code>WorkflowExecutionTerminated</code> event.</p>
|
|
3130
3303
|
*/
|
|
3131
3304
|
export interface WorkflowExecutionTerminatedEventAttributes {
|
|
@@ -3164,6 +3337,7 @@ export interface WorkflowExecutionTerminatedEventAttributes {
|
|
|
3164
3337
|
cause?: WorkflowExecutionTerminatedCause | string;
|
|
3165
3338
|
}
|
|
3166
3339
|
/**
|
|
3340
|
+
* @public
|
|
3167
3341
|
* <p>Provides the details of the <code>WorkflowExecutionTimedOut</code> event.</p>
|
|
3168
3342
|
*/
|
|
3169
3343
|
export interface WorkflowExecutionTimedOutEventAttributes {
|
|
@@ -3194,6 +3368,7 @@ export interface WorkflowExecutionTimedOutEventAttributes {
|
|
|
3194
3368
|
childPolicy: ChildPolicy | string | undefined;
|
|
3195
3369
|
}
|
|
3196
3370
|
/**
|
|
3371
|
+
* @public
|
|
3197
3372
|
* <p>Event within a workflow execution. A history event can be one of these types:</p>
|
|
3198
3373
|
* <ul>
|
|
3199
3374
|
* <li>
|
|
@@ -3698,6 +3873,7 @@ export interface HistoryEvent {
|
|
|
3698
3873
|
startLambdaFunctionFailedEventAttributes?: StartLambdaFunctionFailedEventAttributes;
|
|
3699
3874
|
}
|
|
3700
3875
|
/**
|
|
3876
|
+
* @public
|
|
3701
3877
|
* <p>A structure that represents a decision task. Decision tasks are sent to deciders in order for them to make decisions.</p>
|
|
3702
3878
|
*/
|
|
3703
3879
|
export interface DecisionTask {
|
|
@@ -3734,6 +3910,7 @@ export interface DecisionTask {
|
|
|
3734
3910
|
previousStartedEventId?: number;
|
|
3735
3911
|
}
|
|
3736
3912
|
/**
|
|
3913
|
+
* @public
|
|
3737
3914
|
* <p>The <code>StartWorkflowExecution</code> API action was called without the required
|
|
3738
3915
|
* parameters set.</p>
|
|
3739
3916
|
* <p>Some workflow execution parameters, such as the decision <code>taskList</code>, must be
|
|
@@ -3754,6 +3931,9 @@ export declare class DefaultUndefinedFault extends __BaseException {
|
|
|
3754
3931
|
*/
|
|
3755
3932
|
constructor(opts: __ExceptionOptionType<DefaultUndefinedFault, __BaseException>);
|
|
3756
3933
|
}
|
|
3934
|
+
/**
|
|
3935
|
+
* @public
|
|
3936
|
+
*/
|
|
3757
3937
|
export interface DeprecateActivityTypeInput {
|
|
3758
3938
|
/**
|
|
3759
3939
|
* <p>The name of the domain in which the activity type is registered.</p>
|
|
@@ -3765,6 +3945,7 @@ export interface DeprecateActivityTypeInput {
|
|
|
3765
3945
|
activityType: ActivityType | undefined;
|
|
3766
3946
|
}
|
|
3767
3947
|
/**
|
|
3948
|
+
* @public
|
|
3768
3949
|
* <p>Returned when the specified activity or workflow type was already deprecated.</p>
|
|
3769
3950
|
*/
|
|
3770
3951
|
export declare class TypeDeprecatedFault extends __BaseException {
|
|
@@ -3775,6 +3956,9 @@ export declare class TypeDeprecatedFault extends __BaseException {
|
|
|
3775
3956
|
*/
|
|
3776
3957
|
constructor(opts: __ExceptionOptionType<TypeDeprecatedFault, __BaseException>);
|
|
3777
3958
|
}
|
|
3959
|
+
/**
|
|
3960
|
+
* @public
|
|
3961
|
+
*/
|
|
3778
3962
|
export interface DeprecateDomainInput {
|
|
3779
3963
|
/**
|
|
3780
3964
|
* <p>The name of the domain to deprecate.</p>
|
|
@@ -3782,6 +3966,7 @@ export interface DeprecateDomainInput {
|
|
|
3782
3966
|
name: string | undefined;
|
|
3783
3967
|
}
|
|
3784
3968
|
/**
|
|
3969
|
+
* @public
|
|
3785
3970
|
* <p>Returned when the specified domain has been deprecated.</p>
|
|
3786
3971
|
*/
|
|
3787
3972
|
export declare class DomainDeprecatedFault extends __BaseException {
|
|
@@ -3792,6 +3977,9 @@ export declare class DomainDeprecatedFault extends __BaseException {
|
|
|
3792
3977
|
*/
|
|
3793
3978
|
constructor(opts: __ExceptionOptionType<DomainDeprecatedFault, __BaseException>);
|
|
3794
3979
|
}
|
|
3980
|
+
/**
|
|
3981
|
+
* @public
|
|
3982
|
+
*/
|
|
3795
3983
|
export interface DeprecateWorkflowTypeInput {
|
|
3796
3984
|
/**
|
|
3797
3985
|
* <p>The name of the domain in which the workflow type is registered.</p>
|
|
@@ -3802,6 +3990,9 @@ export interface DeprecateWorkflowTypeInput {
|
|
|
3802
3990
|
*/
|
|
3803
3991
|
workflowType: WorkflowType | undefined;
|
|
3804
3992
|
}
|
|
3993
|
+
/**
|
|
3994
|
+
* @public
|
|
3995
|
+
*/
|
|
3805
3996
|
export interface DescribeActivityTypeInput {
|
|
3806
3997
|
/**
|
|
3807
3998
|
* <p>The name of the domain in which the activity type is registered.</p>
|
|
@@ -3814,6 +4005,9 @@ export interface DescribeActivityTypeInput {
|
|
|
3814
4005
|
*/
|
|
3815
4006
|
activityType: ActivityType | undefined;
|
|
3816
4007
|
}
|
|
4008
|
+
/**
|
|
4009
|
+
* @public
|
|
4010
|
+
*/
|
|
3817
4011
|
export interface DescribeDomainInput {
|
|
3818
4012
|
/**
|
|
3819
4013
|
* <p>The name of the domain to describe.</p>
|
|
@@ -3821,6 +4015,7 @@ export interface DescribeDomainInput {
|
|
|
3821
4015
|
name: string | undefined;
|
|
3822
4016
|
}
|
|
3823
4017
|
/**
|
|
4018
|
+
* @public
|
|
3824
4019
|
* <p>Contains the configuration settings of a domain.</p>
|
|
3825
4020
|
*/
|
|
3826
4021
|
export interface DomainConfiguration {
|
|
@@ -3830,6 +4025,7 @@ export interface DomainConfiguration {
|
|
|
3830
4025
|
workflowExecutionRetentionPeriodInDays: string | undefined;
|
|
3831
4026
|
}
|
|
3832
4027
|
/**
|
|
4028
|
+
* @public
|
|
3833
4029
|
* <p>Contains general information about a domain.</p>
|
|
3834
4030
|
*/
|
|
3835
4031
|
export interface DomainInfo {
|
|
@@ -3865,6 +4061,7 @@ export interface DomainInfo {
|
|
|
3865
4061
|
arn?: string;
|
|
3866
4062
|
}
|
|
3867
4063
|
/**
|
|
4064
|
+
* @public
|
|
3868
4065
|
* <p>Contains details of a domain.</p>
|
|
3869
4066
|
*/
|
|
3870
4067
|
export interface DomainDetail {
|
|
@@ -3879,6 +4076,9 @@ export interface DomainDetail {
|
|
|
3879
4076
|
*/
|
|
3880
4077
|
configuration: DomainConfiguration | undefined;
|
|
3881
4078
|
}
|
|
4079
|
+
/**
|
|
4080
|
+
* @public
|
|
4081
|
+
*/
|
|
3882
4082
|
export interface DescribeWorkflowExecutionInput {
|
|
3883
4083
|
/**
|
|
3884
4084
|
* <p>The name of the domain containing the workflow execution.</p>
|
|
@@ -3890,6 +4090,7 @@ export interface DescribeWorkflowExecutionInput {
|
|
|
3890
4090
|
execution: WorkflowExecution | undefined;
|
|
3891
4091
|
}
|
|
3892
4092
|
/**
|
|
4093
|
+
* @public
|
|
3893
4094
|
* <p>The configuration settings for a workflow execution including timeout values, tasklist etc. These configuration settings are determined from the defaults specified when registering the workflow type and those specified when starting the workflow execution.</p>
|
|
3894
4095
|
*/
|
|
3895
4096
|
export interface WorkflowExecutionConfiguration {
|
|
@@ -3940,11 +4141,15 @@ export interface WorkflowExecutionConfiguration {
|
|
|
3940
4141
|
*/
|
|
3941
4142
|
lambdaRole?: string;
|
|
3942
4143
|
}
|
|
4144
|
+
/**
|
|
4145
|
+
* @public
|
|
4146
|
+
*/
|
|
3943
4147
|
export declare enum ExecutionStatus {
|
|
3944
4148
|
CLOSED = "CLOSED",
|
|
3945
4149
|
OPEN = "OPEN"
|
|
3946
4150
|
}
|
|
3947
4151
|
/**
|
|
4152
|
+
* @public
|
|
3948
4153
|
* <p>Contains information about a workflow execution.</p>
|
|
3949
4154
|
*/
|
|
3950
4155
|
export interface WorkflowExecutionInfo {
|
|
@@ -4015,6 +4220,7 @@ export interface WorkflowExecutionInfo {
|
|
|
4015
4220
|
cancelRequested?: boolean;
|
|
4016
4221
|
}
|
|
4017
4222
|
/**
|
|
4223
|
+
* @public
|
|
4018
4224
|
* <p>Contains the counts of open tasks, child workflow executions and timers for a workflow execution.</p>
|
|
4019
4225
|
*/
|
|
4020
4226
|
export interface WorkflowExecutionOpenCounts {
|
|
@@ -4040,6 +4246,7 @@ export interface WorkflowExecutionOpenCounts {
|
|
|
4040
4246
|
openLambdaFunctions?: number;
|
|
4041
4247
|
}
|
|
4042
4248
|
/**
|
|
4249
|
+
* @public
|
|
4043
4250
|
* <p>Contains details about a workflow execution.</p>
|
|
4044
4251
|
*/
|
|
4045
4252
|
export interface WorkflowExecutionDetail {
|
|
@@ -4065,6 +4272,9 @@ export interface WorkflowExecutionDetail {
|
|
|
4065
4272
|
*/
|
|
4066
4273
|
latestExecutionContext?: string;
|
|
4067
4274
|
}
|
|
4275
|
+
/**
|
|
4276
|
+
* @public
|
|
4277
|
+
*/
|
|
4068
4278
|
export interface DescribeWorkflowTypeInput {
|
|
4069
4279
|
/**
|
|
4070
4280
|
* <p>The name of the domain in which this workflow type is registered.</p>
|
|
@@ -4076,6 +4286,7 @@ export interface DescribeWorkflowTypeInput {
|
|
|
4076
4286
|
workflowType: WorkflowType | undefined;
|
|
4077
4287
|
}
|
|
4078
4288
|
/**
|
|
4289
|
+
* @public
|
|
4079
4290
|
* <p>The configuration settings of a workflow type.</p>
|
|
4080
4291
|
*/
|
|
4081
4292
|
export interface WorkflowTypeConfiguration {
|
|
@@ -4155,6 +4366,7 @@ export interface WorkflowTypeConfiguration {
|
|
|
4155
4366
|
defaultLambdaRole?: string;
|
|
4156
4367
|
}
|
|
4157
4368
|
/**
|
|
4369
|
+
* @public
|
|
4158
4370
|
* <p>Contains information about a workflow type.</p>
|
|
4159
4371
|
*/
|
|
4160
4372
|
export interface WorkflowTypeInfo {
|
|
@@ -4180,6 +4392,7 @@ export interface WorkflowTypeInfo {
|
|
|
4180
4392
|
deprecationDate?: Date;
|
|
4181
4393
|
}
|
|
4182
4394
|
/**
|
|
4395
|
+
* @public
|
|
4183
4396
|
* <p>Contains details about a workflow type.</p>
|
|
4184
4397
|
*/
|
|
4185
4398
|
export interface WorkflowTypeDetail {
|
|
@@ -4206,6 +4419,7 @@ export interface WorkflowTypeDetail {
|
|
|
4206
4419
|
configuration: WorkflowTypeConfiguration | undefined;
|
|
4207
4420
|
}
|
|
4208
4421
|
/**
|
|
4422
|
+
* @public
|
|
4209
4423
|
* <p>Returned if the domain already exists. You may get this fault if you are registering a domain that is either already registered or deprecated, or if you undeprecate a domain that is currently registered.</p>
|
|
4210
4424
|
*/
|
|
4211
4425
|
export declare class DomainAlreadyExistsFault extends __BaseException {
|
|
@@ -4217,6 +4431,7 @@ export declare class DomainAlreadyExistsFault extends __BaseException {
|
|
|
4217
4431
|
constructor(opts: __ExceptionOptionType<DomainAlreadyExistsFault, __BaseException>);
|
|
4218
4432
|
}
|
|
4219
4433
|
/**
|
|
4434
|
+
* @public
|
|
4220
4435
|
* <p>Contains a paginated collection of DomainInfo structures.</p>
|
|
4221
4436
|
*/
|
|
4222
4437
|
export interface DomainInfos {
|
|
@@ -4232,6 +4447,9 @@ export interface DomainInfos {
|
|
|
4232
4447
|
*/
|
|
4233
4448
|
nextPageToken?: string;
|
|
4234
4449
|
}
|
|
4450
|
+
/**
|
|
4451
|
+
* @public
|
|
4452
|
+
*/
|
|
4235
4453
|
export interface GetWorkflowExecutionHistoryInput {
|
|
4236
4454
|
/**
|
|
4237
4455
|
* <p>The name of the domain containing the workflow execution.</p>
|
|
@@ -4265,6 +4483,7 @@ export interface GetWorkflowExecutionHistoryInput {
|
|
|
4265
4483
|
reverseOrder?: boolean;
|
|
4266
4484
|
}
|
|
4267
4485
|
/**
|
|
4486
|
+
* @public
|
|
4268
4487
|
* <p>Paginated representation of a workflow history for a workflow execution. This is the up to date, complete and authoritative record of the events related to all tasks and events in the life of the workflow execution.</p>
|
|
4269
4488
|
*/
|
|
4270
4489
|
export interface History {
|
|
@@ -4281,6 +4500,7 @@ export interface History {
|
|
|
4281
4500
|
nextPageToken?: string;
|
|
4282
4501
|
}
|
|
4283
4502
|
/**
|
|
4503
|
+
* @public
|
|
4284
4504
|
* <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
|
|
4285
4505
|
*/
|
|
4286
4506
|
export declare class LimitExceededFault extends __BaseException {
|
|
@@ -4291,6 +4511,9 @@ export declare class LimitExceededFault extends __BaseException {
|
|
|
4291
4511
|
*/
|
|
4292
4512
|
constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
|
|
4293
4513
|
}
|
|
4514
|
+
/**
|
|
4515
|
+
* @public
|
|
4516
|
+
*/
|
|
4294
4517
|
export interface ListActivityTypesInput {
|
|
4295
4518
|
/**
|
|
4296
4519
|
* <p>The name of the domain in which the activity types have been registered.</p>
|
|
@@ -4327,6 +4550,9 @@ export interface ListActivityTypesInput {
|
|
|
4327
4550
|
*/
|
|
4328
4551
|
reverseOrder?: boolean;
|
|
4329
4552
|
}
|
|
4553
|
+
/**
|
|
4554
|
+
* @public
|
|
4555
|
+
*/
|
|
4330
4556
|
export interface ListClosedWorkflowExecutionsInput {
|
|
4331
4557
|
/**
|
|
4332
4558
|
* <p>The name of the domain that contains the workflow executions to list.</p>
|
|
@@ -4422,6 +4648,7 @@ export interface ListClosedWorkflowExecutionsInput {
|
|
|
4422
4648
|
reverseOrder?: boolean;
|
|
4423
4649
|
}
|
|
4424
4650
|
/**
|
|
4651
|
+
* @public
|
|
4425
4652
|
* <p>Contains a paginated list of information about workflow executions.</p>
|
|
4426
4653
|
*/
|
|
4427
4654
|
export interface WorkflowExecutionInfos {
|
|
@@ -4437,6 +4664,9 @@ export interface WorkflowExecutionInfos {
|
|
|
4437
4664
|
*/
|
|
4438
4665
|
nextPageToken?: string;
|
|
4439
4666
|
}
|
|
4667
|
+
/**
|
|
4668
|
+
* @public
|
|
4669
|
+
*/
|
|
4440
4670
|
export interface ListDomainsInput {
|
|
4441
4671
|
/**
|
|
4442
4672
|
* <p>If <code>NextPageToken</code> is returned there are more results
|
|
@@ -4465,6 +4695,9 @@ export interface ListDomainsInput {
|
|
|
4465
4695
|
*/
|
|
4466
4696
|
reverseOrder?: boolean;
|
|
4467
4697
|
}
|
|
4698
|
+
/**
|
|
4699
|
+
* @public
|
|
4700
|
+
*/
|
|
4468
4701
|
export interface ListOpenWorkflowExecutionsInput {
|
|
4469
4702
|
/**
|
|
4470
4703
|
* <p>The name of the domain that contains the workflow executions to list.</p>
|
|
@@ -4526,6 +4759,9 @@ export interface ListOpenWorkflowExecutionsInput {
|
|
|
4526
4759
|
*/
|
|
4527
4760
|
executionFilter?: WorkflowExecutionFilter;
|
|
4528
4761
|
}
|
|
4762
|
+
/**
|
|
4763
|
+
* @public
|
|
4764
|
+
*/
|
|
4529
4765
|
export interface ListTagsForResourceInput {
|
|
4530
4766
|
/**
|
|
4531
4767
|
* <p>The Amazon Resource Name (ARN) for the Amazon SWF domain.</p>
|
|
@@ -4533,6 +4769,7 @@ export interface ListTagsForResourceInput {
|
|
|
4533
4769
|
resourceArn: string | undefined;
|
|
4534
4770
|
}
|
|
4535
4771
|
/**
|
|
4772
|
+
* @public
|
|
4536
4773
|
* <p>Tags are key-value pairs that can be associated with Amazon SWF state machines and
|
|
4537
4774
|
* activities.</p>
|
|
4538
4775
|
* <p>Tags may only contain unicode letters, digits, whitespace, or these symbols: <code>_ . : / = + - @</code>.</p>
|
|
@@ -4547,12 +4784,18 @@ export interface ResourceTag {
|
|
|
4547
4784
|
*/
|
|
4548
4785
|
value?: string;
|
|
4549
4786
|
}
|
|
4787
|
+
/**
|
|
4788
|
+
* @public
|
|
4789
|
+
*/
|
|
4550
4790
|
export interface ListTagsForResourceOutput {
|
|
4551
4791
|
/**
|
|
4552
4792
|
* <p>An array of tags associated with the domain.</p>
|
|
4553
4793
|
*/
|
|
4554
4794
|
tags?: ResourceTag[];
|
|
4555
4795
|
}
|
|
4796
|
+
/**
|
|
4797
|
+
* @public
|
|
4798
|
+
*/
|
|
4556
4799
|
export interface ListWorkflowTypesInput {
|
|
4557
4800
|
/**
|
|
4558
4801
|
* <p>The name of the domain in which the workflow types have been registered.</p>
|
|
@@ -4590,6 +4833,7 @@ export interface ListWorkflowTypesInput {
|
|
|
4590
4833
|
reverseOrder?: boolean;
|
|
4591
4834
|
}
|
|
4592
4835
|
/**
|
|
4836
|
+
* @public
|
|
4593
4837
|
* <p>Contains a paginated list of information structures about workflow types.</p>
|
|
4594
4838
|
*/
|
|
4595
4839
|
export interface WorkflowTypeInfos {
|
|
@@ -4605,6 +4849,9 @@ export interface WorkflowTypeInfos {
|
|
|
4605
4849
|
*/
|
|
4606
4850
|
nextPageToken?: string;
|
|
4607
4851
|
}
|
|
4852
|
+
/**
|
|
4853
|
+
* @public
|
|
4854
|
+
*/
|
|
4608
4855
|
export interface PollForActivityTaskInput {
|
|
4609
4856
|
/**
|
|
4610
4857
|
* <p>The name of the domain that contains the task lists being polled.</p>
|
|
@@ -4626,6 +4873,9 @@ export interface PollForActivityTaskInput {
|
|
|
4626
4873
|
*/
|
|
4627
4874
|
identity?: string;
|
|
4628
4875
|
}
|
|
4876
|
+
/**
|
|
4877
|
+
* @public
|
|
4878
|
+
*/
|
|
4629
4879
|
export interface PollForDecisionTaskInput {
|
|
4630
4880
|
/**
|
|
4631
4881
|
* <p>The name of the domain containing the task lists to poll.</p>
|
|
@@ -4677,6 +4927,9 @@ export interface PollForDecisionTaskInput {
|
|
|
4677
4927
|
*/
|
|
4678
4928
|
reverseOrder?: boolean;
|
|
4679
4929
|
}
|
|
4930
|
+
/**
|
|
4931
|
+
* @public
|
|
4932
|
+
*/
|
|
4680
4933
|
export interface RecordActivityTaskHeartbeatInput {
|
|
4681
4934
|
/**
|
|
4682
4935
|
* <p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p>
|
|
@@ -4693,6 +4946,9 @@ export interface RecordActivityTaskHeartbeatInput {
|
|
|
4693
4946
|
*/
|
|
4694
4947
|
details?: string;
|
|
4695
4948
|
}
|
|
4949
|
+
/**
|
|
4950
|
+
* @public
|
|
4951
|
+
*/
|
|
4696
4952
|
export interface RegisterActivityTypeInput {
|
|
4697
4953
|
/**
|
|
4698
4954
|
* <p>The name of the domain in which this activity is to be registered.</p>
|
|
@@ -4783,6 +5039,7 @@ export interface RegisterActivityTypeInput {
|
|
|
4783
5039
|
defaultTaskScheduleToCloseTimeout?: string;
|
|
4784
5040
|
}
|
|
4785
5041
|
/**
|
|
5042
|
+
* @public
|
|
4786
5043
|
* <p>Returned if the type already exists in the specified domain. You may get this fault if you are registering a type that is either already registered or deprecated, or if you undeprecate a type that is currently registered.</p>
|
|
4787
5044
|
*/
|
|
4788
5045
|
export declare class TypeAlreadyExistsFault extends __BaseException {
|
|
@@ -4793,6 +5050,9 @@ export declare class TypeAlreadyExistsFault extends __BaseException {
|
|
|
4793
5050
|
*/
|
|
4794
5051
|
constructor(opts: __ExceptionOptionType<TypeAlreadyExistsFault, __BaseException>);
|
|
4795
5052
|
}
|
|
5053
|
+
/**
|
|
5054
|
+
* @public
|
|
5055
|
+
*/
|
|
4796
5056
|
export interface RegisterDomainInput {
|
|
4797
5057
|
/**
|
|
4798
5058
|
* <p>Name of the domain to register. The name must be unique in the region that the domain
|
|
@@ -4827,6 +5087,7 @@ export interface RegisterDomainInput {
|
|
|
4827
5087
|
tags?: ResourceTag[];
|
|
4828
5088
|
}
|
|
4829
5089
|
/**
|
|
5090
|
+
* @public
|
|
4830
5091
|
* <p>You've exceeded the number of tags allowed for a domain.</p>
|
|
4831
5092
|
*/
|
|
4832
5093
|
export declare class TooManyTagsFault extends __BaseException {
|
|
@@ -4837,6 +5098,9 @@ export declare class TooManyTagsFault extends __BaseException {
|
|
|
4837
5098
|
*/
|
|
4838
5099
|
constructor(opts: __ExceptionOptionType<TooManyTagsFault, __BaseException>);
|
|
4839
5100
|
}
|
|
5101
|
+
/**
|
|
5102
|
+
* @public
|
|
5103
|
+
*/
|
|
4840
5104
|
export interface RegisterWorkflowTypeInput {
|
|
4841
5105
|
/**
|
|
4842
5106
|
* <p>The name of the domain in which to register the workflow type.</p>
|
|
@@ -4943,6 +5207,9 @@ export interface RegisterWorkflowTypeInput {
|
|
|
4943
5207
|
*/
|
|
4944
5208
|
defaultLambdaRole?: string;
|
|
4945
5209
|
}
|
|
5210
|
+
/**
|
|
5211
|
+
* @public
|
|
5212
|
+
*/
|
|
4946
5213
|
export interface RequestCancelWorkflowExecutionInput {
|
|
4947
5214
|
/**
|
|
4948
5215
|
* <p>The name of the domain containing the workflow execution to cancel.</p>
|
|
@@ -4957,6 +5224,9 @@ export interface RequestCancelWorkflowExecutionInput {
|
|
|
4957
5224
|
*/
|
|
4958
5225
|
runId?: string;
|
|
4959
5226
|
}
|
|
5227
|
+
/**
|
|
5228
|
+
* @public
|
|
5229
|
+
*/
|
|
4960
5230
|
export interface RespondActivityTaskCanceledInput {
|
|
4961
5231
|
/**
|
|
4962
5232
|
* <p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p>
|
|
@@ -4973,6 +5243,9 @@ export interface RespondActivityTaskCanceledInput {
|
|
|
4973
5243
|
*/
|
|
4974
5244
|
details?: string;
|
|
4975
5245
|
}
|
|
5246
|
+
/**
|
|
5247
|
+
* @public
|
|
5248
|
+
*/
|
|
4976
5249
|
export interface RespondActivityTaskCompletedInput {
|
|
4977
5250
|
/**
|
|
4978
5251
|
* <p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p>
|
|
@@ -4990,6 +5263,9 @@ export interface RespondActivityTaskCompletedInput {
|
|
|
4990
5263
|
*/
|
|
4991
5264
|
result?: string;
|
|
4992
5265
|
}
|
|
5266
|
+
/**
|
|
5267
|
+
* @public
|
|
5268
|
+
*/
|
|
4993
5269
|
export interface RespondActivityTaskFailedInput {
|
|
4994
5270
|
/**
|
|
4995
5271
|
* <p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p>
|
|
@@ -5012,6 +5288,7 @@ export interface RespondActivityTaskFailedInput {
|
|
|
5012
5288
|
details?: string;
|
|
5013
5289
|
}
|
|
5014
5290
|
/**
|
|
5291
|
+
* @public
|
|
5015
5292
|
* <p>Input data for a TaskCompleted response to a decision task.</p>
|
|
5016
5293
|
*/
|
|
5017
5294
|
export interface RespondDecisionTaskCompletedInput {
|
|
@@ -5037,6 +5314,7 @@ export interface RespondDecisionTaskCompletedInput {
|
|
|
5037
5314
|
executionContext?: string;
|
|
5038
5315
|
}
|
|
5039
5316
|
/**
|
|
5317
|
+
* @public
|
|
5040
5318
|
* <p>Specifies the <code>runId</code> of a workflow execution.</p>
|
|
5041
5319
|
*/
|
|
5042
5320
|
export interface Run {
|
|
@@ -5046,6 +5324,9 @@ export interface Run {
|
|
|
5046
5324
|
*/
|
|
5047
5325
|
runId?: string;
|
|
5048
5326
|
}
|
|
5327
|
+
/**
|
|
5328
|
+
* @public
|
|
5329
|
+
*/
|
|
5049
5330
|
export interface SignalWorkflowExecutionInput {
|
|
5050
5331
|
/**
|
|
5051
5332
|
* <p>The name of the domain containing the workflow execution to signal.</p>
|
|
@@ -5069,6 +5350,9 @@ export interface SignalWorkflowExecutionInput {
|
|
|
5069
5350
|
*/
|
|
5070
5351
|
input?: string;
|
|
5071
5352
|
}
|
|
5353
|
+
/**
|
|
5354
|
+
* @public
|
|
5355
|
+
*/
|
|
5072
5356
|
export interface StartWorkflowExecutionInput {
|
|
5073
5357
|
/**
|
|
5074
5358
|
* <p>The name of the domain in which the workflow execution is created.</p>
|
|
@@ -5203,6 +5487,7 @@ export interface StartWorkflowExecutionInput {
|
|
|
5203
5487
|
lambdaRole?: string;
|
|
5204
5488
|
}
|
|
5205
5489
|
/**
|
|
5490
|
+
* @public
|
|
5206
5491
|
* <p>Returned by <a>StartWorkflowExecution</a> when an open execution with the same workflowId is already running in
|
|
5207
5492
|
* the specified domain.</p>
|
|
5208
5493
|
*/
|
|
@@ -5214,6 +5499,9 @@ export declare class WorkflowExecutionAlreadyStartedFault extends __BaseExceptio
|
|
|
5214
5499
|
*/
|
|
5215
5500
|
constructor(opts: __ExceptionOptionType<WorkflowExecutionAlreadyStartedFault, __BaseException>);
|
|
5216
5501
|
}
|
|
5502
|
+
/**
|
|
5503
|
+
* @public
|
|
5504
|
+
*/
|
|
5217
5505
|
export interface TagResourceInput {
|
|
5218
5506
|
/**
|
|
5219
5507
|
* <p>The Amazon Resource Name (ARN) for the Amazon SWF domain.</p>
|
|
@@ -5225,6 +5513,9 @@ export interface TagResourceInput {
|
|
|
5225
5513
|
*/
|
|
5226
5514
|
tags: ResourceTag[] | undefined;
|
|
5227
5515
|
}
|
|
5516
|
+
/**
|
|
5517
|
+
* @public
|
|
5518
|
+
*/
|
|
5228
5519
|
export interface TerminateWorkflowExecutionInput {
|
|
5229
5520
|
/**
|
|
5230
5521
|
* <p>The domain of the workflow execution to terminate.</p>
|
|
@@ -5277,6 +5568,9 @@ export interface TerminateWorkflowExecutionInput {
|
|
|
5277
5568
|
*/
|
|
5278
5569
|
childPolicy?: ChildPolicy | string;
|
|
5279
5570
|
}
|
|
5571
|
+
/**
|
|
5572
|
+
* @public
|
|
5573
|
+
*/
|
|
5280
5574
|
export interface UndeprecateActivityTypeInput {
|
|
5281
5575
|
/**
|
|
5282
5576
|
* <p>The name of the domain of the deprecated activity type.</p>
|
|
@@ -5287,12 +5581,18 @@ export interface UndeprecateActivityTypeInput {
|
|
|
5287
5581
|
*/
|
|
5288
5582
|
activityType: ActivityType | undefined;
|
|
5289
5583
|
}
|
|
5584
|
+
/**
|
|
5585
|
+
* @public
|
|
5586
|
+
*/
|
|
5290
5587
|
export interface UndeprecateDomainInput {
|
|
5291
5588
|
/**
|
|
5292
5589
|
* <p>The name of the domain of the deprecated workflow type.</p>
|
|
5293
5590
|
*/
|
|
5294
5591
|
name: string | undefined;
|
|
5295
5592
|
}
|
|
5593
|
+
/**
|
|
5594
|
+
* @public
|
|
5595
|
+
*/
|
|
5296
5596
|
export interface UndeprecateWorkflowTypeInput {
|
|
5297
5597
|
/**
|
|
5298
5598
|
* <p>The name of the domain of the deprecated workflow type.</p>
|
|
@@ -5303,6 +5603,9 @@ export interface UndeprecateWorkflowTypeInput {
|
|
|
5303
5603
|
*/
|
|
5304
5604
|
workflowType: WorkflowType | undefined;
|
|
5305
5605
|
}
|
|
5606
|
+
/**
|
|
5607
|
+
* @public
|
|
5608
|
+
*/
|
|
5306
5609
|
export interface UntagResourceInput {
|
|
5307
5610
|
/**
|
|
5308
5611
|
* <p>The Amazon Resource Name (ARN) for the Amazon SWF domain.</p>
|