@aws-sdk/client-sfn 3.47.1 → 3.50.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 +32 -0
- package/package.json +39 -33
- package/dist-types/ts3.4/SFN.d.ts +0 -120
- package/dist-types/ts3.4/SFNClient.d.ts +0 -96
- package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -23
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -5
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -1235
- package/dist-types/ts3.4/pagination/GetExecutionHistoryPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist-types/ts3.4/pagination/ListActivitiesPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListStateMachinesPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/index.d.ts +0 -5
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
|
@@ -1,17 +0,0 @@
|
|
|
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,17 +0,0 @@
|
|
|
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,17 +0,0 @@
|
|
|
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 { SendTaskSuccessInput, SendTaskSuccessOutput } from "../models/models_0";
|
|
4
|
-
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
|
|
5
|
-
export interface SendTaskSuccessCommandInput extends SendTaskSuccessInput {
|
|
6
|
-
}
|
|
7
|
-
export interface SendTaskSuccessCommandOutput extends SendTaskSuccessOutput, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class SendTaskSuccessCommand extends $Command<SendTaskSuccessCommandInput, SendTaskSuccessCommandOutput, SFNClientResolvedConfig> {
|
|
11
|
-
readonly input: SendTaskSuccessCommandInput;
|
|
12
|
-
constructor(input: SendTaskSuccessCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendTaskSuccessCommandInput, SendTaskSuccessCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
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 { StartExecutionInput, StartExecutionOutput } from "../models/models_0";
|
|
4
|
-
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
|
|
5
|
-
export interface StartExecutionCommandInput extends StartExecutionInput {
|
|
6
|
-
}
|
|
7
|
-
export interface StartExecutionCommandOutput extends StartExecutionOutput, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class StartExecutionCommand extends $Command<StartExecutionCommandInput, StartExecutionCommandOutput, SFNClientResolvedConfig> {
|
|
11
|
-
readonly input: StartExecutionCommandInput;
|
|
12
|
-
constructor(input: StartExecutionCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartExecutionCommandInput, StartExecutionCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
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 { StartSyncExecutionInput, StartSyncExecutionOutput } from "../models/models_0";
|
|
4
|
-
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
|
|
5
|
-
export interface StartSyncExecutionCommandInput extends StartSyncExecutionInput {
|
|
6
|
-
}
|
|
7
|
-
export interface StartSyncExecutionCommandOutput extends StartSyncExecutionOutput, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class StartSyncExecutionCommand extends $Command<StartSyncExecutionCommandInput, StartSyncExecutionCommandOutput, SFNClientResolvedConfig> {
|
|
11
|
-
readonly input: StartSyncExecutionCommandInput;
|
|
12
|
-
constructor(input: StartSyncExecutionCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSyncExecutionCommandInput, StartSyncExecutionCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
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 { StopExecutionInput, StopExecutionOutput } from "../models/models_0";
|
|
4
|
-
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
|
|
5
|
-
export interface StopExecutionCommandInput extends StopExecutionInput {
|
|
6
|
-
}
|
|
7
|
-
export interface StopExecutionCommandOutput extends StopExecutionOutput, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class StopExecutionCommand extends $Command<StopExecutionCommandInput, StopExecutionCommandOutput, SFNClientResolvedConfig> {
|
|
11
|
-
readonly input: StopExecutionCommandInput;
|
|
12
|
-
constructor(input: StopExecutionCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopExecutionCommandInput, StopExecutionCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
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 { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
4
|
-
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
|
|
5
|
-
export interface TagResourceCommandInput extends TagResourceInput {
|
|
6
|
-
}
|
|
7
|
-
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SFNClientResolvedConfig> {
|
|
11
|
-
readonly input: TagResourceCommandInput;
|
|
12
|
-
constructor(input: TagResourceCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
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 { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
4
|
-
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
|
|
5
|
-
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
6
|
-
}
|
|
7
|
-
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SFNClientResolvedConfig> {
|
|
11
|
-
readonly input: UntagResourceCommandInput;
|
|
12
|
-
constructor(input: UntagResourceCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
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 { UpdateStateMachineInput, UpdateStateMachineOutput } from "../models/models_0";
|
|
4
|
-
import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient";
|
|
5
|
-
export interface UpdateStateMachineCommandInput extends UpdateStateMachineInput {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateStateMachineCommandOutput extends UpdateStateMachineOutput, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class UpdateStateMachineCommand extends $Command<UpdateStateMachineCommandInput, UpdateStateMachineCommandOutput, SFNClientResolvedConfig> {
|
|
11
|
-
readonly input: UpdateStateMachineCommandInput;
|
|
12
|
-
constructor(input: UpdateStateMachineCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SFNClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateStateMachineCommandInput, UpdateStateMachineCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
export * from "./CreateActivityCommand";
|
|
2
|
-
export * from "./CreateStateMachineCommand";
|
|
3
|
-
export * from "./DeleteActivityCommand";
|
|
4
|
-
export * from "./DeleteStateMachineCommand";
|
|
5
|
-
export * from "./DescribeActivityCommand";
|
|
6
|
-
export * from "./DescribeExecutionCommand";
|
|
7
|
-
export * from "./DescribeStateMachineCommand";
|
|
8
|
-
export * from "./DescribeStateMachineForExecutionCommand";
|
|
9
|
-
export * from "./GetActivityTaskCommand";
|
|
10
|
-
export * from "./GetExecutionHistoryCommand";
|
|
11
|
-
export * from "./ListActivitiesCommand";
|
|
12
|
-
export * from "./ListExecutionsCommand";
|
|
13
|
-
export * from "./ListStateMachinesCommand";
|
|
14
|
-
export * from "./ListTagsForResourceCommand";
|
|
15
|
-
export * from "./SendTaskFailureCommand";
|
|
16
|
-
export * from "./SendTaskHeartbeatCommand";
|
|
17
|
-
export * from "./SendTaskSuccessCommand";
|
|
18
|
-
export * from "./StartExecutionCommand";
|
|
19
|
-
export * from "./StartSyncExecutionCommand";
|
|
20
|
-
export * from "./StopExecutionCommand";
|
|
21
|
-
export * from "./TagResourceCommand";
|
|
22
|
-
export * from "./UntagResourceCommand";
|
|
23
|
-
export * from "./UpdateStateMachineCommand";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|