@aws-sdk/client-sfn 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SFN.d.ts +395 -120
  3. package/dist-types/ts3.4/SFNClient.d.ts +241 -96
  4. package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/SFNServiceException.d.ts +7 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +905 -1086
  33. package/dist-types/ts3.4/pagination/GetExecutionHistoryPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  35. package/dist-types/ts3.4/pagination/ListActivitiesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListStateMachinesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  39. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +281 -71
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  44. package/package.json +34 -34
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface DescribeExecutionCommandInput extends DescribeExecutionInput {
6
- }
7
- export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeExecutionCommand extends $Command<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: DescribeExecutionCommandInput;
12
- constructor(input: DescribeExecutionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeExecutionCommandInput, DescribeExecutionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeExecutionInput,
10
+ DescribeExecutionOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface DescribeExecutionCommandInput extends DescribeExecutionInput {}
18
+ export interface DescribeExecutionCommandOutput
19
+ extends DescribeExecutionOutput,
20
+ __MetadataBearer {}
21
+ export declare class DescribeExecutionCommand extends $Command<
22
+ DescribeExecutionCommandInput,
23
+ DescribeExecutionCommandOutput,
24
+ SFNClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeExecutionCommandInput;
27
+ constructor(input: DescribeExecutionCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SFNClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeExecutionCommandInput, DescribeExecutionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeStateMachineInput, DescribeStateMachineOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface DescribeStateMachineCommandInput extends DescribeStateMachineInput {
6
- }
7
- export interface DescribeStateMachineCommandOutput extends DescribeStateMachineOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeStateMachineCommand extends $Command<DescribeStateMachineCommandInput, DescribeStateMachineCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: DescribeStateMachineCommandInput;
12
- constructor(input: DescribeStateMachineCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeStateMachineCommandInput, DescribeStateMachineCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeStateMachineInput,
10
+ DescribeStateMachineOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface DescribeStateMachineCommandInput
18
+ extends DescribeStateMachineInput {}
19
+ export interface DescribeStateMachineCommandOutput
20
+ extends DescribeStateMachineOutput,
21
+ __MetadataBearer {}
22
+ export declare class DescribeStateMachineCommand extends $Command<
23
+ DescribeStateMachineCommandInput,
24
+ DescribeStateMachineCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeStateMachineCommandInput;
28
+ constructor(input: DescribeStateMachineCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SFNClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeStateMachineCommandInput,
35
+ DescribeStateMachineCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeStateMachineForExecutionInput, DescribeStateMachineForExecutionOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface DescribeStateMachineForExecutionCommandInput extends DescribeStateMachineForExecutionInput {
6
- }
7
- export interface DescribeStateMachineForExecutionCommandOutput extends DescribeStateMachineForExecutionOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeStateMachineForExecutionCommand extends $Command<DescribeStateMachineForExecutionCommandInput, DescribeStateMachineForExecutionCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: DescribeStateMachineForExecutionCommandInput;
12
- constructor(input: DescribeStateMachineForExecutionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeStateMachineForExecutionCommandInput, DescribeStateMachineForExecutionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeStateMachineForExecutionInput,
10
+ DescribeStateMachineForExecutionOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface DescribeStateMachineForExecutionCommandInput
18
+ extends DescribeStateMachineForExecutionInput {}
19
+ export interface DescribeStateMachineForExecutionCommandOutput
20
+ extends DescribeStateMachineForExecutionOutput,
21
+ __MetadataBearer {}
22
+ export declare class DescribeStateMachineForExecutionCommand extends $Command<
23
+ DescribeStateMachineForExecutionCommandInput,
24
+ DescribeStateMachineForExecutionCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeStateMachineForExecutionCommandInput;
28
+ constructor(input: DescribeStateMachineForExecutionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SFNClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeStateMachineForExecutionCommandInput,
35
+ DescribeStateMachineForExecutionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetActivityTaskInput, GetActivityTaskOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface GetActivityTaskCommandInput extends GetActivityTaskInput {
6
- }
7
- export interface GetActivityTaskCommandOutput extends GetActivityTaskOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetActivityTaskCommand extends $Command<GetActivityTaskCommandInput, GetActivityTaskCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: GetActivityTaskCommandInput;
12
- constructor(input: GetActivityTaskCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetActivityTaskCommandInput, GetActivityTaskCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetActivityTaskInput,
10
+ GetActivityTaskOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface GetActivityTaskCommandInput extends GetActivityTaskInput {}
18
+ export interface GetActivityTaskCommandOutput
19
+ extends GetActivityTaskOutput,
20
+ __MetadataBearer {}
21
+ export declare class GetActivityTaskCommand extends $Command<
22
+ GetActivityTaskCommandInput,
23
+ GetActivityTaskCommandOutput,
24
+ SFNClientResolvedConfig
25
+ > {
26
+ readonly input: GetActivityTaskCommandInput;
27
+ constructor(input: GetActivityTaskCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SFNClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetActivityTaskCommandInput, GetActivityTaskCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetExecutionHistoryInput, GetExecutionHistoryOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface GetExecutionHistoryCommandInput extends GetExecutionHistoryInput {
6
- }
7
- export interface GetExecutionHistoryCommandOutput extends GetExecutionHistoryOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetExecutionHistoryCommand extends $Command<GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: GetExecutionHistoryCommandInput;
12
- constructor(input: GetExecutionHistoryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetExecutionHistoryInput,
10
+ GetExecutionHistoryOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface GetExecutionHistoryCommandInput
18
+ extends GetExecutionHistoryInput {}
19
+ export interface GetExecutionHistoryCommandOutput
20
+ extends GetExecutionHistoryOutput,
21
+ __MetadataBearer {}
22
+ export declare class GetExecutionHistoryCommand extends $Command<
23
+ GetExecutionHistoryCommandInput,
24
+ GetExecutionHistoryCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: GetExecutionHistoryCommandInput;
28
+ constructor(input: GetExecutionHistoryCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SFNClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListActivitiesInput, ListActivitiesOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface ListActivitiesCommandInput extends ListActivitiesInput {
6
- }
7
- export interface ListActivitiesCommandOutput extends ListActivitiesOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListActivitiesCommand extends $Command<ListActivitiesCommandInput, ListActivitiesCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: ListActivitiesCommandInput;
12
- constructor(input: ListActivitiesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListActivitiesCommandInput, ListActivitiesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { ListActivitiesInput, ListActivitiesOutput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SFNClientResolvedConfig,
13
+ } from "../SFNClient";
14
+ export interface ListActivitiesCommandInput extends ListActivitiesInput {}
15
+ export interface ListActivitiesCommandOutput
16
+ extends ListActivitiesOutput,
17
+ __MetadataBearer {}
18
+ export declare class ListActivitiesCommand extends $Command<
19
+ ListActivitiesCommandInput,
20
+ ListActivitiesCommandOutput,
21
+ SFNClientResolvedConfig
22
+ > {
23
+ readonly input: ListActivitiesCommandInput;
24
+ constructor(input: ListActivitiesCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SFNClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListActivitiesCommandInput, ListActivitiesCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface ListExecutionsCommandInput extends ListExecutionsInput {
6
- }
7
- export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: ListExecutionsCommandInput;
12
- constructor(input: ListExecutionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SFNClientResolvedConfig,
13
+ } from "../SFNClient";
14
+ export interface ListExecutionsCommandInput extends ListExecutionsInput {}
15
+ export interface ListExecutionsCommandOutput
16
+ extends ListExecutionsOutput,
17
+ __MetadataBearer {}
18
+ export declare class ListExecutionsCommand extends $Command<
19
+ ListExecutionsCommandInput,
20
+ ListExecutionsCommandOutput,
21
+ SFNClientResolvedConfig
22
+ > {
23
+ readonly input: ListExecutionsCommandInput;
24
+ constructor(input: ListExecutionsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SFNClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListStateMachinesInput, ListStateMachinesOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface ListStateMachinesCommandInput extends ListStateMachinesInput {
6
- }
7
- export interface ListStateMachinesCommandOutput extends ListStateMachinesOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListStateMachinesCommand extends $Command<ListStateMachinesCommandInput, ListStateMachinesCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: ListStateMachinesCommandInput;
12
- constructor(input: ListStateMachinesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStateMachinesCommandInput, ListStateMachinesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListStateMachinesInput,
10
+ ListStateMachinesOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface ListStateMachinesCommandInput extends ListStateMachinesInput {}
18
+ export interface ListStateMachinesCommandOutput
19
+ extends ListStateMachinesOutput,
20
+ __MetadataBearer {}
21
+ export declare class ListStateMachinesCommand extends $Command<
22
+ ListStateMachinesCommandInput,
23
+ ListStateMachinesCommandOutput,
24
+ SFNClientResolvedConfig
25
+ > {
26
+ readonly input: ListStateMachinesCommandInput;
27
+ constructor(input: ListStateMachinesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SFNClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListStateMachinesCommandInput, ListStateMachinesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListTagsForResourceInput,
10
+ ListTagsForResourceOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceInput {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceOutput,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SFNClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { SendTaskFailureInput, SendTaskFailureOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface SendTaskFailureCommandInput extends SendTaskFailureInput {
6
- }
7
- export interface SendTaskFailureCommandOutput extends SendTaskFailureOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class SendTaskFailureCommand extends $Command<SendTaskFailureCommandInput, SendTaskFailureCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: SendTaskFailureCommandInput;
12
- constructor(input: SendTaskFailureCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendTaskFailureCommandInput, SendTaskFailureCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ SendTaskFailureInput,
10
+ SendTaskFailureOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface SendTaskFailureCommandInput extends SendTaskFailureInput {}
18
+ export interface SendTaskFailureCommandOutput
19
+ extends SendTaskFailureOutput,
20
+ __MetadataBearer {}
21
+ export declare class SendTaskFailureCommand extends $Command<
22
+ SendTaskFailureCommandInput,
23
+ SendTaskFailureCommandOutput,
24
+ SFNClientResolvedConfig
25
+ > {
26
+ readonly input: SendTaskFailureCommandInput;
27
+ constructor(input: SendTaskFailureCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SFNClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<SendTaskFailureCommandInput, SendTaskFailureCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { SendTaskHeartbeatInput, SendTaskHeartbeatOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
5
- export interface SendTaskHeartbeatCommandInput extends SendTaskHeartbeatInput {
6
- }
7
- export interface SendTaskHeartbeatCommandOutput extends SendTaskHeartbeatOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class SendTaskHeartbeatCommand extends $Command<SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput, SFNClientResolvedConfig> {
11
- readonly input: SendTaskHeartbeatCommandInput;
12
- constructor(input: SendTaskHeartbeatCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ SendTaskHeartbeatInput,
10
+ SendTaskHeartbeatOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SFNClientResolvedConfig,
16
+ } from "../SFNClient";
17
+ export interface SendTaskHeartbeatCommandInput extends SendTaskHeartbeatInput {}
18
+ export interface SendTaskHeartbeatCommandOutput
19
+ extends SendTaskHeartbeatOutput,
20
+ __MetadataBearer {}
21
+ export declare class SendTaskHeartbeatCommand extends $Command<
22
+ SendTaskHeartbeatCommandInput,
23
+ SendTaskHeartbeatCommandOutput,
24
+ SFNClientResolvedConfig
25
+ > {
26
+ readonly input: SendTaskHeartbeatCommandInput;
27
+ constructor(input: SendTaskHeartbeatCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SFNClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }