@aws-sdk/client-sfn 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/SFN.d.ts +119 -128
- package/dist-types/ts3.4/SFNClient.d.ts +16 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +9 -19
- package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateStateMachineAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteStateMachineAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteStateMachineVersionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeMapRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeStateMachineAliasCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListMapRunsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListStateMachineAliasesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListStateMachineVersionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PublishStateMachineVersionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RedriveExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TestStateCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateMapRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateStateMachineAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ValidateStateMachineDefinitionCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +23 -69
- package/dist-types/ts3.4/models/models_0.d.ts +7 -21
- package/dist-types/ts3.4/pagination/ListMapRunsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListActivitiesInput, ListActivitiesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListActivitiesCommandInput extends ListActivitiesInput {}
|
|
5
|
-
export interface ListActivitiesCommandOutput
|
|
6
|
-
extends ListActivitiesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListActivitiesCommandOutput extends ListActivitiesOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListActivitiesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListActivitiesCommandInput
|
|
8
|
+
input: ListActivitiesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListActivitiesCommandInput,
|
|
13
11
|
ListActivitiesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListExecutionsCommandInput extends ListExecutionsInput {}
|
|
5
|
-
export interface ListExecutionsCommandOutput
|
|
6
|
-
extends ListExecutionsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListExecutionsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListExecutionsCommandInput
|
|
8
|
+
input: ListExecutionsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListExecutionsCommandInput,
|
|
13
11
|
ListExecutionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListMapRunsInput, ListMapRunsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListMapRunsCommandInput extends ListMapRunsInput {}
|
|
5
|
-
export interface ListMapRunsCommandOutput
|
|
6
|
-
extends ListMapRunsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListMapRunsCommandOutput extends ListMapRunsOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListMapRunsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListMapRunsCommandInput
|
|
8
|
+
input: ListMapRunsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListMapRunsCommandInput,
|
|
13
11
|
ListMapRunsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListMapRunsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListMapRunsCommandInput
|
|
17
|
+
input: ListMapRunsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListMapRunsCommandInput,
|
|
22
20
|
ListMapRunsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListStateMachineAliasesInput,
|
|
4
|
-
ListStateMachineAliasesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListStateMachineAliasesInput, ListStateMachineAliasesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListStateMachineAliasesCommandInput
|
|
8
|
-
extends ListStateMachineAliasesInput {}
|
|
4
|
+
export interface ListStateMachineAliasesCommandInput extends ListStateMachineAliasesInput {}
|
|
9
5
|
export interface ListStateMachineAliasesCommandOutput
|
|
10
|
-
extends ListStateMachineAliasesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListStateMachineAliasesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListStateMachineAliasesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListStateMachineAliasesCommandInput
|
|
9
|
+
input: ListStateMachineAliasesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListStateMachineAliasesCommandInput,
|
|
17
12
|
ListStateMachineAliasesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListStateMachineAliasesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListStateMachineAliasesCommandInput
|
|
18
|
+
input: ListStateMachineAliasesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListStateMachineAliasesCommandInput,
|
|
26
21
|
ListStateMachineAliasesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListStateMachineVersionsInput,
|
|
4
|
-
ListStateMachineVersionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListStateMachineVersionsInput, ListStateMachineVersionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListStateMachineVersionsCommandInput
|
|
8
|
-
extends ListStateMachineVersionsInput {}
|
|
4
|
+
export interface ListStateMachineVersionsCommandInput extends ListStateMachineVersionsInput {}
|
|
9
5
|
export interface ListStateMachineVersionsCommandOutput
|
|
10
|
-
extends ListStateMachineVersionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListStateMachineVersionsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListStateMachineVersionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListStateMachineVersionsCommandInput
|
|
9
|
+
input: ListStateMachineVersionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListStateMachineVersionsCommandInput,
|
|
17
12
|
ListStateMachineVersionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListStateMachineVersionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListStateMachineVersionsCommandInput
|
|
18
|
+
input: ListStateMachineVersionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListStateMachineVersionsCommandInput,
|
|
26
21
|
ListStateMachineVersionsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListStateMachinesInput,
|
|
4
|
-
ListStateMachinesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListStateMachinesInput, ListStateMachinesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListStateMachinesCommandInput extends ListStateMachinesInput {}
|
|
8
|
-
export interface ListStateMachinesCommandOutput
|
|
9
|
-
extends ListStateMachinesOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListStateMachinesCommandOutput extends ListStateMachinesOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListStateMachinesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListStateMachinesCommandInput
|
|
8
|
+
input: ListStateMachinesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListStateMachinesCommandInput,
|
|
16
11
|
ListStateMachinesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PublishStateMachineVersionOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PublishStateMachineVersionCommandInput
|
|
8
|
-
extends PublishStateMachineVersionInput {}
|
|
7
|
+
export interface PublishStateMachineVersionCommandInput extends PublishStateMachineVersionInput {}
|
|
9
8
|
export interface PublishStateMachineVersionCommandOutput
|
|
10
|
-
extends PublishStateMachineVersionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PublishStateMachineVersionOutput, __MetadataBearer {}
|
|
12
10
|
declare const PublishStateMachineVersionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PublishStateMachineVersionCommandInput
|
|
12
|
+
input: PublishStateMachineVersionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PublishStateMachineVersionCommandInput,
|
|
17
15
|
PublishStateMachineVersionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PublishStateMachineVersionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PublishStateMachineVersionCommandInput
|
|
21
|
+
input: PublishStateMachineVersionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PublishStateMachineVersionCommandInput,
|
|
26
24
|
PublishStateMachineVersionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RedriveExecutionInput,
|
|
4
|
-
RedriveExecutionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RedriveExecutionInput, RedriveExecutionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface RedriveExecutionCommandInput extends RedriveExecutionInput {}
|
|
8
|
-
export interface RedriveExecutionCommandOutput
|
|
9
|
-
extends RedriveExecutionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RedriveExecutionCommandOutput extends RedriveExecutionOutput, __MetadataBearer {}
|
|
11
6
|
declare const RedriveExecutionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: RedriveExecutionCommandInput
|
|
8
|
+
input: RedriveExecutionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
RedriveExecutionCommandInput,
|
|
16
11
|
RedriveExecutionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const RedriveExecutionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: RedriveExecutionCommandInput
|
|
17
|
+
input: RedriveExecutionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
RedriveExecutionCommandInput,
|
|
25
20
|
RedriveExecutionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SendTaskFailureInput,
|
|
4
|
-
SendTaskFailureOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SendTaskFailureInput, SendTaskFailureOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface SendTaskFailureCommandInput extends SendTaskFailureInput {}
|
|
8
|
-
export interface SendTaskFailureCommandOutput
|
|
9
|
-
extends SendTaskFailureOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SendTaskFailureCommandOutput extends SendTaskFailureOutput, __MetadataBearer {}
|
|
11
6
|
declare const SendTaskFailureCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: SendTaskFailureCommandInput
|
|
8
|
+
input: SendTaskFailureCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
SendTaskFailureCommandInput,
|
|
16
11
|
SendTaskFailureCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const SendTaskFailureCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: SendTaskFailureCommandInput
|
|
17
|
+
input: SendTaskFailureCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
SendTaskFailureCommandInput,
|
|
25
20
|
SendTaskFailureCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SendTaskHeartbeatInput,
|
|
4
|
-
SendTaskHeartbeatOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SendTaskHeartbeatInput, SendTaskHeartbeatOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface SendTaskHeartbeatCommandInput extends SendTaskHeartbeatInput {}
|
|
8
|
-
export interface SendTaskHeartbeatCommandOutput
|
|
9
|
-
extends SendTaskHeartbeatOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SendTaskHeartbeatCommandOutput extends SendTaskHeartbeatOutput, __MetadataBearer {}
|
|
11
6
|
declare const SendTaskHeartbeatCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: SendTaskHeartbeatCommandInput
|
|
8
|
+
input: SendTaskHeartbeatCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
SendTaskHeartbeatCommandInput,
|
|
16
11
|
SendTaskHeartbeatCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const SendTaskHeartbeatCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: SendTaskHeartbeatCommandInput
|
|
17
|
+
input: SendTaskHeartbeatCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
SendTaskHeartbeatCommandInput,
|
|
25
20
|
SendTaskHeartbeatCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SendTaskSuccessInput,
|
|
4
|
-
SendTaskSuccessOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SendTaskSuccessInput, SendTaskSuccessOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface SendTaskSuccessCommandInput extends SendTaskSuccessInput {}
|
|
8
|
-
export interface SendTaskSuccessCommandOutput
|
|
9
|
-
extends SendTaskSuccessOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SendTaskSuccessCommandOutput extends SendTaskSuccessOutput, __MetadataBearer {}
|
|
11
6
|
declare const SendTaskSuccessCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: SendTaskSuccessCommandInput
|
|
8
|
+
input: SendTaskSuccessCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
SendTaskSuccessCommandInput,
|
|
16
11
|
SendTaskSuccessCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const SendTaskSuccessCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: SendTaskSuccessCommandInput
|
|
17
|
+
input: SendTaskSuccessCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
SendTaskSuccessCommandInput,
|
|
25
20
|
SendTaskSuccessCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartExecutionInput, StartExecutionOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartExecutionCommandInput extends StartExecutionInput {}
|
|
5
|
-
export interface StartExecutionCommandOutput
|
|
6
|
-
extends StartExecutionOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartExecutionCommandOutput extends StartExecutionOutput, __MetadataBearer {}
|
|
8
6
|
declare const StartExecutionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartExecutionCommandInput
|
|
8
|
+
input: StartExecutionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartExecutionCommandInput,
|
|
13
11
|
StartExecutionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StartExecutionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StartExecutionCommandInput
|
|
17
|
+
input: StartExecutionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StartExecutionCommandInput,
|
|
22
20
|
StartExecutionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartSyncExecutionInput,
|
|
4
|
-
StartSyncExecutionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartSyncExecutionInput, StartSyncExecutionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartSyncExecutionCommandInput
|
|
8
|
-
extends StartSyncExecutionInput {}
|
|
4
|
+
export interface StartSyncExecutionCommandInput extends StartSyncExecutionInput {}
|
|
9
5
|
export interface StartSyncExecutionCommandOutput
|
|
10
|
-
extends StartSyncExecutionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartSyncExecutionOutput, __MetadataBearer {}
|
|
12
7
|
declare const StartSyncExecutionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartSyncExecutionCommandInput
|
|
9
|
+
input: StartSyncExecutionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartSyncExecutionCommandInput,
|
|
17
12
|
StartSyncExecutionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartSyncExecutionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartSyncExecutionCommandInput
|
|
18
|
+
input: StartSyncExecutionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartSyncExecutionCommandInput,
|
|
26
21
|
StartSyncExecutionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StopExecutionInput, StopExecutionOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StopExecutionCommandInput extends StopExecutionInput {}
|
|
5
|
-
export interface StopExecutionCommandOutput
|
|
6
|
-
extends StopExecutionOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StopExecutionCommandOutput extends StopExecutionOutput, __MetadataBearer {}
|
|
8
6
|
declare const StopExecutionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StopExecutionCommandInput
|
|
8
|
+
input: StopExecutionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StopExecutionCommandInput,
|
|
13
11
|
StopExecutionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StopExecutionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StopExecutionCommandInput
|
|
17
|
+
input: StopExecutionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StopExecutionCommandInput,
|
|
22
20
|
StopExecutionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TestStateInput, TestStateOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TestStateCommandInput extends TestStateInput {}
|
|
5
|
-
export interface TestStateCommandOutput
|
|
6
|
-
extends TestStateOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TestStateCommandOutput extends TestStateOutput, __MetadataBearer {}
|
|
8
6
|
declare const TestStateCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: TestStateCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TestStateCommandInput,
|
|
11
11
|
TestStateCommandOutput,
|
|
12
12
|
import("..").SFNClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: TestStateCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
TestStateCommandInput,
|
|
18
20
|
TestStateCommandOutput,
|
|
19
21
|
import("..").SFNClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
5
|
-
export interface UntagResourceCommandOutput
|
|
6
|
-
extends UntagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const UntagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagResourceCommandInput,
|
|
13
11
|
UntagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagResourceCommandInput,
|
|
22
20
|
UntagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateMapRunInput, UpdateMapRunOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateMapRunCommandInput extends UpdateMapRunInput {}
|
|
5
|
-
export interface UpdateMapRunCommandOutput
|
|
6
|
-
extends UpdateMapRunOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateMapRunCommandOutput extends UpdateMapRunOutput, __MetadataBearer {}
|
|
8
6
|
declare const UpdateMapRunCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateMapRunCommandInput
|
|
8
|
+
input: UpdateMapRunCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateMapRunCommandInput,
|
|
13
11
|
UpdateMapRunCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateMapRunCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateMapRunCommandInput
|
|
17
|
+
input: UpdateMapRunCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateMapRunCommandInput,
|
|
22
20
|
UpdateMapRunCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateStateMachineAliasInput,
|
|
4
|
-
UpdateStateMachineAliasOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateStateMachineAliasInput, UpdateStateMachineAliasOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateStateMachineAliasCommandInput
|
|
8
|
-
extends UpdateStateMachineAliasInput {}
|
|
4
|
+
export interface UpdateStateMachineAliasCommandInput extends UpdateStateMachineAliasInput {}
|
|
9
5
|
export interface UpdateStateMachineAliasCommandOutput
|
|
10
|
-
extends UpdateStateMachineAliasOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateStateMachineAliasOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateStateMachineAliasCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateStateMachineAliasCommandInput
|
|
9
|
+
input: UpdateStateMachineAliasCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateStateMachineAliasCommandInput,
|
|
17
12
|
UpdateStateMachineAliasCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateStateMachineAliasCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateStateMachineAliasCommandInput
|
|
18
|
+
input: UpdateStateMachineAliasCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateStateMachineAliasCommandInput,
|
|
26
21
|
UpdateStateMachineAliasCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateStateMachineInput,
|
|
4
|
-
UpdateStateMachineOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateStateMachineInput, UpdateStateMachineOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateStateMachineCommandInput
|
|
8
|
-
extends UpdateStateMachineInput {}
|
|
4
|
+
export interface UpdateStateMachineCommandInput extends UpdateStateMachineInput {}
|
|
9
5
|
export interface UpdateStateMachineCommandOutput
|
|
10
|
-
extends UpdateStateMachineOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateStateMachineOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateStateMachineCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateStateMachineCommandInput
|
|
9
|
+
input: UpdateStateMachineCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateStateMachineCommandInput,
|
|
17
12
|
UpdateStateMachineCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateStateMachineCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateStateMachineCommandInput
|
|
18
|
+
input: UpdateStateMachineCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateStateMachineCommandInput,
|
|
26
21
|
UpdateStateMachineCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ValidateStateMachineDefinitionOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ValidateStateMachineDefinitionCommandInput
|
|
8
|
-
extends ValidateStateMachineDefinitionInput {}
|
|
7
|
+
export interface ValidateStateMachineDefinitionCommandInput extends ValidateStateMachineDefinitionInput {}
|
|
9
8
|
export interface ValidateStateMachineDefinitionCommandOutput
|
|
10
|
-
extends ValidateStateMachineDefinitionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ValidateStateMachineDefinitionOutput, __MetadataBearer {}
|
|
12
10
|
declare const ValidateStateMachineDefinitionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ValidateStateMachineDefinitionCommandInput
|
|
12
|
+
input: ValidateStateMachineDefinitionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ValidateStateMachineDefinitionCommandInput,
|
|
17
15
|
ValidateStateMachineDefinitionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ValidateStateMachineDefinitionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ValidateStateMachineDefinitionCommandInput
|
|
21
|
+
input: ValidateStateMachineDefinitionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ValidateStateMachineDefinitionCommandInput,
|
|
26
24
|
ValidateStateMachineDefinitionCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface SFNExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|