@aws-sdk/client-sfn 3.927.0 → 3.928.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 +2040 -2279
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/SFNClient.js +2 -0
- package/dist-es/commands/CreateActivityCommand.js +3 -9
- package/dist-es/commands/CreateStateMachineAliasCommand.js +3 -10
- package/dist-es/commands/CreateStateMachineCommand.js +3 -10
- package/dist-es/commands/DeleteActivityCommand.js +3 -9
- package/dist-es/commands/DeleteStateMachineAliasCommand.js +3 -9
- package/dist-es/commands/DeleteStateMachineCommand.js +3 -9
- package/dist-es/commands/DeleteStateMachineVersionCommand.js +3 -9
- package/dist-es/commands/DescribeActivityCommand.js +3 -9
- package/dist-es/commands/DescribeExecutionCommand.js +3 -10
- package/dist-es/commands/DescribeMapRunCommand.js +3 -9
- package/dist-es/commands/DescribeStateMachineAliasCommand.js +3 -10
- package/dist-es/commands/DescribeStateMachineCommand.js +3 -10
- package/dist-es/commands/DescribeStateMachineForExecutionCommand.js +3 -10
- package/dist-es/commands/GetActivityTaskCommand.js +3 -10
- package/dist-es/commands/GetExecutionHistoryCommand.js +3 -10
- package/dist-es/commands/ListActivitiesCommand.js +3 -9
- package/dist-es/commands/ListExecutionsCommand.js +3 -9
- package/dist-es/commands/ListMapRunsCommand.js +3 -9
- package/dist-es/commands/ListStateMachineAliasesCommand.js +3 -9
- package/dist-es/commands/ListStateMachineVersionsCommand.js +3 -9
- package/dist-es/commands/ListStateMachinesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PublishStateMachineVersionCommand.js +3 -10
- package/dist-es/commands/RedriveExecutionCommand.js +3 -9
- package/dist-es/commands/SendTaskFailureCommand.js +3 -10
- package/dist-es/commands/SendTaskHeartbeatCommand.js +3 -9
- package/dist-es/commands/SendTaskSuccessCommand.js +3 -10
- package/dist-es/commands/StartExecutionCommand.js +3 -10
- package/dist-es/commands/StartSyncExecutionCommand.js +3 -10
- package/dist-es/commands/StopExecutionCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/TestStateCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateMapRunCommand.js +3 -9
- package/dist-es/commands/UpdateStateMachineAliasCommand.js +3 -10
- package/dist-es/commands/UpdateStateMachineCommand.js +3 -10
- package/dist-es/commands/ValidateStateMachineDefinitionCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -333
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1867 -0
- package/dist-types/SFNClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -204
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +235 -0
- package/dist-types/ts3.4/SFNClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -151
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +242 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -1539
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -335
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -449
|
@@ -1,335 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateActivityCommandInput, CreateActivityCommandOutput } from "../commands/CreateActivityCommand";
|
|
4
|
-
import { CreateStateMachineAliasCommandInput, CreateStateMachineAliasCommandOutput } from "../commands/CreateStateMachineAliasCommand";
|
|
5
|
-
import { CreateStateMachineCommandInput, CreateStateMachineCommandOutput } from "../commands/CreateStateMachineCommand";
|
|
6
|
-
import { DeleteActivityCommandInput, DeleteActivityCommandOutput } from "../commands/DeleteActivityCommand";
|
|
7
|
-
import { DeleteStateMachineAliasCommandInput, DeleteStateMachineAliasCommandOutput } from "../commands/DeleteStateMachineAliasCommand";
|
|
8
|
-
import { DeleteStateMachineCommandInput, DeleteStateMachineCommandOutput } from "../commands/DeleteStateMachineCommand";
|
|
9
|
-
import { DeleteStateMachineVersionCommandInput, DeleteStateMachineVersionCommandOutput } from "../commands/DeleteStateMachineVersionCommand";
|
|
10
|
-
import { DescribeActivityCommandInput, DescribeActivityCommandOutput } from "../commands/DescribeActivityCommand";
|
|
11
|
-
import { DescribeExecutionCommandInput, DescribeExecutionCommandOutput } from "../commands/DescribeExecutionCommand";
|
|
12
|
-
import { DescribeMapRunCommandInput, DescribeMapRunCommandOutput } from "../commands/DescribeMapRunCommand";
|
|
13
|
-
import { DescribeStateMachineAliasCommandInput, DescribeStateMachineAliasCommandOutput } from "../commands/DescribeStateMachineAliasCommand";
|
|
14
|
-
import { DescribeStateMachineCommandInput, DescribeStateMachineCommandOutput } from "../commands/DescribeStateMachineCommand";
|
|
15
|
-
import { DescribeStateMachineForExecutionCommandInput, DescribeStateMachineForExecutionCommandOutput } from "../commands/DescribeStateMachineForExecutionCommand";
|
|
16
|
-
import { GetActivityTaskCommandInput, GetActivityTaskCommandOutput } from "../commands/GetActivityTaskCommand";
|
|
17
|
-
import { GetExecutionHistoryCommandInput, GetExecutionHistoryCommandOutput } from "../commands/GetExecutionHistoryCommand";
|
|
18
|
-
import { ListActivitiesCommandInput, ListActivitiesCommandOutput } from "../commands/ListActivitiesCommand";
|
|
19
|
-
import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "../commands/ListExecutionsCommand";
|
|
20
|
-
import { ListMapRunsCommandInput, ListMapRunsCommandOutput } from "../commands/ListMapRunsCommand";
|
|
21
|
-
import { ListStateMachineAliasesCommandInput, ListStateMachineAliasesCommandOutput } from "../commands/ListStateMachineAliasesCommand";
|
|
22
|
-
import { ListStateMachinesCommandInput, ListStateMachinesCommandOutput } from "../commands/ListStateMachinesCommand";
|
|
23
|
-
import { ListStateMachineVersionsCommandInput, ListStateMachineVersionsCommandOutput } from "../commands/ListStateMachineVersionsCommand";
|
|
24
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
25
|
-
import { PublishStateMachineVersionCommandInput, PublishStateMachineVersionCommandOutput } from "../commands/PublishStateMachineVersionCommand";
|
|
26
|
-
import { RedriveExecutionCommandInput, RedriveExecutionCommandOutput } from "../commands/RedriveExecutionCommand";
|
|
27
|
-
import { SendTaskFailureCommandInput, SendTaskFailureCommandOutput } from "../commands/SendTaskFailureCommand";
|
|
28
|
-
import { SendTaskHeartbeatCommandInput, SendTaskHeartbeatCommandOutput } from "../commands/SendTaskHeartbeatCommand";
|
|
29
|
-
import { SendTaskSuccessCommandInput, SendTaskSuccessCommandOutput } from "../commands/SendTaskSuccessCommand";
|
|
30
|
-
import { StartExecutionCommandInput, StartExecutionCommandOutput } from "../commands/StartExecutionCommand";
|
|
31
|
-
import { StartSyncExecutionCommandInput, StartSyncExecutionCommandOutput } from "../commands/StartSyncExecutionCommand";
|
|
32
|
-
import { StopExecutionCommandInput, StopExecutionCommandOutput } from "../commands/StopExecutionCommand";
|
|
33
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
34
|
-
import { TestStateCommandInput, TestStateCommandOutput } from "../commands/TestStateCommand";
|
|
35
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
36
|
-
import { UpdateMapRunCommandInput, UpdateMapRunCommandOutput } from "../commands/UpdateMapRunCommand";
|
|
37
|
-
import { UpdateStateMachineAliasCommandInput, UpdateStateMachineAliasCommandOutput } from "../commands/UpdateStateMachineAliasCommand";
|
|
38
|
-
import { UpdateStateMachineCommandInput, UpdateStateMachineCommandOutput } from "../commands/UpdateStateMachineCommand";
|
|
39
|
-
import { ValidateStateMachineDefinitionCommandInput, ValidateStateMachineDefinitionCommandOutput } from "../commands/ValidateStateMachineDefinitionCommand";
|
|
40
|
-
/**
|
|
41
|
-
* serializeAws_json1_0CreateActivityCommand
|
|
42
|
-
*/
|
|
43
|
-
export declare const se_CreateActivityCommand: (input: CreateActivityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
-
/**
|
|
45
|
-
* serializeAws_json1_0CreateStateMachineCommand
|
|
46
|
-
*/
|
|
47
|
-
export declare const se_CreateStateMachineCommand: (input: CreateStateMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
-
/**
|
|
49
|
-
* serializeAws_json1_0CreateStateMachineAliasCommand
|
|
50
|
-
*/
|
|
51
|
-
export declare const se_CreateStateMachineAliasCommand: (input: CreateStateMachineAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
-
/**
|
|
53
|
-
* serializeAws_json1_0DeleteActivityCommand
|
|
54
|
-
*/
|
|
55
|
-
export declare const se_DeleteActivityCommand: (input: DeleteActivityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
-
/**
|
|
57
|
-
* serializeAws_json1_0DeleteStateMachineCommand
|
|
58
|
-
*/
|
|
59
|
-
export declare const se_DeleteStateMachineCommand: (input: DeleteStateMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
-
/**
|
|
61
|
-
* serializeAws_json1_0DeleteStateMachineAliasCommand
|
|
62
|
-
*/
|
|
63
|
-
export declare const se_DeleteStateMachineAliasCommand: (input: DeleteStateMachineAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
-
/**
|
|
65
|
-
* serializeAws_json1_0DeleteStateMachineVersionCommand
|
|
66
|
-
*/
|
|
67
|
-
export declare const se_DeleteStateMachineVersionCommand: (input: DeleteStateMachineVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
-
/**
|
|
69
|
-
* serializeAws_json1_0DescribeActivityCommand
|
|
70
|
-
*/
|
|
71
|
-
export declare const se_DescribeActivityCommand: (input: DescribeActivityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
-
/**
|
|
73
|
-
* serializeAws_json1_0DescribeExecutionCommand
|
|
74
|
-
*/
|
|
75
|
-
export declare const se_DescribeExecutionCommand: (input: DescribeExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
-
/**
|
|
77
|
-
* serializeAws_json1_0DescribeMapRunCommand
|
|
78
|
-
*/
|
|
79
|
-
export declare const se_DescribeMapRunCommand: (input: DescribeMapRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
-
/**
|
|
81
|
-
* serializeAws_json1_0DescribeStateMachineCommand
|
|
82
|
-
*/
|
|
83
|
-
export declare const se_DescribeStateMachineCommand: (input: DescribeStateMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
-
/**
|
|
85
|
-
* serializeAws_json1_0DescribeStateMachineAliasCommand
|
|
86
|
-
*/
|
|
87
|
-
export declare const se_DescribeStateMachineAliasCommand: (input: DescribeStateMachineAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
-
/**
|
|
89
|
-
* serializeAws_json1_0DescribeStateMachineForExecutionCommand
|
|
90
|
-
*/
|
|
91
|
-
export declare const se_DescribeStateMachineForExecutionCommand: (input: DescribeStateMachineForExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
-
/**
|
|
93
|
-
* serializeAws_json1_0GetActivityTaskCommand
|
|
94
|
-
*/
|
|
95
|
-
export declare const se_GetActivityTaskCommand: (input: GetActivityTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
-
/**
|
|
97
|
-
* serializeAws_json1_0GetExecutionHistoryCommand
|
|
98
|
-
*/
|
|
99
|
-
export declare const se_GetExecutionHistoryCommand: (input: GetExecutionHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
-
/**
|
|
101
|
-
* serializeAws_json1_0ListActivitiesCommand
|
|
102
|
-
*/
|
|
103
|
-
export declare const se_ListActivitiesCommand: (input: ListActivitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
-
/**
|
|
105
|
-
* serializeAws_json1_0ListExecutionsCommand
|
|
106
|
-
*/
|
|
107
|
-
export declare const se_ListExecutionsCommand: (input: ListExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
-
/**
|
|
109
|
-
* serializeAws_json1_0ListMapRunsCommand
|
|
110
|
-
*/
|
|
111
|
-
export declare const se_ListMapRunsCommand: (input: ListMapRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
112
|
-
/**
|
|
113
|
-
* serializeAws_json1_0ListStateMachineAliasesCommand
|
|
114
|
-
*/
|
|
115
|
-
export declare const se_ListStateMachineAliasesCommand: (input: ListStateMachineAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
-
/**
|
|
117
|
-
* serializeAws_json1_0ListStateMachinesCommand
|
|
118
|
-
*/
|
|
119
|
-
export declare const se_ListStateMachinesCommand: (input: ListStateMachinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
-
/**
|
|
121
|
-
* serializeAws_json1_0ListStateMachineVersionsCommand
|
|
122
|
-
*/
|
|
123
|
-
export declare const se_ListStateMachineVersionsCommand: (input: ListStateMachineVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
124
|
-
/**
|
|
125
|
-
* serializeAws_json1_0ListTagsForResourceCommand
|
|
126
|
-
*/
|
|
127
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
|
-
/**
|
|
129
|
-
* serializeAws_json1_0PublishStateMachineVersionCommand
|
|
130
|
-
*/
|
|
131
|
-
export declare const se_PublishStateMachineVersionCommand: (input: PublishStateMachineVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
|
-
/**
|
|
133
|
-
* serializeAws_json1_0RedriveExecutionCommand
|
|
134
|
-
*/
|
|
135
|
-
export declare const se_RedriveExecutionCommand: (input: RedriveExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
|
-
/**
|
|
137
|
-
* serializeAws_json1_0SendTaskFailureCommand
|
|
138
|
-
*/
|
|
139
|
-
export declare const se_SendTaskFailureCommand: (input: SendTaskFailureCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
-
/**
|
|
141
|
-
* serializeAws_json1_0SendTaskHeartbeatCommand
|
|
142
|
-
*/
|
|
143
|
-
export declare const se_SendTaskHeartbeatCommand: (input: SendTaskHeartbeatCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
|
-
/**
|
|
145
|
-
* serializeAws_json1_0SendTaskSuccessCommand
|
|
146
|
-
*/
|
|
147
|
-
export declare const se_SendTaskSuccessCommand: (input: SendTaskSuccessCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
|
-
/**
|
|
149
|
-
* serializeAws_json1_0StartExecutionCommand
|
|
150
|
-
*/
|
|
151
|
-
export declare const se_StartExecutionCommand: (input: StartExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
|
-
/**
|
|
153
|
-
* serializeAws_json1_0StartSyncExecutionCommand
|
|
154
|
-
*/
|
|
155
|
-
export declare const se_StartSyncExecutionCommand: (input: StartSyncExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
156
|
-
/**
|
|
157
|
-
* serializeAws_json1_0StopExecutionCommand
|
|
158
|
-
*/
|
|
159
|
-
export declare const se_StopExecutionCommand: (input: StopExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
|
-
/**
|
|
161
|
-
* serializeAws_json1_0TagResourceCommand
|
|
162
|
-
*/
|
|
163
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
|
-
/**
|
|
165
|
-
* serializeAws_json1_0TestStateCommand
|
|
166
|
-
*/
|
|
167
|
-
export declare const se_TestStateCommand: (input: TestStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
168
|
-
/**
|
|
169
|
-
* serializeAws_json1_0UntagResourceCommand
|
|
170
|
-
*/
|
|
171
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
172
|
-
/**
|
|
173
|
-
* serializeAws_json1_0UpdateMapRunCommand
|
|
174
|
-
*/
|
|
175
|
-
export declare const se_UpdateMapRunCommand: (input: UpdateMapRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
|
-
/**
|
|
177
|
-
* serializeAws_json1_0UpdateStateMachineCommand
|
|
178
|
-
*/
|
|
179
|
-
export declare const se_UpdateStateMachineCommand: (input: UpdateStateMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
180
|
-
/**
|
|
181
|
-
* serializeAws_json1_0UpdateStateMachineAliasCommand
|
|
182
|
-
*/
|
|
183
|
-
export declare const se_UpdateStateMachineAliasCommand: (input: UpdateStateMachineAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
184
|
-
/**
|
|
185
|
-
* serializeAws_json1_0ValidateStateMachineDefinitionCommand
|
|
186
|
-
*/
|
|
187
|
-
export declare const se_ValidateStateMachineDefinitionCommand: (input: ValidateStateMachineDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
188
|
-
/**
|
|
189
|
-
* deserializeAws_json1_0CreateActivityCommand
|
|
190
|
-
*/
|
|
191
|
-
export declare const de_CreateActivityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateActivityCommandOutput>;
|
|
192
|
-
/**
|
|
193
|
-
* deserializeAws_json1_0CreateStateMachineCommand
|
|
194
|
-
*/
|
|
195
|
-
export declare const de_CreateStateMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStateMachineCommandOutput>;
|
|
196
|
-
/**
|
|
197
|
-
* deserializeAws_json1_0CreateStateMachineAliasCommand
|
|
198
|
-
*/
|
|
199
|
-
export declare const de_CreateStateMachineAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStateMachineAliasCommandOutput>;
|
|
200
|
-
/**
|
|
201
|
-
* deserializeAws_json1_0DeleteActivityCommand
|
|
202
|
-
*/
|
|
203
|
-
export declare const de_DeleteActivityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteActivityCommandOutput>;
|
|
204
|
-
/**
|
|
205
|
-
* deserializeAws_json1_0DeleteStateMachineCommand
|
|
206
|
-
*/
|
|
207
|
-
export declare const de_DeleteStateMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStateMachineCommandOutput>;
|
|
208
|
-
/**
|
|
209
|
-
* deserializeAws_json1_0DeleteStateMachineAliasCommand
|
|
210
|
-
*/
|
|
211
|
-
export declare const de_DeleteStateMachineAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStateMachineAliasCommandOutput>;
|
|
212
|
-
/**
|
|
213
|
-
* deserializeAws_json1_0DeleteStateMachineVersionCommand
|
|
214
|
-
*/
|
|
215
|
-
export declare const de_DeleteStateMachineVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStateMachineVersionCommandOutput>;
|
|
216
|
-
/**
|
|
217
|
-
* deserializeAws_json1_0DescribeActivityCommand
|
|
218
|
-
*/
|
|
219
|
-
export declare const de_DescribeActivityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeActivityCommandOutput>;
|
|
220
|
-
/**
|
|
221
|
-
* deserializeAws_json1_0DescribeExecutionCommand
|
|
222
|
-
*/
|
|
223
|
-
export declare const de_DescribeExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeExecutionCommandOutput>;
|
|
224
|
-
/**
|
|
225
|
-
* deserializeAws_json1_0DescribeMapRunCommand
|
|
226
|
-
*/
|
|
227
|
-
export declare const de_DescribeMapRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMapRunCommandOutput>;
|
|
228
|
-
/**
|
|
229
|
-
* deserializeAws_json1_0DescribeStateMachineCommand
|
|
230
|
-
*/
|
|
231
|
-
export declare const de_DescribeStateMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStateMachineCommandOutput>;
|
|
232
|
-
/**
|
|
233
|
-
* deserializeAws_json1_0DescribeStateMachineAliasCommand
|
|
234
|
-
*/
|
|
235
|
-
export declare const de_DescribeStateMachineAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStateMachineAliasCommandOutput>;
|
|
236
|
-
/**
|
|
237
|
-
* deserializeAws_json1_0DescribeStateMachineForExecutionCommand
|
|
238
|
-
*/
|
|
239
|
-
export declare const de_DescribeStateMachineForExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStateMachineForExecutionCommandOutput>;
|
|
240
|
-
/**
|
|
241
|
-
* deserializeAws_json1_0GetActivityTaskCommand
|
|
242
|
-
*/
|
|
243
|
-
export declare const de_GetActivityTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetActivityTaskCommandOutput>;
|
|
244
|
-
/**
|
|
245
|
-
* deserializeAws_json1_0GetExecutionHistoryCommand
|
|
246
|
-
*/
|
|
247
|
-
export declare const de_GetExecutionHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExecutionHistoryCommandOutput>;
|
|
248
|
-
/**
|
|
249
|
-
* deserializeAws_json1_0ListActivitiesCommand
|
|
250
|
-
*/
|
|
251
|
-
export declare const de_ListActivitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListActivitiesCommandOutput>;
|
|
252
|
-
/**
|
|
253
|
-
* deserializeAws_json1_0ListExecutionsCommand
|
|
254
|
-
*/
|
|
255
|
-
export declare const de_ListExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExecutionsCommandOutput>;
|
|
256
|
-
/**
|
|
257
|
-
* deserializeAws_json1_0ListMapRunsCommand
|
|
258
|
-
*/
|
|
259
|
-
export declare const de_ListMapRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMapRunsCommandOutput>;
|
|
260
|
-
/**
|
|
261
|
-
* deserializeAws_json1_0ListStateMachineAliasesCommand
|
|
262
|
-
*/
|
|
263
|
-
export declare const de_ListStateMachineAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStateMachineAliasesCommandOutput>;
|
|
264
|
-
/**
|
|
265
|
-
* deserializeAws_json1_0ListStateMachinesCommand
|
|
266
|
-
*/
|
|
267
|
-
export declare const de_ListStateMachinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStateMachinesCommandOutput>;
|
|
268
|
-
/**
|
|
269
|
-
* deserializeAws_json1_0ListStateMachineVersionsCommand
|
|
270
|
-
*/
|
|
271
|
-
export declare const de_ListStateMachineVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStateMachineVersionsCommandOutput>;
|
|
272
|
-
/**
|
|
273
|
-
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
274
|
-
*/
|
|
275
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
276
|
-
/**
|
|
277
|
-
* deserializeAws_json1_0PublishStateMachineVersionCommand
|
|
278
|
-
*/
|
|
279
|
-
export declare const de_PublishStateMachineVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PublishStateMachineVersionCommandOutput>;
|
|
280
|
-
/**
|
|
281
|
-
* deserializeAws_json1_0RedriveExecutionCommand
|
|
282
|
-
*/
|
|
283
|
-
export declare const de_RedriveExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RedriveExecutionCommandOutput>;
|
|
284
|
-
/**
|
|
285
|
-
* deserializeAws_json1_0SendTaskFailureCommand
|
|
286
|
-
*/
|
|
287
|
-
export declare const de_SendTaskFailureCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTaskFailureCommandOutput>;
|
|
288
|
-
/**
|
|
289
|
-
* deserializeAws_json1_0SendTaskHeartbeatCommand
|
|
290
|
-
*/
|
|
291
|
-
export declare const de_SendTaskHeartbeatCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTaskHeartbeatCommandOutput>;
|
|
292
|
-
/**
|
|
293
|
-
* deserializeAws_json1_0SendTaskSuccessCommand
|
|
294
|
-
*/
|
|
295
|
-
export declare const de_SendTaskSuccessCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendTaskSuccessCommandOutput>;
|
|
296
|
-
/**
|
|
297
|
-
* deserializeAws_json1_0StartExecutionCommand
|
|
298
|
-
*/
|
|
299
|
-
export declare const de_StartExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartExecutionCommandOutput>;
|
|
300
|
-
/**
|
|
301
|
-
* deserializeAws_json1_0StartSyncExecutionCommand
|
|
302
|
-
*/
|
|
303
|
-
export declare const de_StartSyncExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSyncExecutionCommandOutput>;
|
|
304
|
-
/**
|
|
305
|
-
* deserializeAws_json1_0StopExecutionCommand
|
|
306
|
-
*/
|
|
307
|
-
export declare const de_StopExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopExecutionCommandOutput>;
|
|
308
|
-
/**
|
|
309
|
-
* deserializeAws_json1_0TagResourceCommand
|
|
310
|
-
*/
|
|
311
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
312
|
-
/**
|
|
313
|
-
* deserializeAws_json1_0TestStateCommand
|
|
314
|
-
*/
|
|
315
|
-
export declare const de_TestStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestStateCommandOutput>;
|
|
316
|
-
/**
|
|
317
|
-
* deserializeAws_json1_0UntagResourceCommand
|
|
318
|
-
*/
|
|
319
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
320
|
-
/**
|
|
321
|
-
* deserializeAws_json1_0UpdateMapRunCommand
|
|
322
|
-
*/
|
|
323
|
-
export declare const de_UpdateMapRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMapRunCommandOutput>;
|
|
324
|
-
/**
|
|
325
|
-
* deserializeAws_json1_0UpdateStateMachineCommand
|
|
326
|
-
*/
|
|
327
|
-
export declare const de_UpdateStateMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStateMachineCommandOutput>;
|
|
328
|
-
/**
|
|
329
|
-
* deserializeAws_json1_0UpdateStateMachineAliasCommand
|
|
330
|
-
*/
|
|
331
|
-
export declare const de_UpdateStateMachineAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStateMachineAliasCommandOutput>;
|
|
332
|
-
/**
|
|
333
|
-
* deserializeAws_json1_0ValidateStateMachineDefinitionCommand
|
|
334
|
-
*/
|
|
335
|
-
export declare const de_ValidateStateMachineDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ValidateStateMachineDefinitionCommandOutput>;
|