@aws-sdk/client-sfn 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/SFN.d.ts +119 -128
- package/dist-types/ts3.4/SFNClient.d.ts +16 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +9 -19
- package/dist-types/ts3.4/commands/CreateActivityCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateStateMachineAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteActivityCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteStateMachineAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteStateMachineVersionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeActivityCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeMapRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeStateMachineAliasCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeStateMachineForExecutionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetActivityTaskCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetExecutionHistoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListActivitiesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListMapRunsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListStateMachineAliasesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListStateMachineVersionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListStateMachinesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PublishStateMachineVersionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RedriveExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendTaskFailureCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendTaskHeartbeatCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendTaskSuccessCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartExecutionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartSyncExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopExecutionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TestStateCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateMapRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateStateMachineAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateStateMachineCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ValidateStateMachineDefinitionCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +23 -69
- package/dist-types/ts3.4/models/models_0.d.ts +7 -21
- package/dist-types/ts3.4/pagination/ListMapRunsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -71,10 +71,7 @@ import {
|
|
|
71
71
|
ListExecutionsCommandInput,
|
|
72
72
|
ListExecutionsCommandOutput,
|
|
73
73
|
} from "./commands/ListExecutionsCommand";
|
|
74
|
-
import {
|
|
75
|
-
ListMapRunsCommandInput,
|
|
76
|
-
ListMapRunsCommandOutput,
|
|
77
|
-
} from "./commands/ListMapRunsCommand";
|
|
74
|
+
import { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "./commands/ListMapRunsCommand";
|
|
78
75
|
import {
|
|
79
76
|
ListStateMachineAliasesCommandInput,
|
|
80
77
|
ListStateMachineAliasesCommandOutput,
|
|
@@ -123,14 +120,8 @@ import {
|
|
|
123
120
|
StopExecutionCommandInput,
|
|
124
121
|
StopExecutionCommandOutput,
|
|
125
122
|
} from "./commands/StopExecutionCommand";
|
|
126
|
-
import {
|
|
127
|
-
|
|
128
|
-
TagResourceCommandOutput,
|
|
129
|
-
} from "./commands/TagResourceCommand";
|
|
130
|
-
import {
|
|
131
|
-
TestStateCommandInput,
|
|
132
|
-
TestStateCommandOutput,
|
|
133
|
-
} from "./commands/TestStateCommand";
|
|
123
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
124
|
+
import { TestStateCommandInput, TestStateCommandOutput } from "./commands/TestStateCommand";
|
|
134
125
|
import {
|
|
135
126
|
UntagResourceCommandInput,
|
|
136
127
|
UntagResourceCommandOutput,
|
|
@@ -155,522 +146,522 @@ import { SFNClient } from "./SFNClient";
|
|
|
155
146
|
export interface SFN {
|
|
156
147
|
createActivity(
|
|
157
148
|
args: CreateActivityCommandInput,
|
|
158
|
-
options?: __HttpHandlerOptions
|
|
149
|
+
options?: __HttpHandlerOptions,
|
|
159
150
|
): Promise<CreateActivityCommandOutput>;
|
|
160
151
|
createActivity(
|
|
161
152
|
args: CreateActivityCommandInput,
|
|
162
|
-
cb: (err: any, data?: CreateActivityCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: CreateActivityCommandOutput) => void,
|
|
163
154
|
): void;
|
|
164
155
|
createActivity(
|
|
165
156
|
args: CreateActivityCommandInput,
|
|
166
157
|
options: __HttpHandlerOptions,
|
|
167
|
-
cb: (err: any, data?: CreateActivityCommandOutput) => void
|
|
158
|
+
cb: (err: any, data?: CreateActivityCommandOutput) => void,
|
|
168
159
|
): void;
|
|
169
160
|
createStateMachine(
|
|
170
161
|
args: CreateStateMachineCommandInput,
|
|
171
|
-
options?: __HttpHandlerOptions
|
|
162
|
+
options?: __HttpHandlerOptions,
|
|
172
163
|
): Promise<CreateStateMachineCommandOutput>;
|
|
173
164
|
createStateMachine(
|
|
174
165
|
args: CreateStateMachineCommandInput,
|
|
175
|
-
cb: (err: any, data?: CreateStateMachineCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CreateStateMachineCommandOutput) => void,
|
|
176
167
|
): void;
|
|
177
168
|
createStateMachine(
|
|
178
169
|
args: CreateStateMachineCommandInput,
|
|
179
170
|
options: __HttpHandlerOptions,
|
|
180
|
-
cb: (err: any, data?: CreateStateMachineCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: CreateStateMachineCommandOutput) => void,
|
|
181
172
|
): void;
|
|
182
173
|
createStateMachineAlias(
|
|
183
174
|
args: CreateStateMachineAliasCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
175
|
+
options?: __HttpHandlerOptions,
|
|
185
176
|
): Promise<CreateStateMachineAliasCommandOutput>;
|
|
186
177
|
createStateMachineAlias(
|
|
187
178
|
args: CreateStateMachineAliasCommandInput,
|
|
188
|
-
cb: (err: any, data?: CreateStateMachineAliasCommandOutput) => void
|
|
179
|
+
cb: (err: any, data?: CreateStateMachineAliasCommandOutput) => void,
|
|
189
180
|
): void;
|
|
190
181
|
createStateMachineAlias(
|
|
191
182
|
args: CreateStateMachineAliasCommandInput,
|
|
192
183
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: CreateStateMachineAliasCommandOutput) => void
|
|
184
|
+
cb: (err: any, data?: CreateStateMachineAliasCommandOutput) => void,
|
|
194
185
|
): void;
|
|
195
186
|
deleteActivity(
|
|
196
187
|
args: DeleteActivityCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
188
|
+
options?: __HttpHandlerOptions,
|
|
198
189
|
): Promise<DeleteActivityCommandOutput>;
|
|
199
190
|
deleteActivity(
|
|
200
191
|
args: DeleteActivityCommandInput,
|
|
201
|
-
cb: (err: any, data?: DeleteActivityCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: DeleteActivityCommandOutput) => void,
|
|
202
193
|
): void;
|
|
203
194
|
deleteActivity(
|
|
204
195
|
args: DeleteActivityCommandInput,
|
|
205
196
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: DeleteActivityCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: DeleteActivityCommandOutput) => void,
|
|
207
198
|
): void;
|
|
208
199
|
deleteStateMachine(
|
|
209
200
|
args: DeleteStateMachineCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
211
202
|
): Promise<DeleteStateMachineCommandOutput>;
|
|
212
203
|
deleteStateMachine(
|
|
213
204
|
args: DeleteStateMachineCommandInput,
|
|
214
|
-
cb: (err: any, data?: DeleteStateMachineCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: DeleteStateMachineCommandOutput) => void,
|
|
215
206
|
): void;
|
|
216
207
|
deleteStateMachine(
|
|
217
208
|
args: DeleteStateMachineCommandInput,
|
|
218
209
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: DeleteStateMachineCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: DeleteStateMachineCommandOutput) => void,
|
|
220
211
|
): void;
|
|
221
212
|
deleteStateMachineAlias(
|
|
222
213
|
args: DeleteStateMachineAliasCommandInput,
|
|
223
|
-
options?: __HttpHandlerOptions
|
|
214
|
+
options?: __HttpHandlerOptions,
|
|
224
215
|
): Promise<DeleteStateMachineAliasCommandOutput>;
|
|
225
216
|
deleteStateMachineAlias(
|
|
226
217
|
args: DeleteStateMachineAliasCommandInput,
|
|
227
|
-
cb: (err: any, data?: DeleteStateMachineAliasCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: DeleteStateMachineAliasCommandOutput) => void,
|
|
228
219
|
): void;
|
|
229
220
|
deleteStateMachineAlias(
|
|
230
221
|
args: DeleteStateMachineAliasCommandInput,
|
|
231
222
|
options: __HttpHandlerOptions,
|
|
232
|
-
cb: (err: any, data?: DeleteStateMachineAliasCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: DeleteStateMachineAliasCommandOutput) => void,
|
|
233
224
|
): void;
|
|
234
225
|
deleteStateMachineVersion(
|
|
235
226
|
args: DeleteStateMachineVersionCommandInput,
|
|
236
|
-
options?: __HttpHandlerOptions
|
|
227
|
+
options?: __HttpHandlerOptions,
|
|
237
228
|
): Promise<DeleteStateMachineVersionCommandOutput>;
|
|
238
229
|
deleteStateMachineVersion(
|
|
239
230
|
args: DeleteStateMachineVersionCommandInput,
|
|
240
|
-
cb: (err: any, data?: DeleteStateMachineVersionCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: DeleteStateMachineVersionCommandOutput) => void,
|
|
241
232
|
): void;
|
|
242
233
|
deleteStateMachineVersion(
|
|
243
234
|
args: DeleteStateMachineVersionCommandInput,
|
|
244
235
|
options: __HttpHandlerOptions,
|
|
245
|
-
cb: (err: any, data?: DeleteStateMachineVersionCommandOutput) => void
|
|
236
|
+
cb: (err: any, data?: DeleteStateMachineVersionCommandOutput) => void,
|
|
246
237
|
): void;
|
|
247
238
|
describeActivity(
|
|
248
239
|
args: DescribeActivityCommandInput,
|
|
249
|
-
options?: __HttpHandlerOptions
|
|
240
|
+
options?: __HttpHandlerOptions,
|
|
250
241
|
): Promise<DescribeActivityCommandOutput>;
|
|
251
242
|
describeActivity(
|
|
252
243
|
args: DescribeActivityCommandInput,
|
|
253
|
-
cb: (err: any, data?: DescribeActivityCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: DescribeActivityCommandOutput) => void,
|
|
254
245
|
): void;
|
|
255
246
|
describeActivity(
|
|
256
247
|
args: DescribeActivityCommandInput,
|
|
257
248
|
options: __HttpHandlerOptions,
|
|
258
|
-
cb: (err: any, data?: DescribeActivityCommandOutput) => void
|
|
249
|
+
cb: (err: any, data?: DescribeActivityCommandOutput) => void,
|
|
259
250
|
): void;
|
|
260
251
|
describeExecution(
|
|
261
252
|
args: DescribeExecutionCommandInput,
|
|
262
|
-
options?: __HttpHandlerOptions
|
|
253
|
+
options?: __HttpHandlerOptions,
|
|
263
254
|
): Promise<DescribeExecutionCommandOutput>;
|
|
264
255
|
describeExecution(
|
|
265
256
|
args: DescribeExecutionCommandInput,
|
|
266
|
-
cb: (err: any, data?: DescribeExecutionCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: DescribeExecutionCommandOutput) => void,
|
|
267
258
|
): void;
|
|
268
259
|
describeExecution(
|
|
269
260
|
args: DescribeExecutionCommandInput,
|
|
270
261
|
options: __HttpHandlerOptions,
|
|
271
|
-
cb: (err: any, data?: DescribeExecutionCommandOutput) => void
|
|
262
|
+
cb: (err: any, data?: DescribeExecutionCommandOutput) => void,
|
|
272
263
|
): void;
|
|
273
264
|
describeMapRun(
|
|
274
265
|
args: DescribeMapRunCommandInput,
|
|
275
|
-
options?: __HttpHandlerOptions
|
|
266
|
+
options?: __HttpHandlerOptions,
|
|
276
267
|
): Promise<DescribeMapRunCommandOutput>;
|
|
277
268
|
describeMapRun(
|
|
278
269
|
args: DescribeMapRunCommandInput,
|
|
279
|
-
cb: (err: any, data?: DescribeMapRunCommandOutput) => void
|
|
270
|
+
cb: (err: any, data?: DescribeMapRunCommandOutput) => void,
|
|
280
271
|
): void;
|
|
281
272
|
describeMapRun(
|
|
282
273
|
args: DescribeMapRunCommandInput,
|
|
283
274
|
options: __HttpHandlerOptions,
|
|
284
|
-
cb: (err: any, data?: DescribeMapRunCommandOutput) => void
|
|
275
|
+
cb: (err: any, data?: DescribeMapRunCommandOutput) => void,
|
|
285
276
|
): void;
|
|
286
277
|
describeStateMachine(
|
|
287
278
|
args: DescribeStateMachineCommandInput,
|
|
288
|
-
options?: __HttpHandlerOptions
|
|
279
|
+
options?: __HttpHandlerOptions,
|
|
289
280
|
): Promise<DescribeStateMachineCommandOutput>;
|
|
290
281
|
describeStateMachine(
|
|
291
282
|
args: DescribeStateMachineCommandInput,
|
|
292
|
-
cb: (err: any, data?: DescribeStateMachineCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: DescribeStateMachineCommandOutput) => void,
|
|
293
284
|
): void;
|
|
294
285
|
describeStateMachine(
|
|
295
286
|
args: DescribeStateMachineCommandInput,
|
|
296
287
|
options: __HttpHandlerOptions,
|
|
297
|
-
cb: (err: any, data?: DescribeStateMachineCommandOutput) => void
|
|
288
|
+
cb: (err: any, data?: DescribeStateMachineCommandOutput) => void,
|
|
298
289
|
): void;
|
|
299
290
|
describeStateMachineAlias(
|
|
300
291
|
args: DescribeStateMachineAliasCommandInput,
|
|
301
|
-
options?: __HttpHandlerOptions
|
|
292
|
+
options?: __HttpHandlerOptions,
|
|
302
293
|
): Promise<DescribeStateMachineAliasCommandOutput>;
|
|
303
294
|
describeStateMachineAlias(
|
|
304
295
|
args: DescribeStateMachineAliasCommandInput,
|
|
305
|
-
cb: (err: any, data?: DescribeStateMachineAliasCommandOutput) => void
|
|
296
|
+
cb: (err: any, data?: DescribeStateMachineAliasCommandOutput) => void,
|
|
306
297
|
): void;
|
|
307
298
|
describeStateMachineAlias(
|
|
308
299
|
args: DescribeStateMachineAliasCommandInput,
|
|
309
300
|
options: __HttpHandlerOptions,
|
|
310
|
-
cb: (err: any, data?: DescribeStateMachineAliasCommandOutput) => void
|
|
301
|
+
cb: (err: any, data?: DescribeStateMachineAliasCommandOutput) => void,
|
|
311
302
|
): void;
|
|
312
303
|
describeStateMachineForExecution(
|
|
313
304
|
args: DescribeStateMachineForExecutionCommandInput,
|
|
314
|
-
options?: __HttpHandlerOptions
|
|
305
|
+
options?: __HttpHandlerOptions,
|
|
315
306
|
): Promise<DescribeStateMachineForExecutionCommandOutput>;
|
|
316
307
|
describeStateMachineForExecution(
|
|
317
308
|
args: DescribeStateMachineForExecutionCommandInput,
|
|
318
|
-
cb: (err: any, data?: DescribeStateMachineForExecutionCommandOutput) => void
|
|
309
|
+
cb: (err: any, data?: DescribeStateMachineForExecutionCommandOutput) => void,
|
|
319
310
|
): void;
|
|
320
311
|
describeStateMachineForExecution(
|
|
321
312
|
args: DescribeStateMachineForExecutionCommandInput,
|
|
322
313
|
options: __HttpHandlerOptions,
|
|
323
|
-
cb: (err: any, data?: DescribeStateMachineForExecutionCommandOutput) => void
|
|
314
|
+
cb: (err: any, data?: DescribeStateMachineForExecutionCommandOutput) => void,
|
|
324
315
|
): void;
|
|
325
316
|
getActivityTask(
|
|
326
317
|
args: GetActivityTaskCommandInput,
|
|
327
|
-
options?: __HttpHandlerOptions
|
|
318
|
+
options?: __HttpHandlerOptions,
|
|
328
319
|
): Promise<GetActivityTaskCommandOutput>;
|
|
329
320
|
getActivityTask(
|
|
330
321
|
args: GetActivityTaskCommandInput,
|
|
331
|
-
cb: (err: any, data?: GetActivityTaskCommandOutput) => void
|
|
322
|
+
cb: (err: any, data?: GetActivityTaskCommandOutput) => void,
|
|
332
323
|
): void;
|
|
333
324
|
getActivityTask(
|
|
334
325
|
args: GetActivityTaskCommandInput,
|
|
335
326
|
options: __HttpHandlerOptions,
|
|
336
|
-
cb: (err: any, data?: GetActivityTaskCommandOutput) => void
|
|
327
|
+
cb: (err: any, data?: GetActivityTaskCommandOutput) => void,
|
|
337
328
|
): void;
|
|
338
329
|
getExecutionHistory(
|
|
339
330
|
args: GetExecutionHistoryCommandInput,
|
|
340
|
-
options?: __HttpHandlerOptions
|
|
331
|
+
options?: __HttpHandlerOptions,
|
|
341
332
|
): Promise<GetExecutionHistoryCommandOutput>;
|
|
342
333
|
getExecutionHistory(
|
|
343
334
|
args: GetExecutionHistoryCommandInput,
|
|
344
|
-
cb: (err: any, data?: GetExecutionHistoryCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: GetExecutionHistoryCommandOutput) => void,
|
|
345
336
|
): void;
|
|
346
337
|
getExecutionHistory(
|
|
347
338
|
args: GetExecutionHistoryCommandInput,
|
|
348
339
|
options: __HttpHandlerOptions,
|
|
349
|
-
cb: (err: any, data?: GetExecutionHistoryCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: GetExecutionHistoryCommandOutput) => void,
|
|
350
341
|
): void;
|
|
351
342
|
listActivities(): Promise<ListActivitiesCommandOutput>;
|
|
352
343
|
listActivities(
|
|
353
344
|
args: ListActivitiesCommandInput,
|
|
354
|
-
options?: __HttpHandlerOptions
|
|
345
|
+
options?: __HttpHandlerOptions,
|
|
355
346
|
): Promise<ListActivitiesCommandOutput>;
|
|
356
347
|
listActivities(
|
|
357
348
|
args: ListActivitiesCommandInput,
|
|
358
|
-
cb: (err: any, data?: ListActivitiesCommandOutput) => void
|
|
349
|
+
cb: (err: any, data?: ListActivitiesCommandOutput) => void,
|
|
359
350
|
): void;
|
|
360
351
|
listActivities(
|
|
361
352
|
args: ListActivitiesCommandInput,
|
|
362
353
|
options: __HttpHandlerOptions,
|
|
363
|
-
cb: (err: any, data?: ListActivitiesCommandOutput) => void
|
|
354
|
+
cb: (err: any, data?: ListActivitiesCommandOutput) => void,
|
|
364
355
|
): void;
|
|
365
356
|
listExecutions(): Promise<ListExecutionsCommandOutput>;
|
|
366
357
|
listExecutions(
|
|
367
358
|
args: ListExecutionsCommandInput,
|
|
368
|
-
options?: __HttpHandlerOptions
|
|
359
|
+
options?: __HttpHandlerOptions,
|
|
369
360
|
): Promise<ListExecutionsCommandOutput>;
|
|
370
361
|
listExecutions(
|
|
371
362
|
args: ListExecutionsCommandInput,
|
|
372
|
-
cb: (err: any, data?: ListExecutionsCommandOutput) => void
|
|
363
|
+
cb: (err: any, data?: ListExecutionsCommandOutput) => void,
|
|
373
364
|
): void;
|
|
374
365
|
listExecutions(
|
|
375
366
|
args: ListExecutionsCommandInput,
|
|
376
367
|
options: __HttpHandlerOptions,
|
|
377
|
-
cb: (err: any, data?: ListExecutionsCommandOutput) => void
|
|
368
|
+
cb: (err: any, data?: ListExecutionsCommandOutput) => void,
|
|
378
369
|
): void;
|
|
379
370
|
listMapRuns(
|
|
380
371
|
args: ListMapRunsCommandInput,
|
|
381
|
-
options?: __HttpHandlerOptions
|
|
372
|
+
options?: __HttpHandlerOptions,
|
|
382
373
|
): Promise<ListMapRunsCommandOutput>;
|
|
383
374
|
listMapRuns(
|
|
384
375
|
args: ListMapRunsCommandInput,
|
|
385
|
-
cb: (err: any, data?: ListMapRunsCommandOutput) => void
|
|
376
|
+
cb: (err: any, data?: ListMapRunsCommandOutput) => void,
|
|
386
377
|
): void;
|
|
387
378
|
listMapRuns(
|
|
388
379
|
args: ListMapRunsCommandInput,
|
|
389
380
|
options: __HttpHandlerOptions,
|
|
390
|
-
cb: (err: any, data?: ListMapRunsCommandOutput) => void
|
|
381
|
+
cb: (err: any, data?: ListMapRunsCommandOutput) => void,
|
|
391
382
|
): void;
|
|
392
383
|
listStateMachineAliases(
|
|
393
384
|
args: ListStateMachineAliasesCommandInput,
|
|
394
|
-
options?: __HttpHandlerOptions
|
|
385
|
+
options?: __HttpHandlerOptions,
|
|
395
386
|
): Promise<ListStateMachineAliasesCommandOutput>;
|
|
396
387
|
listStateMachineAliases(
|
|
397
388
|
args: ListStateMachineAliasesCommandInput,
|
|
398
|
-
cb: (err: any, data?: ListStateMachineAliasesCommandOutput) => void
|
|
389
|
+
cb: (err: any, data?: ListStateMachineAliasesCommandOutput) => void,
|
|
399
390
|
): void;
|
|
400
391
|
listStateMachineAliases(
|
|
401
392
|
args: ListStateMachineAliasesCommandInput,
|
|
402
393
|
options: __HttpHandlerOptions,
|
|
403
|
-
cb: (err: any, data?: ListStateMachineAliasesCommandOutput) => void
|
|
394
|
+
cb: (err: any, data?: ListStateMachineAliasesCommandOutput) => void,
|
|
404
395
|
): void;
|
|
405
396
|
listStateMachines(): Promise<ListStateMachinesCommandOutput>;
|
|
406
397
|
listStateMachines(
|
|
407
398
|
args: ListStateMachinesCommandInput,
|
|
408
|
-
options?: __HttpHandlerOptions
|
|
399
|
+
options?: __HttpHandlerOptions,
|
|
409
400
|
): Promise<ListStateMachinesCommandOutput>;
|
|
410
401
|
listStateMachines(
|
|
411
402
|
args: ListStateMachinesCommandInput,
|
|
412
|
-
cb: (err: any, data?: ListStateMachinesCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: ListStateMachinesCommandOutput) => void,
|
|
413
404
|
): void;
|
|
414
405
|
listStateMachines(
|
|
415
406
|
args: ListStateMachinesCommandInput,
|
|
416
407
|
options: __HttpHandlerOptions,
|
|
417
|
-
cb: (err: any, data?: ListStateMachinesCommandOutput) => void
|
|
408
|
+
cb: (err: any, data?: ListStateMachinesCommandOutput) => void,
|
|
418
409
|
): void;
|
|
419
410
|
listStateMachineVersions(
|
|
420
411
|
args: ListStateMachineVersionsCommandInput,
|
|
421
|
-
options?: __HttpHandlerOptions
|
|
412
|
+
options?: __HttpHandlerOptions,
|
|
422
413
|
): Promise<ListStateMachineVersionsCommandOutput>;
|
|
423
414
|
listStateMachineVersions(
|
|
424
415
|
args: ListStateMachineVersionsCommandInput,
|
|
425
|
-
cb: (err: any, data?: ListStateMachineVersionsCommandOutput) => void
|
|
416
|
+
cb: (err: any, data?: ListStateMachineVersionsCommandOutput) => void,
|
|
426
417
|
): void;
|
|
427
418
|
listStateMachineVersions(
|
|
428
419
|
args: ListStateMachineVersionsCommandInput,
|
|
429
420
|
options: __HttpHandlerOptions,
|
|
430
|
-
cb: (err: any, data?: ListStateMachineVersionsCommandOutput) => void
|
|
421
|
+
cb: (err: any, data?: ListStateMachineVersionsCommandOutput) => void,
|
|
431
422
|
): void;
|
|
432
423
|
listTagsForResource(
|
|
433
424
|
args: ListTagsForResourceCommandInput,
|
|
434
|
-
options?: __HttpHandlerOptions
|
|
425
|
+
options?: __HttpHandlerOptions,
|
|
435
426
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
436
427
|
listTagsForResource(
|
|
437
428
|
args: ListTagsForResourceCommandInput,
|
|
438
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
429
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
439
430
|
): void;
|
|
440
431
|
listTagsForResource(
|
|
441
432
|
args: ListTagsForResourceCommandInput,
|
|
442
433
|
options: __HttpHandlerOptions,
|
|
443
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
434
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
444
435
|
): void;
|
|
445
436
|
publishStateMachineVersion(
|
|
446
437
|
args: PublishStateMachineVersionCommandInput,
|
|
447
|
-
options?: __HttpHandlerOptions
|
|
438
|
+
options?: __HttpHandlerOptions,
|
|
448
439
|
): Promise<PublishStateMachineVersionCommandOutput>;
|
|
449
440
|
publishStateMachineVersion(
|
|
450
441
|
args: PublishStateMachineVersionCommandInput,
|
|
451
|
-
cb: (err: any, data?: PublishStateMachineVersionCommandOutput) => void
|
|
442
|
+
cb: (err: any, data?: PublishStateMachineVersionCommandOutput) => void,
|
|
452
443
|
): void;
|
|
453
444
|
publishStateMachineVersion(
|
|
454
445
|
args: PublishStateMachineVersionCommandInput,
|
|
455
446
|
options: __HttpHandlerOptions,
|
|
456
|
-
cb: (err: any, data?: PublishStateMachineVersionCommandOutput) => void
|
|
447
|
+
cb: (err: any, data?: PublishStateMachineVersionCommandOutput) => void,
|
|
457
448
|
): void;
|
|
458
449
|
redriveExecution(
|
|
459
450
|
args: RedriveExecutionCommandInput,
|
|
460
|
-
options?: __HttpHandlerOptions
|
|
451
|
+
options?: __HttpHandlerOptions,
|
|
461
452
|
): Promise<RedriveExecutionCommandOutput>;
|
|
462
453
|
redriveExecution(
|
|
463
454
|
args: RedriveExecutionCommandInput,
|
|
464
|
-
cb: (err: any, data?: RedriveExecutionCommandOutput) => void
|
|
455
|
+
cb: (err: any, data?: RedriveExecutionCommandOutput) => void,
|
|
465
456
|
): void;
|
|
466
457
|
redriveExecution(
|
|
467
458
|
args: RedriveExecutionCommandInput,
|
|
468
459
|
options: __HttpHandlerOptions,
|
|
469
|
-
cb: (err: any, data?: RedriveExecutionCommandOutput) => void
|
|
460
|
+
cb: (err: any, data?: RedriveExecutionCommandOutput) => void,
|
|
470
461
|
): void;
|
|
471
462
|
sendTaskFailure(
|
|
472
463
|
args: SendTaskFailureCommandInput,
|
|
473
|
-
options?: __HttpHandlerOptions
|
|
464
|
+
options?: __HttpHandlerOptions,
|
|
474
465
|
): Promise<SendTaskFailureCommandOutput>;
|
|
475
466
|
sendTaskFailure(
|
|
476
467
|
args: SendTaskFailureCommandInput,
|
|
477
|
-
cb: (err: any, data?: SendTaskFailureCommandOutput) => void
|
|
468
|
+
cb: (err: any, data?: SendTaskFailureCommandOutput) => void,
|
|
478
469
|
): void;
|
|
479
470
|
sendTaskFailure(
|
|
480
471
|
args: SendTaskFailureCommandInput,
|
|
481
472
|
options: __HttpHandlerOptions,
|
|
482
|
-
cb: (err: any, data?: SendTaskFailureCommandOutput) => void
|
|
473
|
+
cb: (err: any, data?: SendTaskFailureCommandOutput) => void,
|
|
483
474
|
): void;
|
|
484
475
|
sendTaskHeartbeat(
|
|
485
476
|
args: SendTaskHeartbeatCommandInput,
|
|
486
|
-
options?: __HttpHandlerOptions
|
|
477
|
+
options?: __HttpHandlerOptions,
|
|
487
478
|
): Promise<SendTaskHeartbeatCommandOutput>;
|
|
488
479
|
sendTaskHeartbeat(
|
|
489
480
|
args: SendTaskHeartbeatCommandInput,
|
|
490
|
-
cb: (err: any, data?: SendTaskHeartbeatCommandOutput) => void
|
|
481
|
+
cb: (err: any, data?: SendTaskHeartbeatCommandOutput) => void,
|
|
491
482
|
): void;
|
|
492
483
|
sendTaskHeartbeat(
|
|
493
484
|
args: SendTaskHeartbeatCommandInput,
|
|
494
485
|
options: __HttpHandlerOptions,
|
|
495
|
-
cb: (err: any, data?: SendTaskHeartbeatCommandOutput) => void
|
|
486
|
+
cb: (err: any, data?: SendTaskHeartbeatCommandOutput) => void,
|
|
496
487
|
): void;
|
|
497
488
|
sendTaskSuccess(
|
|
498
489
|
args: SendTaskSuccessCommandInput,
|
|
499
|
-
options?: __HttpHandlerOptions
|
|
490
|
+
options?: __HttpHandlerOptions,
|
|
500
491
|
): Promise<SendTaskSuccessCommandOutput>;
|
|
501
492
|
sendTaskSuccess(
|
|
502
493
|
args: SendTaskSuccessCommandInput,
|
|
503
|
-
cb: (err: any, data?: SendTaskSuccessCommandOutput) => void
|
|
494
|
+
cb: (err: any, data?: SendTaskSuccessCommandOutput) => void,
|
|
504
495
|
): void;
|
|
505
496
|
sendTaskSuccess(
|
|
506
497
|
args: SendTaskSuccessCommandInput,
|
|
507
498
|
options: __HttpHandlerOptions,
|
|
508
|
-
cb: (err: any, data?: SendTaskSuccessCommandOutput) => void
|
|
499
|
+
cb: (err: any, data?: SendTaskSuccessCommandOutput) => void,
|
|
509
500
|
): void;
|
|
510
501
|
startExecution(
|
|
511
502
|
args: StartExecutionCommandInput,
|
|
512
|
-
options?: __HttpHandlerOptions
|
|
503
|
+
options?: __HttpHandlerOptions,
|
|
513
504
|
): Promise<StartExecutionCommandOutput>;
|
|
514
505
|
startExecution(
|
|
515
506
|
args: StartExecutionCommandInput,
|
|
516
|
-
cb: (err: any, data?: StartExecutionCommandOutput) => void
|
|
507
|
+
cb: (err: any, data?: StartExecutionCommandOutput) => void,
|
|
517
508
|
): void;
|
|
518
509
|
startExecution(
|
|
519
510
|
args: StartExecutionCommandInput,
|
|
520
511
|
options: __HttpHandlerOptions,
|
|
521
|
-
cb: (err: any, data?: StartExecutionCommandOutput) => void
|
|
512
|
+
cb: (err: any, data?: StartExecutionCommandOutput) => void,
|
|
522
513
|
): void;
|
|
523
514
|
startSyncExecution(
|
|
524
515
|
args: StartSyncExecutionCommandInput,
|
|
525
|
-
options?: __HttpHandlerOptions
|
|
516
|
+
options?: __HttpHandlerOptions,
|
|
526
517
|
): Promise<StartSyncExecutionCommandOutput>;
|
|
527
518
|
startSyncExecution(
|
|
528
519
|
args: StartSyncExecutionCommandInput,
|
|
529
|
-
cb: (err: any, data?: StartSyncExecutionCommandOutput) => void
|
|
520
|
+
cb: (err: any, data?: StartSyncExecutionCommandOutput) => void,
|
|
530
521
|
): void;
|
|
531
522
|
startSyncExecution(
|
|
532
523
|
args: StartSyncExecutionCommandInput,
|
|
533
524
|
options: __HttpHandlerOptions,
|
|
534
|
-
cb: (err: any, data?: StartSyncExecutionCommandOutput) => void
|
|
525
|
+
cb: (err: any, data?: StartSyncExecutionCommandOutput) => void,
|
|
535
526
|
): void;
|
|
536
527
|
stopExecution(
|
|
537
528
|
args: StopExecutionCommandInput,
|
|
538
|
-
options?: __HttpHandlerOptions
|
|
529
|
+
options?: __HttpHandlerOptions,
|
|
539
530
|
): Promise<StopExecutionCommandOutput>;
|
|
540
531
|
stopExecution(
|
|
541
532
|
args: StopExecutionCommandInput,
|
|
542
|
-
cb: (err: any, data?: StopExecutionCommandOutput) => void
|
|
533
|
+
cb: (err: any, data?: StopExecutionCommandOutput) => void,
|
|
543
534
|
): void;
|
|
544
535
|
stopExecution(
|
|
545
536
|
args: StopExecutionCommandInput,
|
|
546
537
|
options: __HttpHandlerOptions,
|
|
547
|
-
cb: (err: any, data?: StopExecutionCommandOutput) => void
|
|
538
|
+
cb: (err: any, data?: StopExecutionCommandOutput) => void,
|
|
548
539
|
): void;
|
|
549
540
|
tagResource(
|
|
550
541
|
args: TagResourceCommandInput,
|
|
551
|
-
options?: __HttpHandlerOptions
|
|
542
|
+
options?: __HttpHandlerOptions,
|
|
552
543
|
): Promise<TagResourceCommandOutput>;
|
|
553
544
|
tagResource(
|
|
554
545
|
args: TagResourceCommandInput,
|
|
555
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
546
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
556
547
|
): void;
|
|
557
548
|
tagResource(
|
|
558
549
|
args: TagResourceCommandInput,
|
|
559
550
|
options: __HttpHandlerOptions,
|
|
560
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
551
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
561
552
|
): void;
|
|
562
553
|
testState(
|
|
563
554
|
args: TestStateCommandInput,
|
|
564
|
-
options?: __HttpHandlerOptions
|
|
555
|
+
options?: __HttpHandlerOptions,
|
|
565
556
|
): Promise<TestStateCommandOutput>;
|
|
566
557
|
testState(
|
|
567
558
|
args: TestStateCommandInput,
|
|
568
|
-
cb: (err: any, data?: TestStateCommandOutput) => void
|
|
559
|
+
cb: (err: any, data?: TestStateCommandOutput) => void,
|
|
569
560
|
): void;
|
|
570
561
|
testState(
|
|
571
562
|
args: TestStateCommandInput,
|
|
572
563
|
options: __HttpHandlerOptions,
|
|
573
|
-
cb: (err: any, data?: TestStateCommandOutput) => void
|
|
564
|
+
cb: (err: any, data?: TestStateCommandOutput) => void,
|
|
574
565
|
): void;
|
|
575
566
|
untagResource(
|
|
576
567
|
args: UntagResourceCommandInput,
|
|
577
|
-
options?: __HttpHandlerOptions
|
|
568
|
+
options?: __HttpHandlerOptions,
|
|
578
569
|
): Promise<UntagResourceCommandOutput>;
|
|
579
570
|
untagResource(
|
|
580
571
|
args: UntagResourceCommandInput,
|
|
581
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
572
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
582
573
|
): void;
|
|
583
574
|
untagResource(
|
|
584
575
|
args: UntagResourceCommandInput,
|
|
585
576
|
options: __HttpHandlerOptions,
|
|
586
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
577
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
587
578
|
): void;
|
|
588
579
|
updateMapRun(
|
|
589
580
|
args: UpdateMapRunCommandInput,
|
|
590
|
-
options?: __HttpHandlerOptions
|
|
581
|
+
options?: __HttpHandlerOptions,
|
|
591
582
|
): Promise<UpdateMapRunCommandOutput>;
|
|
592
583
|
updateMapRun(
|
|
593
584
|
args: UpdateMapRunCommandInput,
|
|
594
|
-
cb: (err: any, data?: UpdateMapRunCommandOutput) => void
|
|
585
|
+
cb: (err: any, data?: UpdateMapRunCommandOutput) => void,
|
|
595
586
|
): void;
|
|
596
587
|
updateMapRun(
|
|
597
588
|
args: UpdateMapRunCommandInput,
|
|
598
589
|
options: __HttpHandlerOptions,
|
|
599
|
-
cb: (err: any, data?: UpdateMapRunCommandOutput) => void
|
|
590
|
+
cb: (err: any, data?: UpdateMapRunCommandOutput) => void,
|
|
600
591
|
): void;
|
|
601
592
|
updateStateMachine(
|
|
602
593
|
args: UpdateStateMachineCommandInput,
|
|
603
|
-
options?: __HttpHandlerOptions
|
|
594
|
+
options?: __HttpHandlerOptions,
|
|
604
595
|
): Promise<UpdateStateMachineCommandOutput>;
|
|
605
596
|
updateStateMachine(
|
|
606
597
|
args: UpdateStateMachineCommandInput,
|
|
607
|
-
cb: (err: any, data?: UpdateStateMachineCommandOutput) => void
|
|
598
|
+
cb: (err: any, data?: UpdateStateMachineCommandOutput) => void,
|
|
608
599
|
): void;
|
|
609
600
|
updateStateMachine(
|
|
610
601
|
args: UpdateStateMachineCommandInput,
|
|
611
602
|
options: __HttpHandlerOptions,
|
|
612
|
-
cb: (err: any, data?: UpdateStateMachineCommandOutput) => void
|
|
603
|
+
cb: (err: any, data?: UpdateStateMachineCommandOutput) => void,
|
|
613
604
|
): void;
|
|
614
605
|
updateStateMachineAlias(
|
|
615
606
|
args: UpdateStateMachineAliasCommandInput,
|
|
616
|
-
options?: __HttpHandlerOptions
|
|
607
|
+
options?: __HttpHandlerOptions,
|
|
617
608
|
): Promise<UpdateStateMachineAliasCommandOutput>;
|
|
618
609
|
updateStateMachineAlias(
|
|
619
610
|
args: UpdateStateMachineAliasCommandInput,
|
|
620
|
-
cb: (err: any, data?: UpdateStateMachineAliasCommandOutput) => void
|
|
611
|
+
cb: (err: any, data?: UpdateStateMachineAliasCommandOutput) => void,
|
|
621
612
|
): void;
|
|
622
613
|
updateStateMachineAlias(
|
|
623
614
|
args: UpdateStateMachineAliasCommandInput,
|
|
624
615
|
options: __HttpHandlerOptions,
|
|
625
|
-
cb: (err: any, data?: UpdateStateMachineAliasCommandOutput) => void
|
|
616
|
+
cb: (err: any, data?: UpdateStateMachineAliasCommandOutput) => void,
|
|
626
617
|
): void;
|
|
627
618
|
validateStateMachineDefinition(
|
|
628
619
|
args: ValidateStateMachineDefinitionCommandInput,
|
|
629
|
-
options?: __HttpHandlerOptions
|
|
620
|
+
options?: __HttpHandlerOptions,
|
|
630
621
|
): Promise<ValidateStateMachineDefinitionCommandOutput>;
|
|
631
622
|
validateStateMachineDefinition(
|
|
632
623
|
args: ValidateStateMachineDefinitionCommandInput,
|
|
633
|
-
cb: (err: any, data?: ValidateStateMachineDefinitionCommandOutput) => void
|
|
624
|
+
cb: (err: any, data?: ValidateStateMachineDefinitionCommandOutput) => void,
|
|
634
625
|
): void;
|
|
635
626
|
validateStateMachineDefinition(
|
|
636
627
|
args: ValidateStateMachineDefinitionCommandInput,
|
|
637
628
|
options: __HttpHandlerOptions,
|
|
638
|
-
cb: (err: any, data?: ValidateStateMachineDefinitionCommandOutput) => void
|
|
629
|
+
cb: (err: any, data?: ValidateStateMachineDefinitionCommandOutput) => void,
|
|
639
630
|
): void;
|
|
640
631
|
paginateGetExecutionHistory(
|
|
641
632
|
args: GetExecutionHistoryCommandInput,
|
|
642
633
|
paginationConfig?: Pick<
|
|
643
634
|
PaginationConfiguration,
|
|
644
635
|
Exclude<keyof PaginationConfiguration, "client">
|
|
645
|
-
|
|
636
|
+
>,
|
|
646
637
|
): Paginator<GetExecutionHistoryCommandOutput>;
|
|
647
638
|
paginateListActivities(
|
|
648
639
|
args?: ListActivitiesCommandInput,
|
|
649
640
|
paginationConfig?: Pick<
|
|
650
641
|
PaginationConfiguration,
|
|
651
642
|
Exclude<keyof PaginationConfiguration, "client">
|
|
652
|
-
|
|
643
|
+
>,
|
|
653
644
|
): Paginator<ListActivitiesCommandOutput>;
|
|
654
645
|
paginateListExecutions(
|
|
655
646
|
args?: ListExecutionsCommandInput,
|
|
656
647
|
paginationConfig?: Pick<
|
|
657
648
|
PaginationConfiguration,
|
|
658
649
|
Exclude<keyof PaginationConfiguration, "client">
|
|
659
|
-
|
|
650
|
+
>,
|
|
660
651
|
): Paginator<ListExecutionsCommandOutput>;
|
|
661
652
|
paginateListMapRuns(
|
|
662
653
|
args: ListMapRunsCommandInput,
|
|
663
654
|
paginationConfig?: Pick<
|
|
664
655
|
PaginationConfiguration,
|
|
665
656
|
Exclude<keyof PaginationConfiguration, "client">
|
|
666
|
-
|
|
657
|
+
>,
|
|
667
658
|
): Paginator<ListMapRunsCommandOutput>;
|
|
668
659
|
paginateListStateMachines(
|
|
669
660
|
args?: ListStateMachinesCommandInput,
|
|
670
661
|
paginationConfig?: Pick<
|
|
671
662
|
PaginationConfiguration,
|
|
672
663
|
Exclude<keyof PaginationConfiguration, "client">
|
|
673
|
-
|
|
664
|
+
>,
|
|
674
665
|
): Paginator<ListStateMachinesCommandOutput>;
|
|
675
666
|
}
|
|
676
667
|
export declare class SFN extends SFNClient implements SFN {}
|