@aws-sdk/client-sfn 3.952.0 → 3.954.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 (57) hide show
  1. package/dist-cjs/index.js +756 -534
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/CreateActivityCommand.js +2 -2
  4. package/dist-es/commands/CreateStateMachineAliasCommand.js +2 -2
  5. package/dist-es/commands/CreateStateMachineCommand.js +2 -2
  6. package/dist-es/commands/DeleteActivityCommand.js +2 -2
  7. package/dist-es/commands/DeleteStateMachineAliasCommand.js +2 -2
  8. package/dist-es/commands/DeleteStateMachineCommand.js +2 -2
  9. package/dist-es/commands/DeleteStateMachineVersionCommand.js +2 -2
  10. package/dist-es/commands/DescribeActivityCommand.js +2 -2
  11. package/dist-es/commands/DescribeExecutionCommand.js +2 -2
  12. package/dist-es/commands/DescribeMapRunCommand.js +2 -2
  13. package/dist-es/commands/DescribeStateMachineAliasCommand.js +2 -2
  14. package/dist-es/commands/DescribeStateMachineCommand.js +2 -2
  15. package/dist-es/commands/DescribeStateMachineForExecutionCommand.js +2 -2
  16. package/dist-es/commands/GetActivityTaskCommand.js +2 -2
  17. package/dist-es/commands/GetExecutionHistoryCommand.js +2 -2
  18. package/dist-es/commands/ListActivitiesCommand.js +2 -2
  19. package/dist-es/commands/ListExecutionsCommand.js +2 -2
  20. package/dist-es/commands/ListMapRunsCommand.js +2 -2
  21. package/dist-es/commands/ListStateMachineAliasesCommand.js +2 -2
  22. package/dist-es/commands/ListStateMachineVersionsCommand.js +2 -2
  23. package/dist-es/commands/ListStateMachinesCommand.js +2 -2
  24. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  25. package/dist-es/commands/PublishStateMachineVersionCommand.js +2 -2
  26. package/dist-es/commands/RedriveExecutionCommand.js +2 -2
  27. package/dist-es/commands/SendTaskFailureCommand.js +2 -2
  28. package/dist-es/commands/SendTaskHeartbeatCommand.js +2 -2
  29. package/dist-es/commands/SendTaskSuccessCommand.js +2 -2
  30. package/dist-es/commands/StartExecutionCommand.js +2 -2
  31. package/dist-es/commands/StartSyncExecutionCommand.js +2 -2
  32. package/dist-es/commands/StopExecutionCommand.js +2 -2
  33. package/dist-es/commands/TagResourceCommand.js +2 -2
  34. package/dist-es/commands/TestStateCommand.js +2 -2
  35. package/dist-es/commands/UntagResourceCommand.js +2 -2
  36. package/dist-es/commands/UpdateMapRunCommand.js +2 -2
  37. package/dist-es/commands/UpdateStateMachineAliasCommand.js +2 -2
  38. package/dist-es/commands/UpdateStateMachineCommand.js +2 -2
  39. package/dist-es/commands/ValidateStateMachineDefinitionCommand.js +2 -2
  40. package/dist-es/index.js +1 -0
  41. package/dist-es/runtimeConfig.shared.js +7 -6
  42. package/dist-es/schemas/schemas_0.js +436 -422
  43. package/dist-types/SFNClient.d.ts +1 -10
  44. package/dist-types/index.d.ts +1 -0
  45. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  46. package/dist-types/runtimeConfig.d.ts +6 -2
  47. package/dist-types/runtimeConfig.native.d.ts +6 -2
  48. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  49. package/dist-types/schemas/schemas_0.d.ts +209 -244
  50. package/dist-types/ts3.4/SFNClient.d.ts +0 -4
  51. package/dist-types/ts3.4/index.d.ts +1 -0
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  56. package/dist-types/ts3.4/schemas/schemas_0.d.ts +208 -246
  57. package/package.json +34 -34
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_0Protocol({
31
- defaultNamespace: "com.amazonaws.sfn",
32
- serviceTarget: "AWSStepFunctions",
33
- awsQueryCompatible: false,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.sfn",
32
+ xmlNamespace: "http://swf.amazonaws.com/doc/2015-07-20/",
33
+ version: "2016-11-23",
34
+ serviceTarget: "AWSStepFunctions",
35
+ },
35
36
  serviceId: config?.serviceId ?? "SFN",
36
37
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
38
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateActivity } from "../schemas/schemas_0";
4
+ import { CreateActivity$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateActivityCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateActivityCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "CreateActivity", {})
13
13
  .n("SFNClient", "CreateActivityCommand")
14
- .sc(CreateActivity)
14
+ .sc(CreateActivity$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateStateMachineAlias } from "../schemas/schemas_0";
4
+ import { CreateStateMachineAlias$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateStateMachineAliasCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateStateMachineAliasCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "CreateStateMachineAlias", {})
13
13
  .n("SFNClient", "CreateStateMachineAliasCommand")
14
- .sc(CreateStateMachineAlias)
14
+ .sc(CreateStateMachineAlias$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateStateMachine } from "../schemas/schemas_0";
4
+ import { CreateStateMachine$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateStateMachineCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateStateMachineCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "CreateStateMachine", {})
13
13
  .n("SFNClient", "CreateStateMachineCommand")
14
- .sc(CreateStateMachine)
14
+ .sc(CreateStateMachine$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteActivity } from "../schemas/schemas_0";
4
+ import { DeleteActivity$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteActivityCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteActivityCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DeleteActivity", {})
13
13
  .n("SFNClient", "DeleteActivityCommand")
14
- .sc(DeleteActivity)
14
+ .sc(DeleteActivity$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteStateMachineAlias } from "../schemas/schemas_0";
4
+ import { DeleteStateMachineAlias$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteStateMachineAliasCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteStateMachineAliasCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DeleteStateMachineAlias", {})
13
13
  .n("SFNClient", "DeleteStateMachineAliasCommand")
14
- .sc(DeleteStateMachineAlias)
14
+ .sc(DeleteStateMachineAlias$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteStateMachine } from "../schemas/schemas_0";
4
+ import { DeleteStateMachine$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteStateMachineCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteStateMachineCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DeleteStateMachine", {})
13
13
  .n("SFNClient", "DeleteStateMachineCommand")
14
- .sc(DeleteStateMachine)
14
+ .sc(DeleteStateMachine$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteStateMachineVersion } from "../schemas/schemas_0";
4
+ import { DeleteStateMachineVersion$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteStateMachineVersionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteStateMachineVersionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DeleteStateMachineVersion", {})
13
13
  .n("SFNClient", "DeleteStateMachineVersionCommand")
14
- .sc(DeleteStateMachineVersion)
14
+ .sc(DeleteStateMachineVersion$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeActivity } from "../schemas/schemas_0";
4
+ import { DescribeActivity$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeActivityCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeActivityCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DescribeActivity", {})
13
13
  .n("SFNClient", "DescribeActivityCommand")
14
- .sc(DescribeActivity)
14
+ .sc(DescribeActivity$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeExecution } from "../schemas/schemas_0";
4
+ import { DescribeExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeExecutionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DescribeExecution", {})
13
13
  .n("SFNClient", "DescribeExecutionCommand")
14
- .sc(DescribeExecution)
14
+ .sc(DescribeExecution$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeMapRun } from "../schemas/schemas_0";
4
+ import { DescribeMapRun$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeMapRunCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeMapRunCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DescribeMapRun", {})
13
13
  .n("SFNClient", "DescribeMapRunCommand")
14
- .sc(DescribeMapRun)
14
+ .sc(DescribeMapRun$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeStateMachineAlias } from "../schemas/schemas_0";
4
+ import { DescribeStateMachineAlias$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeStateMachineAliasCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeStateMachineAliasCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DescribeStateMachineAlias", {})
13
13
  .n("SFNClient", "DescribeStateMachineAliasCommand")
14
- .sc(DescribeStateMachineAlias)
14
+ .sc(DescribeStateMachineAlias$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeStateMachine } from "../schemas/schemas_0";
4
+ import { DescribeStateMachine$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeStateMachineCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeStateMachineCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DescribeStateMachine", {})
13
13
  .n("SFNClient", "DescribeStateMachineCommand")
14
- .sc(DescribeStateMachine)
14
+ .sc(DescribeStateMachine$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeStateMachineForExecution } from "../schemas/schemas_0";
4
+ import { DescribeStateMachineForExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeStateMachineForExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeStateMachineForExecutionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "DescribeStateMachineForExecution", {})
13
13
  .n("SFNClient", "DescribeStateMachineForExecutionCommand")
14
- .sc(DescribeStateMachineForExecution)
14
+ .sc(DescribeStateMachineForExecution$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetActivityTask } from "../schemas/schemas_0";
4
+ import { GetActivityTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetActivityTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetActivityTaskCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "GetActivityTask", {})
13
13
  .n("SFNClient", "GetActivityTaskCommand")
14
- .sc(GetActivityTask)
14
+ .sc(GetActivityTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetExecutionHistory } from "../schemas/schemas_0";
4
+ import { GetExecutionHistory$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetExecutionHistoryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetExecutionHistoryCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "GetExecutionHistory", {})
13
13
  .n("SFNClient", "GetExecutionHistoryCommand")
14
- .sc(GetExecutionHistory)
14
+ .sc(GetExecutionHistory$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListActivities } from "../schemas/schemas_0";
4
+ import { ListActivities$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListActivitiesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListActivitiesCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "ListActivities", {})
13
13
  .n("SFNClient", "ListActivitiesCommand")
14
- .sc(ListActivities)
14
+ .sc(ListActivities$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListExecutions } from "../schemas/schemas_0";
4
+ import { ListExecutions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListExecutionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListExecutionsCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "ListExecutions", {})
13
13
  .n("SFNClient", "ListExecutionsCommand")
14
- .sc(ListExecutions)
14
+ .sc(ListExecutions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMapRuns } from "../schemas/schemas_0";
4
+ import { ListMapRuns$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMapRunsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMapRunsCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "ListMapRuns", {})
13
13
  .n("SFNClient", "ListMapRunsCommand")
14
- .sc(ListMapRuns)
14
+ .sc(ListMapRuns$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStateMachineAliases } from "../schemas/schemas_0";
4
+ import { ListStateMachineAliases$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStateMachineAliasesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStateMachineAliasesCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "ListStateMachineAliases", {})
13
13
  .n("SFNClient", "ListStateMachineAliasesCommand")
14
- .sc(ListStateMachineAliases)
14
+ .sc(ListStateMachineAliases$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStateMachineVersions } from "../schemas/schemas_0";
4
+ import { ListStateMachineVersions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStateMachineVersionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStateMachineVersionsCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "ListStateMachineVersions", {})
13
13
  .n("SFNClient", "ListStateMachineVersionsCommand")
14
- .sc(ListStateMachineVersions)
14
+ .sc(ListStateMachineVersions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListStateMachines } from "../schemas/schemas_0";
4
+ import { ListStateMachines$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListStateMachinesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListStateMachinesCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "ListStateMachines", {})
13
13
  .n("SFNClient", "ListStateMachinesCommand")
14
- .sc(ListStateMachines)
14
+ .sc(ListStateMachines$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "ListTagsForResource", {})
13
13
  .n("SFNClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PublishStateMachineVersion } from "../schemas/schemas_0";
4
+ import { PublishStateMachineVersion$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PublishStateMachineVersionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PublishStateMachineVersionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "PublishStateMachineVersion", {})
13
13
  .n("SFNClient", "PublishStateMachineVersionCommand")
14
- .sc(PublishStateMachineVersion)
14
+ .sc(PublishStateMachineVersion$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RedriveExecution } from "../schemas/schemas_0";
4
+ import { RedriveExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RedriveExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RedriveExecutionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "RedriveExecution", {})
13
13
  .n("SFNClient", "RedriveExecutionCommand")
14
- .sc(RedriveExecution)
14
+ .sc(RedriveExecution$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SendTaskFailure } from "../schemas/schemas_0";
4
+ import { SendTaskFailure$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SendTaskFailureCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SendTaskFailureCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "SendTaskFailure", {})
13
13
  .n("SFNClient", "SendTaskFailureCommand")
14
- .sc(SendTaskFailure)
14
+ .sc(SendTaskFailure$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SendTaskHeartbeat } from "../schemas/schemas_0";
4
+ import { SendTaskHeartbeat$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SendTaskHeartbeatCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SendTaskHeartbeatCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "SendTaskHeartbeat", {})
13
13
  .n("SFNClient", "SendTaskHeartbeatCommand")
14
- .sc(SendTaskHeartbeat)
14
+ .sc(SendTaskHeartbeat$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SendTaskSuccess } from "../schemas/schemas_0";
4
+ import { SendTaskSuccess$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SendTaskSuccessCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SendTaskSuccessCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "SendTaskSuccess", {})
13
13
  .n("SFNClient", "SendTaskSuccessCommand")
14
- .sc(SendTaskSuccess)
14
+ .sc(SendTaskSuccess$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartExecution } from "../schemas/schemas_0";
4
+ import { StartExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartExecutionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "StartExecution", {})
13
13
  .n("SFNClient", "StartExecutionCommand")
14
- .sc(StartExecution)
14
+ .sc(StartExecution$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartSyncExecution } from "../schemas/schemas_0";
4
+ import { StartSyncExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartSyncExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartSyncExecutionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "StartSyncExecution", {})
13
13
  .n("SFNClient", "StartSyncExecutionCommand")
14
- .sc(StartSyncExecution)
14
+ .sc(StartSyncExecution$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopExecution } from "../schemas/schemas_0";
4
+ import { StopExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopExecutionCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "StopExecution", {})
13
13
  .n("SFNClient", "StopExecutionCommand")
14
- .sc(StopExecution)
14
+ .sc(StopExecution$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "TagResource", {})
13
13
  .n("SFNClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TestState } from "../schemas/schemas_0";
4
+ import { TestState$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TestStateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TestStateCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "TestState", {})
13
13
  .n("SFNClient", "TestStateCommand")
14
- .sc(TestState)
14
+ .sc(TestState$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "UntagResource", {})
13
13
  .n("SFNClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateMapRun } from "../schemas/schemas_0";
4
+ import { UpdateMapRun$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateMapRunCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateMapRunCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "UpdateMapRun", {})
13
13
  .n("SFNClient", "UpdateMapRunCommand")
14
- .sc(UpdateMapRun)
14
+ .sc(UpdateMapRun$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateStateMachineAlias } from "../schemas/schemas_0";
4
+ import { UpdateStateMachineAlias$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateStateMachineAliasCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateStateMachineAliasCommand extends $Command
11
11
  })
12
12
  .s("AWSStepFunctions", "UpdateStateMachineAlias", {})
13
13
  .n("SFNClient", "UpdateStateMachineAliasCommand")
14
- .sc(UpdateStateMachineAlias)
14
+ .sc(UpdateStateMachineAlias$)
15
15
  .build() {
16
16
  }