@aws-sdk/client-sfn 3.169.0 → 3.170.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 +8 -0
  2. package/dist-types/ts3.4/SFN.d.ts +418 -120
  3. package/dist-types/ts3.4/SFNClient.d.ts +266 -96
  4. package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +38 -17
  14. package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +38 -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 +8 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +1260 -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 +66 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  44. package/package.json +34 -34
@@ -1,17 +1,37 @@
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
+
22
+ export declare class DescribeExecutionCommand extends $Command<
23
+ DescribeExecutionCommandInput,
24
+ DescribeExecutionCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeExecutionCommandInput;
28
+ constructor(input: DescribeExecutionCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SFNClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeExecutionCommandInput, DescribeExecutionCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeStateMachineCommand extends $Command<
24
+ DescribeStateMachineCommandInput,
25
+ DescribeStateMachineCommandOutput,
26
+ SFNClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeStateMachineCommandInput;
29
+ constructor(input: DescribeStateMachineCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SFNClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeStateMachineCommandInput,
37
+ DescribeStateMachineCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeStateMachineForExecutionCommand extends $Command<
24
+ DescribeStateMachineForExecutionCommandInput,
25
+ DescribeStateMachineForExecutionCommandOutput,
26
+ SFNClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeStateMachineForExecutionCommandInput;
29
+ constructor(input: DescribeStateMachineForExecutionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SFNClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeStateMachineForExecutionCommandInput,
37
+ DescribeStateMachineForExecutionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
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
+
22
+ export declare class GetActivityTaskCommand extends $Command<
23
+ GetActivityTaskCommandInput,
24
+ GetActivityTaskCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: GetActivityTaskCommandInput;
28
+ constructor(input: GetActivityTaskCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SFNClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetActivityTaskCommandInput, GetActivityTaskCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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
+
23
+ export declare class GetExecutionHistoryCommand extends $Command<
24
+ GetExecutionHistoryCommandInput,
25
+ GetExecutionHistoryCommandOutput,
26
+ SFNClientResolvedConfig
27
+ > {
28
+ readonly input: GetExecutionHistoryCommandInput;
29
+ constructor(input: GetExecutionHistoryCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SFNClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
+
19
+ export declare class ListActivitiesCommand extends $Command<
20
+ ListActivitiesCommandInput,
21
+ ListActivitiesCommandOutput,
22
+ SFNClientResolvedConfig
23
+ > {
24
+ readonly input: ListActivitiesCommandInput;
25
+ constructor(input: ListActivitiesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SFNClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListActivitiesCommandInput, ListActivitiesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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
+
19
+ export declare class ListExecutionsCommand extends $Command<
20
+ ListExecutionsCommandInput,
21
+ ListExecutionsCommandOutput,
22
+ SFNClientResolvedConfig
23
+ > {
24
+ readonly input: ListExecutionsCommandInput;
25
+ constructor(input: ListExecutionsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SFNClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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
+
22
+ export declare class ListStateMachinesCommand extends $Command<
23
+ ListStateMachinesCommandInput,
24
+ ListStateMachinesCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: ListStateMachinesCommandInput;
28
+ constructor(input: ListStateMachinesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SFNClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListStateMachinesCommandInput, ListStateMachinesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ SFNClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SFNClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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
+
22
+ export declare class SendTaskFailureCommand extends $Command<
23
+ SendTaskFailureCommandInput,
24
+ SendTaskFailureCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: SendTaskFailureCommandInput;
28
+ constructor(input: SendTaskFailureCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SFNClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<SendTaskFailureCommandInput, SendTaskFailureCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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
+
22
+ export declare class SendTaskHeartbeatCommand extends $Command<
23
+ SendTaskHeartbeatCommandInput,
24
+ SendTaskHeartbeatCommandOutput,
25
+ SFNClientResolvedConfig
26
+ > {
27
+ readonly input: SendTaskHeartbeatCommandInput;
28
+ constructor(input: SendTaskHeartbeatCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SFNClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }