@aws-sdk/client-sfn 3.489.0 → 3.495.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 (55) hide show
  1. package/dist-cjs/SFN.js +1 -83
  2. package/dist-cjs/SFNClient.js +1 -43
  3. package/dist-cjs/commands/CreateActivityCommand.js +1 -28
  4. package/dist-cjs/commands/CreateStateMachineAliasCommand.js +1 -29
  5. package/dist-cjs/commands/CreateStateMachineCommand.js +1 -29
  6. package/dist-cjs/commands/DeleteActivityCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteStateMachineAliasCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteStateMachineCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteStateMachineVersionCommand.js +1 -28
  10. package/dist-cjs/commands/DescribeActivityCommand.js +1 -28
  11. package/dist-cjs/commands/DescribeExecutionCommand.js +1 -29
  12. package/dist-cjs/commands/DescribeMapRunCommand.js +1 -28
  13. package/dist-cjs/commands/DescribeStateMachineAliasCommand.js +1 -29
  14. package/dist-cjs/commands/DescribeStateMachineCommand.js +1 -29
  15. package/dist-cjs/commands/DescribeStateMachineForExecutionCommand.js +1 -29
  16. package/dist-cjs/commands/GetActivityTaskCommand.js +1 -29
  17. package/dist-cjs/commands/GetExecutionHistoryCommand.js +1 -29
  18. package/dist-cjs/commands/ListActivitiesCommand.js +1 -28
  19. package/dist-cjs/commands/ListExecutionsCommand.js +1 -28
  20. package/dist-cjs/commands/ListMapRunsCommand.js +1 -28
  21. package/dist-cjs/commands/ListStateMachineAliasesCommand.js +1 -28
  22. package/dist-cjs/commands/ListStateMachineVersionsCommand.js +1 -28
  23. package/dist-cjs/commands/ListStateMachinesCommand.js +1 -28
  24. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  25. package/dist-cjs/commands/PublishStateMachineVersionCommand.js +1 -29
  26. package/dist-cjs/commands/RedriveExecutionCommand.js +1 -28
  27. package/dist-cjs/commands/SendTaskFailureCommand.js +1 -29
  28. package/dist-cjs/commands/SendTaskHeartbeatCommand.js +1 -28
  29. package/dist-cjs/commands/SendTaskSuccessCommand.js +1 -29
  30. package/dist-cjs/commands/StartExecutionCommand.js +1 -29
  31. package/dist-cjs/commands/StartSyncExecutionCommand.js +1 -29
  32. package/dist-cjs/commands/StopExecutionCommand.js +1 -29
  33. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  34. package/dist-cjs/commands/TestStateCommand.js +1 -29
  35. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  36. package/dist-cjs/commands/UpdateMapRunCommand.js +1 -28
  37. package/dist-cjs/commands/UpdateStateMachineAliasCommand.js +1 -29
  38. package/dist-cjs/commands/UpdateStateMachineCommand.js +1 -29
  39. package/dist-cjs/commands/index.js +1 -39
  40. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  41. package/dist-cjs/extensionConfiguration.js +1 -2
  42. package/dist-cjs/index.js +4364 -11
  43. package/dist-cjs/models/SFNServiceException.js +1 -12
  44. package/dist-cjs/models/index.js +1 -4
  45. package/dist-cjs/models/models_0.js +1 -843
  46. package/dist-cjs/pagination/GetExecutionHistoryPaginator.js +1 -7
  47. package/dist-cjs/pagination/Interfaces.js +1 -2
  48. package/dist-cjs/pagination/ListActivitiesPaginator.js +1 -7
  49. package/dist-cjs/pagination/ListExecutionsPaginator.js +1 -7
  50. package/dist-cjs/pagination/ListMapRunsPaginator.js +1 -7
  51. package/dist-cjs/pagination/ListStateMachinesPaginator.js +1 -7
  52. package/dist-cjs/pagination/index.js +1 -9
  53. package/dist-cjs/protocols/Aws_json1_0.js +1 -2453
  54. package/dist-cjs/runtimeExtensions.js +1 -22
  55. package/package.json +40 -40
package/dist-cjs/SFN.js CHANGED
@@ -1,83 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SFN = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const CreateActivityCommand_1 = require("./commands/CreateActivityCommand");
6
- const CreateStateMachineAliasCommand_1 = require("./commands/CreateStateMachineAliasCommand");
7
- const CreateStateMachineCommand_1 = require("./commands/CreateStateMachineCommand");
8
- const DeleteActivityCommand_1 = require("./commands/DeleteActivityCommand");
9
- const DeleteStateMachineAliasCommand_1 = require("./commands/DeleteStateMachineAliasCommand");
10
- const DeleteStateMachineCommand_1 = require("./commands/DeleteStateMachineCommand");
11
- const DeleteStateMachineVersionCommand_1 = require("./commands/DeleteStateMachineVersionCommand");
12
- const DescribeActivityCommand_1 = require("./commands/DescribeActivityCommand");
13
- const DescribeExecutionCommand_1 = require("./commands/DescribeExecutionCommand");
14
- const DescribeMapRunCommand_1 = require("./commands/DescribeMapRunCommand");
15
- const DescribeStateMachineAliasCommand_1 = require("./commands/DescribeStateMachineAliasCommand");
16
- const DescribeStateMachineCommand_1 = require("./commands/DescribeStateMachineCommand");
17
- const DescribeStateMachineForExecutionCommand_1 = require("./commands/DescribeStateMachineForExecutionCommand");
18
- const GetActivityTaskCommand_1 = require("./commands/GetActivityTaskCommand");
19
- const GetExecutionHistoryCommand_1 = require("./commands/GetExecutionHistoryCommand");
20
- const ListActivitiesCommand_1 = require("./commands/ListActivitiesCommand");
21
- const ListExecutionsCommand_1 = require("./commands/ListExecutionsCommand");
22
- const ListMapRunsCommand_1 = require("./commands/ListMapRunsCommand");
23
- const ListStateMachineAliasesCommand_1 = require("./commands/ListStateMachineAliasesCommand");
24
- const ListStateMachinesCommand_1 = require("./commands/ListStateMachinesCommand");
25
- const ListStateMachineVersionsCommand_1 = require("./commands/ListStateMachineVersionsCommand");
26
- const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
27
- const PublishStateMachineVersionCommand_1 = require("./commands/PublishStateMachineVersionCommand");
28
- const RedriveExecutionCommand_1 = require("./commands/RedriveExecutionCommand");
29
- const SendTaskFailureCommand_1 = require("./commands/SendTaskFailureCommand");
30
- const SendTaskHeartbeatCommand_1 = require("./commands/SendTaskHeartbeatCommand");
31
- const SendTaskSuccessCommand_1 = require("./commands/SendTaskSuccessCommand");
32
- const StartExecutionCommand_1 = require("./commands/StartExecutionCommand");
33
- const StartSyncExecutionCommand_1 = require("./commands/StartSyncExecutionCommand");
34
- const StopExecutionCommand_1 = require("./commands/StopExecutionCommand");
35
- const TagResourceCommand_1 = require("./commands/TagResourceCommand");
36
- const TestStateCommand_1 = require("./commands/TestStateCommand");
37
- const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
38
- const UpdateMapRunCommand_1 = require("./commands/UpdateMapRunCommand");
39
- const UpdateStateMachineAliasCommand_1 = require("./commands/UpdateStateMachineAliasCommand");
40
- const UpdateStateMachineCommand_1 = require("./commands/UpdateStateMachineCommand");
41
- const SFNClient_1 = require("./SFNClient");
42
- const commands = {
43
- CreateActivityCommand: CreateActivityCommand_1.CreateActivityCommand,
44
- CreateStateMachineCommand: CreateStateMachineCommand_1.CreateStateMachineCommand,
45
- CreateStateMachineAliasCommand: CreateStateMachineAliasCommand_1.CreateStateMachineAliasCommand,
46
- DeleteActivityCommand: DeleteActivityCommand_1.DeleteActivityCommand,
47
- DeleteStateMachineCommand: DeleteStateMachineCommand_1.DeleteStateMachineCommand,
48
- DeleteStateMachineAliasCommand: DeleteStateMachineAliasCommand_1.DeleteStateMachineAliasCommand,
49
- DeleteStateMachineVersionCommand: DeleteStateMachineVersionCommand_1.DeleteStateMachineVersionCommand,
50
- DescribeActivityCommand: DescribeActivityCommand_1.DescribeActivityCommand,
51
- DescribeExecutionCommand: DescribeExecutionCommand_1.DescribeExecutionCommand,
52
- DescribeMapRunCommand: DescribeMapRunCommand_1.DescribeMapRunCommand,
53
- DescribeStateMachineCommand: DescribeStateMachineCommand_1.DescribeStateMachineCommand,
54
- DescribeStateMachineAliasCommand: DescribeStateMachineAliasCommand_1.DescribeStateMachineAliasCommand,
55
- DescribeStateMachineForExecutionCommand: DescribeStateMachineForExecutionCommand_1.DescribeStateMachineForExecutionCommand,
56
- GetActivityTaskCommand: GetActivityTaskCommand_1.GetActivityTaskCommand,
57
- GetExecutionHistoryCommand: GetExecutionHistoryCommand_1.GetExecutionHistoryCommand,
58
- ListActivitiesCommand: ListActivitiesCommand_1.ListActivitiesCommand,
59
- ListExecutionsCommand: ListExecutionsCommand_1.ListExecutionsCommand,
60
- ListMapRunsCommand: ListMapRunsCommand_1.ListMapRunsCommand,
61
- ListStateMachineAliasesCommand: ListStateMachineAliasesCommand_1.ListStateMachineAliasesCommand,
62
- ListStateMachinesCommand: ListStateMachinesCommand_1.ListStateMachinesCommand,
63
- ListStateMachineVersionsCommand: ListStateMachineVersionsCommand_1.ListStateMachineVersionsCommand,
64
- ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
65
- PublishStateMachineVersionCommand: PublishStateMachineVersionCommand_1.PublishStateMachineVersionCommand,
66
- RedriveExecutionCommand: RedriveExecutionCommand_1.RedriveExecutionCommand,
67
- SendTaskFailureCommand: SendTaskFailureCommand_1.SendTaskFailureCommand,
68
- SendTaskHeartbeatCommand: SendTaskHeartbeatCommand_1.SendTaskHeartbeatCommand,
69
- SendTaskSuccessCommand: SendTaskSuccessCommand_1.SendTaskSuccessCommand,
70
- StartExecutionCommand: StartExecutionCommand_1.StartExecutionCommand,
71
- StartSyncExecutionCommand: StartSyncExecutionCommand_1.StartSyncExecutionCommand,
72
- StopExecutionCommand: StopExecutionCommand_1.StopExecutionCommand,
73
- TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
74
- TestStateCommand: TestStateCommand_1.TestStateCommand,
75
- UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
76
- UpdateMapRunCommand: UpdateMapRunCommand_1.UpdateMapRunCommand,
77
- UpdateStateMachineCommand: UpdateStateMachineCommand_1.UpdateStateMachineCommand,
78
- UpdateStateMachineAliasCommand: UpdateStateMachineAliasCommand_1.UpdateStateMachineAliasCommand,
79
- };
80
- class SFN extends SFNClient_1.SFNClient {
81
- }
82
- exports.SFN = SFN;
83
- (0, smithy_client_1.createAggregatedClient)(commands, SFN);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SFNClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class SFNClient extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.SFNClient = SFNClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateActivityCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class CreateActivityCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "CreateActivity", {})
22
- .n("SFNClient", "CreateActivityCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_CreateActivityCommand)
25
- .de(Aws_json1_0_1.de_CreateActivityCommand)
26
- .build() {
27
- }
28
- exports.CreateActivityCommand = CreateActivityCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateStateMachineAliasCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class CreateStateMachineAliasCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "CreateStateMachineAlias", {})
23
- .n("SFNClient", "CreateStateMachineAliasCommand")
24
- .f(models_0_1.CreateStateMachineAliasInputFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_0_1.se_CreateStateMachineAliasCommand)
26
- .de(Aws_json1_0_1.de_CreateStateMachineAliasCommand)
27
- .build() {
28
- }
29
- exports.CreateStateMachineAliasCommand = CreateStateMachineAliasCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateStateMachineCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class CreateStateMachineCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "CreateStateMachine", {})
23
- .n("SFNClient", "CreateStateMachineCommand")
24
- .f(models_0_1.CreateStateMachineInputFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_0_1.se_CreateStateMachineCommand)
26
- .de(Aws_json1_0_1.de_CreateStateMachineCommand)
27
- .build() {
28
- }
29
- exports.CreateStateMachineCommand = CreateStateMachineCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteActivityCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DeleteActivityCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "DeleteActivity", {})
22
- .n("SFNClient", "DeleteActivityCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DeleteActivityCommand)
25
- .de(Aws_json1_0_1.de_DeleteActivityCommand)
26
- .build() {
27
- }
28
- exports.DeleteActivityCommand = DeleteActivityCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteStateMachineAliasCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DeleteStateMachineAliasCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "DeleteStateMachineAlias", {})
22
- .n("SFNClient", "DeleteStateMachineAliasCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DeleteStateMachineAliasCommand)
25
- .de(Aws_json1_0_1.de_DeleteStateMachineAliasCommand)
26
- .build() {
27
- }
28
- exports.DeleteStateMachineAliasCommand = DeleteStateMachineAliasCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteStateMachineCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DeleteStateMachineCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "DeleteStateMachine", {})
22
- .n("SFNClient", "DeleteStateMachineCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DeleteStateMachineCommand)
25
- .de(Aws_json1_0_1.de_DeleteStateMachineCommand)
26
- .build() {
27
- }
28
- exports.DeleteStateMachineCommand = DeleteStateMachineCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteStateMachineVersionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DeleteStateMachineVersionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "DeleteStateMachineVersion", {})
22
- .n("SFNClient", "DeleteStateMachineVersionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DeleteStateMachineVersionCommand)
25
- .de(Aws_json1_0_1.de_DeleteStateMachineVersionCommand)
26
- .build() {
27
- }
28
- exports.DeleteStateMachineVersionCommand = DeleteStateMachineVersionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeActivityCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DescribeActivityCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "DescribeActivity", {})
22
- .n("SFNClient", "DescribeActivityCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DescribeActivityCommand)
25
- .de(Aws_json1_0_1.de_DescribeActivityCommand)
26
- .build() {
27
- }
28
- exports.DescribeActivityCommand = DescribeActivityCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeExecutionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class DescribeExecutionCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "DescribeExecution", {})
23
- .n("SFNClient", "DescribeExecutionCommand")
24
- .f(void 0, models_0_1.DescribeExecutionOutputFilterSensitiveLog)
25
- .ser(Aws_json1_0_1.se_DescribeExecutionCommand)
26
- .de(Aws_json1_0_1.de_DescribeExecutionCommand)
27
- .build() {
28
- }
29
- exports.DescribeExecutionCommand = DescribeExecutionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeMapRunCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DescribeMapRunCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "DescribeMapRun", {})
22
- .n("SFNClient", "DescribeMapRunCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DescribeMapRunCommand)
25
- .de(Aws_json1_0_1.de_DescribeMapRunCommand)
26
- .build() {
27
- }
28
- exports.DescribeMapRunCommand = DescribeMapRunCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeStateMachineAliasCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class DescribeStateMachineAliasCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "DescribeStateMachineAlias", {})
23
- .n("SFNClient", "DescribeStateMachineAliasCommand")
24
- .f(void 0, models_0_1.DescribeStateMachineAliasOutputFilterSensitiveLog)
25
- .ser(Aws_json1_0_1.se_DescribeStateMachineAliasCommand)
26
- .de(Aws_json1_0_1.de_DescribeStateMachineAliasCommand)
27
- .build() {
28
- }
29
- exports.DescribeStateMachineAliasCommand = DescribeStateMachineAliasCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeStateMachineCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class DescribeStateMachineCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "DescribeStateMachine", {})
23
- .n("SFNClient", "DescribeStateMachineCommand")
24
- .f(void 0, models_0_1.DescribeStateMachineOutputFilterSensitiveLog)
25
- .ser(Aws_json1_0_1.se_DescribeStateMachineCommand)
26
- .de(Aws_json1_0_1.de_DescribeStateMachineCommand)
27
- .build() {
28
- }
29
- exports.DescribeStateMachineCommand = DescribeStateMachineCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeStateMachineForExecutionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class DescribeStateMachineForExecutionCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "DescribeStateMachineForExecution", {})
23
- .n("SFNClient", "DescribeStateMachineForExecutionCommand")
24
- .f(void 0, models_0_1.DescribeStateMachineForExecutionOutputFilterSensitiveLog)
25
- .ser(Aws_json1_0_1.se_DescribeStateMachineForExecutionCommand)
26
- .de(Aws_json1_0_1.de_DescribeStateMachineForExecutionCommand)
27
- .build() {
28
- }
29
- exports.DescribeStateMachineForExecutionCommand = DescribeStateMachineForExecutionCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetActivityTaskCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class GetActivityTaskCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "GetActivityTask", {})
23
- .n("SFNClient", "GetActivityTaskCommand")
24
- .f(void 0, models_0_1.GetActivityTaskOutputFilterSensitiveLog)
25
- .ser(Aws_json1_0_1.se_GetActivityTaskCommand)
26
- .de(Aws_json1_0_1.de_GetActivityTaskCommand)
27
- .build() {
28
- }
29
- exports.GetActivityTaskCommand = GetActivityTaskCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetExecutionHistoryCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
11
- class GetExecutionHistoryCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSStepFunctions", "GetExecutionHistory", {})
23
- .n("SFNClient", "GetExecutionHistoryCommand")
24
- .f(void 0, models_0_1.GetExecutionHistoryOutputFilterSensitiveLog)
25
- .ser(Aws_json1_0_1.se_GetExecutionHistoryCommand)
26
- .de(Aws_json1_0_1.de_GetExecutionHistoryCommand)
27
- .build() {
28
- }
29
- exports.GetExecutionHistoryCommand = GetExecutionHistoryCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListActivitiesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class ListActivitiesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSStepFunctions", "ListActivities", {})
22
- .n("SFNClient", "ListActivitiesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListActivitiesCommand)
25
- .de(Aws_json1_0_1.de_ListActivitiesCommand)
26
- .build() {
27
- }
28
- exports.ListActivitiesCommand = ListActivitiesCommand;
1
+ module.exports = require("../index.js");