@aws-sdk/client-sfn 3.1087.0 → 3.1089.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
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -104,10 +101,7 @@ import {
|
|
|
104
101
|
ListExecutionsCommandInput,
|
|
105
102
|
ListExecutionsCommandOutput,
|
|
106
103
|
} from "./commands/ListExecutionsCommand";
|
|
107
|
-
import {
|
|
108
|
-
ListMapRunsCommandInput,
|
|
109
|
-
ListMapRunsCommandOutput,
|
|
110
|
-
} from "./commands/ListMapRunsCommand";
|
|
104
|
+
import { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "./commands/ListMapRunsCommand";
|
|
111
105
|
import {
|
|
112
106
|
ListStateMachineAliasesCommandInput,
|
|
113
107
|
ListStateMachineAliasesCommandOutput,
|
|
@@ -156,14 +150,8 @@ import {
|
|
|
156
150
|
StopExecutionCommandInput,
|
|
157
151
|
StopExecutionCommandOutput,
|
|
158
152
|
} from "./commands/StopExecutionCommand";
|
|
159
|
-
import {
|
|
160
|
-
|
|
161
|
-
TagResourceCommandOutput,
|
|
162
|
-
} from "./commands/TagResourceCommand";
|
|
163
|
-
import {
|
|
164
|
-
TestStateCommandInput,
|
|
165
|
-
TestStateCommandOutput,
|
|
166
|
-
} from "./commands/TestStateCommand";
|
|
153
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
154
|
+
import { TestStateCommandInput, TestStateCommandOutput } from "./commands/TestStateCommand";
|
|
167
155
|
import {
|
|
168
156
|
UntagResourceCommandInput,
|
|
169
157
|
UntagResourceCommandOutput,
|
|
@@ -267,8 +255,7 @@ export type ServiceOutputTypes =
|
|
|
267
255
|
| UpdateStateMachineAliasCommandOutput
|
|
268
256
|
| UpdateStateMachineCommandOutput
|
|
269
257
|
| ValidateStateMachineDefinitionCommandOutput;
|
|
270
|
-
export interface ClientDefaults
|
|
271
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
258
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
272
259
|
requestHandler?: __HttpHandlerUserInput;
|
|
273
260
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
274
261
|
urlParser?: __UrlParser;
|
|
@@ -293,9 +280,7 @@ export interface ClientDefaults
|
|
|
293
280
|
extensions?: RuntimeExtension[];
|
|
294
281
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
295
282
|
}
|
|
296
|
-
export type SFNClientConfigType = Partial<
|
|
297
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
298
|
-
> &
|
|
283
|
+
export type SFNClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
299
284
|
ClientDefaults &
|
|
300
285
|
UserAgentInputConfig &
|
|
301
286
|
RetryInputConfig &
|
|
@@ -305,17 +290,16 @@ export type SFNClientConfigType = Partial<
|
|
|
305
290
|
HttpAuthSchemeInputConfig &
|
|
306
291
|
ClientInputEndpointParameters;
|
|
307
292
|
export interface SFNClientConfig extends SFNClientConfigType {}
|
|
308
|
-
export type SFNClientResolvedConfigType =
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
ClientResolvedEndpointParameters;
|
|
293
|
+
export type SFNClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
294
|
+
Required<ClientDefaults> &
|
|
295
|
+
RuntimeExtensionsConfig &
|
|
296
|
+
UserAgentResolvedConfig &
|
|
297
|
+
RetryResolvedConfig &
|
|
298
|
+
RegionResolvedConfig &
|
|
299
|
+
HostHeaderResolvedConfig &
|
|
300
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
301
|
+
HttpAuthSchemeResolvedConfig &
|
|
302
|
+
ClientResolvedEndpointParameters;
|
|
319
303
|
export interface SFNClientResolvedConfig extends SFNClientResolvedConfigType {}
|
|
320
304
|
export declare class SFNClient extends __Client<
|
|
321
305
|
__HttpHandlerOptions,
|
|
@@ -7,17 +7,10 @@ import { SFNHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: SFNHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: SFNHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): SFNHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -15,32 +15,29 @@ import { SFNClientResolvedConfig } from "../SFNClient";
|
|
|
15
15
|
export interface SFNHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
16
|
region?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface SFNHttpAuthSchemeParametersProvider
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {}
|
|
18
|
+
export interface SFNHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SFNClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SFNHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
25
24
|
export declare const defaultSFNHttpAuthSchemeParametersProvider: (
|
|
26
25
|
config: SFNClientResolvedConfig,
|
|
27
26
|
context: HandlerExecutionContext,
|
|
28
|
-
input: object
|
|
27
|
+
input: object,
|
|
29
28
|
) => Promise<SFNHttpAuthSchemeParameters>;
|
|
30
|
-
export interface SFNHttpAuthSchemeProvider
|
|
31
|
-
extends HttpAuthSchemeProvider<SFNHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SFNHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SFNHttpAuthSchemeParameters> {}
|
|
32
30
|
export declare const defaultSFNHttpAuthSchemeProvider: SFNHttpAuthSchemeProvider;
|
|
33
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
34
|
httpAuthSchemeProvider?: SFNHttpAuthSchemeProvider;
|
|
37
35
|
}
|
|
38
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
39
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
40
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
41
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
42
39
|
readonly httpAuthSchemeProvider: SFNHttpAuthSchemeProvider;
|
|
43
40
|
}
|
|
44
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
45
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
46
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceOutputTypes,
|
|
5
|
-
SFNClientResolvedConfig,
|
|
6
|
-
} from "./SFNClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "./SFNClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
SFNClientResolvedConfig,
|
|
@@ -38,15 +33,10 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
47
37
|
export declare const _mw1: (
|
|
48
38
|
Command: any,
|
|
49
39
|
cs: any,
|
|
50
40
|
config: any,
|
|
51
|
-
o: any
|
|
41
|
+
o: any,
|
|
52
42
|
) => import("@smithy/types").Pluggable<any, any>[];
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateActivityInput, CreateActivityOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateActivityCommandInput extends CreateActivityInput {}
|
|
5
|
-
export interface CreateActivityCommandOutput
|
|
6
|
-
extends CreateActivityOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateActivityCommandOutput extends CreateActivityOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateActivityCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateActivityCommandInput
|
|
8
|
+
input: CreateActivityCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateActivityCommandInput,
|
|
13
11
|
CreateActivityCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateActivityCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateActivityCommandInput
|
|
17
|
+
input: CreateActivityCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateActivityCommandInput,
|
|
22
20
|
CreateActivityCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateStateMachineAliasInput,
|
|
4
|
-
CreateStateMachineAliasOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateStateMachineAliasInput, CreateStateMachineAliasOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateStateMachineAliasCommandInput
|
|
8
|
-
extends CreateStateMachineAliasInput {}
|
|
4
|
+
export interface CreateStateMachineAliasCommandInput extends CreateStateMachineAliasInput {}
|
|
9
5
|
export interface CreateStateMachineAliasCommandOutput
|
|
10
|
-
extends CreateStateMachineAliasOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateStateMachineAliasOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateStateMachineAliasCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateStateMachineAliasCommandInput
|
|
9
|
+
input: CreateStateMachineAliasCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateStateMachineAliasCommandInput,
|
|
17
12
|
CreateStateMachineAliasCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateStateMachineAliasCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateStateMachineAliasCommandInput
|
|
18
|
+
input: CreateStateMachineAliasCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateStateMachineAliasCommandInput,
|
|
26
21
|
CreateStateMachineAliasCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateStateMachineInput,
|
|
4
|
-
CreateStateMachineOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateStateMachineInput, CreateStateMachineOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateStateMachineCommandInput
|
|
8
|
-
extends CreateStateMachineInput {}
|
|
4
|
+
export interface CreateStateMachineCommandInput extends CreateStateMachineInput {}
|
|
9
5
|
export interface CreateStateMachineCommandOutput
|
|
10
|
-
extends CreateStateMachineOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateStateMachineOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateStateMachineCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateStateMachineCommandInput
|
|
9
|
+
input: CreateStateMachineCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateStateMachineCommandInput,
|
|
17
12
|
CreateStateMachineCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateStateMachineCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateStateMachineCommandInput
|
|
18
|
+
input: CreateStateMachineCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateStateMachineCommandInput,
|
|
26
21
|
CreateStateMachineCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteActivityInput, DeleteActivityOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteActivityCommandInput extends DeleteActivityInput {}
|
|
5
|
-
export interface DeleteActivityCommandOutput
|
|
6
|
-
extends DeleteActivityOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteActivityCommandOutput extends DeleteActivityOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteActivityCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteActivityCommandInput
|
|
8
|
+
input: DeleteActivityCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteActivityCommandInput,
|
|
13
11
|
DeleteActivityCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteActivityCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteActivityCommandInput
|
|
17
|
+
input: DeleteActivityCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteActivityCommandInput,
|
|
22
20
|
DeleteActivityCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteStateMachineAliasInput,
|
|
4
|
-
DeleteStateMachineAliasOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteStateMachineAliasInput, DeleteStateMachineAliasOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteStateMachineAliasCommandInput
|
|
8
|
-
extends DeleteStateMachineAliasInput {}
|
|
4
|
+
export interface DeleteStateMachineAliasCommandInput extends DeleteStateMachineAliasInput {}
|
|
9
5
|
export interface DeleteStateMachineAliasCommandOutput
|
|
10
|
-
extends DeleteStateMachineAliasOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteStateMachineAliasOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteStateMachineAliasCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteStateMachineAliasCommandInput
|
|
9
|
+
input: DeleteStateMachineAliasCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteStateMachineAliasCommandInput,
|
|
17
12
|
DeleteStateMachineAliasCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteStateMachineAliasCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteStateMachineAliasCommandInput
|
|
18
|
+
input: DeleteStateMachineAliasCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteStateMachineAliasCommandInput,
|
|
26
21
|
DeleteStateMachineAliasCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteStateMachineInput,
|
|
4
|
-
DeleteStateMachineOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteStateMachineInput, DeleteStateMachineOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteStateMachineCommandInput
|
|
8
|
-
extends DeleteStateMachineInput {}
|
|
4
|
+
export interface DeleteStateMachineCommandInput extends DeleteStateMachineInput {}
|
|
9
5
|
export interface DeleteStateMachineCommandOutput
|
|
10
|
-
extends DeleteStateMachineOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteStateMachineOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteStateMachineCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteStateMachineCommandInput
|
|
9
|
+
input: DeleteStateMachineCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteStateMachineCommandInput,
|
|
17
12
|
DeleteStateMachineCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteStateMachineCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteStateMachineCommandInput
|
|
18
|
+
input: DeleteStateMachineCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteStateMachineCommandInput,
|
|
26
21
|
DeleteStateMachineCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteStateMachineVersionOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteStateMachineVersionCommandInput
|
|
8
|
-
extends DeleteStateMachineVersionInput {}
|
|
7
|
+
export interface DeleteStateMachineVersionCommandInput extends DeleteStateMachineVersionInput {}
|
|
9
8
|
export interface DeleteStateMachineVersionCommandOutput
|
|
10
|
-
extends DeleteStateMachineVersionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteStateMachineVersionOutput, __MetadataBearer {}
|
|
12
10
|
declare const DeleteStateMachineVersionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteStateMachineVersionCommandInput
|
|
12
|
+
input: DeleteStateMachineVersionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteStateMachineVersionCommandInput,
|
|
17
15
|
DeleteStateMachineVersionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteStateMachineVersionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteStateMachineVersionCommandInput
|
|
21
|
+
input: DeleteStateMachineVersionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteStateMachineVersionCommandInput,
|
|
26
24
|
DeleteStateMachineVersionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeActivityInput,
|
|
4
|
-
DescribeActivityOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeActivityInput, DescribeActivityOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeActivityCommandInput extends DescribeActivityInput {}
|
|
8
|
-
export interface DescribeActivityCommandOutput
|
|
9
|
-
extends DescribeActivityOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeActivityCommandOutput extends DescribeActivityOutput, __MetadataBearer {}
|
|
11
6
|
declare const DescribeActivityCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeActivityCommandInput
|
|
8
|
+
input: DescribeActivityCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeActivityCommandInput,
|
|
16
11
|
DescribeActivityCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DescribeActivityCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DescribeActivityCommandInput
|
|
17
|
+
input: DescribeActivityCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DescribeActivityCommandInput,
|
|
25
20
|
DescribeActivityCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeExecutionInput,
|
|
4
|
-
DescribeExecutionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeExecutionCommandInput extends DescribeExecutionInput {}
|
|
8
|
-
export interface DescribeExecutionCommandOutput
|
|
9
|
-
extends DescribeExecutionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput, __MetadataBearer {}
|
|
11
6
|
declare const DescribeExecutionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeExecutionCommandInput
|
|
8
|
+
input: DescribeExecutionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeExecutionCommandInput,
|
|
16
11
|
DescribeExecutionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DescribeExecutionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DescribeExecutionCommandInput
|
|
17
|
+
input: DescribeExecutionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DescribeExecutionCommandInput,
|
|
25
20
|
DescribeExecutionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeMapRunInput, DescribeMapRunOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeMapRunCommandInput extends DescribeMapRunInput {}
|
|
5
|
-
export interface DescribeMapRunCommandOutput
|
|
6
|
-
extends DescribeMapRunOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeMapRunCommandOutput extends DescribeMapRunOutput, __MetadataBearer {}
|
|
8
6
|
declare const DescribeMapRunCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeMapRunCommandInput
|
|
8
|
+
input: DescribeMapRunCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeMapRunCommandInput,
|
|
13
11
|
DescribeMapRunCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DescribeMapRunCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DescribeMapRunCommandInput
|
|
17
|
+
input: DescribeMapRunCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DescribeMapRunCommandInput,
|
|
22
20
|
DescribeMapRunCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeStateMachineAliasOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeStateMachineAliasCommandInput
|
|
8
|
-
extends DescribeStateMachineAliasInput {}
|
|
7
|
+
export interface DescribeStateMachineAliasCommandInput extends DescribeStateMachineAliasInput {}
|
|
9
8
|
export interface DescribeStateMachineAliasCommandOutput
|
|
10
|
-
extends DescribeStateMachineAliasOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeStateMachineAliasOutput, __MetadataBearer {}
|
|
12
10
|
declare const DescribeStateMachineAliasCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeStateMachineAliasCommandInput
|
|
12
|
+
input: DescribeStateMachineAliasCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeStateMachineAliasCommandInput,
|
|
17
15
|
DescribeStateMachineAliasCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeStateMachineAliasCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeStateMachineAliasCommandInput
|
|
21
|
+
input: DescribeStateMachineAliasCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeStateMachineAliasCommandInput,
|
|
26
24
|
DescribeStateMachineAliasCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeStateMachineInput,
|
|
4
|
-
DescribeStateMachineOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeStateMachineInput, DescribeStateMachineOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeStateMachineCommandInput
|
|
8
|
-
extends DescribeStateMachineInput {}
|
|
4
|
+
export interface DescribeStateMachineCommandInput extends DescribeStateMachineInput {}
|
|
9
5
|
export interface DescribeStateMachineCommandOutput
|
|
10
|
-
extends DescribeStateMachineOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeStateMachineOutput, __MetadataBearer {}
|
|
12
7
|
declare const DescribeStateMachineCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeStateMachineCommandInput
|
|
9
|
+
input: DescribeStateMachineCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeStateMachineCommandInput,
|
|
17
12
|
DescribeStateMachineCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeStateMachineCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeStateMachineCommandInput
|
|
18
|
+
input: DescribeStateMachineCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeStateMachineCommandInput,
|
|
26
21
|
DescribeStateMachineCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeStateMachineForExecutionOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeStateMachineForExecutionCommandInput
|
|
8
|
-
extends DescribeStateMachineForExecutionInput {}
|
|
7
|
+
export interface DescribeStateMachineForExecutionCommandInput extends DescribeStateMachineForExecutionInput {}
|
|
9
8
|
export interface DescribeStateMachineForExecutionCommandOutput
|
|
10
|
-
extends DescribeStateMachineForExecutionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeStateMachineForExecutionOutput, __MetadataBearer {}
|
|
12
10
|
declare const DescribeStateMachineForExecutionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeStateMachineForExecutionCommandInput
|
|
12
|
+
input: DescribeStateMachineForExecutionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeStateMachineForExecutionCommandInput,
|
|
17
15
|
DescribeStateMachineForExecutionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeStateMachineForExecutionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeStateMachineForExecutionCommandInput
|
|
21
|
+
input: DescribeStateMachineForExecutionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeStateMachineForExecutionCommandInput,
|
|
26
24
|
DescribeStateMachineForExecutionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetActivityTaskInput,
|
|
4
|
-
GetActivityTaskOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetActivityTaskInput, GetActivityTaskOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetActivityTaskCommandInput extends GetActivityTaskInput {}
|
|
8
|
-
export interface GetActivityTaskCommandOutput
|
|
9
|
-
extends GetActivityTaskOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetActivityTaskCommandOutput extends GetActivityTaskOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetActivityTaskCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetActivityTaskCommandInput
|
|
8
|
+
input: GetActivityTaskCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetActivityTaskCommandInput,
|
|
16
11
|
GetActivityTaskCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetActivityTaskCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetActivityTaskCommandInput
|
|
17
|
+
input: GetActivityTaskCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetActivityTaskCommandInput,
|
|
25
20
|
GetActivityTaskCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetExecutionHistoryInput,
|
|
4
|
-
GetExecutionHistoryOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetExecutionHistoryInput, GetExecutionHistoryOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetExecutionHistoryCommandInput
|
|
8
|
-
extends GetExecutionHistoryInput {}
|
|
4
|
+
export interface GetExecutionHistoryCommandInput extends GetExecutionHistoryInput {}
|
|
9
5
|
export interface GetExecutionHistoryCommandOutput
|
|
10
|
-
extends GetExecutionHistoryOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetExecutionHistoryOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetExecutionHistoryCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetExecutionHistoryCommandInput
|
|
9
|
+
input: GetExecutionHistoryCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetExecutionHistoryCommandInput,
|
|
17
12
|
GetExecutionHistoryCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetExecutionHistoryCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetExecutionHistoryCommandInput
|
|
18
|
+
input: GetExecutionHistoryCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetExecutionHistoryCommandInput,
|
|
26
21
|
GetExecutionHistoryCommandOutput,
|