@aws-sdk/client-sfn 3.289.0 → 3.290.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/dist-types/commands/CreateActivityCommand.d.ts +12 -0
  2. package/dist-types/commands/CreateStateMachineCommand.d.ts +35 -0
  3. package/dist-types/commands/DeleteActivityCommand.d.ts +4 -0
  4. package/dist-types/commands/DeleteStateMachineCommand.d.ts +7 -0
  5. package/dist-types/commands/DescribeActivityCommand.d.ts +7 -0
  6. package/dist-types/commands/DescribeExecutionCommand.d.ts +7 -0
  7. package/dist-types/commands/DescribeMapRunCommand.d.ts +8 -0
  8. package/dist-types/commands/DescribeStateMachineCommand.d.ts +7 -0
  9. package/dist-types/commands/DescribeStateMachineForExecutionCommand.d.ts +7 -0
  10. package/dist-types/commands/GetActivityTaskCommand.d.ts +11 -0
  11. package/dist-types/commands/GetExecutionHistoryCommand.d.ts +10 -0
  12. package/dist-types/commands/ListActivitiesCommand.d.ts +4 -0
  13. package/dist-types/commands/ListExecutionsCommand.d.ts +20 -0
  14. package/dist-types/commands/ListMapRunsCommand.d.ts +10 -0
  15. package/dist-types/commands/ListStateMachinesCommand.d.ts +4 -0
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  17. package/dist-types/commands/SendTaskFailureCommand.d.ts +8 -0
  18. package/dist-types/commands/SendTaskHeartbeatCommand.d.ts +8 -0
  19. package/dist-types/commands/SendTaskSuccessCommand.d.ts +11 -0
  20. package/dist-types/commands/StartExecutionCommand.d.ts +31 -0
  21. package/dist-types/commands/StartSyncExecutionCommand.d.ts +19 -0
  22. package/dist-types/commands/StopExecutionCommand.d.ts +10 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +12 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +8 -0
  25. package/dist-types/commands/UpdateMapRunCommand.d.ts +11 -0
  26. package/dist-types/commands/UpdateStateMachineCommand.d.ts +27 -0
  27. package/package.json +29 -29
@@ -45,6 +45,18 @@ export interface CreateActivityCommandOutput extends CreateActivityOutput, __Met
45
45
  * @see {@link CreateActivityCommandOutput} for command's `response` shape.
46
46
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
47
47
  *
48
+ * @throws {@link ActivityLimitExceeded} (client fault)
49
+ * <p>The maximum number of activities has been reached. Existing activities must be deleted
50
+ * before a new activity can be created.</p>
51
+ *
52
+ * @throws {@link InvalidName} (client fault)
53
+ * <p>The provided name is not valid.</p>
54
+ *
55
+ * @throws {@link TooManyTags} (client fault)
56
+ * <p>You've exceeded the number of tags allowed for a resource. See the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/limits.html"> Limits Topic</a> in the
57
+ * Step Functions Developer Guide.</p>
58
+ *
59
+ *
48
60
  */
49
61
  export declare class CreateActivityCommand extends $Command<CreateActivityCommandInput, CreateActivityCommandOutput, SFNClientResolvedConfig> {
50
62
  readonly input: CreateActivityCommandInput;
@@ -48,6 +48,41 @@ export interface CreateStateMachineCommandOutput extends CreateStateMachineOutpu
48
48
  * @see {@link CreateStateMachineCommandOutput} for command's `response` shape.
49
49
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
50
50
  *
51
+ * @throws {@link InvalidArn} (client fault)
52
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
53
+ *
54
+ * @throws {@link InvalidDefinition} (client fault)
55
+ * <p>The provided Amazon States Language definition is not valid.</p>
56
+ *
57
+ * @throws {@link InvalidLoggingConfiguration} (client fault)
58
+ * <p></p>
59
+ *
60
+ * @throws {@link InvalidName} (client fault)
61
+ * <p>The provided name is not valid.</p>
62
+ *
63
+ * @throws {@link InvalidTracingConfiguration} (client fault)
64
+ * <p>Your <code>tracingConfiguration</code> key does not match, or <code>enabled</code> has not
65
+ * been set to <code>true</code> or <code>false</code>.</p>
66
+ *
67
+ * @throws {@link StateMachineAlreadyExists} (client fault)
68
+ * <p>A state machine with the same name but a different definition or role ARN already
69
+ * exists.</p>
70
+ *
71
+ * @throws {@link StateMachineDeleting} (client fault)
72
+ * <p>The specified state machine is being deleted.</p>
73
+ *
74
+ * @throws {@link StateMachineLimitExceeded} (client fault)
75
+ * <p>The maximum number of state machines has been reached. Existing state machines must be
76
+ * deleted before a new state machine can be created.</p>
77
+ *
78
+ * @throws {@link StateMachineTypeNotSupported} (client fault)
79
+ * <p></p>
80
+ *
81
+ * @throws {@link TooManyTags} (client fault)
82
+ * <p>You've exceeded the number of tags allowed for a resource. See the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/limits.html"> Limits Topic</a> in the
83
+ * Step Functions Developer Guide.</p>
84
+ *
85
+ *
51
86
  */
52
87
  export declare class CreateStateMachineCommand extends $Command<CreateStateMachineCommandInput, CreateStateMachineCommandOutput, SFNClientResolvedConfig> {
53
88
  readonly input: CreateStateMachineCommandInput;
@@ -29,6 +29,10 @@ export interface DeleteActivityCommandOutput extends DeleteActivityOutput, __Met
29
29
  * @see {@link DeleteActivityCommandOutput} for command's `response` shape.
30
30
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidArn} (client fault)
33
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
34
+ *
35
+ *
32
36
  */
33
37
  export declare class DeleteActivityCommand extends $Command<DeleteActivityCommandInput, DeleteActivityCommandOutput, SFNClientResolvedConfig> {
34
38
  readonly input: DeleteActivityCommandInput;
@@ -40,6 +40,13 @@ export interface DeleteStateMachineCommandOutput extends DeleteStateMachineOutpu
40
40
  * @see {@link DeleteStateMachineCommandOutput} for command's `response` shape.
41
41
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
42
42
  *
43
+ * @throws {@link InvalidArn} (client fault)
44
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
45
+ *
46
+ * @throws {@link ValidationException} (client fault)
47
+ * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
48
+ *
49
+ *
43
50
  */
44
51
  export declare class DeleteStateMachineCommand extends $Command<DeleteStateMachineCommandInput, DeleteStateMachineCommandOutput, SFNClientResolvedConfig> {
45
52
  readonly input: DeleteStateMachineCommandInput;
@@ -32,6 +32,13 @@ export interface DescribeActivityCommandOutput extends DescribeActivityOutput, _
32
32
  * @see {@link DescribeActivityCommandOutput} for command's `response` shape.
33
33
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
34
34
  *
35
+ * @throws {@link ActivityDoesNotExist} (client fault)
36
+ * <p>The specified activity does not exist.</p>
37
+ *
38
+ * @throws {@link InvalidArn} (client fault)
39
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
40
+ *
41
+ *
35
42
  */
36
43
  export declare class DescribeActivityCommand extends $Command<DescribeActivityCommandInput, DescribeActivityCommandOutput, SFNClientResolvedConfig> {
37
44
  readonly input: DescribeActivityCommandInput;
@@ -33,6 +33,13 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
33
33
  * @see {@link DescribeExecutionCommandOutput} for command's `response` shape.
34
34
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
35
35
  *
36
+ * @throws {@link ExecutionDoesNotExist} (client fault)
37
+ * <p>The specified execution does not exist.</p>
38
+ *
39
+ * @throws {@link InvalidArn} (client fault)
40
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
41
+ *
42
+ *
36
43
  */
37
44
  export declare class DescribeExecutionCommand extends $Command<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, SFNClientResolvedConfig> {
38
45
  readonly input: DescribeExecutionCommandInput;
@@ -29,6 +29,14 @@ export interface DescribeMapRunCommandOutput extends DescribeMapRunOutput, __Met
29
29
  * @see {@link DescribeMapRunCommandOutput} for command's `response` shape.
30
30
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidArn} (client fault)
33
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
34
+ *
35
+ * @throws {@link ResourceNotFound} (client fault)
36
+ * <p>Could not find the referenced resource. Only state machine and activity ARNs are
37
+ * supported.</p>
38
+ *
39
+ *
32
40
  */
33
41
  export declare class DescribeMapRunCommand extends $Command<DescribeMapRunCommandInput, DescribeMapRunCommandOutput, SFNClientResolvedConfig> {
34
42
  readonly input: DescribeMapRunCommandInput;
@@ -35,6 +35,13 @@ export interface DescribeStateMachineCommandOutput extends DescribeStateMachineO
35
35
  * @see {@link DescribeStateMachineCommandOutput} for command's `response` shape.
36
36
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
37
37
  *
38
+ * @throws {@link InvalidArn} (client fault)
39
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
40
+ *
41
+ * @throws {@link StateMachineDoesNotExist} (client fault)
42
+ * <p>The specified state machine does not exist.</p>
43
+ *
44
+ *
38
45
  */
39
46
  export declare class DescribeStateMachineCommand extends $Command<DescribeStateMachineCommandInput, DescribeStateMachineCommandOutput, SFNClientResolvedConfig> {
40
47
  readonly input: DescribeStateMachineCommandInput;
@@ -33,6 +33,13 @@ export interface DescribeStateMachineForExecutionCommandOutput extends DescribeS
33
33
  * @see {@link DescribeStateMachineForExecutionCommandOutput} for command's `response` shape.
34
34
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
35
35
  *
36
+ * @throws {@link ExecutionDoesNotExist} (client fault)
37
+ * <p>The specified execution does not exist.</p>
38
+ *
39
+ * @throws {@link InvalidArn} (client fault)
40
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
41
+ *
42
+ *
36
43
  */
37
44
  export declare class DescribeStateMachineForExecutionCommand extends $Command<DescribeStateMachineForExecutionCommandInput, DescribeStateMachineForExecutionCommandOutput, SFNClientResolvedConfig> {
38
45
  readonly input: DescribeStateMachineForExecutionCommandInput;
@@ -46,6 +46,17 @@ export interface GetActivityTaskCommandOutput extends GetActivityTaskOutput, __M
46
46
  * @see {@link GetActivityTaskCommandOutput} for command's `response` shape.
47
47
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
48
48
  *
49
+ * @throws {@link ActivityDoesNotExist} (client fault)
50
+ * <p>The specified activity does not exist.</p>
51
+ *
52
+ * @throws {@link ActivityWorkerLimitExceeded} (client fault)
53
+ * <p>The maximum number of workers concurrently polling for activity tasks has been
54
+ * reached.</p>
55
+ *
56
+ * @throws {@link InvalidArn} (client fault)
57
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
58
+ *
59
+ *
49
60
  */
50
61
  export declare class GetActivityTaskCommand extends $Command<GetActivityTaskCommandInput, GetActivityTaskCommandOutput, SFNClientResolvedConfig> {
51
62
  readonly input: GetActivityTaskCommandInput;
@@ -34,6 +34,16 @@ export interface GetExecutionHistoryCommandOutput extends GetExecutionHistoryOut
34
34
  * @see {@link GetExecutionHistoryCommandOutput} for command's `response` shape.
35
35
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
36
36
  *
37
+ * @throws {@link ExecutionDoesNotExist} (client fault)
38
+ * <p>The specified execution does not exist.</p>
39
+ *
40
+ * @throws {@link InvalidArn} (client fault)
41
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
42
+ *
43
+ * @throws {@link InvalidToken} (client fault)
44
+ * <p>The provided token is not valid.</p>
45
+ *
46
+ *
37
47
  */
38
48
  export declare class GetExecutionHistoryCommand extends $Command<GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput, SFNClientResolvedConfig> {
39
49
  readonly input: GetExecutionHistoryCommandInput;
@@ -34,6 +34,10 @@ export interface ListActivitiesCommandOutput extends ListActivitiesOutput, __Met
34
34
  * @see {@link ListActivitiesCommandOutput} for command's `response` shape.
35
35
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
36
36
  *
37
+ * @throws {@link InvalidToken} (client fault)
38
+ * <p>The provided token is not valid.</p>
39
+ *
40
+ *
37
41
  */
38
42
  export declare class ListActivitiesCommand extends $Command<ListActivitiesCommandInput, ListActivitiesCommandOutput, SFNClientResolvedConfig> {
39
43
  readonly input: ListActivitiesCommandInput;
@@ -37,6 +37,26 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
37
37
  * @see {@link ListExecutionsCommandOutput} for command's `response` shape.
38
38
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
39
39
  *
40
+ * @throws {@link InvalidArn} (client fault)
41
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
42
+ *
43
+ * @throws {@link InvalidToken} (client fault)
44
+ * <p>The provided token is not valid.</p>
45
+ *
46
+ * @throws {@link ResourceNotFound} (client fault)
47
+ * <p>Could not find the referenced resource. Only state machine and activity ARNs are
48
+ * supported.</p>
49
+ *
50
+ * @throws {@link StateMachineDoesNotExist} (client fault)
51
+ * <p>The specified state machine does not exist.</p>
52
+ *
53
+ * @throws {@link StateMachineTypeNotSupported} (client fault)
54
+ * <p></p>
55
+ *
56
+ * @throws {@link ValidationException} (client fault)
57
+ * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
58
+ *
59
+ *
40
60
  */
41
61
  export declare class ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, SFNClientResolvedConfig> {
42
62
  readonly input: ListExecutionsCommandInput;
@@ -29,6 +29,16 @@ export interface ListMapRunsCommandOutput extends ListMapRunsOutput, __MetadataB
29
29
  * @see {@link ListMapRunsCommandOutput} for command's `response` shape.
30
30
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
31
31
  *
32
+ * @throws {@link ExecutionDoesNotExist} (client fault)
33
+ * <p>The specified execution does not exist.</p>
34
+ *
35
+ * @throws {@link InvalidArn} (client fault)
36
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
37
+ *
38
+ * @throws {@link InvalidToken} (client fault)
39
+ * <p>The provided token is not valid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListMapRunsCommand extends $Command<ListMapRunsCommandInput, ListMapRunsCommandOutput, SFNClientResolvedConfig> {
34
44
  readonly input: ListMapRunsCommandInput;
@@ -34,6 +34,10 @@ export interface ListStateMachinesCommandOutput extends ListStateMachinesOutput,
34
34
  * @see {@link ListStateMachinesCommandOutput} for command's `response` shape.
35
35
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
36
36
  *
37
+ * @throws {@link InvalidToken} (client fault)
38
+ * <p>The provided token is not valid.</p>
39
+ *
40
+ *
37
41
  */
38
42
  export declare class ListStateMachinesCommand extends $Command<ListStateMachinesCommandInput, ListStateMachinesCommandOutput, SFNClientResolvedConfig> {
39
43
  readonly input: ListStateMachinesCommandInput;
@@ -30,6 +30,14 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
30
30
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidArn} (client fault)
34
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
35
+ *
36
+ * @throws {@link ResourceNotFound} (client fault)
37
+ * <p>Could not find the referenced resource. Only state machine and activity ARNs are
38
+ * supported.</p>
39
+ *
40
+ *
33
41
  */
34
42
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SFNClientResolvedConfig> {
35
43
  readonly input: ListTagsForResourceCommandInput;
@@ -30,6 +30,14 @@ export interface SendTaskFailureCommandOutput extends SendTaskFailureOutput, __M
30
30
  * @see {@link SendTaskFailureCommandOutput} for command's `response` shape.
31
31
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidToken} (client fault)
34
+ * <p>The provided token is not valid.</p>
35
+ *
36
+ * @throws {@link TaskDoesNotExist} (client fault)
37
+ *
38
+ * @throws {@link TaskTimedOut} (client fault)
39
+ *
40
+ *
33
41
  */
34
42
  export declare class SendTaskFailureCommand extends $Command<SendTaskFailureCommandInput, SendTaskFailureCommandOutput, SFNClientResolvedConfig> {
35
43
  readonly input: SendTaskFailureCommandInput;
@@ -43,6 +43,14 @@ export interface SendTaskHeartbeatCommandOutput extends SendTaskHeartbeatOutput,
43
43
  * @see {@link SendTaskHeartbeatCommandOutput} for command's `response` shape.
44
44
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
45
45
  *
46
+ * @throws {@link InvalidToken} (client fault)
47
+ * <p>The provided token is not valid.</p>
48
+ *
49
+ * @throws {@link TaskDoesNotExist} (client fault)
50
+ *
51
+ * @throws {@link TaskTimedOut} (client fault)
52
+ *
53
+ *
46
54
  */
47
55
  export declare class SendTaskHeartbeatCommand extends $Command<SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput, SFNClientResolvedConfig> {
48
56
  readonly input: SendTaskHeartbeatCommandInput;
@@ -31,6 +31,17 @@ export interface SendTaskSuccessCommandOutput extends SendTaskSuccessOutput, __M
31
31
  * @see {@link SendTaskSuccessCommandOutput} for command's `response` shape.
32
32
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidOutput} (client fault)
35
+ * <p>The provided JSON output data is not valid.</p>
36
+ *
37
+ * @throws {@link InvalidToken} (client fault)
38
+ * <p>The provided token is not valid.</p>
39
+ *
40
+ * @throws {@link TaskDoesNotExist} (client fault)
41
+ *
42
+ * @throws {@link TaskTimedOut} (client fault)
43
+ *
44
+ *
34
45
  */
35
46
  export declare class SendTaskSuccessCommand extends $Command<SendTaskSuccessCommandInput, SendTaskSuccessCommandOutput, SFNClientResolvedConfig> {
36
47
  readonly input: SendTaskSuccessCommandInput;
@@ -42,6 +42,37 @@ export interface StartExecutionCommandOutput extends StartExecutionOutput, __Met
42
42
  * @see {@link StartExecutionCommandOutput} for command's `response` shape.
43
43
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
44
44
  *
45
+ * @throws {@link ExecutionAlreadyExists} (client fault)
46
+ * <p>The execution has the same <code>name</code> as another execution (but a different
47
+ * <code>input</code>).</p>
48
+ * <note>
49
+ * <p>Executions with the same <code>name</code> and <code>input</code> are considered
50
+ * idempotent.</p>
51
+ * </note>
52
+ *
53
+ * @throws {@link ExecutionLimitExceeded} (client fault)
54
+ * <p>The maximum number of running executions has been reached. Running executions must end or
55
+ * be stopped before a new execution can be started.</p>
56
+ *
57
+ * @throws {@link InvalidArn} (client fault)
58
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
59
+ *
60
+ * @throws {@link InvalidExecutionInput} (client fault)
61
+ * <p>The provided JSON input data is not valid.</p>
62
+ *
63
+ * @throws {@link InvalidName} (client fault)
64
+ * <p>The provided name is not valid.</p>
65
+ *
66
+ * @throws {@link StateMachineDeleting} (client fault)
67
+ * <p>The specified state machine is being deleted.</p>
68
+ *
69
+ * @throws {@link StateMachineDoesNotExist} (client fault)
70
+ * <p>The specified state machine does not exist.</p>
71
+ *
72
+ * @throws {@link ValidationException} (client fault)
73
+ * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
74
+ *
75
+ *
45
76
  */
46
77
  export declare class StartExecutionCommand extends $Command<StartExecutionCommandInput, StartExecutionCommandOutput, SFNClientResolvedConfig> {
47
78
  readonly input: StartExecutionCommandInput;
@@ -41,6 +41,25 @@ export interface StartSyncExecutionCommandOutput extends StartSyncExecutionOutpu
41
41
  * @see {@link StartSyncExecutionCommandOutput} for command's `response` shape.
42
42
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
43
43
  *
44
+ * @throws {@link InvalidArn} (client fault)
45
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
46
+ *
47
+ * @throws {@link InvalidExecutionInput} (client fault)
48
+ * <p>The provided JSON input data is not valid.</p>
49
+ *
50
+ * @throws {@link InvalidName} (client fault)
51
+ * <p>The provided name is not valid.</p>
52
+ *
53
+ * @throws {@link StateMachineDeleting} (client fault)
54
+ * <p>The specified state machine is being deleted.</p>
55
+ *
56
+ * @throws {@link StateMachineDoesNotExist} (client fault)
57
+ * <p>The specified state machine does not exist.</p>
58
+ *
59
+ * @throws {@link StateMachineTypeNotSupported} (client fault)
60
+ * <p></p>
61
+ *
62
+ *
44
63
  */
45
64
  export declare class StartSyncExecutionCommand extends $Command<StartSyncExecutionCommandInput, StartSyncExecutionCommandOutput, SFNClientResolvedConfig> {
46
65
  readonly input: StartSyncExecutionCommandInput;
@@ -30,6 +30,16 @@ export interface StopExecutionCommandOutput extends StopExecutionOutput, __Metad
30
30
  * @see {@link StopExecutionCommandOutput} for command's `response` shape.
31
31
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
32
32
  *
33
+ * @throws {@link ExecutionDoesNotExist} (client fault)
34
+ * <p>The specified execution does not exist.</p>
35
+ *
36
+ * @throws {@link InvalidArn} (client fault)
37
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
38
+ *
39
+ * @throws {@link ValidationException} (client fault)
40
+ * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class StopExecutionCommand extends $Command<StopExecutionCommandInput, StopExecutionCommandOutput, SFNClientResolvedConfig> {
35
45
  readonly input: StopExecutionCommandInput;
@@ -34,6 +34,18 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
34
34
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
35
35
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
36
36
  *
37
+ * @throws {@link InvalidArn} (client fault)
38
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
39
+ *
40
+ * @throws {@link ResourceNotFound} (client fault)
41
+ * <p>Could not find the referenced resource. Only state machine and activity ARNs are
42
+ * supported.</p>
43
+ *
44
+ * @throws {@link TooManyTags} (client fault)
45
+ * <p>You've exceeded the number of tags allowed for a resource. See the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/limits.html"> Limits Topic</a> in the
46
+ * Step Functions Developer Guide.</p>
47
+ *
48
+ *
37
49
  */
38
50
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SFNClientResolvedConfig> {
39
51
  readonly input: TagResourceCommandInput;
@@ -29,6 +29,14 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
29
29
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidArn} (client fault)
33
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
34
+ *
35
+ * @throws {@link ResourceNotFound} (client fault)
36
+ * <p>Could not find the referenced resource. Only state machine and activity ARNs are
37
+ * supported.</p>
38
+ *
39
+ *
32
40
  */
33
41
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SFNClientResolvedConfig> {
34
42
  readonly input: UntagResourceCommandInput;
@@ -29,6 +29,17 @@ export interface UpdateMapRunCommandOutput extends UpdateMapRunOutput, __Metadat
29
29
  * @see {@link UpdateMapRunCommandOutput} for command's `response` shape.
30
30
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidArn} (client fault)
33
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
34
+ *
35
+ * @throws {@link ResourceNotFound} (client fault)
36
+ * <p>Could not find the referenced resource. Only state machine and activity ARNs are
37
+ * supported.</p>
38
+ *
39
+ * @throws {@link ValidationException} (client fault)
40
+ * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
41
+ *
42
+ *
32
43
  */
33
44
  export declare class UpdateMapRunCommand extends $Command<UpdateMapRunCommandInput, UpdateMapRunCommandOutput, SFNClientResolvedConfig> {
34
45
  readonly input: UpdateMapRunCommandInput;
@@ -44,6 +44,33 @@ export interface UpdateStateMachineCommandOutput extends UpdateStateMachineOutpu
44
44
  * @see {@link UpdateStateMachineCommandOutput} for command's `response` shape.
45
45
  * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape.
46
46
  *
47
+ * @throws {@link InvalidArn} (client fault)
48
+ * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
49
+ *
50
+ * @throws {@link InvalidDefinition} (client fault)
51
+ * <p>The provided Amazon States Language definition is not valid.</p>
52
+ *
53
+ * @throws {@link InvalidLoggingConfiguration} (client fault)
54
+ * <p></p>
55
+ *
56
+ * @throws {@link InvalidTracingConfiguration} (client fault)
57
+ * <p>Your <code>tracingConfiguration</code> key does not match, or <code>enabled</code> has not
58
+ * been set to <code>true</code> or <code>false</code>.</p>
59
+ *
60
+ * @throws {@link MissingRequiredParameter} (client fault)
61
+ * <p>Request is missing a required parameter. This error occurs if both <code>definition</code>
62
+ * and <code>roleArn</code> are not specified.</p>
63
+ *
64
+ * @throws {@link StateMachineDeleting} (client fault)
65
+ * <p>The specified state machine is being deleted.</p>
66
+ *
67
+ * @throws {@link StateMachineDoesNotExist} (client fault)
68
+ * <p>The specified state machine does not exist.</p>
69
+ *
70
+ * @throws {@link ValidationException} (client fault)
71
+ * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
72
+ *
73
+ *
47
74
  */
48
75
  export declare class UpdateStateMachineCommand extends $Command<UpdateStateMachineCommandInput, UpdateStateMachineCommandOutput, SFNClientResolvedConfig> {
49
76
  readonly input: UpdateStateMachineCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sfn",
3
3
  "description": "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1"
56
56
  },