@aws-sdk/client-swf 3.301.0 → 3.306.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-cjs/models/models_0.js +200 -226
- package/dist-es/models/models_0.js +200 -226
- package/dist-types/models/models_0.d.ts +331 -201
- package/dist-types/ts3.4/models/models_0.d.ts +248 -200
- package/package.json +34 -34
|
@@ -240,13 +240,18 @@ export interface ActivityTaskStatus {
|
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* @public
|
|
243
|
+
* @enum
|
|
243
244
|
*/
|
|
244
|
-
export declare
|
|
245
|
-
HEARTBEAT
|
|
246
|
-
SCHEDULE_TO_CLOSE
|
|
247
|
-
SCHEDULE_TO_START
|
|
248
|
-
START_TO_CLOSE
|
|
249
|
-
}
|
|
245
|
+
export declare const ActivityTaskTimeoutType: {
|
|
246
|
+
readonly HEARTBEAT: "HEARTBEAT";
|
|
247
|
+
readonly SCHEDULE_TO_CLOSE: "SCHEDULE_TO_CLOSE";
|
|
248
|
+
readonly SCHEDULE_TO_START: "SCHEDULE_TO_START";
|
|
249
|
+
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
250
|
+
};
|
|
251
|
+
/**
|
|
252
|
+
* @public
|
|
253
|
+
*/
|
|
254
|
+
export type ActivityTaskTimeoutType = (typeof ActivityTaskTimeoutType)[keyof typeof ActivityTaskTimeoutType];
|
|
250
255
|
/**
|
|
251
256
|
* @public
|
|
252
257
|
* <p>Provides the details of the <code>ActivityTaskTimedOut</code> event.</p>
|
|
@@ -337,11 +342,16 @@ export interface ActivityTypeConfiguration {
|
|
|
337
342
|
}
|
|
338
343
|
/**
|
|
339
344
|
* @public
|
|
345
|
+
* @enum
|
|
340
346
|
*/
|
|
341
|
-
export declare
|
|
342
|
-
DEPRECATED
|
|
343
|
-
REGISTERED
|
|
344
|
-
}
|
|
347
|
+
export declare const RegistrationStatus: {
|
|
348
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
349
|
+
readonly REGISTERED: "REGISTERED";
|
|
350
|
+
};
|
|
351
|
+
/**
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
|
|
345
355
|
/**
|
|
346
356
|
* @public
|
|
347
357
|
* <p>Detailed information about an activity type.</p>
|
|
@@ -448,11 +458,16 @@ export interface CancelTimerDecisionAttributes {
|
|
|
448
458
|
}
|
|
449
459
|
/**
|
|
450
460
|
* @public
|
|
461
|
+
* @enum
|
|
451
462
|
*/
|
|
452
|
-
export declare
|
|
453
|
-
OPERATION_NOT_PERMITTED
|
|
454
|
-
TIMER_ID_UNKNOWN
|
|
455
|
-
}
|
|
463
|
+
export declare const CancelTimerFailedCause: {
|
|
464
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
465
|
+
readonly TIMER_ID_UNKNOWN: "TIMER_ID_UNKNOWN";
|
|
466
|
+
};
|
|
467
|
+
/**
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
470
|
+
export type CancelTimerFailedCause = (typeof CancelTimerFailedCause)[keyof typeof CancelTimerFailedCause];
|
|
456
471
|
/**
|
|
457
472
|
* @public
|
|
458
473
|
* <p>Provides the details of the <code>CancelTimerFailed</code> event.</p>
|
|
@@ -509,11 +524,16 @@ export interface CancelWorkflowExecutionDecisionAttributes {
|
|
|
509
524
|
}
|
|
510
525
|
/**
|
|
511
526
|
* @public
|
|
527
|
+
* @enum
|
|
512
528
|
*/
|
|
513
|
-
export declare
|
|
514
|
-
OPERATION_NOT_PERMITTED
|
|
515
|
-
UNHANDLED_DECISION
|
|
516
|
-
}
|
|
529
|
+
export declare const CancelWorkflowExecutionFailedCause: {
|
|
530
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
531
|
+
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
532
|
+
};
|
|
533
|
+
/**
|
|
534
|
+
* @public
|
|
535
|
+
*/
|
|
536
|
+
export type CancelWorkflowExecutionFailedCause = (typeof CancelWorkflowExecutionFailedCause)[keyof typeof CancelWorkflowExecutionFailedCause];
|
|
517
537
|
/**
|
|
518
538
|
* @public
|
|
519
539
|
* <p>Provides the details of the <code>CancelWorkflowExecutionFailed</code> event.</p>
|
|
@@ -535,12 +555,17 @@ export interface CancelWorkflowExecutionFailedEventAttributes {
|
|
|
535
555
|
}
|
|
536
556
|
/**
|
|
537
557
|
* @public
|
|
558
|
+
* @enum
|
|
538
559
|
*/
|
|
539
|
-
export declare
|
|
540
|
-
ABANDON
|
|
541
|
-
REQUEST_CANCEL
|
|
542
|
-
TERMINATE
|
|
543
|
-
}
|
|
560
|
+
export declare const ChildPolicy: {
|
|
561
|
+
readonly ABANDON: "ABANDON";
|
|
562
|
+
readonly REQUEST_CANCEL: "REQUEST_CANCEL";
|
|
563
|
+
readonly TERMINATE: "TERMINATE";
|
|
564
|
+
};
|
|
565
|
+
/**
|
|
566
|
+
* @public
|
|
567
|
+
*/
|
|
568
|
+
export type ChildPolicy = (typeof ChildPolicy)[keyof typeof ChildPolicy];
|
|
544
569
|
/**
|
|
545
570
|
* @public
|
|
546
571
|
* <p>Represents a workflow type.</p>
|
|
@@ -712,10 +737,15 @@ export interface ChildWorkflowExecutionTerminatedEventAttributes {
|
|
|
712
737
|
}
|
|
713
738
|
/**
|
|
714
739
|
* @public
|
|
740
|
+
* @enum
|
|
715
741
|
*/
|
|
716
|
-
export declare
|
|
717
|
-
START_TO_CLOSE
|
|
718
|
-
}
|
|
742
|
+
export declare const WorkflowExecutionTimeoutType: {
|
|
743
|
+
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
744
|
+
};
|
|
745
|
+
/**
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
export type WorkflowExecutionTimeoutType = (typeof WorkflowExecutionTimeoutType)[keyof typeof WorkflowExecutionTimeoutType];
|
|
719
749
|
/**
|
|
720
750
|
* @public
|
|
721
751
|
* <p>Provides the details of the <code>ChildWorkflowExecutionTimedOut</code> event.</p>
|
|
@@ -749,15 +779,20 @@ export interface ChildWorkflowExecutionTimedOutEventAttributes {
|
|
|
749
779
|
}
|
|
750
780
|
/**
|
|
751
781
|
* @public
|
|
782
|
+
* @enum
|
|
752
783
|
*/
|
|
753
|
-
export declare
|
|
754
|
-
CANCELED
|
|
755
|
-
COMPLETED
|
|
756
|
-
CONTINUED_AS_NEW
|
|
757
|
-
FAILED
|
|
758
|
-
TERMINATED
|
|
759
|
-
TIMED_OUT
|
|
760
|
-
}
|
|
784
|
+
export declare const CloseStatus: {
|
|
785
|
+
readonly CANCELED: "CANCELED";
|
|
786
|
+
readonly COMPLETED: "COMPLETED";
|
|
787
|
+
readonly CONTINUED_AS_NEW: "CONTINUED_AS_NEW";
|
|
788
|
+
readonly FAILED: "FAILED";
|
|
789
|
+
readonly TERMINATED: "TERMINATED";
|
|
790
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
791
|
+
};
|
|
792
|
+
/**
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
795
|
+
export type CloseStatus = (typeof CloseStatus)[keyof typeof CloseStatus];
|
|
761
796
|
/**
|
|
762
797
|
* @public
|
|
763
798
|
* <p>Used to filter the closed workflow executions in visibility APIs by their close status.</p>
|
|
@@ -802,11 +837,16 @@ export interface CompleteWorkflowExecutionDecisionAttributes {
|
|
|
802
837
|
}
|
|
803
838
|
/**
|
|
804
839
|
* @public
|
|
840
|
+
* @enum
|
|
805
841
|
*/
|
|
806
|
-
export declare
|
|
807
|
-
OPERATION_NOT_PERMITTED
|
|
808
|
-
UNHANDLED_DECISION
|
|
809
|
-
}
|
|
842
|
+
export declare const CompleteWorkflowExecutionFailedCause: {
|
|
843
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
844
|
+
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
845
|
+
};
|
|
846
|
+
/**
|
|
847
|
+
* @public
|
|
848
|
+
*/
|
|
849
|
+
export type CompleteWorkflowExecutionFailedCause = (typeof CompleteWorkflowExecutionFailedCause)[keyof typeof CompleteWorkflowExecutionFailedCause];
|
|
810
850
|
/**
|
|
811
851
|
* @public
|
|
812
852
|
* <p>Provides the details of the <code>CompleteWorkflowExecutionFailed</code> event.</p>
|
|
@@ -949,18 +989,23 @@ export interface ContinueAsNewWorkflowExecutionDecisionAttributes {
|
|
|
949
989
|
}
|
|
950
990
|
/**
|
|
951
991
|
* @public
|
|
992
|
+
* @enum
|
|
952
993
|
*/
|
|
953
|
-
export declare
|
|
954
|
-
CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED
|
|
955
|
-
DEFAULT_CHILD_POLICY_UNDEFINED
|
|
956
|
-
DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED
|
|
957
|
-
DEFAULT_TASK_LIST_UNDEFINED
|
|
958
|
-
DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED
|
|
959
|
-
OPERATION_NOT_PERMITTED
|
|
960
|
-
UNHANDLED_DECISION
|
|
961
|
-
WORKFLOW_TYPE_DEPRECATED
|
|
962
|
-
WORKFLOW_TYPE_DOES_NOT_EXIST
|
|
963
|
-
}
|
|
994
|
+
export declare const ContinueAsNewWorkflowExecutionFailedCause: {
|
|
995
|
+
readonly CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED: "CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED";
|
|
996
|
+
readonly DEFAULT_CHILD_POLICY_UNDEFINED: "DEFAULT_CHILD_POLICY_UNDEFINED";
|
|
997
|
+
readonly DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
998
|
+
readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED";
|
|
999
|
+
readonly DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
1000
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
1001
|
+
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
1002
|
+
readonly WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED";
|
|
1003
|
+
readonly WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST";
|
|
1004
|
+
};
|
|
1005
|
+
/**
|
|
1006
|
+
* @public
|
|
1007
|
+
*/
|
|
1008
|
+
export type ContinueAsNewWorkflowExecutionFailedCause = (typeof ContinueAsNewWorkflowExecutionFailedCause)[keyof typeof ContinueAsNewWorkflowExecutionFailedCause];
|
|
964
1009
|
/**
|
|
965
1010
|
* @public
|
|
966
1011
|
* <p>Provides the details of the <code>ContinueAsNewWorkflowExecutionFailed</code> event.</p>
|
|
@@ -1235,22 +1280,27 @@ export interface CountPendingDecisionTasksInput {
|
|
|
1235
1280
|
}
|
|
1236
1281
|
/**
|
|
1237
1282
|
* @public
|
|
1283
|
+
* @enum
|
|
1238
1284
|
*/
|
|
1239
|
-
export declare
|
|
1240
|
-
CancelTimer
|
|
1241
|
-
CancelWorkflowExecution
|
|
1242
|
-
CompleteWorkflowExecution
|
|
1243
|
-
ContinueAsNewWorkflowExecution
|
|
1244
|
-
FailWorkflowExecution
|
|
1245
|
-
RecordMarker
|
|
1246
|
-
RequestCancelActivityTask
|
|
1247
|
-
RequestCancelExternalWorkflowExecution
|
|
1248
|
-
ScheduleActivityTask
|
|
1249
|
-
ScheduleLambdaFunction
|
|
1250
|
-
SignalExternalWorkflowExecution
|
|
1251
|
-
StartChildWorkflowExecution
|
|
1252
|
-
StartTimer
|
|
1253
|
-
}
|
|
1285
|
+
export declare const DecisionType: {
|
|
1286
|
+
readonly CancelTimer: "CancelTimer";
|
|
1287
|
+
readonly CancelWorkflowExecution: "CancelWorkflowExecution";
|
|
1288
|
+
readonly CompleteWorkflowExecution: "CompleteWorkflowExecution";
|
|
1289
|
+
readonly ContinueAsNewWorkflowExecution: "ContinueAsNewWorkflowExecution";
|
|
1290
|
+
readonly FailWorkflowExecution: "FailWorkflowExecution";
|
|
1291
|
+
readonly RecordMarker: "RecordMarker";
|
|
1292
|
+
readonly RequestCancelActivityTask: "RequestCancelActivityTask";
|
|
1293
|
+
readonly RequestCancelExternalWorkflowExecution: "RequestCancelExternalWorkflowExecution";
|
|
1294
|
+
readonly ScheduleActivityTask: "ScheduleActivityTask";
|
|
1295
|
+
readonly ScheduleLambdaFunction: "ScheduleLambdaFunction";
|
|
1296
|
+
readonly SignalExternalWorkflowExecution: "SignalExternalWorkflowExecution";
|
|
1297
|
+
readonly StartChildWorkflowExecution: "StartChildWorkflowExecution";
|
|
1298
|
+
readonly StartTimer: "StartTimer";
|
|
1299
|
+
};
|
|
1300
|
+
/**
|
|
1301
|
+
* @public
|
|
1302
|
+
*/
|
|
1303
|
+
export type DecisionType = (typeof DecisionType)[keyof typeof DecisionType];
|
|
1254
1304
|
/**
|
|
1255
1305
|
* @public
|
|
1256
1306
|
* <p>Provides the details of the <code>FailWorkflowExecution</code> decision.</p>
|
|
@@ -2173,10 +2223,15 @@ export interface DecisionTaskStartedEventAttributes {
|
|
|
2173
2223
|
}
|
|
2174
2224
|
/**
|
|
2175
2225
|
* @public
|
|
2226
|
+
* @enum
|
|
2176
2227
|
*/
|
|
2177
|
-
export declare
|
|
2178
|
-
START_TO_CLOSE
|
|
2179
|
-
}
|
|
2228
|
+
export declare const DecisionTaskTimeoutType: {
|
|
2229
|
+
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
2230
|
+
};
|
|
2231
|
+
/**
|
|
2232
|
+
* @public
|
|
2233
|
+
*/
|
|
2234
|
+
export type DecisionTaskTimeoutType = (typeof DecisionTaskTimeoutType)[keyof typeof DecisionTaskTimeoutType];
|
|
2180
2235
|
/**
|
|
2181
2236
|
* @public
|
|
2182
2237
|
* <p>Provides the details of the <code>DecisionTaskTimedOut</code> event.</p>
|
|
@@ -2201,63 +2256,68 @@ export interface DecisionTaskTimedOutEventAttributes {
|
|
|
2201
2256
|
}
|
|
2202
2257
|
/**
|
|
2203
2258
|
* @public
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2259
|
+
* @enum
|
|
2260
|
+
*/
|
|
2261
|
+
export declare const EventType: {
|
|
2262
|
+
readonly ActivityTaskCancelRequested: "ActivityTaskCancelRequested";
|
|
2263
|
+
readonly ActivityTaskCanceled: "ActivityTaskCanceled";
|
|
2264
|
+
readonly ActivityTaskCompleted: "ActivityTaskCompleted";
|
|
2265
|
+
readonly ActivityTaskFailed: "ActivityTaskFailed";
|
|
2266
|
+
readonly ActivityTaskScheduled: "ActivityTaskScheduled";
|
|
2267
|
+
readonly ActivityTaskStarted: "ActivityTaskStarted";
|
|
2268
|
+
readonly ActivityTaskTimedOut: "ActivityTaskTimedOut";
|
|
2269
|
+
readonly CancelTimerFailed: "CancelTimerFailed";
|
|
2270
|
+
readonly CancelWorkflowExecutionFailed: "CancelWorkflowExecutionFailed";
|
|
2271
|
+
readonly ChildWorkflowExecutionCanceled: "ChildWorkflowExecutionCanceled";
|
|
2272
|
+
readonly ChildWorkflowExecutionCompleted: "ChildWorkflowExecutionCompleted";
|
|
2273
|
+
readonly ChildWorkflowExecutionFailed: "ChildWorkflowExecutionFailed";
|
|
2274
|
+
readonly ChildWorkflowExecutionStarted: "ChildWorkflowExecutionStarted";
|
|
2275
|
+
readonly ChildWorkflowExecutionTerminated: "ChildWorkflowExecutionTerminated";
|
|
2276
|
+
readonly ChildWorkflowExecutionTimedOut: "ChildWorkflowExecutionTimedOut";
|
|
2277
|
+
readonly CompleteWorkflowExecutionFailed: "CompleteWorkflowExecutionFailed";
|
|
2278
|
+
readonly ContinueAsNewWorkflowExecutionFailed: "ContinueAsNewWorkflowExecutionFailed";
|
|
2279
|
+
readonly DecisionTaskCompleted: "DecisionTaskCompleted";
|
|
2280
|
+
readonly DecisionTaskScheduled: "DecisionTaskScheduled";
|
|
2281
|
+
readonly DecisionTaskStarted: "DecisionTaskStarted";
|
|
2282
|
+
readonly DecisionTaskTimedOut: "DecisionTaskTimedOut";
|
|
2283
|
+
readonly ExternalWorkflowExecutionCancelRequested: "ExternalWorkflowExecutionCancelRequested";
|
|
2284
|
+
readonly ExternalWorkflowExecutionSignaled: "ExternalWorkflowExecutionSignaled";
|
|
2285
|
+
readonly FailWorkflowExecutionFailed: "FailWorkflowExecutionFailed";
|
|
2286
|
+
readonly LambdaFunctionCompleted: "LambdaFunctionCompleted";
|
|
2287
|
+
readonly LambdaFunctionFailed: "LambdaFunctionFailed";
|
|
2288
|
+
readonly LambdaFunctionScheduled: "LambdaFunctionScheduled";
|
|
2289
|
+
readonly LambdaFunctionStarted: "LambdaFunctionStarted";
|
|
2290
|
+
readonly LambdaFunctionTimedOut: "LambdaFunctionTimedOut";
|
|
2291
|
+
readonly MarkerRecorded: "MarkerRecorded";
|
|
2292
|
+
readonly RecordMarkerFailed: "RecordMarkerFailed";
|
|
2293
|
+
readonly RequestCancelActivityTaskFailed: "RequestCancelActivityTaskFailed";
|
|
2294
|
+
readonly RequestCancelExternalWorkflowExecutionFailed: "RequestCancelExternalWorkflowExecutionFailed";
|
|
2295
|
+
readonly RequestCancelExternalWorkflowExecutionInitiated: "RequestCancelExternalWorkflowExecutionInitiated";
|
|
2296
|
+
readonly ScheduleActivityTaskFailed: "ScheduleActivityTaskFailed";
|
|
2297
|
+
readonly ScheduleLambdaFunctionFailed: "ScheduleLambdaFunctionFailed";
|
|
2298
|
+
readonly SignalExternalWorkflowExecutionFailed: "SignalExternalWorkflowExecutionFailed";
|
|
2299
|
+
readonly SignalExternalWorkflowExecutionInitiated: "SignalExternalWorkflowExecutionInitiated";
|
|
2300
|
+
readonly StartChildWorkflowExecutionFailed: "StartChildWorkflowExecutionFailed";
|
|
2301
|
+
readonly StartChildWorkflowExecutionInitiated: "StartChildWorkflowExecutionInitiated";
|
|
2302
|
+
readonly StartLambdaFunctionFailed: "StartLambdaFunctionFailed";
|
|
2303
|
+
readonly StartTimerFailed: "StartTimerFailed";
|
|
2304
|
+
readonly TimerCanceled: "TimerCanceled";
|
|
2305
|
+
readonly TimerFired: "TimerFired";
|
|
2306
|
+
readonly TimerStarted: "TimerStarted";
|
|
2307
|
+
readonly WorkflowExecutionCancelRequested: "WorkflowExecutionCancelRequested";
|
|
2308
|
+
readonly WorkflowExecutionCanceled: "WorkflowExecutionCanceled";
|
|
2309
|
+
readonly WorkflowExecutionCompleted: "WorkflowExecutionCompleted";
|
|
2310
|
+
readonly WorkflowExecutionContinuedAsNew: "WorkflowExecutionContinuedAsNew";
|
|
2311
|
+
readonly WorkflowExecutionFailed: "WorkflowExecutionFailed";
|
|
2312
|
+
readonly WorkflowExecutionSignaled: "WorkflowExecutionSignaled";
|
|
2313
|
+
readonly WorkflowExecutionStarted: "WorkflowExecutionStarted";
|
|
2314
|
+
readonly WorkflowExecutionTerminated: "WorkflowExecutionTerminated";
|
|
2315
|
+
readonly WorkflowExecutionTimedOut: "WorkflowExecutionTimedOut";
|
|
2316
|
+
};
|
|
2317
|
+
/**
|
|
2318
|
+
* @public
|
|
2319
|
+
*/
|
|
2320
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
2261
2321
|
/**
|
|
2262
2322
|
* @public
|
|
2263
2323
|
* <p>Provides the details of the <code>ExternalWorkflowExecutionCancelRequested</code> event.</p>
|
|
@@ -2293,11 +2353,16 @@ export interface ExternalWorkflowExecutionSignaledEventAttributes {
|
|
|
2293
2353
|
}
|
|
2294
2354
|
/**
|
|
2295
2355
|
* @public
|
|
2356
|
+
* @enum
|
|
2296
2357
|
*/
|
|
2297
|
-
export declare
|
|
2298
|
-
OPERATION_NOT_PERMITTED
|
|
2299
|
-
UNHANDLED_DECISION
|
|
2300
|
-
}
|
|
2358
|
+
export declare const FailWorkflowExecutionFailedCause: {
|
|
2359
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2360
|
+
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
2361
|
+
};
|
|
2362
|
+
/**
|
|
2363
|
+
* @public
|
|
2364
|
+
*/
|
|
2365
|
+
export type FailWorkflowExecutionFailedCause = (typeof FailWorkflowExecutionFailedCause)[keyof typeof FailWorkflowExecutionFailedCause];
|
|
2301
2366
|
/**
|
|
2302
2367
|
* @public
|
|
2303
2368
|
* <p>Provides the details of the <code>FailWorkflowExecutionFailed</code> event.</p>
|
|
@@ -2412,10 +2477,15 @@ export interface LambdaFunctionStartedEventAttributes {
|
|
|
2412
2477
|
}
|
|
2413
2478
|
/**
|
|
2414
2479
|
* @public
|
|
2480
|
+
* @enum
|
|
2415
2481
|
*/
|
|
2416
|
-
export declare
|
|
2417
|
-
START_TO_CLOSE
|
|
2418
|
-
}
|
|
2482
|
+
export declare const LambdaFunctionTimeoutType: {
|
|
2483
|
+
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
2484
|
+
};
|
|
2485
|
+
/**
|
|
2486
|
+
* @public
|
|
2487
|
+
*/
|
|
2488
|
+
export type LambdaFunctionTimeoutType = (typeof LambdaFunctionTimeoutType)[keyof typeof LambdaFunctionTimeoutType];
|
|
2419
2489
|
/**
|
|
2420
2490
|
* @public
|
|
2421
2491
|
* <p>Provides details of the <code>LambdaFunctionTimedOut</code> event.</p>
|
|
@@ -2458,10 +2528,15 @@ export interface MarkerRecordedEventAttributes {
|
|
|
2458
2528
|
}
|
|
2459
2529
|
/**
|
|
2460
2530
|
* @public
|
|
2531
|
+
* @enum
|
|
2461
2532
|
*/
|
|
2462
|
-
export declare
|
|
2463
|
-
OPERATION_NOT_PERMITTED
|
|
2464
|
-
}
|
|
2533
|
+
export declare const RecordMarkerFailedCause: {
|
|
2534
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2535
|
+
};
|
|
2536
|
+
/**
|
|
2537
|
+
* @public
|
|
2538
|
+
*/
|
|
2539
|
+
export type RecordMarkerFailedCause = (typeof RecordMarkerFailedCause)[keyof typeof RecordMarkerFailedCause];
|
|
2465
2540
|
/**
|
|
2466
2541
|
* @public
|
|
2467
2542
|
* <p>Provides the details of the <code>RecordMarkerFailed</code> event.</p>
|
|
@@ -2489,11 +2564,16 @@ export interface RecordMarkerFailedEventAttributes {
|
|
|
2489
2564
|
}
|
|
2490
2565
|
/**
|
|
2491
2566
|
* @public
|
|
2567
|
+
* @enum
|
|
2492
2568
|
*/
|
|
2493
|
-
export declare
|
|
2494
|
-
ACTIVITY_ID_UNKNOWN
|
|
2495
|
-
OPERATION_NOT_PERMITTED
|
|
2496
|
-
}
|
|
2569
|
+
export declare const RequestCancelActivityTaskFailedCause: {
|
|
2570
|
+
readonly ACTIVITY_ID_UNKNOWN: "ACTIVITY_ID_UNKNOWN";
|
|
2571
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2572
|
+
};
|
|
2573
|
+
/**
|
|
2574
|
+
* @public
|
|
2575
|
+
*/
|
|
2576
|
+
export type RequestCancelActivityTaskFailedCause = (typeof RequestCancelActivityTaskFailedCause)[keyof typeof RequestCancelActivityTaskFailedCause];
|
|
2497
2577
|
/**
|
|
2498
2578
|
* @public
|
|
2499
2579
|
* <p>Provides the details of the <code>RequestCancelActivityTaskFailed</code> event.</p>
|
|
@@ -2521,12 +2601,17 @@ export interface RequestCancelActivityTaskFailedEventAttributes {
|
|
|
2521
2601
|
}
|
|
2522
2602
|
/**
|
|
2523
2603
|
* @public
|
|
2604
|
+
* @enum
|
|
2524
2605
|
*/
|
|
2525
|
-
export declare
|
|
2526
|
-
OPERATION_NOT_PERMITTED
|
|
2527
|
-
REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED
|
|
2528
|
-
UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION
|
|
2529
|
-
}
|
|
2606
|
+
export declare const RequestCancelExternalWorkflowExecutionFailedCause: {
|
|
2607
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2608
|
+
readonly REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED: "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED";
|
|
2609
|
+
readonly UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION: "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION";
|
|
2610
|
+
};
|
|
2611
|
+
/**
|
|
2612
|
+
* @public
|
|
2613
|
+
*/
|
|
2614
|
+
export type RequestCancelExternalWorkflowExecutionFailedCause = (typeof RequestCancelExternalWorkflowExecutionFailedCause)[keyof typeof RequestCancelExternalWorkflowExecutionFailedCause];
|
|
2530
2615
|
/**
|
|
2531
2616
|
* @public
|
|
2532
2617
|
* <p>Provides the details of the <code>RequestCancelExternalWorkflowExecutionFailed</code> event.</p>
|
|
@@ -2595,20 +2680,25 @@ export interface RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
|
|
|
2595
2680
|
}
|
|
2596
2681
|
/**
|
|
2597
2682
|
* @public
|
|
2683
|
+
* @enum
|
|
2598
2684
|
*/
|
|
2599
|
-
export declare
|
|
2600
|
-
ACTIVITY_CREATION_RATE_EXCEEDED
|
|
2601
|
-
ACTIVITY_ID_ALREADY_IN_USE
|
|
2602
|
-
ACTIVITY_TYPE_DEPRECATED
|
|
2603
|
-
ACTIVITY_TYPE_DOES_NOT_EXIST
|
|
2604
|
-
DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED
|
|
2605
|
-
DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED
|
|
2606
|
-
DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED
|
|
2607
|
-
DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED
|
|
2608
|
-
DEFAULT_TASK_LIST_UNDEFINED
|
|
2609
|
-
OPEN_ACTIVITIES_LIMIT_EXCEEDED
|
|
2610
|
-
OPERATION_NOT_PERMITTED
|
|
2611
|
-
}
|
|
2685
|
+
export declare const ScheduleActivityTaskFailedCause: {
|
|
2686
|
+
readonly ACTIVITY_CREATION_RATE_EXCEEDED: "ACTIVITY_CREATION_RATE_EXCEEDED";
|
|
2687
|
+
readonly ACTIVITY_ID_ALREADY_IN_USE: "ACTIVITY_ID_ALREADY_IN_USE";
|
|
2688
|
+
readonly ACTIVITY_TYPE_DEPRECATED: "ACTIVITY_TYPE_DEPRECATED";
|
|
2689
|
+
readonly ACTIVITY_TYPE_DOES_NOT_EXIST: "ACTIVITY_TYPE_DOES_NOT_EXIST";
|
|
2690
|
+
readonly DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED: "DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED";
|
|
2691
|
+
readonly DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
2692
|
+
readonly DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED: "DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED";
|
|
2693
|
+
readonly DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
2694
|
+
readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED";
|
|
2695
|
+
readonly OPEN_ACTIVITIES_LIMIT_EXCEEDED: "OPEN_ACTIVITIES_LIMIT_EXCEEDED";
|
|
2696
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2697
|
+
};
|
|
2698
|
+
/**
|
|
2699
|
+
* @public
|
|
2700
|
+
*/
|
|
2701
|
+
export type ScheduleActivityTaskFailedCause = (typeof ScheduleActivityTaskFailedCause)[keyof typeof ScheduleActivityTaskFailedCause];
|
|
2612
2702
|
/**
|
|
2613
2703
|
* @public
|
|
2614
2704
|
* <p>Provides the details of the <code>ScheduleActivityTaskFailed</code> event.</p>
|
|
@@ -2640,13 +2730,18 @@ export interface ScheduleActivityTaskFailedEventAttributes {
|
|
|
2640
2730
|
}
|
|
2641
2731
|
/**
|
|
2642
2732
|
* @public
|
|
2733
|
+
* @enum
|
|
2643
2734
|
*/
|
|
2644
|
-
export declare
|
|
2645
|
-
ID_ALREADY_IN_USE
|
|
2646
|
-
LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED
|
|
2647
|
-
LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION
|
|
2648
|
-
OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED
|
|
2649
|
-
}
|
|
2735
|
+
export declare const ScheduleLambdaFunctionFailedCause: {
|
|
2736
|
+
readonly ID_ALREADY_IN_USE: "ID_ALREADY_IN_USE";
|
|
2737
|
+
readonly LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED: "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED";
|
|
2738
|
+
readonly LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION: "LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION";
|
|
2739
|
+
readonly OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED: "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED";
|
|
2740
|
+
};
|
|
2741
|
+
/**
|
|
2742
|
+
* @public
|
|
2743
|
+
*/
|
|
2744
|
+
export type ScheduleLambdaFunctionFailedCause = (typeof ScheduleLambdaFunctionFailedCause)[keyof typeof ScheduleLambdaFunctionFailedCause];
|
|
2650
2745
|
/**
|
|
2651
2746
|
* @public
|
|
2652
2747
|
* <p>Provides the details of the <code>ScheduleLambdaFunctionFailed</code> event. It isn't
|
|
@@ -2681,12 +2776,17 @@ export interface ScheduleLambdaFunctionFailedEventAttributes {
|
|
|
2681
2776
|
}
|
|
2682
2777
|
/**
|
|
2683
2778
|
* @public
|
|
2779
|
+
* @enum
|
|
2684
2780
|
*/
|
|
2685
|
-
export declare
|
|
2686
|
-
OPERATION_NOT_PERMITTED
|
|
2687
|
-
SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED
|
|
2688
|
-
UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION
|
|
2689
|
-
}
|
|
2781
|
+
export declare const SignalExternalWorkflowExecutionFailedCause: {
|
|
2782
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2783
|
+
readonly SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED: "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED";
|
|
2784
|
+
readonly UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION: "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION";
|
|
2785
|
+
};
|
|
2786
|
+
/**
|
|
2787
|
+
* @public
|
|
2788
|
+
*/
|
|
2789
|
+
export type SignalExternalWorkflowExecutionFailedCause = (typeof SignalExternalWorkflowExecutionFailedCause)[keyof typeof SignalExternalWorkflowExecutionFailedCause];
|
|
2690
2790
|
/**
|
|
2691
2791
|
* @public
|
|
2692
2792
|
* <p>Provides the details of the <code>SignalExternalWorkflowExecutionFailed</code> event.</p>
|
|
@@ -2761,20 +2861,25 @@ export interface SignalExternalWorkflowExecutionInitiatedEventAttributes {
|
|
|
2761
2861
|
}
|
|
2762
2862
|
/**
|
|
2763
2863
|
* @public
|
|
2864
|
+
* @enum
|
|
2764
2865
|
*/
|
|
2765
|
-
export declare
|
|
2766
|
-
CHILD_CREATION_RATE_EXCEEDED
|
|
2767
|
-
DEFAULT_CHILD_POLICY_UNDEFINED
|
|
2768
|
-
DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED
|
|
2769
|
-
DEFAULT_TASK_LIST_UNDEFINED
|
|
2770
|
-
DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED
|
|
2771
|
-
OPEN_CHILDREN_LIMIT_EXCEEDED
|
|
2772
|
-
OPEN_WORKFLOWS_LIMIT_EXCEEDED
|
|
2773
|
-
OPERATION_NOT_PERMITTED
|
|
2774
|
-
WORKFLOW_ALREADY_RUNNING
|
|
2775
|
-
WORKFLOW_TYPE_DEPRECATED
|
|
2776
|
-
WORKFLOW_TYPE_DOES_NOT_EXIST
|
|
2777
|
-
}
|
|
2866
|
+
export declare const StartChildWorkflowExecutionFailedCause: {
|
|
2867
|
+
readonly CHILD_CREATION_RATE_EXCEEDED: "CHILD_CREATION_RATE_EXCEEDED";
|
|
2868
|
+
readonly DEFAULT_CHILD_POLICY_UNDEFINED: "DEFAULT_CHILD_POLICY_UNDEFINED";
|
|
2869
|
+
readonly DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
2870
|
+
readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED";
|
|
2871
|
+
readonly DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
2872
|
+
readonly OPEN_CHILDREN_LIMIT_EXCEEDED: "OPEN_CHILDREN_LIMIT_EXCEEDED";
|
|
2873
|
+
readonly OPEN_WORKFLOWS_LIMIT_EXCEEDED: "OPEN_WORKFLOWS_LIMIT_EXCEEDED";
|
|
2874
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2875
|
+
readonly WORKFLOW_ALREADY_RUNNING: "WORKFLOW_ALREADY_RUNNING";
|
|
2876
|
+
readonly WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED";
|
|
2877
|
+
readonly WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST";
|
|
2878
|
+
};
|
|
2879
|
+
/**
|
|
2880
|
+
* @public
|
|
2881
|
+
*/
|
|
2882
|
+
export type StartChildWorkflowExecutionFailedCause = (typeof StartChildWorkflowExecutionFailedCause)[keyof typeof StartChildWorkflowExecutionFailedCause];
|
|
2778
2883
|
/**
|
|
2779
2884
|
* @public
|
|
2780
2885
|
* <p>Provides the details of the <code>StartChildWorkflowExecutionFailed</code> event.</p>
|
|
@@ -2901,10 +3006,15 @@ export interface StartChildWorkflowExecutionInitiatedEventAttributes {
|
|
|
2901
3006
|
}
|
|
2902
3007
|
/**
|
|
2903
3008
|
* @public
|
|
3009
|
+
* @enum
|
|
2904
3010
|
*/
|
|
2905
|
-
export declare
|
|
2906
|
-
ASSUME_ROLE_FAILED
|
|
2907
|
-
}
|
|
3011
|
+
export declare const StartLambdaFunctionFailedCause: {
|
|
3012
|
+
readonly ASSUME_ROLE_FAILED: "ASSUME_ROLE_FAILED";
|
|
3013
|
+
};
|
|
3014
|
+
/**
|
|
3015
|
+
* @public
|
|
3016
|
+
*/
|
|
3017
|
+
export type StartLambdaFunctionFailedCause = (typeof StartLambdaFunctionFailedCause)[keyof typeof StartLambdaFunctionFailedCause];
|
|
2908
3018
|
/**
|
|
2909
3019
|
* @public
|
|
2910
3020
|
* <p>Provides the details of the <code>StartLambdaFunctionFailed</code> event. It isn't set
|
|
@@ -2933,13 +3043,18 @@ export interface StartLambdaFunctionFailedEventAttributes {
|
|
|
2933
3043
|
}
|
|
2934
3044
|
/**
|
|
2935
3045
|
* @public
|
|
3046
|
+
* @enum
|
|
2936
3047
|
*/
|
|
2937
|
-
export declare
|
|
2938
|
-
OPEN_TIMERS_LIMIT_EXCEEDED
|
|
2939
|
-
OPERATION_NOT_PERMITTED
|
|
2940
|
-
TIMER_CREATION_RATE_EXCEEDED
|
|
2941
|
-
TIMER_ID_ALREADY_IN_USE
|
|
2942
|
-
}
|
|
3048
|
+
export declare const StartTimerFailedCause: {
|
|
3049
|
+
readonly OPEN_TIMERS_LIMIT_EXCEEDED: "OPEN_TIMERS_LIMIT_EXCEEDED";
|
|
3050
|
+
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
3051
|
+
readonly TIMER_CREATION_RATE_EXCEEDED: "TIMER_CREATION_RATE_EXCEEDED";
|
|
3052
|
+
readonly TIMER_ID_ALREADY_IN_USE: "TIMER_ID_ALREADY_IN_USE";
|
|
3053
|
+
};
|
|
3054
|
+
/**
|
|
3055
|
+
* @public
|
|
3056
|
+
*/
|
|
3057
|
+
export type StartTimerFailedCause = (typeof StartTimerFailedCause)[keyof typeof StartTimerFailedCause];
|
|
2943
3058
|
/**
|
|
2944
3059
|
* @public
|
|
2945
3060
|
* <p>Provides the details of the <code>StartTimerFailed</code> event.</p>
|
|
@@ -3048,10 +3163,15 @@ export interface WorkflowExecutionCanceledEventAttributes {
|
|
|
3048
3163
|
}
|
|
3049
3164
|
/**
|
|
3050
3165
|
* @public
|
|
3166
|
+
* @enum
|
|
3051
3167
|
*/
|
|
3052
|
-
export declare
|
|
3053
|
-
CHILD_POLICY_APPLIED
|
|
3054
|
-
}
|
|
3168
|
+
export declare const WorkflowExecutionCancelRequestedCause: {
|
|
3169
|
+
readonly CHILD_POLICY_APPLIED: "CHILD_POLICY_APPLIED";
|
|
3170
|
+
};
|
|
3171
|
+
/**
|
|
3172
|
+
* @public
|
|
3173
|
+
*/
|
|
3174
|
+
export type WorkflowExecutionCancelRequestedCause = (typeof WorkflowExecutionCancelRequestedCause)[keyof typeof WorkflowExecutionCancelRequestedCause];
|
|
3055
3175
|
/**
|
|
3056
3176
|
* @public
|
|
3057
3177
|
* <p>Provides the details of the <code>WorkflowExecutionCancelRequested</code> event.</p>
|
|
@@ -3291,12 +3411,17 @@ export interface WorkflowExecutionStartedEventAttributes {
|
|
|
3291
3411
|
}
|
|
3292
3412
|
/**
|
|
3293
3413
|
* @public
|
|
3414
|
+
* @enum
|
|
3294
3415
|
*/
|
|
3295
|
-
export declare
|
|
3296
|
-
CHILD_POLICY_APPLIED
|
|
3297
|
-
EVENT_LIMIT_EXCEEDED
|
|
3298
|
-
OPERATOR_INITIATED
|
|
3299
|
-
}
|
|
3416
|
+
export declare const WorkflowExecutionTerminatedCause: {
|
|
3417
|
+
readonly CHILD_POLICY_APPLIED: "CHILD_POLICY_APPLIED";
|
|
3418
|
+
readonly EVENT_LIMIT_EXCEEDED: "EVENT_LIMIT_EXCEEDED";
|
|
3419
|
+
readonly OPERATOR_INITIATED: "OPERATOR_INITIATED";
|
|
3420
|
+
};
|
|
3421
|
+
/**
|
|
3422
|
+
* @public
|
|
3423
|
+
*/
|
|
3424
|
+
export type WorkflowExecutionTerminatedCause = (typeof WorkflowExecutionTerminatedCause)[keyof typeof WorkflowExecutionTerminatedCause];
|
|
3300
3425
|
/**
|
|
3301
3426
|
* @public
|
|
3302
3427
|
* <p>Provides the details of the <code>WorkflowExecutionTerminated</code> event.</p>
|
|
@@ -4143,11 +4268,16 @@ export interface WorkflowExecutionConfiguration {
|
|
|
4143
4268
|
}
|
|
4144
4269
|
/**
|
|
4145
4270
|
* @public
|
|
4271
|
+
* @enum
|
|
4146
4272
|
*/
|
|
4147
|
-
export declare
|
|
4148
|
-
CLOSED
|
|
4149
|
-
OPEN
|
|
4150
|
-
}
|
|
4273
|
+
export declare const ExecutionStatus: {
|
|
4274
|
+
readonly CLOSED: "CLOSED";
|
|
4275
|
+
readonly OPEN: "OPEN";
|
|
4276
|
+
};
|
|
4277
|
+
/**
|
|
4278
|
+
* @public
|
|
4279
|
+
*/
|
|
4280
|
+
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
4151
4281
|
/**
|
|
4152
4282
|
* @public
|
|
4153
4283
|
* <p>Contains information about a workflow execution.</p>
|