@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/SFN.d.ts +418 -120
- package/dist-types/ts3.4/SFNClient.d.ts +266 -96
- package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SFNServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1260 -1086
- package/dist-types/ts3.4/pagination/GetExecutionHistoryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListActivitiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListStateMachinesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +281 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|