@aws-sdk/client-sfn 3.1019.0 → 3.1020.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-es/SFN.js +2 -2
- package/dist-types/SFN.d.ts +37 -37
- package/dist-types/SFNClient.d.ts +40 -40
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/pagination/GetExecutionHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListActivitiesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMapRunsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListStateMachinesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/SFNClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/package.json +13 -13
package/dist-es/SFN.js
CHANGED
|
@@ -16,7 +16,7 @@ import { GetActivityTaskCommand, } from "./commands/GetActivityTaskCommand";
|
|
|
16
16
|
import { GetExecutionHistoryCommand, } from "./commands/GetExecutionHistoryCommand";
|
|
17
17
|
import { ListActivitiesCommand, } from "./commands/ListActivitiesCommand";
|
|
18
18
|
import { ListExecutionsCommand, } from "./commands/ListExecutionsCommand";
|
|
19
|
-
import { ListMapRunsCommand } from "./commands/ListMapRunsCommand";
|
|
19
|
+
import { ListMapRunsCommand, } from "./commands/ListMapRunsCommand";
|
|
20
20
|
import { ListStateMachineAliasesCommand, } from "./commands/ListStateMachineAliasesCommand";
|
|
21
21
|
import { ListStateMachinesCommand, } from "./commands/ListStateMachinesCommand";
|
|
22
22
|
import { ListStateMachineVersionsCommand, } from "./commands/ListStateMachineVersionsCommand";
|
|
@@ -29,7 +29,7 @@ import { SendTaskSuccessCommand, } from "./commands/SendTaskSuccessCommand";
|
|
|
29
29
|
import { StartExecutionCommand, } from "./commands/StartExecutionCommand";
|
|
30
30
|
import { StartSyncExecutionCommand, } from "./commands/StartSyncExecutionCommand";
|
|
31
31
|
import { StopExecutionCommand, } from "./commands/StopExecutionCommand";
|
|
32
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
32
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
33
33
|
import { TestStateCommand } from "./commands/TestStateCommand";
|
|
34
34
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
35
35
|
import { UpdateMapRunCommand, } from "./commands/UpdateMapRunCommand";
|
package/dist-types/SFN.d.ts
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { CreateActivityCommandInput, CreateActivityCommandOutput } from "./commands/CreateActivityCommand";
|
|
3
|
-
import { CreateStateMachineAliasCommandInput, CreateStateMachineAliasCommandOutput } from "./commands/CreateStateMachineAliasCommand";
|
|
4
|
-
import { CreateStateMachineCommandInput, CreateStateMachineCommandOutput } from "./commands/CreateStateMachineCommand";
|
|
5
|
-
import { DeleteActivityCommandInput, DeleteActivityCommandOutput } from "./commands/DeleteActivityCommand";
|
|
6
|
-
import { DeleteStateMachineAliasCommandInput, DeleteStateMachineAliasCommandOutput } from "./commands/DeleteStateMachineAliasCommand";
|
|
7
|
-
import { DeleteStateMachineCommandInput, DeleteStateMachineCommandOutput } from "./commands/DeleteStateMachineCommand";
|
|
8
|
-
import { DeleteStateMachineVersionCommandInput, DeleteStateMachineVersionCommandOutput } from "./commands/DeleteStateMachineVersionCommand";
|
|
9
|
-
import { DescribeActivityCommandInput, DescribeActivityCommandOutput } from "./commands/DescribeActivityCommand";
|
|
10
|
-
import { DescribeExecutionCommandInput, DescribeExecutionCommandOutput } from "./commands/DescribeExecutionCommand";
|
|
11
|
-
import { DescribeMapRunCommandInput, DescribeMapRunCommandOutput } from "./commands/DescribeMapRunCommand";
|
|
12
|
-
import { DescribeStateMachineAliasCommandInput, DescribeStateMachineAliasCommandOutput } from "./commands/DescribeStateMachineAliasCommand";
|
|
13
|
-
import { DescribeStateMachineCommandInput, DescribeStateMachineCommandOutput } from "./commands/DescribeStateMachineCommand";
|
|
14
|
-
import { DescribeStateMachineForExecutionCommandInput, DescribeStateMachineForExecutionCommandOutput } from "./commands/DescribeStateMachineForExecutionCommand";
|
|
15
|
-
import { GetActivityTaskCommandInput, GetActivityTaskCommandOutput } from "./commands/GetActivityTaskCommand";
|
|
16
|
-
import { GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput } from "./commands/GetExecutionHistoryCommand";
|
|
17
|
-
import { ListActivitiesCommandInput, ListActivitiesCommandOutput } from "./commands/ListActivitiesCommand";
|
|
18
|
-
import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
|
|
19
|
-
import { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "./commands/ListMapRunsCommand";
|
|
20
|
-
import { ListStateMachineAliasesCommandInput, ListStateMachineAliasesCommandOutput } from "./commands/ListStateMachineAliasesCommand";
|
|
21
|
-
import { ListStateMachinesCommandInput, ListStateMachinesCommandOutput } from "./commands/ListStateMachinesCommand";
|
|
22
|
-
import { ListStateMachineVersionsCommandInput, ListStateMachineVersionsCommandOutput } from "./commands/ListStateMachineVersionsCommand";
|
|
23
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
-
import { PublishStateMachineVersionCommandInput, PublishStateMachineVersionCommandOutput } from "./commands/PublishStateMachineVersionCommand";
|
|
25
|
-
import { RedriveExecutionCommandInput, RedriveExecutionCommandOutput } from "./commands/RedriveExecutionCommand";
|
|
26
|
-
import { SendTaskFailureCommandInput, SendTaskFailureCommandOutput } from "./commands/SendTaskFailureCommand";
|
|
27
|
-
import { SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput } from "./commands/SendTaskHeartbeatCommand";
|
|
28
|
-
import { SendTaskSuccessCommandInput, SendTaskSuccessCommandOutput } from "./commands/SendTaskSuccessCommand";
|
|
29
|
-
import { StartExecutionCommandInput, StartExecutionCommandOutput } from "./commands/StartExecutionCommand";
|
|
30
|
-
import { StartSyncExecutionCommandInput, StartSyncExecutionCommandOutput } from "./commands/StartSyncExecutionCommand";
|
|
31
|
-
import { StopExecutionCommandInput, StopExecutionCommandOutput } from "./commands/StopExecutionCommand";
|
|
32
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
33
|
-
import { TestStateCommandInput, TestStateCommandOutput } from "./commands/TestStateCommand";
|
|
34
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
35
|
-
import { UpdateMapRunCommandInput, UpdateMapRunCommandOutput } from "./commands/UpdateMapRunCommand";
|
|
36
|
-
import { UpdateStateMachineAliasCommandInput, UpdateStateMachineAliasCommandOutput } from "./commands/UpdateStateMachineAliasCommand";
|
|
37
|
-
import { UpdateStateMachineCommandInput, UpdateStateMachineCommandOutput } from "./commands/UpdateStateMachineCommand";
|
|
38
|
-
import { ValidateStateMachineDefinitionCommandInput, ValidateStateMachineDefinitionCommandOutput } from "./commands/ValidateStateMachineDefinitionCommand";
|
|
2
|
+
import { type CreateActivityCommandInput, type CreateActivityCommandOutput } from "./commands/CreateActivityCommand";
|
|
3
|
+
import { type CreateStateMachineAliasCommandInput, type CreateStateMachineAliasCommandOutput } from "./commands/CreateStateMachineAliasCommand";
|
|
4
|
+
import { type CreateStateMachineCommandInput, type CreateStateMachineCommandOutput } from "./commands/CreateStateMachineCommand";
|
|
5
|
+
import { type DeleteActivityCommandInput, type DeleteActivityCommandOutput } from "./commands/DeleteActivityCommand";
|
|
6
|
+
import { type DeleteStateMachineAliasCommandInput, type DeleteStateMachineAliasCommandOutput } from "./commands/DeleteStateMachineAliasCommand";
|
|
7
|
+
import { type DeleteStateMachineCommandInput, type DeleteStateMachineCommandOutput } from "./commands/DeleteStateMachineCommand";
|
|
8
|
+
import { type DeleteStateMachineVersionCommandInput, type DeleteStateMachineVersionCommandOutput } from "./commands/DeleteStateMachineVersionCommand";
|
|
9
|
+
import { type DescribeActivityCommandInput, type DescribeActivityCommandOutput } from "./commands/DescribeActivityCommand";
|
|
10
|
+
import { type DescribeExecutionCommandInput, type DescribeExecutionCommandOutput } from "./commands/DescribeExecutionCommand";
|
|
11
|
+
import { type DescribeMapRunCommandInput, type DescribeMapRunCommandOutput } from "./commands/DescribeMapRunCommand";
|
|
12
|
+
import { type DescribeStateMachineAliasCommandInput, type DescribeStateMachineAliasCommandOutput } from "./commands/DescribeStateMachineAliasCommand";
|
|
13
|
+
import { type DescribeStateMachineCommandInput, type DescribeStateMachineCommandOutput } from "./commands/DescribeStateMachineCommand";
|
|
14
|
+
import { type DescribeStateMachineForExecutionCommandInput, type DescribeStateMachineForExecutionCommandOutput } from "./commands/DescribeStateMachineForExecutionCommand";
|
|
15
|
+
import { type GetActivityTaskCommandInput, type GetActivityTaskCommandOutput } from "./commands/GetActivityTaskCommand";
|
|
16
|
+
import { type GetExecutionHistoryCommandInput, type GetExecutionHistoryCommandOutput } from "./commands/GetExecutionHistoryCommand";
|
|
17
|
+
import { type ListActivitiesCommandInput, type ListActivitiesCommandOutput } from "./commands/ListActivitiesCommand";
|
|
18
|
+
import { type ListExecutionsCommandInput, type ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
|
|
19
|
+
import { type ListMapRunsCommandInput, type ListMapRunsCommandOutput } from "./commands/ListMapRunsCommand";
|
|
20
|
+
import { type ListStateMachineAliasesCommandInput, type ListStateMachineAliasesCommandOutput } from "./commands/ListStateMachineAliasesCommand";
|
|
21
|
+
import { type ListStateMachinesCommandInput, type ListStateMachinesCommandOutput } from "./commands/ListStateMachinesCommand";
|
|
22
|
+
import { type ListStateMachineVersionsCommandInput, type ListStateMachineVersionsCommandOutput } from "./commands/ListStateMachineVersionsCommand";
|
|
23
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
+
import { type PublishStateMachineVersionCommandInput, type PublishStateMachineVersionCommandOutput } from "./commands/PublishStateMachineVersionCommand";
|
|
25
|
+
import { type RedriveExecutionCommandInput, type RedriveExecutionCommandOutput } from "./commands/RedriveExecutionCommand";
|
|
26
|
+
import { type SendTaskFailureCommandInput, type SendTaskFailureCommandOutput } from "./commands/SendTaskFailureCommand";
|
|
27
|
+
import { type SendTaskHeartbeatCommandInput, type SendTaskHeartbeatCommandOutput } from "./commands/SendTaskHeartbeatCommand";
|
|
28
|
+
import { type SendTaskSuccessCommandInput, type SendTaskSuccessCommandOutput } from "./commands/SendTaskSuccessCommand";
|
|
29
|
+
import { type StartExecutionCommandInput, type StartExecutionCommandOutput } from "./commands/StartExecutionCommand";
|
|
30
|
+
import { type StartSyncExecutionCommandInput, type StartSyncExecutionCommandOutput } from "./commands/StartSyncExecutionCommand";
|
|
31
|
+
import { type StopExecutionCommandInput, type StopExecutionCommandOutput } from "./commands/StopExecutionCommand";
|
|
32
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
33
|
+
import { type TestStateCommandInput, type TestStateCommandOutput } from "./commands/TestStateCommand";
|
|
34
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
35
|
+
import { type UpdateMapRunCommandInput, type UpdateMapRunCommandOutput } from "./commands/UpdateMapRunCommand";
|
|
36
|
+
import { type UpdateStateMachineAliasCommandInput, type UpdateStateMachineAliasCommandOutput } from "./commands/UpdateStateMachineAliasCommand";
|
|
37
|
+
import { type UpdateStateMachineCommandInput, type UpdateStateMachineCommandOutput } from "./commands/UpdateStateMachineCommand";
|
|
38
|
+
import { type ValidateStateMachineDefinitionCommandInput, type ValidateStateMachineDefinitionCommandOutput } from "./commands/ValidateStateMachineDefinitionCommand";
|
|
39
39
|
import { SFNClient } from "./SFNClient";
|
|
40
40
|
export interface SFN {
|
|
41
41
|
/**
|
|
@@ -5,46 +5,46 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { CreateActivityCommandInput, CreateActivityCommandOutput } from "./commands/CreateActivityCommand";
|
|
11
|
-
import { CreateStateMachineAliasCommandInput, CreateStateMachineAliasCommandOutput } from "./commands/CreateStateMachineAliasCommand";
|
|
12
|
-
import { CreateStateMachineCommandInput, CreateStateMachineCommandOutput } from "./commands/CreateStateMachineCommand";
|
|
13
|
-
import { DeleteActivityCommandInput, DeleteActivityCommandOutput } from "./commands/DeleteActivityCommand";
|
|
14
|
-
import { DeleteStateMachineAliasCommandInput, DeleteStateMachineAliasCommandOutput } from "./commands/DeleteStateMachineAliasCommand";
|
|
15
|
-
import { DeleteStateMachineCommandInput, DeleteStateMachineCommandOutput } from "./commands/DeleteStateMachineCommand";
|
|
16
|
-
import { DeleteStateMachineVersionCommandInput, DeleteStateMachineVersionCommandOutput } from "./commands/DeleteStateMachineVersionCommand";
|
|
17
|
-
import { DescribeActivityCommandInput, DescribeActivityCommandOutput } from "./commands/DescribeActivityCommand";
|
|
18
|
-
import { DescribeExecutionCommandInput, DescribeExecutionCommandOutput } from "./commands/DescribeExecutionCommand";
|
|
19
|
-
import { DescribeMapRunCommandInput, DescribeMapRunCommandOutput } from "./commands/DescribeMapRunCommand";
|
|
20
|
-
import { DescribeStateMachineAliasCommandInput, DescribeStateMachineAliasCommandOutput } from "./commands/DescribeStateMachineAliasCommand";
|
|
21
|
-
import { DescribeStateMachineCommandInput, DescribeStateMachineCommandOutput } from "./commands/DescribeStateMachineCommand";
|
|
22
|
-
import { DescribeStateMachineForExecutionCommandInput, DescribeStateMachineForExecutionCommandOutput } from "./commands/DescribeStateMachineForExecutionCommand";
|
|
23
|
-
import { GetActivityTaskCommandInput, GetActivityTaskCommandOutput } from "./commands/GetActivityTaskCommand";
|
|
24
|
-
import { GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput } from "./commands/GetExecutionHistoryCommand";
|
|
25
|
-
import { ListActivitiesCommandInput, ListActivitiesCommandOutput } from "./commands/ListActivitiesCommand";
|
|
26
|
-
import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
|
|
27
|
-
import { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "./commands/ListMapRunsCommand";
|
|
28
|
-
import { ListStateMachineAliasesCommandInput, ListStateMachineAliasesCommandOutput } from "./commands/ListStateMachineAliasesCommand";
|
|
29
|
-
import { ListStateMachinesCommandInput, ListStateMachinesCommandOutput } from "./commands/ListStateMachinesCommand";
|
|
30
|
-
import { ListStateMachineVersionsCommandInput, ListStateMachineVersionsCommandOutput } from "./commands/ListStateMachineVersionsCommand";
|
|
31
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
32
|
-
import { PublishStateMachineVersionCommandInput, PublishStateMachineVersionCommandOutput } from "./commands/PublishStateMachineVersionCommand";
|
|
33
|
-
import { RedriveExecutionCommandInput, RedriveExecutionCommandOutput } from "./commands/RedriveExecutionCommand";
|
|
34
|
-
import { SendTaskFailureCommandInput, SendTaskFailureCommandOutput } from "./commands/SendTaskFailureCommand";
|
|
35
|
-
import { SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput } from "./commands/SendTaskHeartbeatCommand";
|
|
36
|
-
import { SendTaskSuccessCommandInput, SendTaskSuccessCommandOutput } from "./commands/SendTaskSuccessCommand";
|
|
37
|
-
import { StartExecutionCommandInput, StartExecutionCommandOutput } from "./commands/StartExecutionCommand";
|
|
38
|
-
import { StartSyncExecutionCommandInput, StartSyncExecutionCommandOutput } from "./commands/StartSyncExecutionCommand";
|
|
39
|
-
import { StopExecutionCommandInput, StopExecutionCommandOutput } from "./commands/StopExecutionCommand";
|
|
40
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
41
|
-
import { TestStateCommandInput, TestStateCommandOutput } from "./commands/TestStateCommand";
|
|
42
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
43
|
-
import { UpdateMapRunCommandInput, UpdateMapRunCommandOutput } from "./commands/UpdateMapRunCommand";
|
|
44
|
-
import { UpdateStateMachineAliasCommandInput, UpdateStateMachineAliasCommandOutput } from "./commands/UpdateStateMachineAliasCommand";
|
|
45
|
-
import { UpdateStateMachineCommandInput, UpdateStateMachineCommandOutput } from "./commands/UpdateStateMachineCommand";
|
|
46
|
-
import { ValidateStateMachineDefinitionCommandInput, ValidateStateMachineDefinitionCommandOutput } from "./commands/ValidateStateMachineDefinitionCommand";
|
|
47
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { CreateActivityCommandInput, CreateActivityCommandOutput } from "./commands/CreateActivityCommand";
|
|
11
|
+
import type { CreateStateMachineAliasCommandInput, CreateStateMachineAliasCommandOutput } from "./commands/CreateStateMachineAliasCommand";
|
|
12
|
+
import type { CreateStateMachineCommandInput, CreateStateMachineCommandOutput } from "./commands/CreateStateMachineCommand";
|
|
13
|
+
import type { DeleteActivityCommandInput, DeleteActivityCommandOutput } from "./commands/DeleteActivityCommand";
|
|
14
|
+
import type { DeleteStateMachineAliasCommandInput, DeleteStateMachineAliasCommandOutput } from "./commands/DeleteStateMachineAliasCommand";
|
|
15
|
+
import type { DeleteStateMachineCommandInput, DeleteStateMachineCommandOutput } from "./commands/DeleteStateMachineCommand";
|
|
16
|
+
import type { DeleteStateMachineVersionCommandInput, DeleteStateMachineVersionCommandOutput } from "./commands/DeleteStateMachineVersionCommand";
|
|
17
|
+
import type { DescribeActivityCommandInput, DescribeActivityCommandOutput } from "./commands/DescribeActivityCommand";
|
|
18
|
+
import type { DescribeExecutionCommandInput, DescribeExecutionCommandOutput } from "./commands/DescribeExecutionCommand";
|
|
19
|
+
import type { DescribeMapRunCommandInput, DescribeMapRunCommandOutput } from "./commands/DescribeMapRunCommand";
|
|
20
|
+
import type { DescribeStateMachineAliasCommandInput, DescribeStateMachineAliasCommandOutput } from "./commands/DescribeStateMachineAliasCommand";
|
|
21
|
+
import type { DescribeStateMachineCommandInput, DescribeStateMachineCommandOutput } from "./commands/DescribeStateMachineCommand";
|
|
22
|
+
import type { DescribeStateMachineForExecutionCommandInput, DescribeStateMachineForExecutionCommandOutput } from "./commands/DescribeStateMachineForExecutionCommand";
|
|
23
|
+
import type { GetActivityTaskCommandInput, GetActivityTaskCommandOutput } from "./commands/GetActivityTaskCommand";
|
|
24
|
+
import type { GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput } from "./commands/GetExecutionHistoryCommand";
|
|
25
|
+
import type { ListActivitiesCommandInput, ListActivitiesCommandOutput } from "./commands/ListActivitiesCommand";
|
|
26
|
+
import type { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
|
|
27
|
+
import type { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "./commands/ListMapRunsCommand";
|
|
28
|
+
import type { ListStateMachineAliasesCommandInput, ListStateMachineAliasesCommandOutput } from "./commands/ListStateMachineAliasesCommand";
|
|
29
|
+
import type { ListStateMachinesCommandInput, ListStateMachinesCommandOutput } from "./commands/ListStateMachinesCommand";
|
|
30
|
+
import type { ListStateMachineVersionsCommandInput, ListStateMachineVersionsCommandOutput } from "./commands/ListStateMachineVersionsCommand";
|
|
31
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
32
|
+
import type { PublishStateMachineVersionCommandInput, PublishStateMachineVersionCommandOutput } from "./commands/PublishStateMachineVersionCommand";
|
|
33
|
+
import type { RedriveExecutionCommandInput, RedriveExecutionCommandOutput } from "./commands/RedriveExecutionCommand";
|
|
34
|
+
import type { SendTaskFailureCommandInput, SendTaskFailureCommandOutput } from "./commands/SendTaskFailureCommand";
|
|
35
|
+
import type { SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput } from "./commands/SendTaskHeartbeatCommand";
|
|
36
|
+
import type { SendTaskSuccessCommandInput, SendTaskSuccessCommandOutput } from "./commands/SendTaskSuccessCommand";
|
|
37
|
+
import type { StartExecutionCommandInput, StartExecutionCommandOutput } from "./commands/StartExecutionCommand";
|
|
38
|
+
import type { StartSyncExecutionCommandInput, StartSyncExecutionCommandOutput } from "./commands/StartSyncExecutionCommand";
|
|
39
|
+
import type { StopExecutionCommandInput, StopExecutionCommandOutput } from "./commands/StopExecutionCommand";
|
|
40
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
41
|
+
import type { TestStateCommandInput, TestStateCommandOutput } from "./commands/TestStateCommand";
|
|
42
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
43
|
+
import type { UpdateMapRunCommandInput, UpdateMapRunCommandOutput } from "./commands/UpdateMapRunCommand";
|
|
44
|
+
import type { UpdateStateMachineAliasCommandInput, UpdateStateMachineAliasCommandOutput } from "./commands/UpdateStateMachineAliasCommand";
|
|
45
|
+
import type { UpdateStateMachineCommandInput, UpdateStateMachineCommandOutput } from "./commands/UpdateStateMachineCommand";
|
|
46
|
+
import type { ValidateStateMachineDefinitionCommandInput, ValidateStateMachineDefinitionCommandOutput } from "./commands/ValidateStateMachineDefinitionCommand";
|
|
47
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
48
48
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
49
49
|
export { __Client };
|
|
50
50
|
/**
|
|
@@ -153,7 +153,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
153
153
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
154
154
|
* @internal
|
|
155
155
|
*/
|
|
156
|
-
defaultUserAgentProvider?:
|
|
156
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
157
157
|
/**
|
|
158
158
|
* Default credentials provider; Not available in browser runtime.
|
|
159
159
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { SFNHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
export * from "./SFNClient";
|
|
16
16
|
export * from "./SFN";
|
|
17
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
17
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
18
18
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
19
19
|
export type { SFNExtensionConfiguration } from "./extensionConfiguration";
|
|
20
20
|
export * from "./commands";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { KmsKeyState, ValidationExceptionReason } from "./enums";
|
|
2
|
+
import type { KmsKeyState, ValidationExceptionReason } from "./enums";
|
|
3
3
|
import { SFNServiceException as __BaseException } from "./SFNServiceException";
|
|
4
4
|
/**
|
|
5
5
|
* <p>Activity already exists. <code>EncryptionConfiguration</code> may not be updated.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EncryptionType, ExecutionRedriveFilter, ExecutionRedriveStatus, ExecutionStatus, HistoryEventType, IncludedData, InspectionLevel, LogLevel, MapRunStatus, MockResponseValidationMode, StateMachineStatus, StateMachineType, SyncExecutionStatus, TestExecutionStatus, ValidateStateMachineDefinitionResultCode, ValidateStateMachineDefinitionSeverity } from "./enums";
|
|
1
|
+
import type { EncryptionType, ExecutionRedriveFilter, ExecutionRedriveStatus, ExecutionStatus, HistoryEventType, IncludedData, InspectionLevel, LogLevel, MapRunStatus, MockResponseValidationMode, StateMachineStatus, StateMachineType, SyncExecutionStatus, TestExecutionStatus, ValidateStateMachineDefinitionResultCode, ValidateStateMachineDefinitionSeverity } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Contains details about an activity that failed during an execution.</p>
|
|
4
4
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput } from "../commands/GetExecutionHistoryCommand";
|
|
3
|
-
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListActivitiesCommandInput, ListActivitiesCommandOutput } from "../commands/ListActivitiesCommand";
|
|
3
|
-
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "../commands/ListExecutionsCommand";
|
|
3
|
-
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "../commands/ListMapRunsCommand";
|
|
3
|
-
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListStateMachinesCommandInput, ListStateMachinesCommandOutput } from "../commands/ListStateMachinesCommand";
|
|
3
|
-
import { SFNPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { SFNPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -294,7 +293,7 @@ export interface ClientDefaults
|
|
|
294
293
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
295
294
|
region?: string | __Provider<string>;
|
|
296
295
|
profile?: string;
|
|
297
|
-
defaultUserAgentProvider?:
|
|
296
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
298
297
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
299
298
|
maxAttempts?: number | __Provider<number>;
|
|
300
299
|
retryMode?: string | __Provider<string>;
|
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.
|
|
4
|
+
"version": "3.1020.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sfn",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.13",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|