@aws-sdk/client-sfn 3.300.0 → 3.303.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 +98 -106
- package/dist-es/models/models_0.js +98 -106
- package/dist-types/commands/CreateActivityCommand.d.ts +3 -3
- package/dist-types/commands/CreateStateMachineCommand.d.ts +8 -8
- package/dist-types/commands/DeleteActivityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStateMachineCommand.d.ts +1 -1
- package/dist-types/commands/DescribeActivityCommand.d.ts +1 -1
- package/dist-types/commands/DescribeExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMapRunCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStateMachineCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStateMachineForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/GetActivityTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetExecutionHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListActivitiesCommand.d.ts +1 -1
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListMapRunsCommand.d.ts +1 -1
- package/dist-types/commands/ListStateMachinesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/SendTaskFailureCommand.d.ts +1 -1
- package/dist-types/commands/SendTaskHeartbeatCommand.d.ts +1 -1
- package/dist-types/commands/SendTaskSuccessCommand.d.ts +1 -1
- package/dist-types/commands/StartExecutionCommand.d.ts +1 -1
- package/dist-types/commands/StartSyncExecutionCommand.d.ts +1 -1
- package/dist-types/commands/StopExecutionCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMapRunCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStateMachineCommand.d.ts +6 -6
- package/dist-types/models/models_0.d.ts +139 -99
- package/dist-types/ts3.4/models/models_0.d.ts +112 -98
- package/package.json +34 -34
|
@@ -32,7 +32,7 @@ export interface DescribeStateMachineCommandOutput extends DescribeStateMachineO
|
|
|
32
32
|
* import { SFNClient, DescribeStateMachineCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
33
33
|
* // const { SFNClient, DescribeStateMachineCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
34
34
|
* const client = new SFNClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // DescribeStateMachineInput
|
|
36
36
|
* stateMachineArn: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DescribeStateMachineCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DescribeStateMachineForExecutionCommandOutput extends DescribeS
|
|
|
30
30
|
* import { SFNClient, DescribeStateMachineForExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
31
31
|
* // const { SFNClient, DescribeStateMachineForExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
32
32
|
* const client = new SFNClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribeStateMachineForExecutionInput
|
|
34
34
|
* executionArn: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeStateMachineForExecutionCommand(input);
|
|
@@ -43,7 +43,7 @@ export interface GetActivityTaskCommandOutput extends GetActivityTaskOutput, __M
|
|
|
43
43
|
* import { SFNClient, GetActivityTaskCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
44
44
|
* // const { SFNClient, GetActivityTaskCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
45
45
|
* const client = new SFNClient(config);
|
|
46
|
-
* const input = {
|
|
46
|
+
* const input = { // GetActivityTaskInput
|
|
47
47
|
* activityArn: "STRING_VALUE", // required
|
|
48
48
|
* workerName: "STRING_VALUE",
|
|
49
49
|
* };
|
|
@@ -31,7 +31,7 @@ export interface GetExecutionHistoryCommandOutput extends GetExecutionHistoryOut
|
|
|
31
31
|
* import { SFNClient, GetExecutionHistoryCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
32
32
|
* // const { SFNClient, GetExecutionHistoryCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
33
33
|
* const client = new SFNClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // GetExecutionHistoryInput
|
|
35
35
|
* executionArn: "STRING_VALUE", // required
|
|
36
36
|
* maxResults: Number("int"),
|
|
37
37
|
* reverseOrder: true || false,
|
|
@@ -31,7 +31,7 @@ export interface ListActivitiesCommandOutput extends ListActivitiesOutput, __Met
|
|
|
31
31
|
* import { SFNClient, ListActivitiesCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
32
32
|
* // const { SFNClient, ListActivitiesCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
33
33
|
* const client = new SFNClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListActivitiesInput
|
|
35
35
|
* maxResults: Number("int"),
|
|
36
36
|
* nextToken: "STRING_VALUE",
|
|
37
37
|
* };
|
|
@@ -34,7 +34,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
|
|
|
34
34
|
* import { SFNClient, ListExecutionsCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
35
35
|
* // const { SFNClient, ListExecutionsCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
36
36
|
* const client = new SFNClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // ListExecutionsInput
|
|
38
38
|
* stateMachineArn: "STRING_VALUE",
|
|
39
39
|
* statusFilter: "RUNNING" || "SUCCEEDED" || "FAILED" || "TIMED_OUT" || "ABORTED",
|
|
40
40
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListMapRunsCommandOutput extends ListMapRunsOutput, __MetadataB
|
|
|
26
26
|
* import { SFNClient, ListMapRunsCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
27
27
|
* // const { SFNClient, ListMapRunsCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
28
28
|
* const client = new SFNClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListMapRunsInput
|
|
30
30
|
* executionArn: "STRING_VALUE", // required
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ export interface ListStateMachinesCommandOutput extends ListStateMachinesOutput,
|
|
|
31
31
|
* import { SFNClient, ListStateMachinesCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
32
32
|
* // const { SFNClient, ListStateMachinesCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
33
33
|
* const client = new SFNClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListStateMachinesInput
|
|
35
35
|
* maxResults: Number("int"),
|
|
36
36
|
* nextToken: "STRING_VALUE",
|
|
37
37
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
27
27
|
* import { SFNClient, ListTagsForResourceCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
28
28
|
* // const { SFNClient, ListTagsForResourceCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
29
29
|
* const client = new SFNClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsForResourceInput
|
|
31
31
|
* resourceArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface SendTaskFailureCommandOutput extends SendTaskFailureOutput, __M
|
|
|
27
27
|
* import { SFNClient, SendTaskFailureCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
28
28
|
* // const { SFNClient, SendTaskFailureCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
29
29
|
* const client = new SFNClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // SendTaskFailureInput
|
|
31
31
|
* taskToken: "STRING_VALUE", // required
|
|
32
32
|
* error: "STRING_VALUE",
|
|
33
33
|
* cause: "STRING_VALUE",
|
|
@@ -40,7 +40,7 @@ export interface SendTaskHeartbeatCommandOutput extends SendTaskHeartbeatOutput,
|
|
|
40
40
|
* import { SFNClient, SendTaskHeartbeatCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
41
41
|
* // const { SFNClient, SendTaskHeartbeatCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
42
42
|
* const client = new SFNClient(config);
|
|
43
|
-
* const input = {
|
|
43
|
+
* const input = { // SendTaskHeartbeatInput
|
|
44
44
|
* taskToken: "STRING_VALUE", // required
|
|
45
45
|
* };
|
|
46
46
|
* const command = new SendTaskHeartbeatCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface SendTaskSuccessCommandOutput extends SendTaskSuccessOutput, __M
|
|
|
28
28
|
* import { SFNClient, SendTaskSuccessCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
29
29
|
* // const { SFNClient, SendTaskSuccessCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
30
30
|
* const client = new SFNClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // SendTaskSuccessInput
|
|
32
32
|
* taskToken: "STRING_VALUE", // required
|
|
33
33
|
* output: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -39,7 +39,7 @@ export interface StartExecutionCommandOutput extends StartExecutionOutput, __Met
|
|
|
39
39
|
* import { SFNClient, StartExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
40
40
|
* // const { SFNClient, StartExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
41
41
|
* const client = new SFNClient(config);
|
|
42
|
-
* const input = {
|
|
42
|
+
* const input = { // StartExecutionInput
|
|
43
43
|
* stateMachineArn: "STRING_VALUE", // required
|
|
44
44
|
* name: "STRING_VALUE",
|
|
45
45
|
* input: "STRING_VALUE",
|
|
@@ -38,7 +38,7 @@ export interface StartSyncExecutionCommandOutput extends StartSyncExecutionOutpu
|
|
|
38
38
|
* import { SFNClient, StartSyncExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
39
39
|
* // const { SFNClient, StartSyncExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
40
40
|
* const client = new SFNClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // StartSyncExecutionInput
|
|
42
42
|
* stateMachineArn: "STRING_VALUE", // required
|
|
43
43
|
* name: "STRING_VALUE",
|
|
44
44
|
* input: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface StopExecutionCommandOutput extends StopExecutionOutput, __Metad
|
|
|
27
27
|
* import { SFNClient, StopExecutionCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
28
28
|
* // const { SFNClient, StopExecutionCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
29
29
|
* const client = new SFNClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // StopExecutionInput
|
|
31
31
|
* executionArn: "STRING_VALUE", // required
|
|
32
32
|
* error: "STRING_VALUE",
|
|
33
33
|
* cause: "STRING_VALUE",
|
|
@@ -31,10 +31,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
31
31
|
* import { SFNClient, TagResourceCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
32
32
|
* // const { SFNClient, TagResourceCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
33
33
|
* const client = new SFNClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // TagResourceInput
|
|
35
35
|
* resourceArn: "STRING_VALUE", // required
|
|
36
|
-
* tags: [ // required
|
|
37
|
-
* {
|
|
36
|
+
* tags: [ // TagList // required
|
|
37
|
+
* { // Tag
|
|
38
38
|
* key: "STRING_VALUE",
|
|
39
39
|
* value: "STRING_VALUE",
|
|
40
40
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
26
26
|
* import { SFNClient, UntagResourceCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
27
27
|
* // const { SFNClient, UntagResourceCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
28
28
|
* const client = new SFNClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateMapRunCommandOutput extends UpdateMapRunOutput, __Metadat
|
|
|
26
26
|
* import { SFNClient, UpdateMapRunCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
27
27
|
* // const { SFNClient, UpdateMapRunCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
28
28
|
* const client = new SFNClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateMapRunInput
|
|
30
30
|
* mapRunArn: "STRING_VALUE", // required
|
|
31
31
|
* maxConcurrency: Number("int"),
|
|
32
32
|
* toleratedFailurePercentage: Number("float"),
|
|
@@ -41,22 +41,22 @@ export interface UpdateStateMachineCommandOutput extends UpdateStateMachineOutpu
|
|
|
41
41
|
* import { SFNClient, UpdateStateMachineCommand } from "@aws-sdk/client-sfn"; // ES Modules import
|
|
42
42
|
* // const { SFNClient, UpdateStateMachineCommand } = require("@aws-sdk/client-sfn"); // CommonJS import
|
|
43
43
|
* const client = new SFNClient(config);
|
|
44
|
-
* const input = {
|
|
44
|
+
* const input = { // UpdateStateMachineInput
|
|
45
45
|
* stateMachineArn: "STRING_VALUE", // required
|
|
46
46
|
* definition: "STRING_VALUE",
|
|
47
47
|
* roleArn: "STRING_VALUE",
|
|
48
|
-
* loggingConfiguration: {
|
|
48
|
+
* loggingConfiguration: { // LoggingConfiguration
|
|
49
49
|
* level: "ALL" || "ERROR" || "FATAL" || "OFF",
|
|
50
50
|
* includeExecutionData: true || false,
|
|
51
|
-
* destinations: [
|
|
52
|
-
* {
|
|
53
|
-
* cloudWatchLogsLogGroup: {
|
|
51
|
+
* destinations: [ // LogDestinationList
|
|
52
|
+
* { // LogDestination
|
|
53
|
+
* cloudWatchLogsLogGroup: { // CloudWatchLogsLogGroup
|
|
54
54
|
* logGroupArn: "STRING_VALUE",
|
|
55
55
|
* },
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
59
|
-
* tracingConfiguration: {
|
|
59
|
+
* tracingConfiguration: { // TracingConfiguration
|
|
60
60
|
* enabled: true || false,
|
|
61
61
|
* },
|
|
62
62
|
* };
|
|
@@ -309,13 +309,18 @@ export interface LogDestination {
|
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* @public
|
|
312
|
+
* @enum
|
|
312
313
|
*/
|
|
313
|
-
export declare
|
|
314
|
-
ALL
|
|
315
|
-
ERROR
|
|
316
|
-
FATAL
|
|
317
|
-
OFF
|
|
318
|
-
}
|
|
314
|
+
export declare const LogLevel: {
|
|
315
|
+
readonly ALL: "ALL";
|
|
316
|
+
readonly ERROR: "ERROR";
|
|
317
|
+
readonly FATAL: "FATAL";
|
|
318
|
+
readonly OFF: "OFF";
|
|
319
|
+
};
|
|
320
|
+
/**
|
|
321
|
+
* @public
|
|
322
|
+
*/
|
|
323
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
319
324
|
/**
|
|
320
325
|
* @public
|
|
321
326
|
* <p>The <code>LoggingConfiguration</code> data type is used to set CloudWatch Logs
|
|
@@ -351,11 +356,16 @@ export interface TracingConfiguration {
|
|
|
351
356
|
}
|
|
352
357
|
/**
|
|
353
358
|
* @public
|
|
359
|
+
* @enum
|
|
354
360
|
*/
|
|
355
|
-
export declare
|
|
356
|
-
EXPRESS
|
|
357
|
-
STANDARD
|
|
358
|
-
}
|
|
361
|
+
export declare const StateMachineType: {
|
|
362
|
+
readonly EXPRESS: "EXPRESS";
|
|
363
|
+
readonly STANDARD: "STANDARD";
|
|
364
|
+
};
|
|
365
|
+
/**
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
export type StateMachineType = (typeof StateMachineType)[keyof typeof StateMachineType];
|
|
359
369
|
/**
|
|
360
370
|
* @public
|
|
361
371
|
*/
|
|
@@ -565,12 +575,17 @@ export interface DeleteStateMachineOutput {
|
|
|
565
575
|
}
|
|
566
576
|
/**
|
|
567
577
|
* @public
|
|
578
|
+
* @enum
|
|
568
579
|
*/
|
|
569
|
-
export declare
|
|
570
|
-
API_DOES_NOT_SUPPORT_LABELED_ARNS
|
|
571
|
-
CANNOT_UPDATE_COMPLETED_MAP_RUN
|
|
572
|
-
MISSING_REQUIRED_PARAMETER
|
|
573
|
-
}
|
|
580
|
+
export declare const ValidationExceptionReason: {
|
|
581
|
+
readonly API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS";
|
|
582
|
+
readonly CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN";
|
|
583
|
+
readonly MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER";
|
|
584
|
+
};
|
|
585
|
+
/**
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
574
589
|
/**
|
|
575
590
|
* @public
|
|
576
591
|
* <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
@@ -657,14 +672,19 @@ export interface CloudWatchEventsExecutionDataDetails {
|
|
|
657
672
|
}
|
|
658
673
|
/**
|
|
659
674
|
* @public
|
|
675
|
+
* @enum
|
|
660
676
|
*/
|
|
661
|
-
export declare
|
|
662
|
-
ABORTED
|
|
663
|
-
FAILED
|
|
664
|
-
RUNNING
|
|
665
|
-
SUCCEEDED
|
|
666
|
-
TIMED_OUT
|
|
667
|
-
}
|
|
677
|
+
export declare const ExecutionStatus: {
|
|
678
|
+
readonly ABORTED: "ABORTED";
|
|
679
|
+
readonly FAILED: "FAILED";
|
|
680
|
+
readonly RUNNING: "RUNNING";
|
|
681
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
682
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
683
|
+
};
|
|
684
|
+
/**
|
|
685
|
+
* @public
|
|
686
|
+
*/
|
|
687
|
+
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
668
688
|
/**
|
|
669
689
|
* @public
|
|
670
690
|
*/
|
|
@@ -851,13 +871,18 @@ export interface MapRunItemCounts {
|
|
|
851
871
|
}
|
|
852
872
|
/**
|
|
853
873
|
* @public
|
|
874
|
+
* @enum
|
|
854
875
|
*/
|
|
855
|
-
export declare
|
|
856
|
-
ABORTED
|
|
857
|
-
FAILED
|
|
858
|
-
RUNNING
|
|
859
|
-
SUCCEEDED
|
|
860
|
-
}
|
|
876
|
+
export declare const MapRunStatus: {
|
|
877
|
+
readonly ABORTED: "ABORTED";
|
|
878
|
+
readonly FAILED: "FAILED";
|
|
879
|
+
readonly RUNNING: "RUNNING";
|
|
880
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
881
|
+
};
|
|
882
|
+
/**
|
|
883
|
+
* @public
|
|
884
|
+
*/
|
|
885
|
+
export type MapRunStatus = (typeof MapRunStatus)[keyof typeof MapRunStatus];
|
|
861
886
|
/**
|
|
862
887
|
* @public
|
|
863
888
|
*/
|
|
@@ -928,11 +953,16 @@ export interface DescribeStateMachineInput {
|
|
|
928
953
|
}
|
|
929
954
|
/**
|
|
930
955
|
* @public
|
|
956
|
+
* @enum
|
|
931
957
|
*/
|
|
932
|
-
export declare
|
|
933
|
-
ACTIVE
|
|
934
|
-
DELETING
|
|
935
|
-
}
|
|
958
|
+
export declare const StateMachineStatus: {
|
|
959
|
+
readonly ACTIVE: "ACTIVE";
|
|
960
|
+
readonly DELETING: "DELETING";
|
|
961
|
+
};
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
export type StateMachineStatus = (typeof StateMachineStatus)[keyof typeof StateMachineStatus];
|
|
936
966
|
/**
|
|
937
967
|
* @public
|
|
938
968
|
*/
|
|
@@ -1599,68 +1629,73 @@ export interface TaskTimedOutEventDetails {
|
|
|
1599
1629
|
}
|
|
1600
1630
|
/**
|
|
1601
1631
|
* @public
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1632
|
+
* @enum
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const HistoryEventType: {
|
|
1635
|
+
readonly ActivityFailed: "ActivityFailed";
|
|
1636
|
+
readonly ActivityScheduleFailed: "ActivityScheduleFailed";
|
|
1637
|
+
readonly ActivityScheduled: "ActivityScheduled";
|
|
1638
|
+
readonly ActivityStarted: "ActivityStarted";
|
|
1639
|
+
readonly ActivitySucceeded: "ActivitySucceeded";
|
|
1640
|
+
readonly ActivityTimedOut: "ActivityTimedOut";
|
|
1641
|
+
readonly ChoiceStateEntered: "ChoiceStateEntered";
|
|
1642
|
+
readonly ChoiceStateExited: "ChoiceStateExited";
|
|
1643
|
+
readonly ExecutionAborted: "ExecutionAborted";
|
|
1644
|
+
readonly ExecutionFailed: "ExecutionFailed";
|
|
1645
|
+
readonly ExecutionStarted: "ExecutionStarted";
|
|
1646
|
+
readonly ExecutionSucceeded: "ExecutionSucceeded";
|
|
1647
|
+
readonly ExecutionTimedOut: "ExecutionTimedOut";
|
|
1648
|
+
readonly FailStateEntered: "FailStateEntered";
|
|
1649
|
+
readonly LambdaFunctionFailed: "LambdaFunctionFailed";
|
|
1650
|
+
readonly LambdaFunctionScheduleFailed: "LambdaFunctionScheduleFailed";
|
|
1651
|
+
readonly LambdaFunctionScheduled: "LambdaFunctionScheduled";
|
|
1652
|
+
readonly LambdaFunctionStartFailed: "LambdaFunctionStartFailed";
|
|
1653
|
+
readonly LambdaFunctionStarted: "LambdaFunctionStarted";
|
|
1654
|
+
readonly LambdaFunctionSucceeded: "LambdaFunctionSucceeded";
|
|
1655
|
+
readonly LambdaFunctionTimedOut: "LambdaFunctionTimedOut";
|
|
1656
|
+
readonly MapIterationAborted: "MapIterationAborted";
|
|
1657
|
+
readonly MapIterationFailed: "MapIterationFailed";
|
|
1658
|
+
readonly MapIterationStarted: "MapIterationStarted";
|
|
1659
|
+
readonly MapIterationSucceeded: "MapIterationSucceeded";
|
|
1660
|
+
readonly MapRunAborted: "MapRunAborted";
|
|
1661
|
+
readonly MapRunFailed: "MapRunFailed";
|
|
1662
|
+
readonly MapRunStarted: "MapRunStarted";
|
|
1663
|
+
readonly MapRunSucceeded: "MapRunSucceeded";
|
|
1664
|
+
readonly MapStateAborted: "MapStateAborted";
|
|
1665
|
+
readonly MapStateEntered: "MapStateEntered";
|
|
1666
|
+
readonly MapStateExited: "MapStateExited";
|
|
1667
|
+
readonly MapStateFailed: "MapStateFailed";
|
|
1668
|
+
readonly MapStateStarted: "MapStateStarted";
|
|
1669
|
+
readonly MapStateSucceeded: "MapStateSucceeded";
|
|
1670
|
+
readonly ParallelStateAborted: "ParallelStateAborted";
|
|
1671
|
+
readonly ParallelStateEntered: "ParallelStateEntered";
|
|
1672
|
+
readonly ParallelStateExited: "ParallelStateExited";
|
|
1673
|
+
readonly ParallelStateFailed: "ParallelStateFailed";
|
|
1674
|
+
readonly ParallelStateStarted: "ParallelStateStarted";
|
|
1675
|
+
readonly ParallelStateSucceeded: "ParallelStateSucceeded";
|
|
1676
|
+
readonly PassStateEntered: "PassStateEntered";
|
|
1677
|
+
readonly PassStateExited: "PassStateExited";
|
|
1678
|
+
readonly SucceedStateEntered: "SucceedStateEntered";
|
|
1679
|
+
readonly SucceedStateExited: "SucceedStateExited";
|
|
1680
|
+
readonly TaskFailed: "TaskFailed";
|
|
1681
|
+
readonly TaskScheduled: "TaskScheduled";
|
|
1682
|
+
readonly TaskStartFailed: "TaskStartFailed";
|
|
1683
|
+
readonly TaskStarted: "TaskStarted";
|
|
1684
|
+
readonly TaskStateAborted: "TaskStateAborted";
|
|
1685
|
+
readonly TaskStateEntered: "TaskStateEntered";
|
|
1686
|
+
readonly TaskStateExited: "TaskStateExited";
|
|
1687
|
+
readonly TaskSubmitFailed: "TaskSubmitFailed";
|
|
1688
|
+
readonly TaskSubmitted: "TaskSubmitted";
|
|
1689
|
+
readonly TaskSucceeded: "TaskSucceeded";
|
|
1690
|
+
readonly TaskTimedOut: "TaskTimedOut";
|
|
1691
|
+
readonly WaitStateAborted: "WaitStateAborted";
|
|
1692
|
+
readonly WaitStateEntered: "WaitStateEntered";
|
|
1693
|
+
readonly WaitStateExited: "WaitStateExited";
|
|
1694
|
+
};
|
|
1695
|
+
/**
|
|
1696
|
+
* @public
|
|
1697
|
+
*/
|
|
1698
|
+
export type HistoryEventType = (typeof HistoryEventType)[keyof typeof HistoryEventType];
|
|
1664
1699
|
/**
|
|
1665
1700
|
* @public
|
|
1666
1701
|
* <p>Contains details about the events of an execution.</p>
|
|
@@ -2383,12 +2418,17 @@ export interface BillingDetails {
|
|
|
2383
2418
|
}
|
|
2384
2419
|
/**
|
|
2385
2420
|
* @public
|
|
2421
|
+
* @enum
|
|
2386
2422
|
*/
|
|
2387
|
-
export declare
|
|
2388
|
-
FAILED
|
|
2389
|
-
SUCCEEDED
|
|
2390
|
-
TIMED_OUT
|
|
2391
|
-
}
|
|
2423
|
+
export declare const SyncExecutionStatus: {
|
|
2424
|
+
readonly FAILED: "FAILED";
|
|
2425
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2426
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
2427
|
+
};
|
|
2428
|
+
/**
|
|
2429
|
+
* @public
|
|
2430
|
+
*/
|
|
2431
|
+
export type SyncExecutionStatus = (typeof SyncExecutionStatus)[keyof typeof SyncExecutionStatus];
|
|
2392
2432
|
/**
|
|
2393
2433
|
* @public
|
|
2394
2434
|
*/
|