@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,96 +1,266 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateActivityCommandInput,
|
|
47
|
+
CreateActivityCommandOutput,
|
|
48
|
+
} from "./commands/CreateActivityCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateStateMachineCommandInput,
|
|
51
|
+
CreateStateMachineCommandOutput,
|
|
52
|
+
} from "./commands/CreateStateMachineCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteActivityCommandInput,
|
|
55
|
+
DeleteActivityCommandOutput,
|
|
56
|
+
} from "./commands/DeleteActivityCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteStateMachineCommandInput,
|
|
59
|
+
DeleteStateMachineCommandOutput,
|
|
60
|
+
} from "./commands/DeleteStateMachineCommand";
|
|
61
|
+
import {
|
|
62
|
+
DescribeActivityCommandInput,
|
|
63
|
+
DescribeActivityCommandOutput,
|
|
64
|
+
} from "./commands/DescribeActivityCommand";
|
|
65
|
+
import {
|
|
66
|
+
DescribeExecutionCommandInput,
|
|
67
|
+
DescribeExecutionCommandOutput,
|
|
68
|
+
} from "./commands/DescribeExecutionCommand";
|
|
69
|
+
import {
|
|
70
|
+
DescribeStateMachineCommandInput,
|
|
71
|
+
DescribeStateMachineCommandOutput,
|
|
72
|
+
} from "./commands/DescribeStateMachineCommand";
|
|
73
|
+
import {
|
|
74
|
+
DescribeStateMachineForExecutionCommandInput,
|
|
75
|
+
DescribeStateMachineForExecutionCommandOutput,
|
|
76
|
+
} from "./commands/DescribeStateMachineForExecutionCommand";
|
|
77
|
+
import {
|
|
78
|
+
GetActivityTaskCommandInput,
|
|
79
|
+
GetActivityTaskCommandOutput,
|
|
80
|
+
} from "./commands/GetActivityTaskCommand";
|
|
81
|
+
import {
|
|
82
|
+
GetExecutionHistoryCommandInput,
|
|
83
|
+
GetExecutionHistoryCommandOutput,
|
|
84
|
+
} from "./commands/GetExecutionHistoryCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListActivitiesCommandInput,
|
|
87
|
+
ListActivitiesCommandOutput,
|
|
88
|
+
} from "./commands/ListActivitiesCommand";
|
|
89
|
+
import {
|
|
90
|
+
ListExecutionsCommandInput,
|
|
91
|
+
ListExecutionsCommandOutput,
|
|
92
|
+
} from "./commands/ListExecutionsCommand";
|
|
93
|
+
import {
|
|
94
|
+
ListStateMachinesCommandInput,
|
|
95
|
+
ListStateMachinesCommandOutput,
|
|
96
|
+
} from "./commands/ListStateMachinesCommand";
|
|
97
|
+
import {
|
|
98
|
+
ListTagsForResourceCommandInput,
|
|
99
|
+
ListTagsForResourceCommandOutput,
|
|
100
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
101
|
+
import {
|
|
102
|
+
SendTaskFailureCommandInput,
|
|
103
|
+
SendTaskFailureCommandOutput,
|
|
104
|
+
} from "./commands/SendTaskFailureCommand";
|
|
105
|
+
import {
|
|
106
|
+
SendTaskHeartbeatCommandInput,
|
|
107
|
+
SendTaskHeartbeatCommandOutput,
|
|
108
|
+
} from "./commands/SendTaskHeartbeatCommand";
|
|
109
|
+
import {
|
|
110
|
+
SendTaskSuccessCommandInput,
|
|
111
|
+
SendTaskSuccessCommandOutput,
|
|
112
|
+
} from "./commands/SendTaskSuccessCommand";
|
|
113
|
+
import {
|
|
114
|
+
StartExecutionCommandInput,
|
|
115
|
+
StartExecutionCommandOutput,
|
|
116
|
+
} from "./commands/StartExecutionCommand";
|
|
117
|
+
import {
|
|
118
|
+
StartSyncExecutionCommandInput,
|
|
119
|
+
StartSyncExecutionCommandOutput,
|
|
120
|
+
} from "./commands/StartSyncExecutionCommand";
|
|
121
|
+
import {
|
|
122
|
+
StopExecutionCommandInput,
|
|
123
|
+
StopExecutionCommandOutput,
|
|
124
|
+
} from "./commands/StopExecutionCommand";
|
|
125
|
+
import {
|
|
126
|
+
TagResourceCommandInput,
|
|
127
|
+
TagResourceCommandOutput,
|
|
128
|
+
} from "./commands/TagResourceCommand";
|
|
129
|
+
import {
|
|
130
|
+
UntagResourceCommandInput,
|
|
131
|
+
UntagResourceCommandOutput,
|
|
132
|
+
} from "./commands/UntagResourceCommand";
|
|
133
|
+
import {
|
|
134
|
+
UpdateStateMachineCommandInput,
|
|
135
|
+
UpdateStateMachineCommandOutput,
|
|
136
|
+
} from "./commands/UpdateStateMachineCommand";
|
|
137
|
+
export declare type ServiceInputTypes =
|
|
138
|
+
| CreateActivityCommandInput
|
|
139
|
+
| CreateStateMachineCommandInput
|
|
140
|
+
| DeleteActivityCommandInput
|
|
141
|
+
| DeleteStateMachineCommandInput
|
|
142
|
+
| DescribeActivityCommandInput
|
|
143
|
+
| DescribeExecutionCommandInput
|
|
144
|
+
| DescribeStateMachineCommandInput
|
|
145
|
+
| DescribeStateMachineForExecutionCommandInput
|
|
146
|
+
| GetActivityTaskCommandInput
|
|
147
|
+
| GetExecutionHistoryCommandInput
|
|
148
|
+
| ListActivitiesCommandInput
|
|
149
|
+
| ListExecutionsCommandInput
|
|
150
|
+
| ListStateMachinesCommandInput
|
|
151
|
+
| ListTagsForResourceCommandInput
|
|
152
|
+
| SendTaskFailureCommandInput
|
|
153
|
+
| SendTaskHeartbeatCommandInput
|
|
154
|
+
| SendTaskSuccessCommandInput
|
|
155
|
+
| StartExecutionCommandInput
|
|
156
|
+
| StartSyncExecutionCommandInput
|
|
157
|
+
| StopExecutionCommandInput
|
|
158
|
+
| TagResourceCommandInput
|
|
159
|
+
| UntagResourceCommandInput
|
|
160
|
+
| UpdateStateMachineCommandInput;
|
|
161
|
+
export declare type ServiceOutputTypes =
|
|
162
|
+
| CreateActivityCommandOutput
|
|
163
|
+
| CreateStateMachineCommandOutput
|
|
164
|
+
| DeleteActivityCommandOutput
|
|
165
|
+
| DeleteStateMachineCommandOutput
|
|
166
|
+
| DescribeActivityCommandOutput
|
|
167
|
+
| DescribeExecutionCommandOutput
|
|
168
|
+
| DescribeStateMachineCommandOutput
|
|
169
|
+
| DescribeStateMachineForExecutionCommandOutput
|
|
170
|
+
| GetActivityTaskCommandOutput
|
|
171
|
+
| GetExecutionHistoryCommandOutput
|
|
172
|
+
| ListActivitiesCommandOutput
|
|
173
|
+
| ListExecutionsCommandOutput
|
|
174
|
+
| ListStateMachinesCommandOutput
|
|
175
|
+
| ListTagsForResourceCommandOutput
|
|
176
|
+
| SendTaskFailureCommandOutput
|
|
177
|
+
| SendTaskHeartbeatCommandOutput
|
|
178
|
+
| SendTaskSuccessCommandOutput
|
|
179
|
+
| StartExecutionCommandOutput
|
|
180
|
+
| StartSyncExecutionCommandOutput
|
|
181
|
+
| StopExecutionCommandOutput
|
|
182
|
+
| TagResourceCommandOutput
|
|
183
|
+
| UntagResourceCommandOutput
|
|
184
|
+
| UpdateStateMachineCommandOutput;
|
|
185
|
+
export interface ClientDefaults
|
|
186
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
187
|
+
requestHandler?: __HttpHandler;
|
|
188
|
+
|
|
189
|
+
sha256?: __HashConstructor;
|
|
190
|
+
|
|
191
|
+
urlParser?: __UrlParser;
|
|
192
|
+
|
|
193
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
194
|
+
|
|
195
|
+
streamCollector?: __StreamCollector;
|
|
196
|
+
|
|
197
|
+
base64Decoder?: __Decoder;
|
|
198
|
+
|
|
199
|
+
base64Encoder?: __Encoder;
|
|
200
|
+
|
|
201
|
+
utf8Decoder?: __Decoder;
|
|
202
|
+
|
|
203
|
+
utf8Encoder?: __Encoder;
|
|
204
|
+
|
|
205
|
+
runtime?: string;
|
|
206
|
+
|
|
207
|
+
disableHostPrefix?: boolean;
|
|
208
|
+
|
|
209
|
+
maxAttempts?: number | __Provider<number>;
|
|
210
|
+
|
|
211
|
+
retryMode?: string | __Provider<string>;
|
|
212
|
+
|
|
213
|
+
logger?: __Logger;
|
|
214
|
+
|
|
215
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
216
|
+
|
|
217
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
218
|
+
|
|
219
|
+
serviceId?: string;
|
|
220
|
+
|
|
221
|
+
region?: string | __Provider<string>;
|
|
222
|
+
|
|
223
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
224
|
+
|
|
225
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
226
|
+
|
|
227
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
228
|
+
|
|
229
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
230
|
+
}
|
|
231
|
+
declare type SFNClientConfigType = Partial<
|
|
232
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
233
|
+
> &
|
|
234
|
+
ClientDefaults &
|
|
235
|
+
RegionInputConfig &
|
|
236
|
+
EndpointsInputConfig &
|
|
237
|
+
RetryInputConfig &
|
|
238
|
+
HostHeaderInputConfig &
|
|
239
|
+
AwsAuthInputConfig &
|
|
240
|
+
UserAgentInputConfig;
|
|
241
|
+
|
|
242
|
+
export interface SFNClientConfig extends SFNClientConfigType {}
|
|
243
|
+
declare type SFNClientResolvedConfigType =
|
|
244
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
245
|
+
Required<ClientDefaults> &
|
|
246
|
+
RegionResolvedConfig &
|
|
247
|
+
EndpointsResolvedConfig &
|
|
248
|
+
RetryResolvedConfig &
|
|
249
|
+
HostHeaderResolvedConfig &
|
|
250
|
+
AwsAuthResolvedConfig &
|
|
251
|
+
UserAgentResolvedConfig;
|
|
252
|
+
|
|
253
|
+
export interface SFNClientResolvedConfig extends SFNClientResolvedConfigType {}
|
|
254
|
+
|
|
255
|
+
export declare class SFNClient extends __Client<
|
|
256
|
+
__HttpHandlerOptions,
|
|
257
|
+
ServiceInputTypes,
|
|
258
|
+
ServiceOutputTypes,
|
|
259
|
+
SFNClientResolvedConfig
|
|
260
|
+
> {
|
|
261
|
+
readonly config: SFNClientResolvedConfig;
|
|
262
|
+
constructor(configuration: SFNClientConfig);
|
|
263
|
+
|
|
264
|
+
destroy(): void;
|
|
265
|
+
}
|
|
266
|
+
export {};
|
|
@@ -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 { CreateActivityInput, CreateActivityOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SFNClientResolvedConfig,
|
|
13
|
+
} from "../SFNClient";
|
|
14
|
+
export interface CreateActivityCommandInput extends CreateActivityInput {}
|
|
15
|
+
export interface CreateActivityCommandOutput
|
|
16
|
+
extends CreateActivityOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CreateActivityCommand extends $Command<
|
|
20
|
+
CreateActivityCommandInput,
|
|
21
|
+
CreateActivityCommandOutput,
|
|
22
|
+
SFNClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateActivityCommandInput;
|
|
25
|
+
constructor(input: CreateActivityCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SFNClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateActivityCommandInput, CreateActivityCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -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
|
+
CreateStateMachineInput,
|
|
10
|
+
CreateStateMachineOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SFNClientResolvedConfig,
|
|
16
|
+
} from "../SFNClient";
|
|
17
|
+
export interface CreateStateMachineCommandInput
|
|
18
|
+
extends CreateStateMachineInput {}
|
|
19
|
+
export interface CreateStateMachineCommandOutput
|
|
20
|
+
extends CreateStateMachineOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateStateMachineCommand extends $Command<
|
|
24
|
+
CreateStateMachineCommandInput,
|
|
25
|
+
CreateStateMachineCommandOutput,
|
|
26
|
+
SFNClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateStateMachineCommandInput;
|
|
29
|
+
constructor(input: CreateStateMachineCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SFNClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateStateMachineCommandInput, CreateStateMachineCommandOutput>;
|
|
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 { DeleteActivityInput, DeleteActivityOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SFNClientResolvedConfig,
|
|
13
|
+
} from "../SFNClient";
|
|
14
|
+
export interface DeleteActivityCommandInput extends DeleteActivityInput {}
|
|
15
|
+
export interface DeleteActivityCommandOutput
|
|
16
|
+
extends DeleteActivityOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteActivityCommand extends $Command<
|
|
20
|
+
DeleteActivityCommandInput,
|
|
21
|
+
DeleteActivityCommandOutput,
|
|
22
|
+
SFNClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteActivityCommandInput;
|
|
25
|
+
constructor(input: DeleteActivityCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SFNClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteActivityCommandInput, DeleteActivityCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -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
|
+
DeleteStateMachineInput,
|
|
10
|
+
DeleteStateMachineOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SFNClientResolvedConfig,
|
|
16
|
+
} from "../SFNClient";
|
|
17
|
+
export interface DeleteStateMachineCommandInput
|
|
18
|
+
extends DeleteStateMachineInput {}
|
|
19
|
+
export interface DeleteStateMachineCommandOutput
|
|
20
|
+
extends DeleteStateMachineOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteStateMachineCommand extends $Command<
|
|
24
|
+
DeleteStateMachineCommandInput,
|
|
25
|
+
DeleteStateMachineCommandOutput,
|
|
26
|
+
SFNClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteStateMachineCommandInput;
|
|
29
|
+
constructor(input: DeleteStateMachineCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SFNClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteStateMachineCommandInput, DeleteStateMachineCommandOutput>;
|
|
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
|
+
DescribeActivityInput,
|
|
10
|
+
DescribeActivityOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SFNClientResolvedConfig,
|
|
16
|
+
} from "../SFNClient";
|
|
17
|
+
export interface DescribeActivityCommandInput extends DescribeActivityInput {}
|
|
18
|
+
export interface DescribeActivityCommandOutput
|
|
19
|
+
extends DescribeActivityOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeActivityCommand extends $Command<
|
|
23
|
+
DescribeActivityCommandInput,
|
|
24
|
+
DescribeActivityCommandOutput,
|
|
25
|
+
SFNClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeActivityCommandInput;
|
|
28
|
+
constructor(input: DescribeActivityCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SFNClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeActivityCommandInput, DescribeActivityCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|