@aws-sdk/client-swf 3.934.0 → 3.935.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/index.js +202 -201
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +201 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -334
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +409 -0
- package/dist-types/models/errors.d.ts +145 -0
- package/dist-types/models/models_0.d.ts +1 -554
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +249 -0
- package/dist-types/ts3.4/models/errors.d.ts +78 -0
- package/dist-types/ts3.4/models/models_0.d.ts +28 -327
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SWFServiceException as __BaseException } from "./SWFServiceException";
|
|
1
|
+
import { ActivityTaskTimeoutType, CancelTimerFailedCause, CancelWorkflowExecutionFailedCause, ChildPolicy, CloseStatus, CompleteWorkflowExecutionFailedCause, ContinueAsNewWorkflowExecutionFailedCause, DecisionTaskTimeoutType, DecisionType, EventType, ExecutionStatus, FailWorkflowExecutionFailedCause, LambdaFunctionTimeoutType, RecordMarkerFailedCause, RegistrationStatus, RequestCancelActivityTaskFailedCause, RequestCancelExternalWorkflowExecutionFailedCause, ScheduleActivityTaskFailedCause, ScheduleLambdaFunctionFailedCause, SignalExternalWorkflowExecutionFailedCause, StartChildWorkflowExecutionFailedCause, StartLambdaFunctionFailedCause, StartTimerFailedCause, WorkflowExecutionCancelRequestedCause, WorkflowExecutionTerminatedCause, WorkflowExecutionTimeoutType } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Represents an activity type.</p>
|
|
5
4
|
* @public
|
|
@@ -276,20 +275,6 @@ export interface ActivityTaskStatus {
|
|
|
276
275
|
*/
|
|
277
276
|
cancelRequested: boolean | undefined;
|
|
278
277
|
}
|
|
279
|
-
/**
|
|
280
|
-
* @public
|
|
281
|
-
* @enum
|
|
282
|
-
*/
|
|
283
|
-
export declare const ActivityTaskTimeoutType: {
|
|
284
|
-
readonly HEARTBEAT: "HEARTBEAT";
|
|
285
|
-
readonly SCHEDULE_TO_CLOSE: "SCHEDULE_TO_CLOSE";
|
|
286
|
-
readonly SCHEDULE_TO_START: "SCHEDULE_TO_START";
|
|
287
|
-
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
288
|
-
};
|
|
289
|
-
/**
|
|
290
|
-
* @public
|
|
291
|
-
*/
|
|
292
|
-
export type ActivityTaskTimeoutType = (typeof ActivityTaskTimeoutType)[keyof typeof ActivityTaskTimeoutType];
|
|
293
278
|
/**
|
|
294
279
|
* <p>Provides the details of the <code>ActivityTaskTimedOut</code> event.</p>
|
|
295
280
|
* @public
|
|
@@ -388,18 +373,6 @@ export interface ActivityTypeConfiguration {
|
|
|
388
373
|
*/
|
|
389
374
|
defaultTaskScheduleToCloseTimeout?: string | undefined;
|
|
390
375
|
}
|
|
391
|
-
/**
|
|
392
|
-
* @public
|
|
393
|
-
* @enum
|
|
394
|
-
*/
|
|
395
|
-
export declare const RegistrationStatus: {
|
|
396
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
397
|
-
readonly REGISTERED: "REGISTERED";
|
|
398
|
-
};
|
|
399
|
-
/**
|
|
400
|
-
* @public
|
|
401
|
-
*/
|
|
402
|
-
export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
|
|
403
376
|
/**
|
|
404
377
|
* <p>Detailed information about an activity type.</p>
|
|
405
378
|
* @public
|
|
@@ -514,18 +487,6 @@ export interface CancelTimerDecisionAttributes {
|
|
|
514
487
|
*/
|
|
515
488
|
timerId: string | undefined;
|
|
516
489
|
}
|
|
517
|
-
/**
|
|
518
|
-
* @public
|
|
519
|
-
* @enum
|
|
520
|
-
*/
|
|
521
|
-
export declare const CancelTimerFailedCause: {
|
|
522
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
523
|
-
readonly TIMER_ID_UNKNOWN: "TIMER_ID_UNKNOWN";
|
|
524
|
-
};
|
|
525
|
-
/**
|
|
526
|
-
* @public
|
|
527
|
-
*/
|
|
528
|
-
export type CancelTimerFailedCause = (typeof CancelTimerFailedCause)[keyof typeof CancelTimerFailedCause];
|
|
529
490
|
/**
|
|
530
491
|
* <p>Provides the details of the <code>CancelTimerFailed</code> event.</p>
|
|
531
492
|
* @public
|
|
@@ -584,18 +545,6 @@ export interface CancelWorkflowExecutionDecisionAttributes {
|
|
|
584
545
|
*/
|
|
585
546
|
details?: string | undefined;
|
|
586
547
|
}
|
|
587
|
-
/**
|
|
588
|
-
* @public
|
|
589
|
-
* @enum
|
|
590
|
-
*/
|
|
591
|
-
export declare const CancelWorkflowExecutionFailedCause: {
|
|
592
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
593
|
-
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
594
|
-
};
|
|
595
|
-
/**
|
|
596
|
-
* @public
|
|
597
|
-
*/
|
|
598
|
-
export type CancelWorkflowExecutionFailedCause = (typeof CancelWorkflowExecutionFailedCause)[keyof typeof CancelWorkflowExecutionFailedCause];
|
|
599
548
|
/**
|
|
600
549
|
* <p>Provides the details of the <code>CancelWorkflowExecutionFailed</code> event.</p>
|
|
601
550
|
* @public
|
|
@@ -617,19 +566,6 @@ export interface CancelWorkflowExecutionFailedEventAttributes {
|
|
|
617
566
|
*/
|
|
618
567
|
decisionTaskCompletedEventId: number | undefined;
|
|
619
568
|
}
|
|
620
|
-
/**
|
|
621
|
-
* @public
|
|
622
|
-
* @enum
|
|
623
|
-
*/
|
|
624
|
-
export declare const ChildPolicy: {
|
|
625
|
-
readonly ABANDON: "ABANDON";
|
|
626
|
-
readonly REQUEST_CANCEL: "REQUEST_CANCEL";
|
|
627
|
-
readonly TERMINATE: "TERMINATE";
|
|
628
|
-
};
|
|
629
|
-
/**
|
|
630
|
-
* @public
|
|
631
|
-
*/
|
|
632
|
-
export type ChildPolicy = (typeof ChildPolicy)[keyof typeof ChildPolicy];
|
|
633
569
|
/**
|
|
634
570
|
* <p>Represents a workflow type.</p>
|
|
635
571
|
* @public
|
|
@@ -824,17 +760,6 @@ export interface ChildWorkflowExecutionTerminatedEventAttributes {
|
|
|
824
760
|
*/
|
|
825
761
|
startedEventId: number | undefined;
|
|
826
762
|
}
|
|
827
|
-
/**
|
|
828
|
-
* @public
|
|
829
|
-
* @enum
|
|
830
|
-
*/
|
|
831
|
-
export declare const WorkflowExecutionTimeoutType: {
|
|
832
|
-
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
833
|
-
};
|
|
834
|
-
/**
|
|
835
|
-
* @public
|
|
836
|
-
*/
|
|
837
|
-
export type WorkflowExecutionTimeoutType = (typeof WorkflowExecutionTimeoutType)[keyof typeof WorkflowExecutionTimeoutType];
|
|
838
763
|
/**
|
|
839
764
|
* <p>Provides the details of the <code>ChildWorkflowExecutionTimedOut</code> event.</p>
|
|
840
765
|
* @public
|
|
@@ -871,22 +796,6 @@ export interface ChildWorkflowExecutionTimedOutEventAttributes {
|
|
|
871
796
|
*/
|
|
872
797
|
startedEventId: number | undefined;
|
|
873
798
|
}
|
|
874
|
-
/**
|
|
875
|
-
* @public
|
|
876
|
-
* @enum
|
|
877
|
-
*/
|
|
878
|
-
export declare const CloseStatus: {
|
|
879
|
-
readonly CANCELED: "CANCELED";
|
|
880
|
-
readonly COMPLETED: "COMPLETED";
|
|
881
|
-
readonly CONTINUED_AS_NEW: "CONTINUED_AS_NEW";
|
|
882
|
-
readonly FAILED: "FAILED";
|
|
883
|
-
readonly TERMINATED: "TERMINATED";
|
|
884
|
-
readonly TIMED_OUT: "TIMED_OUT";
|
|
885
|
-
};
|
|
886
|
-
/**
|
|
887
|
-
* @public
|
|
888
|
-
*/
|
|
889
|
-
export type CloseStatus = (typeof CloseStatus)[keyof typeof CloseStatus];
|
|
890
799
|
/**
|
|
891
800
|
* <p>Used to filter the closed workflow executions in visibility APIs by their close status.</p>
|
|
892
801
|
* @public
|
|
@@ -931,18 +840,6 @@ export interface CompleteWorkflowExecutionDecisionAttributes {
|
|
|
931
840
|
*/
|
|
932
841
|
result?: string | undefined;
|
|
933
842
|
}
|
|
934
|
-
/**
|
|
935
|
-
* @public
|
|
936
|
-
* @enum
|
|
937
|
-
*/
|
|
938
|
-
export declare const CompleteWorkflowExecutionFailedCause: {
|
|
939
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
940
|
-
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
941
|
-
};
|
|
942
|
-
/**
|
|
943
|
-
* @public
|
|
944
|
-
*/
|
|
945
|
-
export type CompleteWorkflowExecutionFailedCause = (typeof CompleteWorkflowExecutionFailedCause)[keyof typeof CompleteWorkflowExecutionFailedCause];
|
|
946
843
|
/**
|
|
947
844
|
* <p>Provides the details of the <code>CompleteWorkflowExecutionFailed</code> event.</p>
|
|
948
845
|
* @public
|
|
@@ -1094,25 +991,6 @@ export interface ContinueAsNewWorkflowExecutionDecisionAttributes {
|
|
|
1094
991
|
*/
|
|
1095
992
|
lambdaRole?: string | undefined;
|
|
1096
993
|
}
|
|
1097
|
-
/**
|
|
1098
|
-
* @public
|
|
1099
|
-
* @enum
|
|
1100
|
-
*/
|
|
1101
|
-
export declare const ContinueAsNewWorkflowExecutionFailedCause: {
|
|
1102
|
-
readonly CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED: "CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED";
|
|
1103
|
-
readonly DEFAULT_CHILD_POLICY_UNDEFINED: "DEFAULT_CHILD_POLICY_UNDEFINED";
|
|
1104
|
-
readonly DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
1105
|
-
readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED";
|
|
1106
|
-
readonly DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
1107
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
1108
|
-
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
1109
|
-
readonly WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED";
|
|
1110
|
-
readonly WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST";
|
|
1111
|
-
};
|
|
1112
|
-
/**
|
|
1113
|
-
* @public
|
|
1114
|
-
*/
|
|
1115
|
-
export type ContinueAsNewWorkflowExecutionFailedCause = (typeof ContinueAsNewWorkflowExecutionFailedCause)[keyof typeof ContinueAsNewWorkflowExecutionFailedCause];
|
|
1116
994
|
/**
|
|
1117
995
|
* <p>Provides the details of the <code>ContinueAsNewWorkflowExecutionFailed</code> event.</p>
|
|
1118
996
|
* @public
|
|
@@ -1277,30 +1155,6 @@ export interface CountClosedWorkflowExecutionsInput {
|
|
|
1277
1155
|
*/
|
|
1278
1156
|
closeStatusFilter?: CloseStatusFilter | undefined;
|
|
1279
1157
|
}
|
|
1280
|
-
/**
|
|
1281
|
-
* <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
|
|
1282
|
-
* @public
|
|
1283
|
-
*/
|
|
1284
|
-
export declare class OperationNotPermittedFault extends __BaseException {
|
|
1285
|
-
readonly name: "OperationNotPermittedFault";
|
|
1286
|
-
readonly $fault: "client";
|
|
1287
|
-
/**
|
|
1288
|
-
* @internal
|
|
1289
|
-
*/
|
|
1290
|
-
constructor(opts: __ExceptionOptionType<OperationNotPermittedFault, __BaseException>);
|
|
1291
|
-
}
|
|
1292
|
-
/**
|
|
1293
|
-
* <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>
|
|
1294
|
-
* @public
|
|
1295
|
-
*/
|
|
1296
|
-
export declare class UnknownResourceFault extends __BaseException {
|
|
1297
|
-
readonly name: "UnknownResourceFault";
|
|
1298
|
-
readonly $fault: "client";
|
|
1299
|
-
/**
|
|
1300
|
-
* @internal
|
|
1301
|
-
*/
|
|
1302
|
-
constructor(opts: __ExceptionOptionType<UnknownResourceFault, __BaseException>);
|
|
1303
|
-
}
|
|
1304
1158
|
/**
|
|
1305
1159
|
* <p>Contains the count of workflow executions returned from <a>CountOpenWorkflowExecutions</a> or
|
|
1306
1160
|
* <a>CountClosedWorkflowExecutions</a>
|
|
@@ -1413,29 +1267,6 @@ export interface CountPendingDecisionTasksInput {
|
|
|
1413
1267
|
*/
|
|
1414
1268
|
taskList: TaskList | undefined;
|
|
1415
1269
|
}
|
|
1416
|
-
/**
|
|
1417
|
-
* @public
|
|
1418
|
-
* @enum
|
|
1419
|
-
*/
|
|
1420
|
-
export declare const DecisionType: {
|
|
1421
|
-
readonly CancelTimer: "CancelTimer";
|
|
1422
|
-
readonly CancelWorkflowExecution: "CancelWorkflowExecution";
|
|
1423
|
-
readonly CompleteWorkflowExecution: "CompleteWorkflowExecution";
|
|
1424
|
-
readonly ContinueAsNewWorkflowExecution: "ContinueAsNewWorkflowExecution";
|
|
1425
|
-
readonly FailWorkflowExecution: "FailWorkflowExecution";
|
|
1426
|
-
readonly RecordMarker: "RecordMarker";
|
|
1427
|
-
readonly RequestCancelActivityTask: "RequestCancelActivityTask";
|
|
1428
|
-
readonly RequestCancelExternalWorkflowExecution: "RequestCancelExternalWorkflowExecution";
|
|
1429
|
-
readonly ScheduleActivityTask: "ScheduleActivityTask";
|
|
1430
|
-
readonly ScheduleLambdaFunction: "ScheduleLambdaFunction";
|
|
1431
|
-
readonly SignalExternalWorkflowExecution: "SignalExternalWorkflowExecution";
|
|
1432
|
-
readonly StartChildWorkflowExecution: "StartChildWorkflowExecution";
|
|
1433
|
-
readonly StartTimer: "StartTimer";
|
|
1434
|
-
};
|
|
1435
|
-
/**
|
|
1436
|
-
* @public
|
|
1437
|
-
*/
|
|
1438
|
-
export type DecisionType = (typeof DecisionType)[keyof typeof DecisionType];
|
|
1439
1270
|
/**
|
|
1440
1271
|
* <p>Provides the details of the <code>FailWorkflowExecution</code> decision.</p>
|
|
1441
1272
|
* <p>
|
|
@@ -2442,18 +2273,6 @@ export interface DecisionTaskStartedEventAttributes {
|
|
|
2442
2273
|
*/
|
|
2443
2274
|
scheduledEventId: number | undefined;
|
|
2444
2275
|
}
|
|
2445
|
-
/**
|
|
2446
|
-
* @public
|
|
2447
|
-
* @enum
|
|
2448
|
-
*/
|
|
2449
|
-
export declare const DecisionTaskTimeoutType: {
|
|
2450
|
-
readonly SCHEDULE_TO_START: "SCHEDULE_TO_START";
|
|
2451
|
-
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
2452
|
-
};
|
|
2453
|
-
/**
|
|
2454
|
-
* @public
|
|
2455
|
-
*/
|
|
2456
|
-
export type DecisionTaskTimeoutType = (typeof DecisionTaskTimeoutType)[keyof typeof DecisionTaskTimeoutType];
|
|
2457
2276
|
/**
|
|
2458
2277
|
* <p>Provides the details of the <code>DecisionTaskTimedOut</code> event.</p>
|
|
2459
2278
|
* @public
|
|
@@ -2479,70 +2298,6 @@ export interface DecisionTaskTimedOutEventAttributes {
|
|
|
2479
2298
|
*/
|
|
2480
2299
|
startedEventId: number | undefined;
|
|
2481
2300
|
}
|
|
2482
|
-
/**
|
|
2483
|
-
* @public
|
|
2484
|
-
* @enum
|
|
2485
|
-
*/
|
|
2486
|
-
export declare const EventType: {
|
|
2487
|
-
readonly ActivityTaskCancelRequested: "ActivityTaskCancelRequested";
|
|
2488
|
-
readonly ActivityTaskCanceled: "ActivityTaskCanceled";
|
|
2489
|
-
readonly ActivityTaskCompleted: "ActivityTaskCompleted";
|
|
2490
|
-
readonly ActivityTaskFailed: "ActivityTaskFailed";
|
|
2491
|
-
readonly ActivityTaskScheduled: "ActivityTaskScheduled";
|
|
2492
|
-
readonly ActivityTaskStarted: "ActivityTaskStarted";
|
|
2493
|
-
readonly ActivityTaskTimedOut: "ActivityTaskTimedOut";
|
|
2494
|
-
readonly CancelTimerFailed: "CancelTimerFailed";
|
|
2495
|
-
readonly CancelWorkflowExecutionFailed: "CancelWorkflowExecutionFailed";
|
|
2496
|
-
readonly ChildWorkflowExecutionCanceled: "ChildWorkflowExecutionCanceled";
|
|
2497
|
-
readonly ChildWorkflowExecutionCompleted: "ChildWorkflowExecutionCompleted";
|
|
2498
|
-
readonly ChildWorkflowExecutionFailed: "ChildWorkflowExecutionFailed";
|
|
2499
|
-
readonly ChildWorkflowExecutionStarted: "ChildWorkflowExecutionStarted";
|
|
2500
|
-
readonly ChildWorkflowExecutionTerminated: "ChildWorkflowExecutionTerminated";
|
|
2501
|
-
readonly ChildWorkflowExecutionTimedOut: "ChildWorkflowExecutionTimedOut";
|
|
2502
|
-
readonly CompleteWorkflowExecutionFailed: "CompleteWorkflowExecutionFailed";
|
|
2503
|
-
readonly ContinueAsNewWorkflowExecutionFailed: "ContinueAsNewWorkflowExecutionFailed";
|
|
2504
|
-
readonly DecisionTaskCompleted: "DecisionTaskCompleted";
|
|
2505
|
-
readonly DecisionTaskScheduled: "DecisionTaskScheduled";
|
|
2506
|
-
readonly DecisionTaskStarted: "DecisionTaskStarted";
|
|
2507
|
-
readonly DecisionTaskTimedOut: "DecisionTaskTimedOut";
|
|
2508
|
-
readonly ExternalWorkflowExecutionCancelRequested: "ExternalWorkflowExecutionCancelRequested";
|
|
2509
|
-
readonly ExternalWorkflowExecutionSignaled: "ExternalWorkflowExecutionSignaled";
|
|
2510
|
-
readonly FailWorkflowExecutionFailed: "FailWorkflowExecutionFailed";
|
|
2511
|
-
readonly LambdaFunctionCompleted: "LambdaFunctionCompleted";
|
|
2512
|
-
readonly LambdaFunctionFailed: "LambdaFunctionFailed";
|
|
2513
|
-
readonly LambdaFunctionScheduled: "LambdaFunctionScheduled";
|
|
2514
|
-
readonly LambdaFunctionStarted: "LambdaFunctionStarted";
|
|
2515
|
-
readonly LambdaFunctionTimedOut: "LambdaFunctionTimedOut";
|
|
2516
|
-
readonly MarkerRecorded: "MarkerRecorded";
|
|
2517
|
-
readonly RecordMarkerFailed: "RecordMarkerFailed";
|
|
2518
|
-
readonly RequestCancelActivityTaskFailed: "RequestCancelActivityTaskFailed";
|
|
2519
|
-
readonly RequestCancelExternalWorkflowExecutionFailed: "RequestCancelExternalWorkflowExecutionFailed";
|
|
2520
|
-
readonly RequestCancelExternalWorkflowExecutionInitiated: "RequestCancelExternalWorkflowExecutionInitiated";
|
|
2521
|
-
readonly ScheduleActivityTaskFailed: "ScheduleActivityTaskFailed";
|
|
2522
|
-
readonly ScheduleLambdaFunctionFailed: "ScheduleLambdaFunctionFailed";
|
|
2523
|
-
readonly SignalExternalWorkflowExecutionFailed: "SignalExternalWorkflowExecutionFailed";
|
|
2524
|
-
readonly SignalExternalWorkflowExecutionInitiated: "SignalExternalWorkflowExecutionInitiated";
|
|
2525
|
-
readonly StartChildWorkflowExecutionFailed: "StartChildWorkflowExecutionFailed";
|
|
2526
|
-
readonly StartChildWorkflowExecutionInitiated: "StartChildWorkflowExecutionInitiated";
|
|
2527
|
-
readonly StartLambdaFunctionFailed: "StartLambdaFunctionFailed";
|
|
2528
|
-
readonly StartTimerFailed: "StartTimerFailed";
|
|
2529
|
-
readonly TimerCanceled: "TimerCanceled";
|
|
2530
|
-
readonly TimerFired: "TimerFired";
|
|
2531
|
-
readonly TimerStarted: "TimerStarted";
|
|
2532
|
-
readonly WorkflowExecutionCancelRequested: "WorkflowExecutionCancelRequested";
|
|
2533
|
-
readonly WorkflowExecutionCanceled: "WorkflowExecutionCanceled";
|
|
2534
|
-
readonly WorkflowExecutionCompleted: "WorkflowExecutionCompleted";
|
|
2535
|
-
readonly WorkflowExecutionContinuedAsNew: "WorkflowExecutionContinuedAsNew";
|
|
2536
|
-
readonly WorkflowExecutionFailed: "WorkflowExecutionFailed";
|
|
2537
|
-
readonly WorkflowExecutionSignaled: "WorkflowExecutionSignaled";
|
|
2538
|
-
readonly WorkflowExecutionStarted: "WorkflowExecutionStarted";
|
|
2539
|
-
readonly WorkflowExecutionTerminated: "WorkflowExecutionTerminated";
|
|
2540
|
-
readonly WorkflowExecutionTimedOut: "WorkflowExecutionTimedOut";
|
|
2541
|
-
};
|
|
2542
|
-
/**
|
|
2543
|
-
* @public
|
|
2544
|
-
*/
|
|
2545
|
-
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
2546
2301
|
/**
|
|
2547
2302
|
* <p>Provides the details of the <code>ExternalWorkflowExecutionCancelRequested</code> event.</p>
|
|
2548
2303
|
* @public
|
|
@@ -2580,18 +2335,6 @@ export interface ExternalWorkflowExecutionSignaledEventAttributes {
|
|
|
2580
2335
|
*/
|
|
2581
2336
|
initiatedEventId: number | undefined;
|
|
2582
2337
|
}
|
|
2583
|
-
/**
|
|
2584
|
-
* @public
|
|
2585
|
-
* @enum
|
|
2586
|
-
*/
|
|
2587
|
-
export declare const FailWorkflowExecutionFailedCause: {
|
|
2588
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2589
|
-
readonly UNHANDLED_DECISION: "UNHANDLED_DECISION";
|
|
2590
|
-
};
|
|
2591
|
-
/**
|
|
2592
|
-
* @public
|
|
2593
|
-
*/
|
|
2594
|
-
export type FailWorkflowExecutionFailedCause = (typeof FailWorkflowExecutionFailedCause)[keyof typeof FailWorkflowExecutionFailedCause];
|
|
2595
2338
|
/**
|
|
2596
2339
|
* <p>Provides the details of the <code>FailWorkflowExecutionFailed</code> event.</p>
|
|
2597
2340
|
* @public
|
|
@@ -2720,17 +2463,6 @@ export interface LambdaFunctionStartedEventAttributes {
|
|
|
2720
2463
|
*/
|
|
2721
2464
|
scheduledEventId: number | undefined;
|
|
2722
2465
|
}
|
|
2723
|
-
/**
|
|
2724
|
-
* @public
|
|
2725
|
-
* @enum
|
|
2726
|
-
*/
|
|
2727
|
-
export declare const LambdaFunctionTimeoutType: {
|
|
2728
|
-
readonly START_TO_CLOSE: "START_TO_CLOSE";
|
|
2729
|
-
};
|
|
2730
|
-
/**
|
|
2731
|
-
* @public
|
|
2732
|
-
*/
|
|
2733
|
-
export type LambdaFunctionTimeoutType = (typeof LambdaFunctionTimeoutType)[keyof typeof LambdaFunctionTimeoutType];
|
|
2734
2466
|
/**
|
|
2735
2467
|
* <p>Provides details of the <code>LambdaFunctionTimedOut</code> event.</p>
|
|
2736
2468
|
* @public
|
|
@@ -2777,17 +2509,6 @@ export interface MarkerRecordedEventAttributes {
|
|
|
2777
2509
|
*/
|
|
2778
2510
|
decisionTaskCompletedEventId: number | undefined;
|
|
2779
2511
|
}
|
|
2780
|
-
/**
|
|
2781
|
-
* @public
|
|
2782
|
-
* @enum
|
|
2783
|
-
*/
|
|
2784
|
-
export declare const RecordMarkerFailedCause: {
|
|
2785
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2786
|
-
};
|
|
2787
|
-
/**
|
|
2788
|
-
* @public
|
|
2789
|
-
*/
|
|
2790
|
-
export type RecordMarkerFailedCause = (typeof RecordMarkerFailedCause)[keyof typeof RecordMarkerFailedCause];
|
|
2791
2512
|
/**
|
|
2792
2513
|
* <p>Provides the details of the <code>RecordMarkerFailed</code> event.</p>
|
|
2793
2514
|
* @public
|
|
@@ -2816,18 +2537,6 @@ export interface RecordMarkerFailedEventAttributes {
|
|
|
2816
2537
|
*/
|
|
2817
2538
|
decisionTaskCompletedEventId: number | undefined;
|
|
2818
2539
|
}
|
|
2819
|
-
/**
|
|
2820
|
-
* @public
|
|
2821
|
-
* @enum
|
|
2822
|
-
*/
|
|
2823
|
-
export declare const RequestCancelActivityTaskFailedCause: {
|
|
2824
|
-
readonly ACTIVITY_ID_UNKNOWN: "ACTIVITY_ID_UNKNOWN";
|
|
2825
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2826
|
-
};
|
|
2827
|
-
/**
|
|
2828
|
-
* @public
|
|
2829
|
-
*/
|
|
2830
|
-
export type RequestCancelActivityTaskFailedCause = (typeof RequestCancelActivityTaskFailedCause)[keyof typeof RequestCancelActivityTaskFailedCause];
|
|
2831
2540
|
/**
|
|
2832
2541
|
* <p>Provides the details of the <code>RequestCancelActivityTaskFailed</code> event.</p>
|
|
2833
2542
|
* @public
|
|
@@ -2856,19 +2565,6 @@ export interface RequestCancelActivityTaskFailedEventAttributes {
|
|
|
2856
2565
|
*/
|
|
2857
2566
|
decisionTaskCompletedEventId: number | undefined;
|
|
2858
2567
|
}
|
|
2859
|
-
/**
|
|
2860
|
-
* @public
|
|
2861
|
-
* @enum
|
|
2862
|
-
*/
|
|
2863
|
-
export declare const RequestCancelExternalWorkflowExecutionFailedCause: {
|
|
2864
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2865
|
-
readonly REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED: "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED";
|
|
2866
|
-
readonly UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION: "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION";
|
|
2867
|
-
};
|
|
2868
|
-
/**
|
|
2869
|
-
* @public
|
|
2870
|
-
*/
|
|
2871
|
-
export type RequestCancelExternalWorkflowExecutionFailedCause = (typeof RequestCancelExternalWorkflowExecutionFailedCause)[keyof typeof RequestCancelExternalWorkflowExecutionFailedCause];
|
|
2872
2568
|
/**
|
|
2873
2569
|
* <p>Provides the details of the <code>RequestCancelExternalWorkflowExecutionFailed</code> event.</p>
|
|
2874
2570
|
* @public
|
|
@@ -2945,27 +2641,6 @@ export interface RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
|
|
|
2945
2641
|
*/
|
|
2946
2642
|
control?: string | undefined;
|
|
2947
2643
|
}
|
|
2948
|
-
/**
|
|
2949
|
-
* @public
|
|
2950
|
-
* @enum
|
|
2951
|
-
*/
|
|
2952
|
-
export declare const ScheduleActivityTaskFailedCause: {
|
|
2953
|
-
readonly ACTIVITY_CREATION_RATE_EXCEEDED: "ACTIVITY_CREATION_RATE_EXCEEDED";
|
|
2954
|
-
readonly ACTIVITY_ID_ALREADY_IN_USE: "ACTIVITY_ID_ALREADY_IN_USE";
|
|
2955
|
-
readonly ACTIVITY_TYPE_DEPRECATED: "ACTIVITY_TYPE_DEPRECATED";
|
|
2956
|
-
readonly ACTIVITY_TYPE_DOES_NOT_EXIST: "ACTIVITY_TYPE_DOES_NOT_EXIST";
|
|
2957
|
-
readonly DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED: "DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED";
|
|
2958
|
-
readonly DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
2959
|
-
readonly DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED: "DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED";
|
|
2960
|
-
readonly DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
2961
|
-
readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED";
|
|
2962
|
-
readonly OPEN_ACTIVITIES_LIMIT_EXCEEDED: "OPEN_ACTIVITIES_LIMIT_EXCEEDED";
|
|
2963
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
2964
|
-
};
|
|
2965
|
-
/**
|
|
2966
|
-
* @public
|
|
2967
|
-
*/
|
|
2968
|
-
export type ScheduleActivityTaskFailedCause = (typeof ScheduleActivityTaskFailedCause)[keyof typeof ScheduleActivityTaskFailedCause];
|
|
2969
2644
|
/**
|
|
2970
2645
|
* <p>Provides the details of the <code>ScheduleActivityTaskFailed</code> event.</p>
|
|
2971
2646
|
* @public
|
|
@@ -2999,20 +2674,6 @@ export interface ScheduleActivityTaskFailedEventAttributes {
|
|
|
2999
2674
|
*/
|
|
3000
2675
|
decisionTaskCompletedEventId: number | undefined;
|
|
3001
2676
|
}
|
|
3002
|
-
/**
|
|
3003
|
-
* @public
|
|
3004
|
-
* @enum
|
|
3005
|
-
*/
|
|
3006
|
-
export declare const ScheduleLambdaFunctionFailedCause: {
|
|
3007
|
-
readonly ID_ALREADY_IN_USE: "ID_ALREADY_IN_USE";
|
|
3008
|
-
readonly LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED: "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED";
|
|
3009
|
-
readonly LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION: "LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION";
|
|
3010
|
-
readonly OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED: "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED";
|
|
3011
|
-
};
|
|
3012
|
-
/**
|
|
3013
|
-
* @public
|
|
3014
|
-
*/
|
|
3015
|
-
export type ScheduleLambdaFunctionFailedCause = (typeof ScheduleLambdaFunctionFailedCause)[keyof typeof ScheduleLambdaFunctionFailedCause];
|
|
3016
2677
|
/**
|
|
3017
2678
|
* <p>Provides the details of the <code>ScheduleLambdaFunctionFailed</code> event. It isn't
|
|
3018
2679
|
* set for other event types.</p>
|
|
@@ -3049,19 +2710,6 @@ export interface ScheduleLambdaFunctionFailedEventAttributes {
|
|
|
3049
2710
|
*/
|
|
3050
2711
|
decisionTaskCompletedEventId: number | undefined;
|
|
3051
2712
|
}
|
|
3052
|
-
/**
|
|
3053
|
-
* @public
|
|
3054
|
-
* @enum
|
|
3055
|
-
*/
|
|
3056
|
-
export declare const SignalExternalWorkflowExecutionFailedCause: {
|
|
3057
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
3058
|
-
readonly SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED: "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED";
|
|
3059
|
-
readonly UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION: "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION";
|
|
3060
|
-
};
|
|
3061
|
-
/**
|
|
3062
|
-
* @public
|
|
3063
|
-
*/
|
|
3064
|
-
export type SignalExternalWorkflowExecutionFailedCause = (typeof SignalExternalWorkflowExecutionFailedCause)[keyof typeof SignalExternalWorkflowExecutionFailedCause];
|
|
3065
2713
|
/**
|
|
3066
2714
|
* <p>Provides the details of the <code>SignalExternalWorkflowExecutionFailed</code> event.</p>
|
|
3067
2715
|
* @public
|
|
@@ -3146,27 +2794,6 @@ export interface SignalExternalWorkflowExecutionInitiatedEventAttributes {
|
|
|
3146
2794
|
*/
|
|
3147
2795
|
control?: string | undefined;
|
|
3148
2796
|
}
|
|
3149
|
-
/**
|
|
3150
|
-
* @public
|
|
3151
|
-
* @enum
|
|
3152
|
-
*/
|
|
3153
|
-
export declare const StartChildWorkflowExecutionFailedCause: {
|
|
3154
|
-
readonly CHILD_CREATION_RATE_EXCEEDED: "CHILD_CREATION_RATE_EXCEEDED";
|
|
3155
|
-
readonly DEFAULT_CHILD_POLICY_UNDEFINED: "DEFAULT_CHILD_POLICY_UNDEFINED";
|
|
3156
|
-
readonly DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
3157
|
-
readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED";
|
|
3158
|
-
readonly DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED";
|
|
3159
|
-
readonly OPEN_CHILDREN_LIMIT_EXCEEDED: "OPEN_CHILDREN_LIMIT_EXCEEDED";
|
|
3160
|
-
readonly OPEN_WORKFLOWS_LIMIT_EXCEEDED: "OPEN_WORKFLOWS_LIMIT_EXCEEDED";
|
|
3161
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
3162
|
-
readonly WORKFLOW_ALREADY_RUNNING: "WORKFLOW_ALREADY_RUNNING";
|
|
3163
|
-
readonly WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED";
|
|
3164
|
-
readonly WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST";
|
|
3165
|
-
};
|
|
3166
|
-
/**
|
|
3167
|
-
* @public
|
|
3168
|
-
*/
|
|
3169
|
-
export type StartChildWorkflowExecutionFailedCause = (typeof StartChildWorkflowExecutionFailedCause)[keyof typeof StartChildWorkflowExecutionFailedCause];
|
|
3170
2797
|
/**
|
|
3171
2798
|
* <p>Provides the details of the <code>StartChildWorkflowExecutionFailed</code> event.</p>
|
|
3172
2799
|
* @public
|
|
@@ -3309,17 +2936,6 @@ export interface StartChildWorkflowExecutionInitiatedEventAttributes {
|
|
|
3309
2936
|
*/
|
|
3310
2937
|
lambdaRole?: string | undefined;
|
|
3311
2938
|
}
|
|
3312
|
-
/**
|
|
3313
|
-
* @public
|
|
3314
|
-
* @enum
|
|
3315
|
-
*/
|
|
3316
|
-
export declare const StartLambdaFunctionFailedCause: {
|
|
3317
|
-
readonly ASSUME_ROLE_FAILED: "ASSUME_ROLE_FAILED";
|
|
3318
|
-
};
|
|
3319
|
-
/**
|
|
3320
|
-
* @public
|
|
3321
|
-
*/
|
|
3322
|
-
export type StartLambdaFunctionFailedCause = (typeof StartLambdaFunctionFailedCause)[keyof typeof StartLambdaFunctionFailedCause];
|
|
3323
2939
|
/**
|
|
3324
2940
|
* <p>Provides the details of the <code>StartLambdaFunctionFailed</code> event. It isn't set
|
|
3325
2941
|
* for other event types.</p>
|
|
@@ -3349,20 +2965,6 @@ export interface StartLambdaFunctionFailedEventAttributes {
|
|
|
3349
2965
|
*/
|
|
3350
2966
|
message?: string | undefined;
|
|
3351
2967
|
}
|
|
3352
|
-
/**
|
|
3353
|
-
* @public
|
|
3354
|
-
* @enum
|
|
3355
|
-
*/
|
|
3356
|
-
export declare const StartTimerFailedCause: {
|
|
3357
|
-
readonly OPEN_TIMERS_LIMIT_EXCEEDED: "OPEN_TIMERS_LIMIT_EXCEEDED";
|
|
3358
|
-
readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED";
|
|
3359
|
-
readonly TIMER_CREATION_RATE_EXCEEDED: "TIMER_CREATION_RATE_EXCEEDED";
|
|
3360
|
-
readonly TIMER_ID_ALREADY_IN_USE: "TIMER_ID_ALREADY_IN_USE";
|
|
3361
|
-
};
|
|
3362
|
-
/**
|
|
3363
|
-
* @public
|
|
3364
|
-
*/
|
|
3365
|
-
export type StartTimerFailedCause = (typeof StartTimerFailedCause)[keyof typeof StartTimerFailedCause];
|
|
3366
2968
|
/**
|
|
3367
2969
|
* <p>Provides the details of the <code>StartTimerFailed</code> event.</p>
|
|
3368
2970
|
* @public
|
|
@@ -3483,17 +3085,6 @@ export interface WorkflowExecutionCanceledEventAttributes {
|
|
|
3483
3085
|
*/
|
|
3484
3086
|
decisionTaskCompletedEventId: number | undefined;
|
|
3485
3087
|
}
|
|
3486
|
-
/**
|
|
3487
|
-
* @public
|
|
3488
|
-
* @enum
|
|
3489
|
-
*/
|
|
3490
|
-
export declare const WorkflowExecutionCancelRequestedCause: {
|
|
3491
|
-
readonly CHILD_POLICY_APPLIED: "CHILD_POLICY_APPLIED";
|
|
3492
|
-
};
|
|
3493
|
-
/**
|
|
3494
|
-
* @public
|
|
3495
|
-
*/
|
|
3496
|
-
export type WorkflowExecutionCancelRequestedCause = (typeof WorkflowExecutionCancelRequestedCause)[keyof typeof WorkflowExecutionCancelRequestedCause];
|
|
3497
3088
|
/**
|
|
3498
3089
|
* <p>Provides the details of the <code>WorkflowExecutionCancelRequested</code> event.</p>
|
|
3499
3090
|
* @public
|
|
@@ -3766,19 +3357,6 @@ export interface WorkflowExecutionStartedEventAttributes {
|
|
|
3766
3357
|
*/
|
|
3767
3358
|
lambdaRole?: string | undefined;
|
|
3768
3359
|
}
|
|
3769
|
-
/**
|
|
3770
|
-
* @public
|
|
3771
|
-
* @enum
|
|
3772
|
-
*/
|
|
3773
|
-
export declare const WorkflowExecutionTerminatedCause: {
|
|
3774
|
-
readonly CHILD_POLICY_APPLIED: "CHILD_POLICY_APPLIED";
|
|
3775
|
-
readonly EVENT_LIMIT_EXCEEDED: "EVENT_LIMIT_EXCEEDED";
|
|
3776
|
-
readonly OPERATOR_INITIATED: "OPERATOR_INITIATED";
|
|
3777
|
-
};
|
|
3778
|
-
/**
|
|
3779
|
-
* @public
|
|
3780
|
-
*/
|
|
3781
|
-
export type WorkflowExecutionTerminatedCause = (typeof WorkflowExecutionTerminatedCause)[keyof typeof WorkflowExecutionTerminatedCause];
|
|
3782
3360
|
/**
|
|
3783
3361
|
* <p>Provides the details of the <code>WorkflowExecutionTerminated</code> event.</p>
|
|
3784
3362
|
* @public
|
|
@@ -4461,28 +4039,6 @@ export interface DecisionTask {
|
|
|
4461
4039
|
*/
|
|
4462
4040
|
previousStartedEventId?: number | undefined;
|
|
4463
4041
|
}
|
|
4464
|
-
/**
|
|
4465
|
-
* <p>The <code>StartWorkflowExecution</code> API action was called without the required
|
|
4466
|
-
* parameters set.</p>
|
|
4467
|
-
* <p>Some workflow execution parameters, such as the decision <code>taskList</code>, must be
|
|
4468
|
-
* set to start the execution. However, these parameters might have been set as defaults when the
|
|
4469
|
-
* workflow type was registered. In this case, you can omit these parameters from the
|
|
4470
|
-
* <code>StartWorkflowExecution</code> call and Amazon SWF uses the values defined in the workflow
|
|
4471
|
-
* type.</p>
|
|
4472
|
-
* <note>
|
|
4473
|
-
* <p>If these parameters aren't set and no default parameters were defined in the workflow
|
|
4474
|
-
* type, this error is displayed.</p>
|
|
4475
|
-
* </note>
|
|
4476
|
-
* @public
|
|
4477
|
-
*/
|
|
4478
|
-
export declare class DefaultUndefinedFault extends __BaseException {
|
|
4479
|
-
readonly name: "DefaultUndefinedFault";
|
|
4480
|
-
readonly $fault: "client";
|
|
4481
|
-
/**
|
|
4482
|
-
* @internal
|
|
4483
|
-
*/
|
|
4484
|
-
constructor(opts: __ExceptionOptionType<DefaultUndefinedFault, __BaseException>);
|
|
4485
|
-
}
|
|
4486
4042
|
/**
|
|
4487
4043
|
* @public
|
|
4488
4044
|
*/
|
|
@@ -4498,18 +4054,6 @@ export interface DeleteActivityTypeInput {
|
|
|
4498
4054
|
*/
|
|
4499
4055
|
activityType: ActivityType | undefined;
|
|
4500
4056
|
}
|
|
4501
|
-
/**
|
|
4502
|
-
* <p>Returned when the resource type has not been deprecated.</p>
|
|
4503
|
-
* @public
|
|
4504
|
-
*/
|
|
4505
|
-
export declare class TypeNotDeprecatedFault extends __BaseException {
|
|
4506
|
-
readonly name: "TypeNotDeprecatedFault";
|
|
4507
|
-
readonly $fault: "client";
|
|
4508
|
-
/**
|
|
4509
|
-
* @internal
|
|
4510
|
-
*/
|
|
4511
|
-
constructor(opts: __ExceptionOptionType<TypeNotDeprecatedFault, __BaseException>);
|
|
4512
|
-
}
|
|
4513
4057
|
/**
|
|
4514
4058
|
* @public
|
|
4515
4059
|
*/
|
|
@@ -4540,18 +4084,6 @@ export interface DeprecateActivityTypeInput {
|
|
|
4540
4084
|
*/
|
|
4541
4085
|
activityType: ActivityType | undefined;
|
|
4542
4086
|
}
|
|
4543
|
-
/**
|
|
4544
|
-
* <p>Returned when the specified activity or workflow type was already deprecated.</p>
|
|
4545
|
-
* @public
|
|
4546
|
-
*/
|
|
4547
|
-
export declare class TypeDeprecatedFault extends __BaseException {
|
|
4548
|
-
readonly name: "TypeDeprecatedFault";
|
|
4549
|
-
readonly $fault: "client";
|
|
4550
|
-
/**
|
|
4551
|
-
* @internal
|
|
4552
|
-
*/
|
|
4553
|
-
constructor(opts: __ExceptionOptionType<TypeDeprecatedFault, __BaseException>);
|
|
4554
|
-
}
|
|
4555
4087
|
/**
|
|
4556
4088
|
* @public
|
|
4557
4089
|
*/
|
|
@@ -4562,18 +4094,6 @@ export interface DeprecateDomainInput {
|
|
|
4562
4094
|
*/
|
|
4563
4095
|
name: string | undefined;
|
|
4564
4096
|
}
|
|
4565
|
-
/**
|
|
4566
|
-
* <p>Returned when the specified domain has been deprecated.</p>
|
|
4567
|
-
* @public
|
|
4568
|
-
*/
|
|
4569
|
-
export declare class DomainDeprecatedFault extends __BaseException {
|
|
4570
|
-
readonly name: "DomainDeprecatedFault";
|
|
4571
|
-
readonly $fault: "client";
|
|
4572
|
-
/**
|
|
4573
|
-
* @internal
|
|
4574
|
-
*/
|
|
4575
|
-
constructor(opts: __ExceptionOptionType<DomainDeprecatedFault, __BaseException>);
|
|
4576
|
-
}
|
|
4577
4097
|
/**
|
|
4578
4098
|
* @public
|
|
4579
4099
|
*/
|
|
@@ -4758,18 +4278,6 @@ export interface WorkflowExecutionConfiguration {
|
|
|
4758
4278
|
*/
|
|
4759
4279
|
lambdaRole?: string | undefined;
|
|
4760
4280
|
}
|
|
4761
|
-
/**
|
|
4762
|
-
* @public
|
|
4763
|
-
* @enum
|
|
4764
|
-
*/
|
|
4765
|
-
export declare const ExecutionStatus: {
|
|
4766
|
-
readonly CLOSED: "CLOSED";
|
|
4767
|
-
readonly OPEN: "OPEN";
|
|
4768
|
-
};
|
|
4769
|
-
/**
|
|
4770
|
-
* @public
|
|
4771
|
-
*/
|
|
4772
|
-
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
4773
4281
|
/**
|
|
4774
4282
|
* <p>Contains information about a workflow execution.</p>
|
|
4775
4283
|
* @public
|
|
@@ -5074,18 +4582,6 @@ export interface WorkflowTypeDetail {
|
|
|
5074
4582
|
*/
|
|
5075
4583
|
configuration: WorkflowTypeConfiguration | undefined;
|
|
5076
4584
|
}
|
|
5077
|
-
/**
|
|
5078
|
-
* <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>
|
|
5079
|
-
* @public
|
|
5080
|
-
*/
|
|
5081
|
-
export declare class DomainAlreadyExistsFault extends __BaseException {
|
|
5082
|
-
readonly name: "DomainAlreadyExistsFault";
|
|
5083
|
-
readonly $fault: "client";
|
|
5084
|
-
/**
|
|
5085
|
-
* @internal
|
|
5086
|
-
*/
|
|
5087
|
-
constructor(opts: __ExceptionOptionType<DomainAlreadyExistsFault, __BaseException>);
|
|
5088
|
-
}
|
|
5089
4585
|
/**
|
|
5090
4586
|
* <p>Contains a paginated collection of DomainInfo structures.</p>
|
|
5091
4587
|
* @public
|
|
@@ -5163,18 +4659,6 @@ export interface History {
|
|
|
5163
4659
|
*/
|
|
5164
4660
|
nextPageToken?: string | undefined;
|
|
5165
4661
|
}
|
|
5166
|
-
/**
|
|
5167
|
-
* <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>
|
|
5168
|
-
* @public
|
|
5169
|
-
*/
|
|
5170
|
-
export declare class LimitExceededFault extends __BaseException {
|
|
5171
|
-
readonly name: "LimitExceededFault";
|
|
5172
|
-
readonly $fault: "client";
|
|
5173
|
-
/**
|
|
5174
|
-
* @internal
|
|
5175
|
-
*/
|
|
5176
|
-
constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
|
|
5177
|
-
}
|
|
5178
4662
|
/**
|
|
5179
4663
|
* @public
|
|
5180
4664
|
*/
|
|
@@ -5760,18 +5244,6 @@ export interface RegisterActivityTypeInput {
|
|
|
5760
5244
|
*/
|
|
5761
5245
|
defaultTaskScheduleToCloseTimeout?: string | undefined;
|
|
5762
5246
|
}
|
|
5763
|
-
/**
|
|
5764
|
-
* <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>
|
|
5765
|
-
* @public
|
|
5766
|
-
*/
|
|
5767
|
-
export declare class TypeAlreadyExistsFault extends __BaseException {
|
|
5768
|
-
readonly name: "TypeAlreadyExistsFault";
|
|
5769
|
-
readonly $fault: "client";
|
|
5770
|
-
/**
|
|
5771
|
-
* @internal
|
|
5772
|
-
*/
|
|
5773
|
-
constructor(opts: __ExceptionOptionType<TypeAlreadyExistsFault, __BaseException>);
|
|
5774
|
-
}
|
|
5775
5247
|
/**
|
|
5776
5248
|
* @public
|
|
5777
5249
|
*/
|
|
@@ -5811,18 +5283,6 @@ export interface RegisterDomainInput {
|
|
|
5811
5283
|
*/
|
|
5812
5284
|
tags?: ResourceTag[] | undefined;
|
|
5813
5285
|
}
|
|
5814
|
-
/**
|
|
5815
|
-
* <p>You've exceeded the number of tags allowed for a domain.</p>
|
|
5816
|
-
* @public
|
|
5817
|
-
*/
|
|
5818
|
-
export declare class TooManyTagsFault extends __BaseException {
|
|
5819
|
-
readonly name: "TooManyTagsFault";
|
|
5820
|
-
readonly $fault: "client";
|
|
5821
|
-
/**
|
|
5822
|
-
* @internal
|
|
5823
|
-
*/
|
|
5824
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsFault, __BaseException>);
|
|
5825
|
-
}
|
|
5826
5286
|
/**
|
|
5827
5287
|
* @public
|
|
5828
5288
|
*/
|
|
@@ -6258,19 +5718,6 @@ export interface StartWorkflowExecutionInput {
|
|
|
6258
5718
|
*/
|
|
6259
5719
|
lambdaRole?: string | undefined;
|
|
6260
5720
|
}
|
|
6261
|
-
/**
|
|
6262
|
-
* <p>Returned by <a>StartWorkflowExecution</a> when an open execution with the same workflowId is already running in
|
|
6263
|
-
* the specified domain.</p>
|
|
6264
|
-
* @public
|
|
6265
|
-
*/
|
|
6266
|
-
export declare class WorkflowExecutionAlreadyStartedFault extends __BaseException {
|
|
6267
|
-
readonly name: "WorkflowExecutionAlreadyStartedFault";
|
|
6268
|
-
readonly $fault: "client";
|
|
6269
|
-
/**
|
|
6270
|
-
* @internal
|
|
6271
|
-
*/
|
|
6272
|
-
constructor(opts: __ExceptionOptionType<WorkflowExecutionAlreadyStartedFault, __BaseException>);
|
|
6273
|
-
}
|
|
6274
5721
|
/**
|
|
6275
5722
|
* @public
|
|
6276
5723
|
*/
|