@aws-sdk/client-sfn 3.1075.0 → 3.1076.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 +2344 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -50
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SFNServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -405
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1679
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin, getLongPollPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin, getLongPollPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSFNHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "states",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSFNHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,2056 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const m = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "stringEquals", g = "getAttr", h = { [m]: "Endpoint" }, i = { [m]: "Region" }, j = { [m]: d }, k = {}, l = [i];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [h]],
|
|
79
|
+
[c, l],
|
|
80
|
+
["aws.partition", l, d],
|
|
81
|
+
[e, [{ [m]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [m]: "UseDualStack" }, b]],
|
|
83
|
+
[f, [i, "us-gov-west-1"]],
|
|
84
|
+
[e, [{ fn: g, argv: [j, "supportsFIPS"] }, b]],
|
|
85
|
+
[f, [{ fn: g, argv: [j, "name"] }, "aws-us-gov"]],
|
|
86
|
+
[e, [{ fn: g, argv: [j, "supportsDualStack"] }, b]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[h, k],
|
|
93
|
+
["https://states.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
94
|
+
["https://states-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
95
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
96
|
+
["https://states-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://states.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
const root = 2;
|
|
104
|
+
const r = 100_000_000;
|
|
105
|
+
const nodes = new Int32Array([
|
|
106
|
+
-1, 1, -1,
|
|
107
|
+
0, 14, 3,
|
|
108
|
+
1, 4, r + 11,
|
|
109
|
+
2, 5, r + 11,
|
|
110
|
+
3, 9, 6,
|
|
111
|
+
4, 7, r + 4,
|
|
112
|
+
7, r + 5, 8,
|
|
113
|
+
8, r + 9, r + 10,
|
|
114
|
+
4, 12, 10,
|
|
115
|
+
5, r + 4, 11,
|
|
116
|
+
6, r + 7, r + 8,
|
|
117
|
+
6, 13, r + 6,
|
|
118
|
+
8, r + 5, r + 6,
|
|
119
|
+
3, r + 1, 15,
|
|
120
|
+
4, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class SFNServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, SFNServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class ActivityAlreadyExists extends SFNServiceException {
|
|
144
|
+
name = "ActivityAlreadyExists";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "ActivityAlreadyExists",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, ActivityAlreadyExists.prototype);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class ActivityDoesNotExist extends SFNServiceException {
|
|
156
|
+
name = "ActivityDoesNotExist";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "ActivityDoesNotExist",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, ActivityDoesNotExist.prototype);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ActivityLimitExceeded extends SFNServiceException {
|
|
168
|
+
name = "ActivityLimitExceeded";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "ActivityLimitExceeded",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, ActivityLimitExceeded.prototype);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class ActivityWorkerLimitExceeded extends SFNServiceException {
|
|
180
|
+
name = "ActivityWorkerLimitExceeded";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "ActivityWorkerLimitExceeded",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, ActivityWorkerLimitExceeded.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class InvalidEncryptionConfiguration extends SFNServiceException {
|
|
192
|
+
name = "InvalidEncryptionConfiguration";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "InvalidEncryptionConfiguration",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, InvalidEncryptionConfiguration.prototype);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class InvalidName extends SFNServiceException {
|
|
204
|
+
name = "InvalidName";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "InvalidName",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, InvalidName.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class KmsAccessDeniedException extends SFNServiceException {
|
|
216
|
+
name = "KmsAccessDeniedException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "KmsAccessDeniedException",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, KmsAccessDeniedException.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class KmsThrottlingException extends SFNServiceException {
|
|
228
|
+
name = "KmsThrottlingException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "KmsThrottlingException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, KmsThrottlingException.prototype);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
class TooManyTags extends SFNServiceException {
|
|
240
|
+
name = "TooManyTags";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
resourceName;
|
|
243
|
+
constructor(opts) {
|
|
244
|
+
super({
|
|
245
|
+
name: "TooManyTags",
|
|
246
|
+
$fault: "client",
|
|
247
|
+
...opts,
|
|
248
|
+
});
|
|
249
|
+
Object.setPrototypeOf(this, TooManyTags.prototype);
|
|
250
|
+
this.resourceName = opts.resourceName;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
class ConflictException extends SFNServiceException {
|
|
254
|
+
name = "ConflictException";
|
|
255
|
+
$fault = "client";
|
|
256
|
+
constructor(opts) {
|
|
257
|
+
super({
|
|
258
|
+
name: "ConflictException",
|
|
259
|
+
$fault: "client",
|
|
260
|
+
...opts,
|
|
261
|
+
});
|
|
262
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class InvalidArn extends SFNServiceException {
|
|
266
|
+
name = "InvalidArn";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
constructor(opts) {
|
|
269
|
+
super({
|
|
270
|
+
name: "InvalidArn",
|
|
271
|
+
$fault: "client",
|
|
272
|
+
...opts,
|
|
273
|
+
});
|
|
274
|
+
Object.setPrototypeOf(this, InvalidArn.prototype);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
class InvalidDefinition extends SFNServiceException {
|
|
278
|
+
name = "InvalidDefinition";
|
|
279
|
+
$fault = "client";
|
|
280
|
+
constructor(opts) {
|
|
281
|
+
super({
|
|
282
|
+
name: "InvalidDefinition",
|
|
283
|
+
$fault: "client",
|
|
284
|
+
...opts,
|
|
285
|
+
});
|
|
286
|
+
Object.setPrototypeOf(this, InvalidDefinition.prototype);
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
class InvalidLoggingConfiguration extends SFNServiceException {
|
|
290
|
+
name = "InvalidLoggingConfiguration";
|
|
291
|
+
$fault = "client";
|
|
292
|
+
constructor(opts) {
|
|
293
|
+
super({
|
|
294
|
+
name: "InvalidLoggingConfiguration",
|
|
295
|
+
$fault: "client",
|
|
296
|
+
...opts,
|
|
297
|
+
});
|
|
298
|
+
Object.setPrototypeOf(this, InvalidLoggingConfiguration.prototype);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
class InvalidTracingConfiguration extends SFNServiceException {
|
|
302
|
+
name = "InvalidTracingConfiguration";
|
|
303
|
+
$fault = "client";
|
|
304
|
+
constructor(opts) {
|
|
305
|
+
super({
|
|
306
|
+
name: "InvalidTracingConfiguration",
|
|
307
|
+
$fault: "client",
|
|
308
|
+
...opts,
|
|
309
|
+
});
|
|
310
|
+
Object.setPrototypeOf(this, InvalidTracingConfiguration.prototype);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
class StateMachineAlreadyExists extends SFNServiceException {
|
|
314
|
+
name = "StateMachineAlreadyExists";
|
|
315
|
+
$fault = "client";
|
|
316
|
+
constructor(opts) {
|
|
317
|
+
super({
|
|
318
|
+
name: "StateMachineAlreadyExists",
|
|
319
|
+
$fault: "client",
|
|
320
|
+
...opts,
|
|
321
|
+
});
|
|
322
|
+
Object.setPrototypeOf(this, StateMachineAlreadyExists.prototype);
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
class StateMachineDeleting extends SFNServiceException {
|
|
326
|
+
name = "StateMachineDeleting";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
constructor(opts) {
|
|
329
|
+
super({
|
|
330
|
+
name: "StateMachineDeleting",
|
|
331
|
+
$fault: "client",
|
|
332
|
+
...opts,
|
|
333
|
+
});
|
|
334
|
+
Object.setPrototypeOf(this, StateMachineDeleting.prototype);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
class StateMachineLimitExceeded extends SFNServiceException {
|
|
338
|
+
name = "StateMachineLimitExceeded";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
constructor(opts) {
|
|
341
|
+
super({
|
|
342
|
+
name: "StateMachineLimitExceeded",
|
|
343
|
+
$fault: "client",
|
|
344
|
+
...opts,
|
|
345
|
+
});
|
|
346
|
+
Object.setPrototypeOf(this, StateMachineLimitExceeded.prototype);
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
class StateMachineTypeNotSupported extends SFNServiceException {
|
|
350
|
+
name = "StateMachineTypeNotSupported";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
constructor(opts) {
|
|
353
|
+
super({
|
|
354
|
+
name: "StateMachineTypeNotSupported",
|
|
355
|
+
$fault: "client",
|
|
356
|
+
...opts,
|
|
357
|
+
});
|
|
358
|
+
Object.setPrototypeOf(this, StateMachineTypeNotSupported.prototype);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
class ValidationException extends SFNServiceException {
|
|
362
|
+
name = "ValidationException";
|
|
363
|
+
$fault = "client";
|
|
364
|
+
reason;
|
|
365
|
+
constructor(opts) {
|
|
366
|
+
super({
|
|
367
|
+
name: "ValidationException",
|
|
368
|
+
$fault: "client",
|
|
369
|
+
...opts,
|
|
370
|
+
});
|
|
371
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
372
|
+
this.reason = opts.reason;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
class ResourceNotFound extends SFNServiceException {
|
|
376
|
+
name = "ResourceNotFound";
|
|
377
|
+
$fault = "client";
|
|
378
|
+
resourceName;
|
|
379
|
+
constructor(opts) {
|
|
380
|
+
super({
|
|
381
|
+
name: "ResourceNotFound",
|
|
382
|
+
$fault: "client",
|
|
383
|
+
...opts,
|
|
384
|
+
});
|
|
385
|
+
Object.setPrototypeOf(this, ResourceNotFound.prototype);
|
|
386
|
+
this.resourceName = opts.resourceName;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
class ServiceQuotaExceededException extends SFNServiceException {
|
|
390
|
+
name = "ServiceQuotaExceededException";
|
|
391
|
+
$fault = "client";
|
|
392
|
+
constructor(opts) {
|
|
393
|
+
super({
|
|
394
|
+
name: "ServiceQuotaExceededException",
|
|
395
|
+
$fault: "client",
|
|
396
|
+
...opts,
|
|
397
|
+
});
|
|
398
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
class ExecutionDoesNotExist extends SFNServiceException {
|
|
402
|
+
name = "ExecutionDoesNotExist";
|
|
403
|
+
$fault = "client";
|
|
404
|
+
constructor(opts) {
|
|
405
|
+
super({
|
|
406
|
+
name: "ExecutionDoesNotExist",
|
|
407
|
+
$fault: "client",
|
|
408
|
+
...opts,
|
|
409
|
+
});
|
|
410
|
+
Object.setPrototypeOf(this, ExecutionDoesNotExist.prototype);
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
class KmsInvalidStateException extends SFNServiceException {
|
|
414
|
+
name = "KmsInvalidStateException";
|
|
415
|
+
$fault = "client";
|
|
416
|
+
kmsKeyState;
|
|
417
|
+
constructor(opts) {
|
|
418
|
+
super({
|
|
419
|
+
name: "KmsInvalidStateException",
|
|
420
|
+
$fault: "client",
|
|
421
|
+
...opts,
|
|
422
|
+
});
|
|
423
|
+
Object.setPrototypeOf(this, KmsInvalidStateException.prototype);
|
|
424
|
+
this.kmsKeyState = opts.kmsKeyState;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
class StateMachineDoesNotExist extends SFNServiceException {
|
|
428
|
+
name = "StateMachineDoesNotExist";
|
|
429
|
+
$fault = "client";
|
|
430
|
+
constructor(opts) {
|
|
431
|
+
super({
|
|
432
|
+
name: "StateMachineDoesNotExist",
|
|
433
|
+
$fault: "client",
|
|
434
|
+
...opts,
|
|
435
|
+
});
|
|
436
|
+
Object.setPrototypeOf(this, StateMachineDoesNotExist.prototype);
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
class InvalidToken extends SFNServiceException {
|
|
440
|
+
name = "InvalidToken";
|
|
441
|
+
$fault = "client";
|
|
442
|
+
constructor(opts) {
|
|
443
|
+
super({
|
|
444
|
+
name: "InvalidToken",
|
|
445
|
+
$fault: "client",
|
|
446
|
+
...opts,
|
|
447
|
+
});
|
|
448
|
+
Object.setPrototypeOf(this, InvalidToken.prototype);
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
class ExecutionLimitExceeded extends SFNServiceException {
|
|
452
|
+
name = "ExecutionLimitExceeded";
|
|
453
|
+
$fault = "client";
|
|
454
|
+
constructor(opts) {
|
|
455
|
+
super({
|
|
456
|
+
name: "ExecutionLimitExceeded",
|
|
457
|
+
$fault: "client",
|
|
458
|
+
...opts,
|
|
459
|
+
});
|
|
460
|
+
Object.setPrototypeOf(this, ExecutionLimitExceeded.prototype);
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
class ExecutionNotRedrivable extends SFNServiceException {
|
|
464
|
+
name = "ExecutionNotRedrivable";
|
|
465
|
+
$fault = "client";
|
|
466
|
+
constructor(opts) {
|
|
467
|
+
super({
|
|
468
|
+
name: "ExecutionNotRedrivable",
|
|
469
|
+
$fault: "client",
|
|
470
|
+
...opts,
|
|
471
|
+
});
|
|
472
|
+
Object.setPrototypeOf(this, ExecutionNotRedrivable.prototype);
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
class TaskDoesNotExist extends SFNServiceException {
|
|
476
|
+
name = "TaskDoesNotExist";
|
|
477
|
+
$fault = "client";
|
|
478
|
+
constructor(opts) {
|
|
479
|
+
super({
|
|
480
|
+
name: "TaskDoesNotExist",
|
|
481
|
+
$fault: "client",
|
|
482
|
+
...opts,
|
|
483
|
+
});
|
|
484
|
+
Object.setPrototypeOf(this, TaskDoesNotExist.prototype);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
class TaskTimedOut extends SFNServiceException {
|
|
488
|
+
name = "TaskTimedOut";
|
|
489
|
+
$fault = "client";
|
|
490
|
+
constructor(opts) {
|
|
491
|
+
super({
|
|
492
|
+
name: "TaskTimedOut",
|
|
493
|
+
$fault: "client",
|
|
494
|
+
...opts,
|
|
495
|
+
});
|
|
496
|
+
Object.setPrototypeOf(this, TaskTimedOut.prototype);
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
class InvalidOutput extends SFNServiceException {
|
|
500
|
+
name = "InvalidOutput";
|
|
501
|
+
$fault = "client";
|
|
502
|
+
constructor(opts) {
|
|
503
|
+
super({
|
|
504
|
+
name: "InvalidOutput",
|
|
505
|
+
$fault: "client",
|
|
506
|
+
...opts,
|
|
507
|
+
});
|
|
508
|
+
Object.setPrototypeOf(this, InvalidOutput.prototype);
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
class ExecutionAlreadyExists extends SFNServiceException {
|
|
512
|
+
name = "ExecutionAlreadyExists";
|
|
513
|
+
$fault = "client";
|
|
514
|
+
constructor(opts) {
|
|
515
|
+
super({
|
|
516
|
+
name: "ExecutionAlreadyExists",
|
|
517
|
+
$fault: "client",
|
|
518
|
+
...opts,
|
|
519
|
+
});
|
|
520
|
+
Object.setPrototypeOf(this, ExecutionAlreadyExists.prototype);
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
class InvalidExecutionInput extends SFNServiceException {
|
|
524
|
+
name = "InvalidExecutionInput";
|
|
525
|
+
$fault = "client";
|
|
526
|
+
constructor(opts) {
|
|
527
|
+
super({
|
|
528
|
+
name: "InvalidExecutionInput",
|
|
529
|
+
$fault: "client",
|
|
530
|
+
...opts,
|
|
531
|
+
});
|
|
532
|
+
Object.setPrototypeOf(this, InvalidExecutionInput.prototype);
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
class MissingRequiredParameter extends SFNServiceException {
|
|
536
|
+
name = "MissingRequiredParameter";
|
|
537
|
+
$fault = "client";
|
|
538
|
+
constructor(opts) {
|
|
539
|
+
super({
|
|
540
|
+
name: "MissingRequiredParameter",
|
|
541
|
+
$fault: "client",
|
|
542
|
+
...opts,
|
|
543
|
+
});
|
|
544
|
+
Object.setPrototypeOf(this, MissingRequiredParameter.prototype);
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
const _AAE = "ActivityAlreadyExists";
|
|
549
|
+
const _AD = "AliasDescription";
|
|
550
|
+
const _ADNE = "ActivityDoesNotExist";
|
|
551
|
+
const _AFED = "ActivityFailedEventDetails";
|
|
552
|
+
const _AL = "ActivityList";
|
|
553
|
+
const _ALE = "ActivityLimitExceeded";
|
|
554
|
+
const _ALI = "ActivityListItem";
|
|
555
|
+
const _ASED = "ActivityScheduledEventDetails";
|
|
556
|
+
const _ASEDc = "ActivityStartedEventDetails";
|
|
557
|
+
const _ASEDct = "ActivitySucceededEventDetails";
|
|
558
|
+
const _ASFED = "ActivityScheduleFailedEventDetails";
|
|
559
|
+
const _ATOED = "ActivityTimedOutEventDetails";
|
|
560
|
+
const _AV = "AssignedVariables";
|
|
561
|
+
const _AVD = "AssignedVariablesDetails";
|
|
562
|
+
const _AWLE = "ActivityWorkerLimitExceeded";
|
|
563
|
+
const _BD = "BillingDetails";
|
|
564
|
+
const _CA = "CreateActivity";
|
|
565
|
+
const _CAI = "CreateActivityInput";
|
|
566
|
+
const _CAO = "CreateActivityOutput";
|
|
567
|
+
const _CE = "ConflictException";
|
|
568
|
+
const _CP = "ConnectorParameters";
|
|
569
|
+
const _CSM = "CreateStateMachine";
|
|
570
|
+
const _CSMA = "CreateStateMachineAlias";
|
|
571
|
+
const _CSMAI = "CreateStateMachineAliasInput";
|
|
572
|
+
const _CSMAO = "CreateStateMachineAliasOutput";
|
|
573
|
+
const _CSMI = "CreateStateMachineInput";
|
|
574
|
+
const _CSMO = "CreateStateMachineOutput";
|
|
575
|
+
const _CWEEDD = "CloudWatchEventsExecutionDataDetails";
|
|
576
|
+
const _CWLLG = "CloudWatchLogsLogGroup";
|
|
577
|
+
const _D = "Definition";
|
|
578
|
+
const _DA = "DeleteActivity";
|
|
579
|
+
const _DAI = "DeleteActivityInput";
|
|
580
|
+
const _DAIe = "DescribeActivityInput";
|
|
581
|
+
const _DAO = "DeleteActivityOutput";
|
|
582
|
+
const _DAOe = "DescribeActivityOutput";
|
|
583
|
+
const _DAe = "DescribeActivity";
|
|
584
|
+
const _DE = "DescribeExecution";
|
|
585
|
+
const _DEI = "DescribeExecutionInput";
|
|
586
|
+
const _DEO = "DescribeExecutionOutput";
|
|
587
|
+
const _DMR = "DescribeMapRun";
|
|
588
|
+
const _DMRI = "DescribeMapRunInput";
|
|
589
|
+
const _DMRO = "DescribeMapRunOutput";
|
|
590
|
+
const _DSM = "DeleteStateMachine";
|
|
591
|
+
const _DSMA = "DeleteStateMachineAlias";
|
|
592
|
+
const _DSMAI = "DeleteStateMachineAliasInput";
|
|
593
|
+
const _DSMAIe = "DescribeStateMachineAliasInput";
|
|
594
|
+
const _DSMAO = "DeleteStateMachineAliasOutput";
|
|
595
|
+
const _DSMAOe = "DescribeStateMachineAliasOutput";
|
|
596
|
+
const _DSMAe = "DescribeStateMachineAlias";
|
|
597
|
+
const _DSMFE = "DescribeStateMachineForExecution";
|
|
598
|
+
const _DSMFEI = "DescribeStateMachineForExecutionInput";
|
|
599
|
+
const _DSMFEO = "DescribeStateMachineForExecutionOutput";
|
|
600
|
+
const _DSMI = "DeleteStateMachineInput";
|
|
601
|
+
const _DSMIe = "DescribeStateMachineInput";
|
|
602
|
+
const _DSMO = "DeleteStateMachineOutput";
|
|
603
|
+
const _DSMOe = "DescribeStateMachineOutput";
|
|
604
|
+
const _DSMV = "DeleteStateMachineVersion";
|
|
605
|
+
const _DSMVI = "DeleteStateMachineVersionInput";
|
|
606
|
+
const _DSMVO = "DeleteStateMachineVersionOutput";
|
|
607
|
+
const _DSMe = "DescribeStateMachine";
|
|
608
|
+
const _EAE = "ExecutionAlreadyExists";
|
|
609
|
+
const _EAED = "ExecutionAbortedEventDetails";
|
|
610
|
+
const _EC = "EncryptionConfiguration";
|
|
611
|
+
const _EDNE = "ExecutionDoesNotExist";
|
|
612
|
+
const _EFED = "EvaluationFailedEventDetails";
|
|
613
|
+
const _EFEDx = "ExecutionFailedEventDetails";
|
|
614
|
+
const _EFL = "EvaluationFailureLocation";
|
|
615
|
+
const _EHI = "ExceptionHandlerIndex";
|
|
616
|
+
const _EL = "ExecutionList";
|
|
617
|
+
const _ELE = "ExecutionLimitExceeded";
|
|
618
|
+
const _ELI = "ExecutionListItem";
|
|
619
|
+
const _ENR = "ExecutionNotRedrivable";
|
|
620
|
+
const _ERED = "ExecutionRedrivenEventDetails";
|
|
621
|
+
const _ESED = "ExecutionStartedEventDetails";
|
|
622
|
+
const _ESEDx = "ExecutionSucceededEventDetails";
|
|
623
|
+
const _ETOED = "ExecutionTimedOutEventDetails";
|
|
624
|
+
const _GAT = "GetActivityTask";
|
|
625
|
+
const _GATI = "GetActivityTaskInput";
|
|
626
|
+
const _GATO = "GetActivityTaskOutput";
|
|
627
|
+
const _GEH = "GetExecutionHistory";
|
|
628
|
+
const _GEHI = "GetExecutionHistoryInput";
|
|
629
|
+
const _GEHO = "GetExecutionHistoryOutput";
|
|
630
|
+
const _HE = "HistoryEvent";
|
|
631
|
+
const _HEEDD = "HistoryEventExecutionDataDetails";
|
|
632
|
+
const _HEL = "HistoryEventList";
|
|
633
|
+
const _IA = "InvalidArn";
|
|
634
|
+
const _ID = "InvalidDefinition";
|
|
635
|
+
const _IDR = "InspectionDataRequest";
|
|
636
|
+
const _IDRn = "InspectionDataResponse";
|
|
637
|
+
const _IDn = "InspectionData";
|
|
638
|
+
const _IEC = "InvalidEncryptionConfiguration";
|
|
639
|
+
const _IED = "InspectionErrorDetails";
|
|
640
|
+
const _IEI = "InvalidExecutionInput";
|
|
641
|
+
const _ILC = "InvalidLoggingConfiguration";
|
|
642
|
+
const _IMC = "InspectionMaxConcurrency";
|
|
643
|
+
const _IN = "InvalidName";
|
|
644
|
+
const _IO = "InvalidOutput";
|
|
645
|
+
const _IT = "InvalidToken";
|
|
646
|
+
const _ITC = "InvalidTracingConfiguration";
|
|
647
|
+
const _ITFC = "InspectionToleratedFailureCount";
|
|
648
|
+
const _ITFP = "InspectionToleratedFailurePercentage";
|
|
649
|
+
const _KADE = "KmsAccessDeniedException";
|
|
650
|
+
const _KISE = "KmsInvalidStateException";
|
|
651
|
+
const _KTE = "KmsThrottlingException";
|
|
652
|
+
const _LA = "ListActivities";
|
|
653
|
+
const _LAI = "ListActivitiesInput";
|
|
654
|
+
const _LAO = "ListActivitiesOutput";
|
|
655
|
+
const _LC = "LoggingConfiguration";
|
|
656
|
+
const _LD = "LogDestination";
|
|
657
|
+
const _LDL = "LogDestinationList";
|
|
658
|
+
const _LE = "ListExecutions";
|
|
659
|
+
const _LEI = "ListExecutionsInput";
|
|
660
|
+
const _LEO = "ListExecutionsOutput";
|
|
661
|
+
const _LFFED = "LambdaFunctionFailedEventDetails";
|
|
662
|
+
const _LFSED = "LambdaFunctionScheduledEventDetails";
|
|
663
|
+
const _LFSEDa = "LambdaFunctionSucceededEventDetails";
|
|
664
|
+
const _LFSFED = "LambdaFunctionScheduleFailedEventDetails";
|
|
665
|
+
const _LFSFEDa = "LambdaFunctionStartFailedEventDetails";
|
|
666
|
+
const _LFTOED = "LambdaFunctionTimedOutEventDetails";
|
|
667
|
+
const _LMR = "ListMapRuns";
|
|
668
|
+
const _LMRI = "ListMapRunsInput";
|
|
669
|
+
const _LMRO = "ListMapRunsOutput";
|
|
670
|
+
const _LSM = "ListStateMachines";
|
|
671
|
+
const _LSMA = "ListStateMachineAliases";
|
|
672
|
+
const _LSMAI = "ListStateMachineAliasesInput";
|
|
673
|
+
const _LSMAO = "ListStateMachineAliasesOutput";
|
|
674
|
+
const _LSMI = "ListStateMachinesInput";
|
|
675
|
+
const _LSMO = "ListStateMachinesOutput";
|
|
676
|
+
const _LSMV = "ListStateMachineVersions";
|
|
677
|
+
const _LSMVI = "ListStateMachineVersionsInput";
|
|
678
|
+
const _LSMVO = "ListStateMachineVersionsOutput";
|
|
679
|
+
const _LTFR = "ListTagsForResource";
|
|
680
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
681
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
682
|
+
const _MEO = "MockErrorOutput";
|
|
683
|
+
const _MI = "MockInput";
|
|
684
|
+
const _MIED = "MapIterationEventDetails";
|
|
685
|
+
const _MREC = "MapRunExecutionCounts";
|
|
686
|
+
const _MRFED = "MapRunFailedEventDetails";
|
|
687
|
+
const _MRIC = "MapRunItemCounts";
|
|
688
|
+
const _MRL = "MapRunList";
|
|
689
|
+
const _MRLI = "MapRunListItem";
|
|
690
|
+
const _MRP = "MissingRequiredParameter";
|
|
691
|
+
const _MRRED = "MapRunRedrivenEventDetails";
|
|
692
|
+
const _MRSED = "MapRunStartedEventDetails";
|
|
693
|
+
const _MSSED = "MapStateStartedEventDetails";
|
|
694
|
+
const _PSMV = "PublishStateMachineVersion";
|
|
695
|
+
const _PSMVI = "PublishStateMachineVersionInput";
|
|
696
|
+
const _PSMVO = "PublishStateMachineVersionOutput";
|
|
697
|
+
const _RBIS = "RetryBackoffIntervalSeconds";
|
|
698
|
+
const _RCL = "RoutingConfigurationList";
|
|
699
|
+
const _RCLI = "RoutingConfigurationListItem";
|
|
700
|
+
const _RE = "RedriveExecution";
|
|
701
|
+
const _REI = "RedriveExecutionInput";
|
|
702
|
+
const _REO = "RedriveExecutionOutput";
|
|
703
|
+
const _RNF = "ResourceNotFound";
|
|
704
|
+
const _SC = "SensitiveCause";
|
|
705
|
+
const _SD = "SensitiveData";
|
|
706
|
+
const _SDJI = "SensitiveDataJobInput";
|
|
707
|
+
const _SE = "SensitiveError";
|
|
708
|
+
const _SEED = "StateEnteredEventDetails";
|
|
709
|
+
const _SEEDt = "StateExitedEventDetails";
|
|
710
|
+
const _SEI = "StartExecutionInput";
|
|
711
|
+
const _SEIt = "StopExecutionInput";
|
|
712
|
+
const _SEO = "StartExecutionOutput";
|
|
713
|
+
const _SEOt = "StopExecutionOutput";
|
|
714
|
+
const _SEt = "StartExecution";
|
|
715
|
+
const _SEto = "StopExecution";
|
|
716
|
+
const _SMAE = "StateMachineAlreadyExists";
|
|
717
|
+
const _SMAL = "StateMachineAliasList";
|
|
718
|
+
const _SMALI = "StateMachineAliasListItem";
|
|
719
|
+
const _SMD = "StateMachineDeleting";
|
|
720
|
+
const _SMDNE = "StateMachineDoesNotExist";
|
|
721
|
+
const _SML = "StateMachineList";
|
|
722
|
+
const _SMLE = "StateMachineLimitExceeded";
|
|
723
|
+
const _SMLI = "StateMachineListItem";
|
|
724
|
+
const _SMTNS = "StateMachineTypeNotSupported";
|
|
725
|
+
const _SMVL = "StateMachineVersionList";
|
|
726
|
+
const _SMVLI = "StateMachineVersionListItem";
|
|
727
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
728
|
+
const _SSE = "StartSyncExecution";
|
|
729
|
+
const _SSEI = "StartSyncExecutionInput";
|
|
730
|
+
const _SSEO = "StartSyncExecutionOutput";
|
|
731
|
+
const _STF = "SendTaskFailure";
|
|
732
|
+
const _STFI = "SendTaskFailureInput";
|
|
733
|
+
const _STFO = "SendTaskFailureOutput";
|
|
734
|
+
const _STH = "SendTaskHeartbeat";
|
|
735
|
+
const _STHI = "SendTaskHeartbeatInput";
|
|
736
|
+
const _STHO = "SendTaskHeartbeatOutput";
|
|
737
|
+
const _STS = "SendTaskSuccess";
|
|
738
|
+
const _STSI = "SendTaskSuccessInput";
|
|
739
|
+
const _STSO = "SendTaskSuccessOutput";
|
|
740
|
+
const _T = "Tag";
|
|
741
|
+
const _TC = "TaskCredentials";
|
|
742
|
+
const _TCr = "TracingConfiguration";
|
|
743
|
+
const _TDNE = "TaskDoesNotExist";
|
|
744
|
+
const _TFED = "TaskFailedEventDetails";
|
|
745
|
+
const _TL = "TagList";
|
|
746
|
+
const _TMT = "TooManyTags";
|
|
747
|
+
const _TR = "TagResource";
|
|
748
|
+
const _TRI = "TagResourceInput";
|
|
749
|
+
const _TRO = "TagResourceOutput";
|
|
750
|
+
const _TS = "TestState";
|
|
751
|
+
const _TSC = "TestStateConfiguration";
|
|
752
|
+
const _TSED = "TaskScheduledEventDetails";
|
|
753
|
+
const _TSEDa = "TaskStartedEventDetails";
|
|
754
|
+
const _TSEDas = "TaskSubmittedEventDetails";
|
|
755
|
+
const _TSEDask = "TaskSucceededEventDetails";
|
|
756
|
+
const _TSFED = "TaskStartFailedEventDetails";
|
|
757
|
+
const _TSFEDa = "TaskSubmitFailedEventDetails";
|
|
758
|
+
const _TSI = "TestStateInput";
|
|
759
|
+
const _TSO = "TestStateOutput";
|
|
760
|
+
const _TSSN = "TestStateStateName";
|
|
761
|
+
const _TTO = "TaskTimedOut";
|
|
762
|
+
const _TTOED = "TaskTimedOutEventDetails";
|
|
763
|
+
const _UMR = "UpdateMapRun";
|
|
764
|
+
const _UMRI = "UpdateMapRunInput";
|
|
765
|
+
const _UMRO = "UpdateMapRunOutput";
|
|
766
|
+
const _UR = "UntagResource";
|
|
767
|
+
const _URI = "UntagResourceInput";
|
|
768
|
+
const _URO = "UntagResourceOutput";
|
|
769
|
+
const _USM = "UpdateStateMachine";
|
|
770
|
+
const _USMA = "UpdateStateMachineAlias";
|
|
771
|
+
const _USMAI = "UpdateStateMachineAliasInput";
|
|
772
|
+
const _USMAO = "UpdateStateMachineAliasOutput";
|
|
773
|
+
const _USMI = "UpdateStateMachineInput";
|
|
774
|
+
const _USMO = "UpdateStateMachineOutput";
|
|
775
|
+
const _VD = "VersionDescription";
|
|
776
|
+
const _VE = "ValidationException";
|
|
777
|
+
const _VN = "VariableName";
|
|
778
|
+
const _VNL = "VariableNameList";
|
|
779
|
+
const _VR = "VariableReferences";
|
|
780
|
+
const _VSMD = "ValidateStateMachineDefinition";
|
|
781
|
+
const _VSMDC = "ValidateStateMachineDefinitionCode";
|
|
782
|
+
const _VSMDD = "ValidateStateMachineDefinitionDiagnostic";
|
|
783
|
+
const _VSMDDL = "ValidateStateMachineDefinitionDiagnosticList";
|
|
784
|
+
const _VSMDI = "ValidateStateMachineDefinitionInput";
|
|
785
|
+
const _VSMDL = "ValidateStateMachineDefinitionLocation";
|
|
786
|
+
const _VSMDM = "ValidateStateMachineDefinitionMessage";
|
|
787
|
+
const _VSMDO = "ValidateStateMachineDefinitionOutput";
|
|
788
|
+
const _VV = "VariableValue";
|
|
789
|
+
const _a = "activities";
|
|
790
|
+
const _aA = "activityArn";
|
|
791
|
+
const _aAf = "afterArguments";
|
|
792
|
+
const _aFED = "activityFailedEventDetails";
|
|
793
|
+
const _aIB = "afterItemBatcher";
|
|
794
|
+
const _aIP = "afterInputPath";
|
|
795
|
+
const _aIPf = "afterItemsPath";
|
|
796
|
+
const _aIPft = "afterItemsPointer";
|
|
797
|
+
const _aIS = "afterItemSelector";
|
|
798
|
+
const _aP = "afterParameters";
|
|
799
|
+
const _aRP = "afterResultPath";
|
|
800
|
+
const _aRS = "afterResultSelector";
|
|
801
|
+
const _aSED = "activityScheduledEventDetails";
|
|
802
|
+
const _aSEDc = "activityStartedEventDetails";
|
|
803
|
+
const _aSEDct = "activitySucceededEventDetails";
|
|
804
|
+
const _aSFED = "activityScheduleFailedEventDetails";
|
|
805
|
+
const _aTOED = "activityTimedOutEventDetails";
|
|
806
|
+
const _aV = "assignedVariables";
|
|
807
|
+
const _aVD = "assignedVariablesDetails";
|
|
808
|
+
const _ab = "aborted";
|
|
809
|
+
const _b = "body";
|
|
810
|
+
const _bD = "billingDetails";
|
|
811
|
+
const _bDIM = "billedDurationInMilliseconds";
|
|
812
|
+
const _bMUIMB = "billedMemoryUsedInMB";
|
|
813
|
+
const _c = "client";
|
|
814
|
+
const _cD = "creationDate";
|
|
815
|
+
const _cI = "catchIndex";
|
|
816
|
+
const _cT = "clientToken";
|
|
817
|
+
const _cWLLG = "cloudWatchLogsLogGroup";
|
|
818
|
+
const _ca = "cause";
|
|
819
|
+
const _co = "context";
|
|
820
|
+
const _cod = "code";
|
|
821
|
+
const _d = "description";
|
|
822
|
+
const _de = "definition";
|
|
823
|
+
const _des = "destinations";
|
|
824
|
+
const _di = "diagnostics";
|
|
825
|
+
const _e = "error";
|
|
826
|
+
const _eA = "executionArn";
|
|
827
|
+
const _eAED = "executionAbortedEventDetails";
|
|
828
|
+
const _eC = "encryptionConfiguration";
|
|
829
|
+
const _eCBS = "errorCausedByState";
|
|
830
|
+
const _eCx = "executionCounts";
|
|
831
|
+
const _eD = "errorDetails";
|
|
832
|
+
const _eFED = "executionFailedEventDetails";
|
|
833
|
+
const _eFEDv = "evaluationFailedEventDetails";
|
|
834
|
+
const _eO = "errorOutput";
|
|
835
|
+
const _eRED = "executionRedrivenEventDetails";
|
|
836
|
+
const _eSED = "executionStartedEventDetails";
|
|
837
|
+
const _eSEDx = "executionSucceededEventDetails";
|
|
838
|
+
const _eTOED = "executionTimedOutEventDetails";
|
|
839
|
+
const _en = "enabled";
|
|
840
|
+
const _end = "endpoint";
|
|
841
|
+
const _ev = "events";
|
|
842
|
+
const _ex = "executions";
|
|
843
|
+
const _f = "failed";
|
|
844
|
+
const _fNR = "failuresNotRedrivable";
|
|
845
|
+
const _fVM = "fieldValidationMode";
|
|
846
|
+
const _h = "headers";
|
|
847
|
+
const _hE = "httpError";
|
|
848
|
+
const _hIS = "heartbeatInSeconds";
|
|
849
|
+
const _i = "input";
|
|
850
|
+
const _iC = "itemCounts";
|
|
851
|
+
const _iCt = "itemCount";
|
|
852
|
+
const _iD = "inputDetails";
|
|
853
|
+
const _iDn = "includedData";
|
|
854
|
+
const _iDns = "inspectionData";
|
|
855
|
+
const _iED = "includeExecutionData";
|
|
856
|
+
const _iL = "inspectionLevel";
|
|
857
|
+
const _id = "id";
|
|
858
|
+
const _in = "included";
|
|
859
|
+
const _ind = "index";
|
|
860
|
+
const _k = "key";
|
|
861
|
+
const _kDKRPS = "kmsDataKeyReusePeriodSeconds";
|
|
862
|
+
const _kKI = "kmsKeyId";
|
|
863
|
+
const _kKS = "kmsKeyState";
|
|
864
|
+
const _l = "label";
|
|
865
|
+
const _lC = "loggingConfiguration";
|
|
866
|
+
const _lFFED = "lambdaFunctionFailedEventDetails";
|
|
867
|
+
const _lFSED = "lambdaFunctionScheduledEventDetails";
|
|
868
|
+
const _lFSEDa = "lambdaFunctionSucceededEventDetails";
|
|
869
|
+
const _lFSFED = "lambdaFunctionScheduleFailedEventDetails";
|
|
870
|
+
const _lFSFEDa = "lambdaFunctionStartFailedEventDetails";
|
|
871
|
+
const _lFTOED = "lambdaFunctionTimedOutEventDetails";
|
|
872
|
+
const _lGA = "logGroupArn";
|
|
873
|
+
const _le = "level";
|
|
874
|
+
const _len = "length";
|
|
875
|
+
const _lo = "location";
|
|
876
|
+
const _m = "message";
|
|
877
|
+
const _mC = "maxConcurrency";
|
|
878
|
+
const _mIAED = "mapIterationAbortedEventDetails";
|
|
879
|
+
const _mIFC = "mapIterationFailureCount";
|
|
880
|
+
const _mIFED = "mapIterationFailedEventDetails";
|
|
881
|
+
const _mIRD = "mapItemReaderData";
|
|
882
|
+
const _mISED = "mapIterationStartedEventDetails";
|
|
883
|
+
const _mISEDa = "mapIterationSucceededEventDetails";
|
|
884
|
+
const _mR = "maxResults";
|
|
885
|
+
const _mRA = "mapRunArn";
|
|
886
|
+
const _mRFED = "mapRunFailedEventDetails";
|
|
887
|
+
const _mRRED = "mapRunRedrivenEventDetails";
|
|
888
|
+
const _mRSED = "mapRunStartedEventDetails";
|
|
889
|
+
const _mRa = "mapRuns";
|
|
890
|
+
const _mSSED = "mapStateStartedEventDetails";
|
|
891
|
+
const _me = "method";
|
|
892
|
+
const _mo = "mock";
|
|
893
|
+
const _n = "name";
|
|
894
|
+
const _nS = "nextState";
|
|
895
|
+
const _nT = "nextToken";
|
|
896
|
+
const _o = "output";
|
|
897
|
+
const _oD = "outputDetails";
|
|
898
|
+
const _p = "publish";
|
|
899
|
+
const _pEI = "previousEventId";
|
|
900
|
+
const _pR = "pendingRedrive";
|
|
901
|
+
const _pa = "parameters";
|
|
902
|
+
const _pe = "pending";
|
|
903
|
+
const _pr = "protocol";
|
|
904
|
+
const _r = "reason";
|
|
905
|
+
const _rA = "roleArn";
|
|
906
|
+
const _rAe = "resourceArn";
|
|
907
|
+
const _rBIS = "retryBackoffIntervalSeconds";
|
|
908
|
+
const _rC = "routingConfiguration";
|
|
909
|
+
const _rCe = "redriveCount";
|
|
910
|
+
const _rD = "redriveDate";
|
|
911
|
+
const _rF = "redriveFilter";
|
|
912
|
+
const _rI = "revisionId";
|
|
913
|
+
const _rIe = "retryIndex";
|
|
914
|
+
const _rN = "resourceName";
|
|
915
|
+
const _rO = "reverseOrder";
|
|
916
|
+
const _rRC = "retrierRetryCount";
|
|
917
|
+
const _rS = "redriveStatus";
|
|
918
|
+
const _rSR = "redriveStatusReason";
|
|
919
|
+
const _rSe = "revealSecrets";
|
|
920
|
+
const _rT = "resourceType";
|
|
921
|
+
const _rW = "resultsWritten";
|
|
922
|
+
const _re = "resource";
|
|
923
|
+
const _reg = "region";
|
|
924
|
+
const _req = "request";
|
|
925
|
+
const _res = "result";
|
|
926
|
+
const _resp = "response";
|
|
927
|
+
const _ru = "running";
|
|
928
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.sfn";
|
|
929
|
+
const _sC = "statusCode";
|
|
930
|
+
const _sCt = "stateConfiguration";
|
|
931
|
+
const _sD = "startDate";
|
|
932
|
+
const _sDt = "stopDate";
|
|
933
|
+
const _sEED = "stateEnteredEventDetails";
|
|
934
|
+
const _sEEDt = "stateExitedEventDetails";
|
|
935
|
+
const _sF = "statusFilter";
|
|
936
|
+
const _sM = "statusMessage";
|
|
937
|
+
const _sMA = "stateMachineArn";
|
|
938
|
+
const _sMAA = "stateMachineAliasArn";
|
|
939
|
+
const _sMAt = "stateMachineAliases";
|
|
940
|
+
const _sMV = "stateMachineVersions";
|
|
941
|
+
const _sMVA = "stateMachineVersionArn";
|
|
942
|
+
const _sMt = "stateMachines";
|
|
943
|
+
const _sN = "stateName";
|
|
944
|
+
const _se = "severity";
|
|
945
|
+
const _st = "status";
|
|
946
|
+
const _sta = "state";
|
|
947
|
+
const _su = "succeeded";
|
|
948
|
+
const _t = "truncated";
|
|
949
|
+
const _tC = "tracingConfiguration";
|
|
950
|
+
const _tCa = "taskCredentials";
|
|
951
|
+
const _tFC = "toleratedFailureCount";
|
|
952
|
+
const _tFED = "taskFailedEventDetails";
|
|
953
|
+
const _tFP = "toleratedFailurePercentage";
|
|
954
|
+
const _tH = "traceHeader";
|
|
955
|
+
const _tIS = "timeoutInSeconds";
|
|
956
|
+
const _tK = "tagKeys";
|
|
957
|
+
const _tO = "timedOut";
|
|
958
|
+
const _tSED = "taskScheduledEventDetails";
|
|
959
|
+
const _tSEDa = "taskStartedEventDetails";
|
|
960
|
+
const _tSEDas = "taskSubmittedEventDetails";
|
|
961
|
+
const _tSEDask = "taskSucceededEventDetails";
|
|
962
|
+
const _tSFED = "taskStartFailedEventDetails";
|
|
963
|
+
const _tSFEDa = "taskSubmitFailedEventDetails";
|
|
964
|
+
const _tT = "taskToken";
|
|
965
|
+
const _tTOED = "taskTimedOutEventDetails";
|
|
966
|
+
const _ta = "tags";
|
|
967
|
+
const _ti = "timestamp";
|
|
968
|
+
const _to = "total";
|
|
969
|
+
const _ty = "type";
|
|
970
|
+
const _u = "url";
|
|
971
|
+
const _uD = "updateDate";
|
|
972
|
+
const _v = "variables";
|
|
973
|
+
const _vD = "versionDescription";
|
|
974
|
+
const _vR = "variableReferences";
|
|
975
|
+
const _va = "value";
|
|
976
|
+
const _w = "weight";
|
|
977
|
+
const _wN = "workerName";
|
|
978
|
+
const n0 = "com.amazonaws.sfn";
|
|
979
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
980
|
+
var SFNServiceException$ = [-3, _s, "SFNServiceException", 0, [], []];
|
|
981
|
+
_s_registry.registerError(SFNServiceException$, SFNServiceException);
|
|
982
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
983
|
+
var ActivityAlreadyExists$ = [-3, n0, _AAE,
|
|
984
|
+
{ [_e]: _c },
|
|
985
|
+
[_m],
|
|
986
|
+
[0]
|
|
987
|
+
];
|
|
988
|
+
n0_registry.registerError(ActivityAlreadyExists$, ActivityAlreadyExists);
|
|
989
|
+
var ActivityDoesNotExist$ = [-3, n0, _ADNE,
|
|
990
|
+
{ [_e]: _c },
|
|
991
|
+
[_m],
|
|
992
|
+
[0]
|
|
993
|
+
];
|
|
994
|
+
n0_registry.registerError(ActivityDoesNotExist$, ActivityDoesNotExist);
|
|
995
|
+
var ActivityLimitExceeded$ = [-3, n0, _ALE,
|
|
996
|
+
{ [_e]: _c },
|
|
997
|
+
[_m],
|
|
998
|
+
[0]
|
|
999
|
+
];
|
|
1000
|
+
n0_registry.registerError(ActivityLimitExceeded$, ActivityLimitExceeded);
|
|
1001
|
+
var ActivityWorkerLimitExceeded$ = [-3, n0, _AWLE,
|
|
1002
|
+
{ [_e]: _c },
|
|
1003
|
+
[_m],
|
|
1004
|
+
[0]
|
|
1005
|
+
];
|
|
1006
|
+
n0_registry.registerError(ActivityWorkerLimitExceeded$, ActivityWorkerLimitExceeded);
|
|
1007
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
1008
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1009
|
+
[_m],
|
|
1010
|
+
[0]
|
|
1011
|
+
];
|
|
1012
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1013
|
+
var ExecutionAlreadyExists$ = [-3, n0, _EAE,
|
|
1014
|
+
{ [_e]: _c },
|
|
1015
|
+
[_m],
|
|
1016
|
+
[0]
|
|
1017
|
+
];
|
|
1018
|
+
n0_registry.registerError(ExecutionAlreadyExists$, ExecutionAlreadyExists);
|
|
1019
|
+
var ExecutionDoesNotExist$ = [-3, n0, _EDNE,
|
|
1020
|
+
{ [_e]: _c },
|
|
1021
|
+
[_m],
|
|
1022
|
+
[0]
|
|
1023
|
+
];
|
|
1024
|
+
n0_registry.registerError(ExecutionDoesNotExist$, ExecutionDoesNotExist);
|
|
1025
|
+
var ExecutionLimitExceeded$ = [-3, n0, _ELE,
|
|
1026
|
+
{ [_e]: _c },
|
|
1027
|
+
[_m],
|
|
1028
|
+
[0]
|
|
1029
|
+
];
|
|
1030
|
+
n0_registry.registerError(ExecutionLimitExceeded$, ExecutionLimitExceeded);
|
|
1031
|
+
var ExecutionNotRedrivable$ = [-3, n0, _ENR,
|
|
1032
|
+
{ [_e]: _c },
|
|
1033
|
+
[_m],
|
|
1034
|
+
[0]
|
|
1035
|
+
];
|
|
1036
|
+
n0_registry.registerError(ExecutionNotRedrivable$, ExecutionNotRedrivable);
|
|
1037
|
+
var InvalidArn$ = [-3, n0, _IA,
|
|
1038
|
+
{ [_e]: _c },
|
|
1039
|
+
[_m],
|
|
1040
|
+
[0]
|
|
1041
|
+
];
|
|
1042
|
+
n0_registry.registerError(InvalidArn$, InvalidArn);
|
|
1043
|
+
var InvalidDefinition$ = [-3, n0, _ID,
|
|
1044
|
+
{ [_e]: _c },
|
|
1045
|
+
[_m],
|
|
1046
|
+
[0]
|
|
1047
|
+
];
|
|
1048
|
+
n0_registry.registerError(InvalidDefinition$, InvalidDefinition);
|
|
1049
|
+
var InvalidEncryptionConfiguration$ = [-3, n0, _IEC,
|
|
1050
|
+
{ [_e]: _c },
|
|
1051
|
+
[_m],
|
|
1052
|
+
[0]
|
|
1053
|
+
];
|
|
1054
|
+
n0_registry.registerError(InvalidEncryptionConfiguration$, InvalidEncryptionConfiguration);
|
|
1055
|
+
var InvalidExecutionInput$ = [-3, n0, _IEI,
|
|
1056
|
+
{ [_e]: _c },
|
|
1057
|
+
[_m],
|
|
1058
|
+
[0]
|
|
1059
|
+
];
|
|
1060
|
+
n0_registry.registerError(InvalidExecutionInput$, InvalidExecutionInput);
|
|
1061
|
+
var InvalidLoggingConfiguration$ = [-3, n0, _ILC,
|
|
1062
|
+
{ [_e]: _c },
|
|
1063
|
+
[_m],
|
|
1064
|
+
[0]
|
|
1065
|
+
];
|
|
1066
|
+
n0_registry.registerError(InvalidLoggingConfiguration$, InvalidLoggingConfiguration);
|
|
1067
|
+
var InvalidName$ = [-3, n0, _IN,
|
|
1068
|
+
{ [_e]: _c },
|
|
1069
|
+
[_m],
|
|
1070
|
+
[0]
|
|
1071
|
+
];
|
|
1072
|
+
n0_registry.registerError(InvalidName$, InvalidName);
|
|
1073
|
+
var InvalidOutput$ = [-3, n0, _IO,
|
|
1074
|
+
{ [_e]: _c },
|
|
1075
|
+
[_m],
|
|
1076
|
+
[0]
|
|
1077
|
+
];
|
|
1078
|
+
n0_registry.registerError(InvalidOutput$, InvalidOutput);
|
|
1079
|
+
var InvalidToken$ = [-3, n0, _IT,
|
|
1080
|
+
{ [_e]: _c },
|
|
1081
|
+
[_m],
|
|
1082
|
+
[0]
|
|
1083
|
+
];
|
|
1084
|
+
n0_registry.registerError(InvalidToken$, InvalidToken);
|
|
1085
|
+
var InvalidTracingConfiguration$ = [-3, n0, _ITC,
|
|
1086
|
+
{ [_e]: _c },
|
|
1087
|
+
[_m],
|
|
1088
|
+
[0]
|
|
1089
|
+
];
|
|
1090
|
+
n0_registry.registerError(InvalidTracingConfiguration$, InvalidTracingConfiguration);
|
|
1091
|
+
var KmsAccessDeniedException$ = [-3, n0, _KADE,
|
|
1092
|
+
{ [_e]: _c },
|
|
1093
|
+
[_m],
|
|
1094
|
+
[0]
|
|
1095
|
+
];
|
|
1096
|
+
n0_registry.registerError(KmsAccessDeniedException$, KmsAccessDeniedException);
|
|
1097
|
+
var KmsInvalidStateException$ = [-3, n0, _KISE,
|
|
1098
|
+
{ [_e]: _c },
|
|
1099
|
+
[_kKS, _m],
|
|
1100
|
+
[0, 0]
|
|
1101
|
+
];
|
|
1102
|
+
n0_registry.registerError(KmsInvalidStateException$, KmsInvalidStateException);
|
|
1103
|
+
var KmsThrottlingException$ = [-3, n0, _KTE,
|
|
1104
|
+
{ [_e]: _c },
|
|
1105
|
+
[_m],
|
|
1106
|
+
[0]
|
|
1107
|
+
];
|
|
1108
|
+
n0_registry.registerError(KmsThrottlingException$, KmsThrottlingException);
|
|
1109
|
+
var MissingRequiredParameter$ = [-3, n0, _MRP,
|
|
1110
|
+
{ [_e]: _c },
|
|
1111
|
+
[_m],
|
|
1112
|
+
[0]
|
|
1113
|
+
];
|
|
1114
|
+
n0_registry.registerError(MissingRequiredParameter$, MissingRequiredParameter);
|
|
1115
|
+
var ResourceNotFound$ = [-3, n0, _RNF,
|
|
1116
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1117
|
+
[_m, _rN],
|
|
1118
|
+
[0, 0]
|
|
1119
|
+
];
|
|
1120
|
+
n0_registry.registerError(ResourceNotFound$, ResourceNotFound);
|
|
1121
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1122
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
1123
|
+
[_m],
|
|
1124
|
+
[0]
|
|
1125
|
+
];
|
|
1126
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1127
|
+
var StateMachineAlreadyExists$ = [-3, n0, _SMAE,
|
|
1128
|
+
{ [_e]: _c },
|
|
1129
|
+
[_m],
|
|
1130
|
+
[0]
|
|
1131
|
+
];
|
|
1132
|
+
n0_registry.registerError(StateMachineAlreadyExists$, StateMachineAlreadyExists);
|
|
1133
|
+
var StateMachineDeleting$ = [-3, n0, _SMD,
|
|
1134
|
+
{ [_e]: _c },
|
|
1135
|
+
[_m],
|
|
1136
|
+
[0]
|
|
1137
|
+
];
|
|
1138
|
+
n0_registry.registerError(StateMachineDeleting$, StateMachineDeleting);
|
|
1139
|
+
var StateMachineDoesNotExist$ = [-3, n0, _SMDNE,
|
|
1140
|
+
{ [_e]: _c },
|
|
1141
|
+
[_m],
|
|
1142
|
+
[0]
|
|
1143
|
+
];
|
|
1144
|
+
n0_registry.registerError(StateMachineDoesNotExist$, StateMachineDoesNotExist);
|
|
1145
|
+
var StateMachineLimitExceeded$ = [-3, n0, _SMLE,
|
|
1146
|
+
{ [_e]: _c },
|
|
1147
|
+
[_m],
|
|
1148
|
+
[0]
|
|
1149
|
+
];
|
|
1150
|
+
n0_registry.registerError(StateMachineLimitExceeded$, StateMachineLimitExceeded);
|
|
1151
|
+
var StateMachineTypeNotSupported$ = [-3, n0, _SMTNS,
|
|
1152
|
+
{ [_e]: _c },
|
|
1153
|
+
[_m],
|
|
1154
|
+
[0]
|
|
1155
|
+
];
|
|
1156
|
+
n0_registry.registerError(StateMachineTypeNotSupported$, StateMachineTypeNotSupported);
|
|
1157
|
+
var TaskDoesNotExist$ = [-3, n0, _TDNE,
|
|
1158
|
+
{ [_e]: _c },
|
|
1159
|
+
[_m],
|
|
1160
|
+
[0]
|
|
1161
|
+
];
|
|
1162
|
+
n0_registry.registerError(TaskDoesNotExist$, TaskDoesNotExist);
|
|
1163
|
+
var TaskTimedOut$ = [-3, n0, _TTO,
|
|
1164
|
+
{ [_e]: _c },
|
|
1165
|
+
[_m],
|
|
1166
|
+
[0]
|
|
1167
|
+
];
|
|
1168
|
+
n0_registry.registerError(TaskTimedOut$, TaskTimedOut);
|
|
1169
|
+
var TooManyTags$ = [-3, n0, _TMT,
|
|
1170
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1171
|
+
[_m, _rN],
|
|
1172
|
+
[0, 0]
|
|
1173
|
+
];
|
|
1174
|
+
n0_registry.registerError(TooManyTags$, TooManyTags);
|
|
1175
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
1176
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1177
|
+
[_m, _r],
|
|
1178
|
+
[0, 0]
|
|
1179
|
+
];
|
|
1180
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
1181
|
+
const errorTypeRegistries = [
|
|
1182
|
+
_s_registry,
|
|
1183
|
+
n0_registry,
|
|
1184
|
+
];
|
|
1185
|
+
var AliasDescription = [0, n0, _AD, 8, 0];
|
|
1186
|
+
var ConnectorParameters = [0, n0, _CP, 8, 0];
|
|
1187
|
+
var Definition = [0, n0, _D, 8, 0];
|
|
1188
|
+
var EvaluationFailureLocation = [0, n0, _EFL, 8, 0];
|
|
1189
|
+
var ExceptionHandlerIndex = [0, n0, _EHI, 8, 1];
|
|
1190
|
+
var InspectionMaxConcurrency = [0, n0, _IMC, 8, 1];
|
|
1191
|
+
var InspectionToleratedFailureCount = [0, n0, _ITFC, 8, 1];
|
|
1192
|
+
var InspectionToleratedFailurePercentage = [0, n0, _ITFP, 8, 1];
|
|
1193
|
+
var RetryBackoffIntervalSeconds = [0, n0, _RBIS, 8, 1];
|
|
1194
|
+
var SensitiveCause = [0, n0, _SC, 8, 0];
|
|
1195
|
+
var SensitiveData = [0, n0, _SD, 8, 0];
|
|
1196
|
+
var SensitiveDataJobInput = [0, n0, _SDJI, 8, 0];
|
|
1197
|
+
var SensitiveError = [0, n0, _SE, 8, 0];
|
|
1198
|
+
var TestStateStateName = [0, n0, _TSSN, 8, 0];
|
|
1199
|
+
var ValidateStateMachineDefinitionCode = [0, n0, _VSMDC, 8, 0];
|
|
1200
|
+
var ValidateStateMachineDefinitionLocation = [0, n0, _VSMDL, 8, 0];
|
|
1201
|
+
var ValidateStateMachineDefinitionMessage = [0, n0, _VSMDM, 8, 0];
|
|
1202
|
+
var VariableName = [0, n0, _VN, 8, 0];
|
|
1203
|
+
var VariableValue = [0, n0, _VV, 8, 0];
|
|
1204
|
+
var VersionDescription = [0, n0, _VD, 8, 0];
|
|
1205
|
+
var ActivityFailedEventDetails$ = [3, n0, _AFED,
|
|
1206
|
+
0,
|
|
1207
|
+
[_e, _ca],
|
|
1208
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1209
|
+
];
|
|
1210
|
+
var ActivityListItem$ = [3, n0, _ALI,
|
|
1211
|
+
0,
|
|
1212
|
+
[_aA, _n, _cD],
|
|
1213
|
+
[0, 0, 4], 3
|
|
1214
|
+
];
|
|
1215
|
+
var ActivityScheduledEventDetails$ = [3, n0, _ASED,
|
|
1216
|
+
0,
|
|
1217
|
+
[_re, _i, _iD, _tIS, _hIS],
|
|
1218
|
+
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 1, 1], 1
|
|
1219
|
+
];
|
|
1220
|
+
var ActivityScheduleFailedEventDetails$ = [3, n0, _ASFED,
|
|
1221
|
+
0,
|
|
1222
|
+
[_e, _ca],
|
|
1223
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1224
|
+
];
|
|
1225
|
+
var ActivityStartedEventDetails$ = [3, n0, _ASEDc,
|
|
1226
|
+
0,
|
|
1227
|
+
[_wN],
|
|
1228
|
+
[0]
|
|
1229
|
+
];
|
|
1230
|
+
var ActivitySucceededEventDetails$ = [3, n0, _ASEDct,
|
|
1231
|
+
0,
|
|
1232
|
+
[_o, _oD],
|
|
1233
|
+
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$]
|
|
1234
|
+
];
|
|
1235
|
+
var ActivityTimedOutEventDetails$ = [3, n0, _ATOED,
|
|
1236
|
+
0,
|
|
1237
|
+
[_e, _ca],
|
|
1238
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1239
|
+
];
|
|
1240
|
+
var AssignedVariablesDetails$ = [3, n0, _AVD,
|
|
1241
|
+
0,
|
|
1242
|
+
[_t],
|
|
1243
|
+
[2]
|
|
1244
|
+
];
|
|
1245
|
+
var BillingDetails$ = [3, n0, _BD,
|
|
1246
|
+
0,
|
|
1247
|
+
[_bMUIMB, _bDIM],
|
|
1248
|
+
[1, 1]
|
|
1249
|
+
];
|
|
1250
|
+
var CloudWatchEventsExecutionDataDetails$ = [3, n0, _CWEEDD,
|
|
1251
|
+
0,
|
|
1252
|
+
[_in],
|
|
1253
|
+
[2]
|
|
1254
|
+
];
|
|
1255
|
+
var CloudWatchLogsLogGroup$ = [3, n0, _CWLLG,
|
|
1256
|
+
0,
|
|
1257
|
+
[_lGA],
|
|
1258
|
+
[0]
|
|
1259
|
+
];
|
|
1260
|
+
var CreateActivityInput$ = [3, n0, _CAI,
|
|
1261
|
+
0,
|
|
1262
|
+
[_n, _ta, _eC],
|
|
1263
|
+
[0, () => TagList, () => EncryptionConfiguration$], 1
|
|
1264
|
+
];
|
|
1265
|
+
var CreateActivityOutput$ = [3, n0, _CAO,
|
|
1266
|
+
0,
|
|
1267
|
+
[_aA, _cD],
|
|
1268
|
+
[0, 4], 2
|
|
1269
|
+
];
|
|
1270
|
+
var CreateStateMachineAliasInput$ = [3, n0, _CSMAI,
|
|
1271
|
+
0,
|
|
1272
|
+
[_n, _rC, _d],
|
|
1273
|
+
[0, () => RoutingConfigurationList, [() => AliasDescription, 0]], 2
|
|
1274
|
+
];
|
|
1275
|
+
var CreateStateMachineAliasOutput$ = [3, n0, _CSMAO,
|
|
1276
|
+
0,
|
|
1277
|
+
[_sMAA, _cD],
|
|
1278
|
+
[0, 4], 2
|
|
1279
|
+
];
|
|
1280
|
+
var CreateStateMachineInput$ = [3, n0, _CSMI,
|
|
1281
|
+
0,
|
|
1282
|
+
[_n, _de, _rA, _ty, _lC, _ta, _tC, _p, _vD, _eC],
|
|
1283
|
+
[0, [() => Definition, 0], 0, 0, () => LoggingConfiguration$, () => TagList, () => TracingConfiguration$, 2, [() => VersionDescription, 0], () => EncryptionConfiguration$], 3
|
|
1284
|
+
];
|
|
1285
|
+
var CreateStateMachineOutput$ = [3, n0, _CSMO,
|
|
1286
|
+
0,
|
|
1287
|
+
[_sMA, _cD, _sMVA],
|
|
1288
|
+
[0, 4, 0], 2
|
|
1289
|
+
];
|
|
1290
|
+
var DeleteActivityInput$ = [3, n0, _DAI,
|
|
1291
|
+
0,
|
|
1292
|
+
[_aA],
|
|
1293
|
+
[0], 1
|
|
1294
|
+
];
|
|
1295
|
+
var DeleteActivityOutput$ = [3, n0, _DAO,
|
|
1296
|
+
0,
|
|
1297
|
+
[],
|
|
1298
|
+
[]
|
|
1299
|
+
];
|
|
1300
|
+
var DeleteStateMachineAliasInput$ = [3, n0, _DSMAI,
|
|
1301
|
+
0,
|
|
1302
|
+
[_sMAA],
|
|
1303
|
+
[0], 1
|
|
1304
|
+
];
|
|
1305
|
+
var DeleteStateMachineAliasOutput$ = [3, n0, _DSMAO,
|
|
1306
|
+
0,
|
|
1307
|
+
[],
|
|
1308
|
+
[]
|
|
1309
|
+
];
|
|
1310
|
+
var DeleteStateMachineInput$ = [3, n0, _DSMI,
|
|
1311
|
+
0,
|
|
1312
|
+
[_sMA],
|
|
1313
|
+
[0], 1
|
|
1314
|
+
];
|
|
1315
|
+
var DeleteStateMachineOutput$ = [3, n0, _DSMO,
|
|
1316
|
+
0,
|
|
1317
|
+
[],
|
|
1318
|
+
[]
|
|
1319
|
+
];
|
|
1320
|
+
var DeleteStateMachineVersionInput$ = [3, n0, _DSMVI,
|
|
1321
|
+
0,
|
|
1322
|
+
[_sMVA],
|
|
1323
|
+
[0], 1
|
|
1324
|
+
];
|
|
1325
|
+
var DeleteStateMachineVersionOutput$ = [3, n0, _DSMVO,
|
|
1326
|
+
0,
|
|
1327
|
+
[],
|
|
1328
|
+
[]
|
|
1329
|
+
];
|
|
1330
|
+
var DescribeActivityInput$ = [3, n0, _DAIe,
|
|
1331
|
+
0,
|
|
1332
|
+
[_aA],
|
|
1333
|
+
[0], 1
|
|
1334
|
+
];
|
|
1335
|
+
var DescribeActivityOutput$ = [3, n0, _DAOe,
|
|
1336
|
+
0,
|
|
1337
|
+
[_aA, _n, _cD, _eC],
|
|
1338
|
+
[0, 0, 4, () => EncryptionConfiguration$], 3
|
|
1339
|
+
];
|
|
1340
|
+
var DescribeExecutionInput$ = [3, n0, _DEI,
|
|
1341
|
+
0,
|
|
1342
|
+
[_eA, _iDn],
|
|
1343
|
+
[0, 0], 1
|
|
1344
|
+
];
|
|
1345
|
+
var DescribeExecutionOutput$ = [3, n0, _DEO,
|
|
1346
|
+
0,
|
|
1347
|
+
[_eA, _sMA, _st, _sD, _n, _sDt, _i, _iD, _o, _oD, _tH, _mRA, _e, _ca, _sMVA, _sMAA, _rCe, _rD, _rS, _rSR],
|
|
1348
|
+
[0, 0, 0, 4, 0, 4, [() => SensitiveData, 0], () => CloudWatchEventsExecutionDataDetails$, [() => SensitiveData, 0], () => CloudWatchEventsExecutionDataDetails$, 0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0], 0, 0, 1, 4, 0, [() => SensitiveData, 0]], 4
|
|
1349
|
+
];
|
|
1350
|
+
var DescribeMapRunInput$ = [3, n0, _DMRI,
|
|
1351
|
+
0,
|
|
1352
|
+
[_mRA],
|
|
1353
|
+
[0], 1
|
|
1354
|
+
];
|
|
1355
|
+
var DescribeMapRunOutput$ = [3, n0, _DMRO,
|
|
1356
|
+
0,
|
|
1357
|
+
[_mRA, _eA, _st, _sD, _mC, _tFP, _tFC, _iC, _eCx, _sDt, _rCe, _rD],
|
|
1358
|
+
[0, 0, 0, 4, 1, 1, 1, () => MapRunItemCounts$, () => MapRunExecutionCounts$, 4, 1, 4], 9
|
|
1359
|
+
];
|
|
1360
|
+
var DescribeStateMachineAliasInput$ = [3, n0, _DSMAIe,
|
|
1361
|
+
0,
|
|
1362
|
+
[_sMAA],
|
|
1363
|
+
[0], 1
|
|
1364
|
+
];
|
|
1365
|
+
var DescribeStateMachineAliasOutput$ = [3, n0, _DSMAOe,
|
|
1366
|
+
0,
|
|
1367
|
+
[_sMAA, _n, _d, _rC, _cD, _uD],
|
|
1368
|
+
[0, 0, [() => AliasDescription, 0], () => RoutingConfigurationList, 4, 4]
|
|
1369
|
+
];
|
|
1370
|
+
var DescribeStateMachineForExecutionInput$ = [3, n0, _DSMFEI,
|
|
1371
|
+
0,
|
|
1372
|
+
[_eA, _iDn],
|
|
1373
|
+
[0, 0], 1
|
|
1374
|
+
];
|
|
1375
|
+
var DescribeStateMachineForExecutionOutput$ = [3, n0, _DSMFEO,
|
|
1376
|
+
0,
|
|
1377
|
+
[_sMA, _n, _de, _rA, _uD, _lC, _tC, _mRA, _l, _rI, _eC, _vR],
|
|
1378
|
+
[0, 0, [() => Definition, 0], 0, 4, () => LoggingConfiguration$, () => TracingConfiguration$, 0, 0, 0, () => EncryptionConfiguration$, [() => VariableReferences, 0]], 5
|
|
1379
|
+
];
|
|
1380
|
+
var DescribeStateMachineInput$ = [3, n0, _DSMIe,
|
|
1381
|
+
0,
|
|
1382
|
+
[_sMA, _iDn],
|
|
1383
|
+
[0, 0], 1
|
|
1384
|
+
];
|
|
1385
|
+
var DescribeStateMachineOutput$ = [3, n0, _DSMOe,
|
|
1386
|
+
0,
|
|
1387
|
+
[_sMA, _n, _de, _rA, _ty, _cD, _st, _lC, _tC, _l, _rI, _d, _eC, _vR],
|
|
1388
|
+
[0, 0, [() => Definition, 0], 0, 0, 4, 0, () => LoggingConfiguration$, () => TracingConfiguration$, 0, 0, [() => VersionDescription, 0], () => EncryptionConfiguration$, [() => VariableReferences, 0]], 6
|
|
1389
|
+
];
|
|
1390
|
+
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
1391
|
+
0,
|
|
1392
|
+
[_ty, _kKI, _kDKRPS],
|
|
1393
|
+
[0, 0, 1], 1
|
|
1394
|
+
];
|
|
1395
|
+
var EvaluationFailedEventDetails$ = [3, n0, _EFED,
|
|
1396
|
+
0,
|
|
1397
|
+
[_sta, _e, _ca, _lo],
|
|
1398
|
+
[0, [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => EvaluationFailureLocation, 0]], 1
|
|
1399
|
+
];
|
|
1400
|
+
var ExecutionAbortedEventDetails$ = [3, n0, _EAED,
|
|
1401
|
+
0,
|
|
1402
|
+
[_e, _ca],
|
|
1403
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1404
|
+
];
|
|
1405
|
+
var ExecutionFailedEventDetails$ = [3, n0, _EFEDx,
|
|
1406
|
+
0,
|
|
1407
|
+
[_e, _ca],
|
|
1408
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1409
|
+
];
|
|
1410
|
+
var ExecutionListItem$ = [3, n0, _ELI,
|
|
1411
|
+
0,
|
|
1412
|
+
[_eA, _sMA, _n, _st, _sD, _sDt, _mRA, _iCt, _sMVA, _sMAA, _rCe, _rD],
|
|
1413
|
+
[0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 1, 4], 5
|
|
1414
|
+
];
|
|
1415
|
+
var ExecutionRedrivenEventDetails$ = [3, n0, _ERED,
|
|
1416
|
+
0,
|
|
1417
|
+
[_rCe],
|
|
1418
|
+
[1]
|
|
1419
|
+
];
|
|
1420
|
+
var ExecutionStartedEventDetails$ = [3, n0, _ESED,
|
|
1421
|
+
0,
|
|
1422
|
+
[_i, _iD, _rA, _sMAA, _sMVA],
|
|
1423
|
+
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 0, 0, 0]
|
|
1424
|
+
];
|
|
1425
|
+
var ExecutionSucceededEventDetails$ = [3, n0, _ESEDx,
|
|
1426
|
+
0,
|
|
1427
|
+
[_o, _oD],
|
|
1428
|
+
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$]
|
|
1429
|
+
];
|
|
1430
|
+
var ExecutionTimedOutEventDetails$ = [3, n0, _ETOED,
|
|
1431
|
+
0,
|
|
1432
|
+
[_e, _ca],
|
|
1433
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1434
|
+
];
|
|
1435
|
+
var GetActivityTaskInput$ = [3, n0, _GATI,
|
|
1436
|
+
0,
|
|
1437
|
+
[_aA, _wN],
|
|
1438
|
+
[0, 0], 1
|
|
1439
|
+
];
|
|
1440
|
+
var GetActivityTaskOutput$ = [3, n0, _GATO,
|
|
1441
|
+
0,
|
|
1442
|
+
[_tT, _i],
|
|
1443
|
+
[0, [() => SensitiveDataJobInput, 0]]
|
|
1444
|
+
];
|
|
1445
|
+
var GetExecutionHistoryInput$ = [3, n0, _GEHI,
|
|
1446
|
+
0,
|
|
1447
|
+
[_eA, _mR, _rO, _nT, _iED],
|
|
1448
|
+
[0, 1, 2, 0, 2], 1
|
|
1449
|
+
];
|
|
1450
|
+
var GetExecutionHistoryOutput$ = [3, n0, _GEHO,
|
|
1451
|
+
0,
|
|
1452
|
+
[_ev, _nT],
|
|
1453
|
+
[[() => HistoryEventList, 0], 0], 1
|
|
1454
|
+
];
|
|
1455
|
+
var HistoryEvent$ = [3, n0, _HE,
|
|
1456
|
+
0,
|
|
1457
|
+
[_ti, _ty, _id, _pEI, _aFED, _aSFED, _aSED, _aSEDc, _aSEDct, _aTOED, _tFED, _tSED, _tSFED, _tSEDa, _tSFEDa, _tSEDas, _tSEDask, _tTOED, _eFED, _eSED, _eSEDx, _eAED, _eTOED, _eRED, _mSSED, _mISED, _mISEDa, _mIFED, _mIAED, _lFFED, _lFSFED, _lFSED, _lFSFEDa, _lFSEDa, _lFTOED, _sEED, _sEEDt, _mRSED, _mRFED, _mRRED, _eFEDv],
|
|
1458
|
+
[4, 0, 1, 1, [() => ActivityFailedEventDetails$, 0], [() => ActivityScheduleFailedEventDetails$, 0], [() => ActivityScheduledEventDetails$, 0], () => ActivityStartedEventDetails$, [() => ActivitySucceededEventDetails$, 0], [() => ActivityTimedOutEventDetails$, 0], [() => TaskFailedEventDetails$, 0], [() => TaskScheduledEventDetails$, 0], [() => TaskStartFailedEventDetails$, 0], () => TaskStartedEventDetails$, [() => TaskSubmitFailedEventDetails$, 0], [() => TaskSubmittedEventDetails$, 0], [() => TaskSucceededEventDetails$, 0], [() => TaskTimedOutEventDetails$, 0], [() => ExecutionFailedEventDetails$, 0], [() => ExecutionStartedEventDetails$, 0], [() => ExecutionSucceededEventDetails$, 0], [() => ExecutionAbortedEventDetails$, 0], [() => ExecutionTimedOutEventDetails$, 0], () => ExecutionRedrivenEventDetails$, () => MapStateStartedEventDetails$, () => MapIterationEventDetails$, () => MapIterationEventDetails$, () => MapIterationEventDetails$, () => MapIterationEventDetails$, [() => LambdaFunctionFailedEventDetails$, 0], [() => LambdaFunctionScheduleFailedEventDetails$, 0], [() => LambdaFunctionScheduledEventDetails$, 0], [() => LambdaFunctionStartFailedEventDetails$, 0], [() => LambdaFunctionSucceededEventDetails$, 0], [() => LambdaFunctionTimedOutEventDetails$, 0], [() => StateEnteredEventDetails$, 0], [() => StateExitedEventDetails$, 0], () => MapRunStartedEventDetails$, [() => MapRunFailedEventDetails$, 0], () => MapRunRedrivenEventDetails$, [() => EvaluationFailedEventDetails$, 0]], 3
|
|
1459
|
+
];
|
|
1460
|
+
var HistoryEventExecutionDataDetails$ = [3, n0, _HEEDD,
|
|
1461
|
+
0,
|
|
1462
|
+
[_t],
|
|
1463
|
+
[2]
|
|
1464
|
+
];
|
|
1465
|
+
var InspectionData$ = [3, n0, _IDn,
|
|
1466
|
+
8,
|
|
1467
|
+
[_i, _aAf, _aIP, _aP, _res, _aRS, _aRP, _req, _resp, _v, _eD, _aIPf, _aIS, _aIB, _aIPft, _tFC, _tFP, _mC],
|
|
1468
|
+
[[() => SensitiveData, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], () => InspectionDataRequest$, () => InspectionDataResponse$, [() => SensitiveData, 0], [() => InspectionErrorDetails$, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], [() => SensitiveData, 0], [() => InspectionToleratedFailureCount, 0], [() => InspectionToleratedFailurePercentage, 0], [() => InspectionMaxConcurrency, 0]]
|
|
1469
|
+
];
|
|
1470
|
+
var InspectionDataRequest$ = [3, n0, _IDR,
|
|
1471
|
+
0,
|
|
1472
|
+
[_pr, _me, _u, _h, _b],
|
|
1473
|
+
[0, 0, 0, 0, 0]
|
|
1474
|
+
];
|
|
1475
|
+
var InspectionDataResponse$ = [3, n0, _IDRn,
|
|
1476
|
+
0,
|
|
1477
|
+
[_pr, _sC, _sM, _h, _b],
|
|
1478
|
+
[0, 0, 0, 0, 0]
|
|
1479
|
+
];
|
|
1480
|
+
var InspectionErrorDetails$ = [3, n0, _IED,
|
|
1481
|
+
0,
|
|
1482
|
+
[_cI, _rIe, _rBIS],
|
|
1483
|
+
[[() => ExceptionHandlerIndex, 0], [() => ExceptionHandlerIndex, 0], [() => RetryBackoffIntervalSeconds, 0]]
|
|
1484
|
+
];
|
|
1485
|
+
var LambdaFunctionFailedEventDetails$ = [3, n0, _LFFED,
|
|
1486
|
+
0,
|
|
1487
|
+
[_e, _ca],
|
|
1488
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1489
|
+
];
|
|
1490
|
+
var LambdaFunctionScheduledEventDetails$ = [3, n0, _LFSED,
|
|
1491
|
+
0,
|
|
1492
|
+
[_re, _i, _iD, _tIS, _tCa],
|
|
1493
|
+
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 1, () => TaskCredentials$], 1
|
|
1494
|
+
];
|
|
1495
|
+
var LambdaFunctionScheduleFailedEventDetails$ = [3, n0, _LFSFED,
|
|
1496
|
+
0,
|
|
1497
|
+
[_e, _ca],
|
|
1498
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1499
|
+
];
|
|
1500
|
+
var LambdaFunctionStartFailedEventDetails$ = [3, n0, _LFSFEDa,
|
|
1501
|
+
0,
|
|
1502
|
+
[_e, _ca],
|
|
1503
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1504
|
+
];
|
|
1505
|
+
var LambdaFunctionSucceededEventDetails$ = [3, n0, _LFSEDa,
|
|
1506
|
+
0,
|
|
1507
|
+
[_o, _oD],
|
|
1508
|
+
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$]
|
|
1509
|
+
];
|
|
1510
|
+
var LambdaFunctionTimedOutEventDetails$ = [3, n0, _LFTOED,
|
|
1511
|
+
0,
|
|
1512
|
+
[_e, _ca],
|
|
1513
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1514
|
+
];
|
|
1515
|
+
var ListActivitiesInput$ = [3, n0, _LAI,
|
|
1516
|
+
0,
|
|
1517
|
+
[_mR, _nT],
|
|
1518
|
+
[1, 0]
|
|
1519
|
+
];
|
|
1520
|
+
var ListActivitiesOutput$ = [3, n0, _LAO,
|
|
1521
|
+
0,
|
|
1522
|
+
[_a, _nT],
|
|
1523
|
+
[() => ActivityList, 0], 1
|
|
1524
|
+
];
|
|
1525
|
+
var ListExecutionsInput$ = [3, n0, _LEI,
|
|
1526
|
+
0,
|
|
1527
|
+
[_sMA, _sF, _mR, _nT, _mRA, _rF],
|
|
1528
|
+
[0, 0, 1, 0, 0, 0]
|
|
1529
|
+
];
|
|
1530
|
+
var ListExecutionsOutput$ = [3, n0, _LEO,
|
|
1531
|
+
0,
|
|
1532
|
+
[_ex, _nT],
|
|
1533
|
+
[() => ExecutionList, 0], 1
|
|
1534
|
+
];
|
|
1535
|
+
var ListMapRunsInput$ = [3, n0, _LMRI,
|
|
1536
|
+
0,
|
|
1537
|
+
[_eA, _mR, _nT],
|
|
1538
|
+
[0, 1, 0], 1
|
|
1539
|
+
];
|
|
1540
|
+
var ListMapRunsOutput$ = [3, n0, _LMRO,
|
|
1541
|
+
0,
|
|
1542
|
+
[_mRa, _nT],
|
|
1543
|
+
[() => MapRunList, 0], 1
|
|
1544
|
+
];
|
|
1545
|
+
var ListStateMachineAliasesInput$ = [3, n0, _LSMAI,
|
|
1546
|
+
0,
|
|
1547
|
+
[_sMA, _nT, _mR],
|
|
1548
|
+
[0, 0, 1], 1
|
|
1549
|
+
];
|
|
1550
|
+
var ListStateMachineAliasesOutput$ = [3, n0, _LSMAO,
|
|
1551
|
+
0,
|
|
1552
|
+
[_sMAt, _nT],
|
|
1553
|
+
[() => StateMachineAliasList, 0], 1
|
|
1554
|
+
];
|
|
1555
|
+
var ListStateMachinesInput$ = [3, n0, _LSMI,
|
|
1556
|
+
0,
|
|
1557
|
+
[_mR, _nT],
|
|
1558
|
+
[1, 0]
|
|
1559
|
+
];
|
|
1560
|
+
var ListStateMachinesOutput$ = [3, n0, _LSMO,
|
|
1561
|
+
0,
|
|
1562
|
+
[_sMt, _nT],
|
|
1563
|
+
[() => StateMachineList, 0], 1
|
|
1564
|
+
];
|
|
1565
|
+
var ListStateMachineVersionsInput$ = [3, n0, _LSMVI,
|
|
1566
|
+
0,
|
|
1567
|
+
[_sMA, _nT, _mR],
|
|
1568
|
+
[0, 0, 1], 1
|
|
1569
|
+
];
|
|
1570
|
+
var ListStateMachineVersionsOutput$ = [3, n0, _LSMVO,
|
|
1571
|
+
0,
|
|
1572
|
+
[_sMV, _nT],
|
|
1573
|
+
[() => StateMachineVersionList, 0], 1
|
|
1574
|
+
];
|
|
1575
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1576
|
+
0,
|
|
1577
|
+
[_rAe],
|
|
1578
|
+
[0], 1
|
|
1579
|
+
];
|
|
1580
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1581
|
+
0,
|
|
1582
|
+
[_ta],
|
|
1583
|
+
[() => TagList]
|
|
1584
|
+
];
|
|
1585
|
+
var LogDestination$ = [3, n0, _LD,
|
|
1586
|
+
0,
|
|
1587
|
+
[_cWLLG],
|
|
1588
|
+
[() => CloudWatchLogsLogGroup$]
|
|
1589
|
+
];
|
|
1590
|
+
var LoggingConfiguration$ = [3, n0, _LC,
|
|
1591
|
+
0,
|
|
1592
|
+
[_le, _iED, _des],
|
|
1593
|
+
[0, 2, () => LogDestinationList]
|
|
1594
|
+
];
|
|
1595
|
+
var MapIterationEventDetails$ = [3, n0, _MIED,
|
|
1596
|
+
0,
|
|
1597
|
+
[_n, _ind],
|
|
1598
|
+
[0, 1]
|
|
1599
|
+
];
|
|
1600
|
+
var MapRunExecutionCounts$ = [3, n0, _MREC,
|
|
1601
|
+
0,
|
|
1602
|
+
[_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
|
|
1603
|
+
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1], 8
|
|
1604
|
+
];
|
|
1605
|
+
var MapRunFailedEventDetails$ = [3, n0, _MRFED,
|
|
1606
|
+
0,
|
|
1607
|
+
[_e, _ca],
|
|
1608
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1609
|
+
];
|
|
1610
|
+
var MapRunItemCounts$ = [3, n0, _MRIC,
|
|
1611
|
+
0,
|
|
1612
|
+
[_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
|
|
1613
|
+
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1], 8
|
|
1614
|
+
];
|
|
1615
|
+
var MapRunListItem$ = [3, n0, _MRLI,
|
|
1616
|
+
0,
|
|
1617
|
+
[_eA, _mRA, _sMA, _sD, _sDt],
|
|
1618
|
+
[0, 0, 0, 4, 4], 4
|
|
1619
|
+
];
|
|
1620
|
+
var MapRunRedrivenEventDetails$ = [3, n0, _MRRED,
|
|
1621
|
+
0,
|
|
1622
|
+
[_mRA, _rCe],
|
|
1623
|
+
[0, 1]
|
|
1624
|
+
];
|
|
1625
|
+
var MapRunStartedEventDetails$ = [3, n0, _MRSED,
|
|
1626
|
+
0,
|
|
1627
|
+
[_mRA],
|
|
1628
|
+
[0]
|
|
1629
|
+
];
|
|
1630
|
+
var MapStateStartedEventDetails$ = [3, n0, _MSSED,
|
|
1631
|
+
0,
|
|
1632
|
+
[_len],
|
|
1633
|
+
[1]
|
|
1634
|
+
];
|
|
1635
|
+
var MockErrorOutput$ = [3, n0, _MEO,
|
|
1636
|
+
0,
|
|
1637
|
+
[_e, _ca],
|
|
1638
|
+
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1639
|
+
];
|
|
1640
|
+
var MockInput$ = [3, n0, _MI,
|
|
1641
|
+
0,
|
|
1642
|
+
[_res, _eO, _fVM],
|
|
1643
|
+
[[() => SensitiveData, 0], [() => MockErrorOutput$, 0], 0]
|
|
1644
|
+
];
|
|
1645
|
+
var PublishStateMachineVersionInput$ = [3, n0, _PSMVI,
|
|
1646
|
+
0,
|
|
1647
|
+
[_sMA, _rI, _d],
|
|
1648
|
+
[0, 0, [() => VersionDescription, 0]], 1
|
|
1649
|
+
];
|
|
1650
|
+
var PublishStateMachineVersionOutput$ = [3, n0, _PSMVO,
|
|
1651
|
+
0,
|
|
1652
|
+
[_cD, _sMVA],
|
|
1653
|
+
[4, 0], 2
|
|
1654
|
+
];
|
|
1655
|
+
var RedriveExecutionInput$ = [3, n0, _REI,
|
|
1656
|
+
0,
|
|
1657
|
+
[_eA, _cT],
|
|
1658
|
+
[0, [0, 4]], 1
|
|
1659
|
+
];
|
|
1660
|
+
var RedriveExecutionOutput$ = [3, n0, _REO,
|
|
1661
|
+
0,
|
|
1662
|
+
[_rD],
|
|
1663
|
+
[4], 1
|
|
1664
|
+
];
|
|
1665
|
+
var RoutingConfigurationListItem$ = [3, n0, _RCLI,
|
|
1666
|
+
0,
|
|
1667
|
+
[_sMVA, _w],
|
|
1668
|
+
[0, 1], 2
|
|
1669
|
+
];
|
|
1670
|
+
var SendTaskFailureInput$ = [3, n0, _STFI,
|
|
1671
|
+
0,
|
|
1672
|
+
[_tT, _e, _ca],
|
|
1673
|
+
[0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 1
|
|
1674
|
+
];
|
|
1675
|
+
var SendTaskFailureOutput$ = [3, n0, _STFO,
|
|
1676
|
+
0,
|
|
1677
|
+
[],
|
|
1678
|
+
[]
|
|
1679
|
+
];
|
|
1680
|
+
var SendTaskHeartbeatInput$ = [3, n0, _STHI,
|
|
1681
|
+
0,
|
|
1682
|
+
[_tT],
|
|
1683
|
+
[0], 1
|
|
1684
|
+
];
|
|
1685
|
+
var SendTaskHeartbeatOutput$ = [3, n0, _STHO,
|
|
1686
|
+
0,
|
|
1687
|
+
[],
|
|
1688
|
+
[]
|
|
1689
|
+
];
|
|
1690
|
+
var SendTaskSuccessInput$ = [3, n0, _STSI,
|
|
1691
|
+
0,
|
|
1692
|
+
[_tT, _o],
|
|
1693
|
+
[0, [() => SensitiveData, 0]], 2
|
|
1694
|
+
];
|
|
1695
|
+
var SendTaskSuccessOutput$ = [3, n0, _STSO,
|
|
1696
|
+
0,
|
|
1697
|
+
[],
|
|
1698
|
+
[]
|
|
1699
|
+
];
|
|
1700
|
+
var StartExecutionInput$ = [3, n0, _SEI,
|
|
1701
|
+
0,
|
|
1702
|
+
[_sMA, _n, _i, _tH],
|
|
1703
|
+
[0, 0, [() => SensitiveData, 0], 0], 1
|
|
1704
|
+
];
|
|
1705
|
+
var StartExecutionOutput$ = [3, n0, _SEO,
|
|
1706
|
+
0,
|
|
1707
|
+
[_eA, _sD],
|
|
1708
|
+
[0, 4], 2
|
|
1709
|
+
];
|
|
1710
|
+
var StartSyncExecutionInput$ = [3, n0, _SSEI,
|
|
1711
|
+
0,
|
|
1712
|
+
[_sMA, _n, _i, _tH, _iDn],
|
|
1713
|
+
[0, 0, [() => SensitiveData, 0], 0, 0], 1
|
|
1714
|
+
];
|
|
1715
|
+
var StartSyncExecutionOutput$ = [3, n0, _SSEO,
|
|
1716
|
+
0,
|
|
1717
|
+
[_eA, _sD, _sDt, _st, _sMA, _n, _e, _ca, _i, _iD, _o, _oD, _tH, _bD],
|
|
1718
|
+
[0, 4, 4, 0, 0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => SensitiveData, 0], () => CloudWatchEventsExecutionDataDetails$, [() => SensitiveData, 0], () => CloudWatchEventsExecutionDataDetails$, 0, () => BillingDetails$], 4
|
|
1719
|
+
];
|
|
1720
|
+
var StateEnteredEventDetails$ = [3, n0, _SEED,
|
|
1721
|
+
0,
|
|
1722
|
+
[_n, _i, _iD],
|
|
1723
|
+
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$], 1
|
|
1724
|
+
];
|
|
1725
|
+
var StateExitedEventDetails$ = [3, n0, _SEEDt,
|
|
1726
|
+
0,
|
|
1727
|
+
[_n, _o, _oD, _aV, _aVD],
|
|
1728
|
+
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, [() => AssignedVariables, 0], () => AssignedVariablesDetails$], 1
|
|
1729
|
+
];
|
|
1730
|
+
var StateMachineAliasListItem$ = [3, n0, _SMALI,
|
|
1731
|
+
0,
|
|
1732
|
+
[_sMAA, _cD],
|
|
1733
|
+
[0, 4], 2
|
|
1734
|
+
];
|
|
1735
|
+
var StateMachineListItem$ = [3, n0, _SMLI,
|
|
1736
|
+
0,
|
|
1737
|
+
[_sMA, _n, _ty, _cD],
|
|
1738
|
+
[0, 0, 0, 4], 4
|
|
1739
|
+
];
|
|
1740
|
+
var StateMachineVersionListItem$ = [3, n0, _SMVLI,
|
|
1741
|
+
0,
|
|
1742
|
+
[_sMVA, _cD],
|
|
1743
|
+
[0, 4], 2
|
|
1744
|
+
];
|
|
1745
|
+
var StopExecutionInput$ = [3, n0, _SEIt,
|
|
1746
|
+
0,
|
|
1747
|
+
[_eA, _e, _ca],
|
|
1748
|
+
[0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 1
|
|
1749
|
+
];
|
|
1750
|
+
var StopExecutionOutput$ = [3, n0, _SEOt,
|
|
1751
|
+
0,
|
|
1752
|
+
[_sDt],
|
|
1753
|
+
[4], 1
|
|
1754
|
+
];
|
|
1755
|
+
var Tag$ = [3, n0, _T,
|
|
1756
|
+
0,
|
|
1757
|
+
[_k, _va],
|
|
1758
|
+
[0, 0]
|
|
1759
|
+
];
|
|
1760
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
1761
|
+
0,
|
|
1762
|
+
[_rAe, _ta],
|
|
1763
|
+
[0, () => TagList], 2
|
|
1764
|
+
];
|
|
1765
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
1766
|
+
0,
|
|
1767
|
+
[],
|
|
1768
|
+
[]
|
|
1769
|
+
];
|
|
1770
|
+
var TaskCredentials$ = [3, n0, _TC,
|
|
1771
|
+
0,
|
|
1772
|
+
[_rA],
|
|
1773
|
+
[0]
|
|
1774
|
+
];
|
|
1775
|
+
var TaskFailedEventDetails$ = [3, n0, _TFED,
|
|
1776
|
+
0,
|
|
1777
|
+
[_rT, _re, _e, _ca],
|
|
1778
|
+
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1779
|
+
];
|
|
1780
|
+
var TaskScheduledEventDetails$ = [3, n0, _TSED,
|
|
1781
|
+
0,
|
|
1782
|
+
[_rT, _re, _reg, _pa, _tIS, _hIS, _tCa],
|
|
1783
|
+
[0, 0, 0, [() => ConnectorParameters, 0], 1, 1, () => TaskCredentials$], 4
|
|
1784
|
+
];
|
|
1785
|
+
var TaskStartedEventDetails$ = [3, n0, _TSEDa,
|
|
1786
|
+
0,
|
|
1787
|
+
[_rT, _re],
|
|
1788
|
+
[0, 0], 2
|
|
1789
|
+
];
|
|
1790
|
+
var TaskStartFailedEventDetails$ = [3, n0, _TSFED,
|
|
1791
|
+
0,
|
|
1792
|
+
[_rT, _re, _e, _ca],
|
|
1793
|
+
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1794
|
+
];
|
|
1795
|
+
var TaskSubmitFailedEventDetails$ = [3, n0, _TSFEDa,
|
|
1796
|
+
0,
|
|
1797
|
+
[_rT, _re, _e, _ca],
|
|
1798
|
+
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1799
|
+
];
|
|
1800
|
+
var TaskSubmittedEventDetails$ = [3, n0, _TSEDas,
|
|
1801
|
+
0,
|
|
1802
|
+
[_rT, _re, _o, _oD],
|
|
1803
|
+
[0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$], 2
|
|
1804
|
+
];
|
|
1805
|
+
var TaskSucceededEventDetails$ = [3, n0, _TSEDask,
|
|
1806
|
+
0,
|
|
1807
|
+
[_rT, _re, _o, _oD],
|
|
1808
|
+
[0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$], 2
|
|
1809
|
+
];
|
|
1810
|
+
var TaskTimedOutEventDetails$ = [3, n0, _TTOED,
|
|
1811
|
+
0,
|
|
1812
|
+
[_rT, _re, _e, _ca],
|
|
1813
|
+
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1814
|
+
];
|
|
1815
|
+
var TestStateConfiguration$ = [3, n0, _TSC,
|
|
1816
|
+
0,
|
|
1817
|
+
[_rRC, _eCBS, _mIFC, _mIRD],
|
|
1818
|
+
[1, [() => TestStateStateName, 0], 1, [() => SensitiveData, 0]]
|
|
1819
|
+
];
|
|
1820
|
+
var TestStateInput$ = [3, n0, _TSI,
|
|
1821
|
+
0,
|
|
1822
|
+
[_de, _rA, _i, _iL, _rSe, _v, _sN, _mo, _co, _sCt],
|
|
1823
|
+
[[() => Definition, 0], 0, [() => SensitiveData, 0], 0, 2, [() => SensitiveData, 0], [() => TestStateStateName, 0], [() => MockInput$, 0], [() => SensitiveData, 0], [() => TestStateConfiguration$, 0]], 1
|
|
1824
|
+
];
|
|
1825
|
+
var TestStateOutput$ = [3, n0, _TSO,
|
|
1826
|
+
0,
|
|
1827
|
+
[_o, _e, _ca, _iDns, _nS, _st],
|
|
1828
|
+
[[() => SensitiveData, 0], [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => InspectionData$, 0], 0, 0]
|
|
1829
|
+
];
|
|
1830
|
+
var TracingConfiguration$ = [3, n0, _TCr,
|
|
1831
|
+
0,
|
|
1832
|
+
[_en],
|
|
1833
|
+
[2]
|
|
1834
|
+
];
|
|
1835
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
1836
|
+
0,
|
|
1837
|
+
[_rAe, _tK],
|
|
1838
|
+
[0, 64 | 0], 2
|
|
1839
|
+
];
|
|
1840
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
1841
|
+
0,
|
|
1842
|
+
[],
|
|
1843
|
+
[]
|
|
1844
|
+
];
|
|
1845
|
+
var UpdateMapRunInput$ = [3, n0, _UMRI,
|
|
1846
|
+
0,
|
|
1847
|
+
[_mRA, _mC, _tFP, _tFC],
|
|
1848
|
+
[0, 1, 1, 1], 1
|
|
1849
|
+
];
|
|
1850
|
+
var UpdateMapRunOutput$ = [3, n0, _UMRO,
|
|
1851
|
+
0,
|
|
1852
|
+
[],
|
|
1853
|
+
[]
|
|
1854
|
+
];
|
|
1855
|
+
var UpdateStateMachineAliasInput$ = [3, n0, _USMAI,
|
|
1856
|
+
0,
|
|
1857
|
+
[_sMAA, _d, _rC],
|
|
1858
|
+
[0, [() => AliasDescription, 0], () => RoutingConfigurationList], 1
|
|
1859
|
+
];
|
|
1860
|
+
var UpdateStateMachineAliasOutput$ = [3, n0, _USMAO,
|
|
1861
|
+
0,
|
|
1862
|
+
[_uD],
|
|
1863
|
+
[4], 1
|
|
1864
|
+
];
|
|
1865
|
+
var UpdateStateMachineInput$ = [3, n0, _USMI,
|
|
1866
|
+
0,
|
|
1867
|
+
[_sMA, _de, _rA, _lC, _tC, _p, _vD, _eC],
|
|
1868
|
+
[0, [() => Definition, 0], 0, () => LoggingConfiguration$, () => TracingConfiguration$, 2, [() => VersionDescription, 0], () => EncryptionConfiguration$], 1
|
|
1869
|
+
];
|
|
1870
|
+
var UpdateStateMachineOutput$ = [3, n0, _USMO,
|
|
1871
|
+
0,
|
|
1872
|
+
[_uD, _rI, _sMVA],
|
|
1873
|
+
[4, 0, 0], 1
|
|
1874
|
+
];
|
|
1875
|
+
var ValidateStateMachineDefinitionDiagnostic$ = [3, n0, _VSMDD,
|
|
1876
|
+
0,
|
|
1877
|
+
[_se, _cod, _m, _lo],
|
|
1878
|
+
[0, [() => ValidateStateMachineDefinitionCode, 0], [() => ValidateStateMachineDefinitionMessage, 0], [() => ValidateStateMachineDefinitionLocation, 0]], 3
|
|
1879
|
+
];
|
|
1880
|
+
var ValidateStateMachineDefinitionInput$ = [3, n0, _VSMDI,
|
|
1881
|
+
0,
|
|
1882
|
+
[_de, _ty, _se, _mR],
|
|
1883
|
+
[[() => Definition, 0], 0, 0, 1], 1
|
|
1884
|
+
];
|
|
1885
|
+
var ValidateStateMachineDefinitionOutput$ = [3, n0, _VSMDO,
|
|
1886
|
+
0,
|
|
1887
|
+
[_res, _di, _t],
|
|
1888
|
+
[0, [() => ValidateStateMachineDefinitionDiagnosticList, 0], 2], 2
|
|
1889
|
+
];
|
|
1890
|
+
var ActivityList = [1, n0, _AL,
|
|
1891
|
+
0, () => ActivityListItem$
|
|
1892
|
+
];
|
|
1893
|
+
var ExecutionList = [1, n0, _EL,
|
|
1894
|
+
0, () => ExecutionListItem$
|
|
1895
|
+
];
|
|
1896
|
+
var HistoryEventList = [1, n0, _HEL,
|
|
1897
|
+
0, [() => HistoryEvent$,
|
|
1898
|
+
0]
|
|
1899
|
+
];
|
|
1900
|
+
var LogDestinationList = [1, n0, _LDL,
|
|
1901
|
+
0, () => LogDestination$
|
|
1902
|
+
];
|
|
1903
|
+
var MapRunList = [1, n0, _MRL,
|
|
1904
|
+
0, () => MapRunListItem$
|
|
1905
|
+
];
|
|
1906
|
+
var RoutingConfigurationList = [1, n0, _RCL,
|
|
1907
|
+
0, () => RoutingConfigurationListItem$
|
|
1908
|
+
];
|
|
1909
|
+
var StateMachineAliasList = [1, n0, _SMAL,
|
|
1910
|
+
0, () => StateMachineAliasListItem$
|
|
1911
|
+
];
|
|
1912
|
+
var StateMachineList = [1, n0, _SML,
|
|
1913
|
+
0, () => StateMachineListItem$
|
|
1914
|
+
];
|
|
1915
|
+
var StateMachineVersionList = [1, n0, _SMVL,
|
|
1916
|
+
0, () => StateMachineVersionListItem$
|
|
1917
|
+
];
|
|
1918
|
+
var TagList = [1, n0, _TL,
|
|
1919
|
+
0, () => Tag$
|
|
1920
|
+
];
|
|
1921
|
+
var ValidateStateMachineDefinitionDiagnosticList = [1, n0, _VSMDDL,
|
|
1922
|
+
0, [() => ValidateStateMachineDefinitionDiagnostic$,
|
|
1923
|
+
0]
|
|
1924
|
+
];
|
|
1925
|
+
var VariableNameList = [1, n0, _VNL,
|
|
1926
|
+
0, [() => VariableName,
|
|
1927
|
+
0]
|
|
1928
|
+
];
|
|
1929
|
+
var AssignedVariables = [2, n0, _AV,
|
|
1930
|
+
0, [() => VariableName,
|
|
1931
|
+
0],
|
|
1932
|
+
[() => VariableValue,
|
|
1933
|
+
0]
|
|
1934
|
+
];
|
|
1935
|
+
var VariableReferences = [2, n0, _VR,
|
|
1936
|
+
8, [0,
|
|
1937
|
+
0],
|
|
1938
|
+
[() => VariableNameList,
|
|
1939
|
+
0]
|
|
1940
|
+
];
|
|
1941
|
+
var CreateActivity$ = [9, n0, _CA,
|
|
1942
|
+
2, () => CreateActivityInput$, () => CreateActivityOutput$
|
|
1943
|
+
];
|
|
1944
|
+
var CreateStateMachine$ = [9, n0, _CSM,
|
|
1945
|
+
2, () => CreateStateMachineInput$, () => CreateStateMachineOutput$
|
|
1946
|
+
];
|
|
1947
|
+
var CreateStateMachineAlias$ = [9, n0, _CSMA,
|
|
1948
|
+
0, () => CreateStateMachineAliasInput$, () => CreateStateMachineAliasOutput$
|
|
1949
|
+
];
|
|
1950
|
+
var DeleteActivity$ = [9, n0, _DA,
|
|
1951
|
+
0, () => DeleteActivityInput$, () => DeleteActivityOutput$
|
|
1952
|
+
];
|
|
1953
|
+
var DeleteStateMachine$ = [9, n0, _DSM,
|
|
1954
|
+
0, () => DeleteStateMachineInput$, () => DeleteStateMachineOutput$
|
|
1955
|
+
];
|
|
1956
|
+
var DeleteStateMachineAlias$ = [9, n0, _DSMA,
|
|
1957
|
+
0, () => DeleteStateMachineAliasInput$, () => DeleteStateMachineAliasOutput$
|
|
1958
|
+
];
|
|
1959
|
+
var DeleteStateMachineVersion$ = [9, n0, _DSMV,
|
|
1960
|
+
0, () => DeleteStateMachineVersionInput$, () => DeleteStateMachineVersionOutput$
|
|
1961
|
+
];
|
|
1962
|
+
var DescribeActivity$ = [9, n0, _DAe,
|
|
1963
|
+
0, () => DescribeActivityInput$, () => DescribeActivityOutput$
|
|
1964
|
+
];
|
|
1965
|
+
var DescribeExecution$ = [9, n0, _DE,
|
|
1966
|
+
0, () => DescribeExecutionInput$, () => DescribeExecutionOutput$
|
|
1967
|
+
];
|
|
1968
|
+
var DescribeMapRun$ = [9, n0, _DMR,
|
|
1969
|
+
0, () => DescribeMapRunInput$, () => DescribeMapRunOutput$
|
|
1970
|
+
];
|
|
1971
|
+
var DescribeStateMachine$ = [9, n0, _DSMe,
|
|
1972
|
+
0, () => DescribeStateMachineInput$, () => DescribeStateMachineOutput$
|
|
1973
|
+
];
|
|
1974
|
+
var DescribeStateMachineAlias$ = [9, n0, _DSMAe,
|
|
1975
|
+
0, () => DescribeStateMachineAliasInput$, () => DescribeStateMachineAliasOutput$
|
|
1976
|
+
];
|
|
1977
|
+
var DescribeStateMachineForExecution$ = [9, n0, _DSMFE,
|
|
1978
|
+
0, () => DescribeStateMachineForExecutionInput$, () => DescribeStateMachineForExecutionOutput$
|
|
1979
|
+
];
|
|
1980
|
+
var GetActivityTask$ = [9, n0, _GAT,
|
|
1981
|
+
0, () => GetActivityTaskInput$, () => GetActivityTaskOutput$
|
|
1982
|
+
];
|
|
1983
|
+
var GetExecutionHistory$ = [9, n0, _GEH,
|
|
1984
|
+
0, () => GetExecutionHistoryInput$, () => GetExecutionHistoryOutput$
|
|
1985
|
+
];
|
|
1986
|
+
var ListActivities$ = [9, n0, _LA,
|
|
1987
|
+
0, () => ListActivitiesInput$, () => ListActivitiesOutput$
|
|
1988
|
+
];
|
|
1989
|
+
var ListExecutions$ = [9, n0, _LE,
|
|
1990
|
+
0, () => ListExecutionsInput$, () => ListExecutionsOutput$
|
|
1991
|
+
];
|
|
1992
|
+
var ListMapRuns$ = [9, n0, _LMR,
|
|
1993
|
+
0, () => ListMapRunsInput$, () => ListMapRunsOutput$
|
|
1994
|
+
];
|
|
1995
|
+
var ListStateMachineAliases$ = [9, n0, _LSMA,
|
|
1996
|
+
0, () => ListStateMachineAliasesInput$, () => ListStateMachineAliasesOutput$
|
|
1997
|
+
];
|
|
1998
|
+
var ListStateMachines$ = [9, n0, _LSM,
|
|
1999
|
+
0, () => ListStateMachinesInput$, () => ListStateMachinesOutput$
|
|
2000
|
+
];
|
|
2001
|
+
var ListStateMachineVersions$ = [9, n0, _LSMV,
|
|
2002
|
+
0, () => ListStateMachineVersionsInput$, () => ListStateMachineVersionsOutput$
|
|
2003
|
+
];
|
|
2004
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2005
|
+
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
2006
|
+
];
|
|
2007
|
+
var PublishStateMachineVersion$ = [9, n0, _PSMV,
|
|
2008
|
+
2, () => PublishStateMachineVersionInput$, () => PublishStateMachineVersionOutput$
|
|
2009
|
+
];
|
|
2010
|
+
var RedriveExecution$ = [9, n0, _RE,
|
|
2011
|
+
2, () => RedriveExecutionInput$, () => RedriveExecutionOutput$
|
|
2012
|
+
];
|
|
2013
|
+
var SendTaskFailure$ = [9, n0, _STF,
|
|
2014
|
+
0, () => SendTaskFailureInput$, () => SendTaskFailureOutput$
|
|
2015
|
+
];
|
|
2016
|
+
var SendTaskHeartbeat$ = [9, n0, _STH,
|
|
2017
|
+
0, () => SendTaskHeartbeatInput$, () => SendTaskHeartbeatOutput$
|
|
2018
|
+
];
|
|
2019
|
+
var SendTaskSuccess$ = [9, n0, _STS,
|
|
2020
|
+
0, () => SendTaskSuccessInput$, () => SendTaskSuccessOutput$
|
|
2021
|
+
];
|
|
2022
|
+
var StartExecution$ = [9, n0, _SEt,
|
|
2023
|
+
2, () => StartExecutionInput$, () => StartExecutionOutput$
|
|
2024
|
+
];
|
|
2025
|
+
var StartSyncExecution$ = [9, n0, _SSE,
|
|
2026
|
+
{ [_end]: ["sync-"] }, () => StartSyncExecutionInput$, () => StartSyncExecutionOutput$
|
|
2027
|
+
];
|
|
2028
|
+
var StopExecution$ = [9, n0, _SEto,
|
|
2029
|
+
0, () => StopExecutionInput$, () => StopExecutionOutput$
|
|
2030
|
+
];
|
|
2031
|
+
var TagResource$ = [9, n0, _TR,
|
|
2032
|
+
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
2033
|
+
];
|
|
2034
|
+
var TestState$ = [9, n0, _TS,
|
|
2035
|
+
{ [_end]: ["sync-"] }, () => TestStateInput$, () => TestStateOutput$
|
|
2036
|
+
];
|
|
2037
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2038
|
+
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
2039
|
+
];
|
|
2040
|
+
var UpdateMapRun$ = [9, n0, _UMR,
|
|
2041
|
+
0, () => UpdateMapRunInput$, () => UpdateMapRunOutput$
|
|
2042
|
+
];
|
|
2043
|
+
var UpdateStateMachine$ = [9, n0, _USM,
|
|
2044
|
+
2, () => UpdateStateMachineInput$, () => UpdateStateMachineOutput$
|
|
2045
|
+
];
|
|
2046
|
+
var UpdateStateMachineAlias$ = [9, n0, _USMA,
|
|
2047
|
+
0, () => UpdateStateMachineAliasInput$, () => UpdateStateMachineAliasOutput$
|
|
2048
|
+
];
|
|
2049
|
+
var ValidateStateMachineDefinition$ = [9, n0, _VSMD,
|
|
2050
|
+
0, () => ValidateStateMachineDefinitionInput$, () => ValidateStateMachineDefinitionOutput$
|
|
2051
|
+
];
|
|
2052
|
+
|
|
2053
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2054
|
+
return {
|
|
2055
|
+
apiVersion: "2016-11-23",
|
|
2056
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2057
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2058
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2059
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2060
|
+
extensions: config?.extensions ?? [],
|
|
2061
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSFNHttpAuthSchemeProvider,
|
|
2062
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2063
|
+
{
|
|
2064
|
+
schemeId: "aws.auth#sigv4",
|
|
2065
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2066
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2067
|
+
},
|
|
2068
|
+
],
|
|
2069
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2070
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
2071
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2072
|
+
defaultNamespace: "com.amazonaws.sfn",
|
|
2073
|
+
errorTypeRegistries,
|
|
2074
|
+
xmlNamespace: "http://swf.amazonaws.com/doc/2015-07-20/",
|
|
2075
|
+
version: "2016-11-23",
|
|
2076
|
+
serviceTarget: "AWSStepFunctions",
|
|
2077
|
+
},
|
|
2078
|
+
serviceId: config?.serviceId ?? "SFN",
|
|
2079
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2080
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2081
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2082
|
+
};
|
|
2083
|
+
};
|
|
2084
|
+
|
|
2085
|
+
const getRuntimeConfig = (config) => {
|
|
2086
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2087
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2088
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2089
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2090
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2091
|
+
const loaderConfig = {
|
|
2092
|
+
profile: config?.profile,
|
|
2093
|
+
logger: clientSharedValues.logger,
|
|
2094
|
+
};
|
|
2095
|
+
return {
|
|
2096
|
+
...clientSharedValues,
|
|
2097
|
+
...config,
|
|
2098
|
+
runtime: "node",
|
|
2099
|
+
defaultsMode,
|
|
2100
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2101
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2102
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2103
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2104
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2105
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2106
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2107
|
+
retryMode: config?.retryMode ??
|
|
2108
|
+
loadConfig({
|
|
2109
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2110
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2111
|
+
}, config),
|
|
2112
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2113
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2114
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2115
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2116
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2117
|
+
};
|
|
2118
|
+
};
|
|
2119
|
+
|
|
34
2120
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2121
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2122
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -770,63 +2856,306 @@ const ValidateStateMachineDefinitionResultCode = {
|
|
|
770
2856
|
OK: "OK",
|
|
771
2857
|
};
|
|
772
2858
|
|
|
2859
|
+
exports.ActivityAlreadyExists = ActivityAlreadyExists;
|
|
2860
|
+
exports.ActivityAlreadyExists$ = ActivityAlreadyExists$;
|
|
2861
|
+
exports.ActivityDoesNotExist = ActivityDoesNotExist;
|
|
2862
|
+
exports.ActivityDoesNotExist$ = ActivityDoesNotExist$;
|
|
2863
|
+
exports.ActivityFailedEventDetails$ = ActivityFailedEventDetails$;
|
|
2864
|
+
exports.ActivityLimitExceeded = ActivityLimitExceeded;
|
|
2865
|
+
exports.ActivityLimitExceeded$ = ActivityLimitExceeded$;
|
|
2866
|
+
exports.ActivityListItem$ = ActivityListItem$;
|
|
2867
|
+
exports.ActivityScheduleFailedEventDetails$ = ActivityScheduleFailedEventDetails$;
|
|
2868
|
+
exports.ActivityScheduledEventDetails$ = ActivityScheduledEventDetails$;
|
|
2869
|
+
exports.ActivityStartedEventDetails$ = ActivityStartedEventDetails$;
|
|
2870
|
+
exports.ActivitySucceededEventDetails$ = ActivitySucceededEventDetails$;
|
|
2871
|
+
exports.ActivityTimedOutEventDetails$ = ActivityTimedOutEventDetails$;
|
|
2872
|
+
exports.ActivityWorkerLimitExceeded = ActivityWorkerLimitExceeded;
|
|
2873
|
+
exports.ActivityWorkerLimitExceeded$ = ActivityWorkerLimitExceeded$;
|
|
2874
|
+
exports.AssignedVariablesDetails$ = AssignedVariablesDetails$;
|
|
2875
|
+
exports.BillingDetails$ = BillingDetails$;
|
|
2876
|
+
exports.CloudWatchEventsExecutionDataDetails$ = CloudWatchEventsExecutionDataDetails$;
|
|
2877
|
+
exports.CloudWatchLogsLogGroup$ = CloudWatchLogsLogGroup$;
|
|
2878
|
+
exports.ConflictException = ConflictException;
|
|
2879
|
+
exports.ConflictException$ = ConflictException$;
|
|
2880
|
+
exports.CreateActivity$ = CreateActivity$;
|
|
773
2881
|
exports.CreateActivityCommand = CreateActivityCommand;
|
|
2882
|
+
exports.CreateActivityInput$ = CreateActivityInput$;
|
|
2883
|
+
exports.CreateActivityOutput$ = CreateActivityOutput$;
|
|
2884
|
+
exports.CreateStateMachine$ = CreateStateMachine$;
|
|
2885
|
+
exports.CreateStateMachineAlias$ = CreateStateMachineAlias$;
|
|
774
2886
|
exports.CreateStateMachineAliasCommand = CreateStateMachineAliasCommand;
|
|
2887
|
+
exports.CreateStateMachineAliasInput$ = CreateStateMachineAliasInput$;
|
|
2888
|
+
exports.CreateStateMachineAliasOutput$ = CreateStateMachineAliasOutput$;
|
|
775
2889
|
exports.CreateStateMachineCommand = CreateStateMachineCommand;
|
|
2890
|
+
exports.CreateStateMachineInput$ = CreateStateMachineInput$;
|
|
2891
|
+
exports.CreateStateMachineOutput$ = CreateStateMachineOutput$;
|
|
2892
|
+
exports.DeleteActivity$ = DeleteActivity$;
|
|
776
2893
|
exports.DeleteActivityCommand = DeleteActivityCommand;
|
|
2894
|
+
exports.DeleteActivityInput$ = DeleteActivityInput$;
|
|
2895
|
+
exports.DeleteActivityOutput$ = DeleteActivityOutput$;
|
|
2896
|
+
exports.DeleteStateMachine$ = DeleteStateMachine$;
|
|
2897
|
+
exports.DeleteStateMachineAlias$ = DeleteStateMachineAlias$;
|
|
777
2898
|
exports.DeleteStateMachineAliasCommand = DeleteStateMachineAliasCommand;
|
|
2899
|
+
exports.DeleteStateMachineAliasInput$ = DeleteStateMachineAliasInput$;
|
|
2900
|
+
exports.DeleteStateMachineAliasOutput$ = DeleteStateMachineAliasOutput$;
|
|
778
2901
|
exports.DeleteStateMachineCommand = DeleteStateMachineCommand;
|
|
2902
|
+
exports.DeleteStateMachineInput$ = DeleteStateMachineInput$;
|
|
2903
|
+
exports.DeleteStateMachineOutput$ = DeleteStateMachineOutput$;
|
|
2904
|
+
exports.DeleteStateMachineVersion$ = DeleteStateMachineVersion$;
|
|
779
2905
|
exports.DeleteStateMachineVersionCommand = DeleteStateMachineVersionCommand;
|
|
2906
|
+
exports.DeleteStateMachineVersionInput$ = DeleteStateMachineVersionInput$;
|
|
2907
|
+
exports.DeleteStateMachineVersionOutput$ = DeleteStateMachineVersionOutput$;
|
|
2908
|
+
exports.DescribeActivity$ = DescribeActivity$;
|
|
780
2909
|
exports.DescribeActivityCommand = DescribeActivityCommand;
|
|
2910
|
+
exports.DescribeActivityInput$ = DescribeActivityInput$;
|
|
2911
|
+
exports.DescribeActivityOutput$ = DescribeActivityOutput$;
|
|
2912
|
+
exports.DescribeExecution$ = DescribeExecution$;
|
|
781
2913
|
exports.DescribeExecutionCommand = DescribeExecutionCommand;
|
|
2914
|
+
exports.DescribeExecutionInput$ = DescribeExecutionInput$;
|
|
2915
|
+
exports.DescribeExecutionOutput$ = DescribeExecutionOutput$;
|
|
2916
|
+
exports.DescribeMapRun$ = DescribeMapRun$;
|
|
782
2917
|
exports.DescribeMapRunCommand = DescribeMapRunCommand;
|
|
2918
|
+
exports.DescribeMapRunInput$ = DescribeMapRunInput$;
|
|
2919
|
+
exports.DescribeMapRunOutput$ = DescribeMapRunOutput$;
|
|
2920
|
+
exports.DescribeStateMachine$ = DescribeStateMachine$;
|
|
2921
|
+
exports.DescribeStateMachineAlias$ = DescribeStateMachineAlias$;
|
|
783
2922
|
exports.DescribeStateMachineAliasCommand = DescribeStateMachineAliasCommand;
|
|
2923
|
+
exports.DescribeStateMachineAliasInput$ = DescribeStateMachineAliasInput$;
|
|
2924
|
+
exports.DescribeStateMachineAliasOutput$ = DescribeStateMachineAliasOutput$;
|
|
784
2925
|
exports.DescribeStateMachineCommand = DescribeStateMachineCommand;
|
|
2926
|
+
exports.DescribeStateMachineForExecution$ = DescribeStateMachineForExecution$;
|
|
785
2927
|
exports.DescribeStateMachineForExecutionCommand = DescribeStateMachineForExecutionCommand;
|
|
2928
|
+
exports.DescribeStateMachineForExecutionInput$ = DescribeStateMachineForExecutionInput$;
|
|
2929
|
+
exports.DescribeStateMachineForExecutionOutput$ = DescribeStateMachineForExecutionOutput$;
|
|
2930
|
+
exports.DescribeStateMachineInput$ = DescribeStateMachineInput$;
|
|
2931
|
+
exports.DescribeStateMachineOutput$ = DescribeStateMachineOutput$;
|
|
2932
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
786
2933
|
exports.EncryptionType = EncryptionType;
|
|
2934
|
+
exports.EvaluationFailedEventDetails$ = EvaluationFailedEventDetails$;
|
|
2935
|
+
exports.ExecutionAbortedEventDetails$ = ExecutionAbortedEventDetails$;
|
|
2936
|
+
exports.ExecutionAlreadyExists = ExecutionAlreadyExists;
|
|
2937
|
+
exports.ExecutionAlreadyExists$ = ExecutionAlreadyExists$;
|
|
2938
|
+
exports.ExecutionDoesNotExist = ExecutionDoesNotExist;
|
|
2939
|
+
exports.ExecutionDoesNotExist$ = ExecutionDoesNotExist$;
|
|
2940
|
+
exports.ExecutionFailedEventDetails$ = ExecutionFailedEventDetails$;
|
|
2941
|
+
exports.ExecutionLimitExceeded = ExecutionLimitExceeded;
|
|
2942
|
+
exports.ExecutionLimitExceeded$ = ExecutionLimitExceeded$;
|
|
2943
|
+
exports.ExecutionListItem$ = ExecutionListItem$;
|
|
2944
|
+
exports.ExecutionNotRedrivable = ExecutionNotRedrivable;
|
|
2945
|
+
exports.ExecutionNotRedrivable$ = ExecutionNotRedrivable$;
|
|
787
2946
|
exports.ExecutionRedriveFilter = ExecutionRedriveFilter;
|
|
788
2947
|
exports.ExecutionRedriveStatus = ExecutionRedriveStatus;
|
|
2948
|
+
exports.ExecutionRedrivenEventDetails$ = ExecutionRedrivenEventDetails$;
|
|
2949
|
+
exports.ExecutionStartedEventDetails$ = ExecutionStartedEventDetails$;
|
|
789
2950
|
exports.ExecutionStatus = ExecutionStatus;
|
|
2951
|
+
exports.ExecutionSucceededEventDetails$ = ExecutionSucceededEventDetails$;
|
|
2952
|
+
exports.ExecutionTimedOutEventDetails$ = ExecutionTimedOutEventDetails$;
|
|
2953
|
+
exports.GetActivityTask$ = GetActivityTask$;
|
|
790
2954
|
exports.GetActivityTaskCommand = GetActivityTaskCommand;
|
|
2955
|
+
exports.GetActivityTaskInput$ = GetActivityTaskInput$;
|
|
2956
|
+
exports.GetActivityTaskOutput$ = GetActivityTaskOutput$;
|
|
2957
|
+
exports.GetExecutionHistory$ = GetExecutionHistory$;
|
|
791
2958
|
exports.GetExecutionHistoryCommand = GetExecutionHistoryCommand;
|
|
2959
|
+
exports.GetExecutionHistoryInput$ = GetExecutionHistoryInput$;
|
|
2960
|
+
exports.GetExecutionHistoryOutput$ = GetExecutionHistoryOutput$;
|
|
2961
|
+
exports.HistoryEvent$ = HistoryEvent$;
|
|
2962
|
+
exports.HistoryEventExecutionDataDetails$ = HistoryEventExecutionDataDetails$;
|
|
792
2963
|
exports.HistoryEventType = HistoryEventType;
|
|
793
2964
|
exports.IncludedData = IncludedData;
|
|
2965
|
+
exports.InspectionData$ = InspectionData$;
|
|
2966
|
+
exports.InspectionDataRequest$ = InspectionDataRequest$;
|
|
2967
|
+
exports.InspectionDataResponse$ = InspectionDataResponse$;
|
|
2968
|
+
exports.InspectionErrorDetails$ = InspectionErrorDetails$;
|
|
794
2969
|
exports.InspectionLevel = InspectionLevel;
|
|
2970
|
+
exports.InvalidArn = InvalidArn;
|
|
2971
|
+
exports.InvalidArn$ = InvalidArn$;
|
|
2972
|
+
exports.InvalidDefinition = InvalidDefinition;
|
|
2973
|
+
exports.InvalidDefinition$ = InvalidDefinition$;
|
|
2974
|
+
exports.InvalidEncryptionConfiguration = InvalidEncryptionConfiguration;
|
|
2975
|
+
exports.InvalidEncryptionConfiguration$ = InvalidEncryptionConfiguration$;
|
|
2976
|
+
exports.InvalidExecutionInput = InvalidExecutionInput;
|
|
2977
|
+
exports.InvalidExecutionInput$ = InvalidExecutionInput$;
|
|
2978
|
+
exports.InvalidLoggingConfiguration = InvalidLoggingConfiguration;
|
|
2979
|
+
exports.InvalidLoggingConfiguration$ = InvalidLoggingConfiguration$;
|
|
2980
|
+
exports.InvalidName = InvalidName;
|
|
2981
|
+
exports.InvalidName$ = InvalidName$;
|
|
2982
|
+
exports.InvalidOutput = InvalidOutput;
|
|
2983
|
+
exports.InvalidOutput$ = InvalidOutput$;
|
|
2984
|
+
exports.InvalidToken = InvalidToken;
|
|
2985
|
+
exports.InvalidToken$ = InvalidToken$;
|
|
2986
|
+
exports.InvalidTracingConfiguration = InvalidTracingConfiguration;
|
|
2987
|
+
exports.InvalidTracingConfiguration$ = InvalidTracingConfiguration$;
|
|
2988
|
+
exports.KmsAccessDeniedException = KmsAccessDeniedException;
|
|
2989
|
+
exports.KmsAccessDeniedException$ = KmsAccessDeniedException$;
|
|
2990
|
+
exports.KmsInvalidStateException = KmsInvalidStateException;
|
|
2991
|
+
exports.KmsInvalidStateException$ = KmsInvalidStateException$;
|
|
795
2992
|
exports.KmsKeyState = KmsKeyState;
|
|
2993
|
+
exports.KmsThrottlingException = KmsThrottlingException;
|
|
2994
|
+
exports.KmsThrottlingException$ = KmsThrottlingException$;
|
|
2995
|
+
exports.LambdaFunctionFailedEventDetails$ = LambdaFunctionFailedEventDetails$;
|
|
2996
|
+
exports.LambdaFunctionScheduleFailedEventDetails$ = LambdaFunctionScheduleFailedEventDetails$;
|
|
2997
|
+
exports.LambdaFunctionScheduledEventDetails$ = LambdaFunctionScheduledEventDetails$;
|
|
2998
|
+
exports.LambdaFunctionStartFailedEventDetails$ = LambdaFunctionStartFailedEventDetails$;
|
|
2999
|
+
exports.LambdaFunctionSucceededEventDetails$ = LambdaFunctionSucceededEventDetails$;
|
|
3000
|
+
exports.LambdaFunctionTimedOutEventDetails$ = LambdaFunctionTimedOutEventDetails$;
|
|
3001
|
+
exports.ListActivities$ = ListActivities$;
|
|
796
3002
|
exports.ListActivitiesCommand = ListActivitiesCommand;
|
|
3003
|
+
exports.ListActivitiesInput$ = ListActivitiesInput$;
|
|
3004
|
+
exports.ListActivitiesOutput$ = ListActivitiesOutput$;
|
|
3005
|
+
exports.ListExecutions$ = ListExecutions$;
|
|
797
3006
|
exports.ListExecutionsCommand = ListExecutionsCommand;
|
|
3007
|
+
exports.ListExecutionsInput$ = ListExecutionsInput$;
|
|
3008
|
+
exports.ListExecutionsOutput$ = ListExecutionsOutput$;
|
|
3009
|
+
exports.ListMapRuns$ = ListMapRuns$;
|
|
798
3010
|
exports.ListMapRunsCommand = ListMapRunsCommand;
|
|
3011
|
+
exports.ListMapRunsInput$ = ListMapRunsInput$;
|
|
3012
|
+
exports.ListMapRunsOutput$ = ListMapRunsOutput$;
|
|
3013
|
+
exports.ListStateMachineAliases$ = ListStateMachineAliases$;
|
|
799
3014
|
exports.ListStateMachineAliasesCommand = ListStateMachineAliasesCommand;
|
|
3015
|
+
exports.ListStateMachineAliasesInput$ = ListStateMachineAliasesInput$;
|
|
3016
|
+
exports.ListStateMachineAliasesOutput$ = ListStateMachineAliasesOutput$;
|
|
3017
|
+
exports.ListStateMachineVersions$ = ListStateMachineVersions$;
|
|
800
3018
|
exports.ListStateMachineVersionsCommand = ListStateMachineVersionsCommand;
|
|
3019
|
+
exports.ListStateMachineVersionsInput$ = ListStateMachineVersionsInput$;
|
|
3020
|
+
exports.ListStateMachineVersionsOutput$ = ListStateMachineVersionsOutput$;
|
|
3021
|
+
exports.ListStateMachines$ = ListStateMachines$;
|
|
801
3022
|
exports.ListStateMachinesCommand = ListStateMachinesCommand;
|
|
3023
|
+
exports.ListStateMachinesInput$ = ListStateMachinesInput$;
|
|
3024
|
+
exports.ListStateMachinesOutput$ = ListStateMachinesOutput$;
|
|
3025
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
802
3026
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3027
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
3028
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
3029
|
+
exports.LogDestination$ = LogDestination$;
|
|
803
3030
|
exports.LogLevel = LogLevel;
|
|
3031
|
+
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
3032
|
+
exports.MapIterationEventDetails$ = MapIterationEventDetails$;
|
|
3033
|
+
exports.MapRunExecutionCounts$ = MapRunExecutionCounts$;
|
|
3034
|
+
exports.MapRunFailedEventDetails$ = MapRunFailedEventDetails$;
|
|
3035
|
+
exports.MapRunItemCounts$ = MapRunItemCounts$;
|
|
3036
|
+
exports.MapRunListItem$ = MapRunListItem$;
|
|
3037
|
+
exports.MapRunRedrivenEventDetails$ = MapRunRedrivenEventDetails$;
|
|
3038
|
+
exports.MapRunStartedEventDetails$ = MapRunStartedEventDetails$;
|
|
804
3039
|
exports.MapRunStatus = MapRunStatus;
|
|
3040
|
+
exports.MapStateStartedEventDetails$ = MapStateStartedEventDetails$;
|
|
3041
|
+
exports.MissingRequiredParameter = MissingRequiredParameter;
|
|
3042
|
+
exports.MissingRequiredParameter$ = MissingRequiredParameter$;
|
|
3043
|
+
exports.MockErrorOutput$ = MockErrorOutput$;
|
|
3044
|
+
exports.MockInput$ = MockInput$;
|
|
805
3045
|
exports.MockResponseValidationMode = MockResponseValidationMode;
|
|
3046
|
+
exports.PublishStateMachineVersion$ = PublishStateMachineVersion$;
|
|
806
3047
|
exports.PublishStateMachineVersionCommand = PublishStateMachineVersionCommand;
|
|
3048
|
+
exports.PublishStateMachineVersionInput$ = PublishStateMachineVersionInput$;
|
|
3049
|
+
exports.PublishStateMachineVersionOutput$ = PublishStateMachineVersionOutput$;
|
|
3050
|
+
exports.RedriveExecution$ = RedriveExecution$;
|
|
807
3051
|
exports.RedriveExecutionCommand = RedriveExecutionCommand;
|
|
3052
|
+
exports.RedriveExecutionInput$ = RedriveExecutionInput$;
|
|
3053
|
+
exports.RedriveExecutionOutput$ = RedriveExecutionOutput$;
|
|
3054
|
+
exports.ResourceNotFound = ResourceNotFound;
|
|
3055
|
+
exports.ResourceNotFound$ = ResourceNotFound$;
|
|
3056
|
+
exports.RoutingConfigurationListItem$ = RoutingConfigurationListItem$;
|
|
808
3057
|
exports.SFN = SFN;
|
|
809
3058
|
exports.SFNClient = SFNClient;
|
|
3059
|
+
exports.SFNServiceException = SFNServiceException;
|
|
3060
|
+
exports.SFNServiceException$ = SFNServiceException$;
|
|
3061
|
+
exports.SendTaskFailure$ = SendTaskFailure$;
|
|
810
3062
|
exports.SendTaskFailureCommand = SendTaskFailureCommand;
|
|
3063
|
+
exports.SendTaskFailureInput$ = SendTaskFailureInput$;
|
|
3064
|
+
exports.SendTaskFailureOutput$ = SendTaskFailureOutput$;
|
|
3065
|
+
exports.SendTaskHeartbeat$ = SendTaskHeartbeat$;
|
|
811
3066
|
exports.SendTaskHeartbeatCommand = SendTaskHeartbeatCommand;
|
|
3067
|
+
exports.SendTaskHeartbeatInput$ = SendTaskHeartbeatInput$;
|
|
3068
|
+
exports.SendTaskHeartbeatOutput$ = SendTaskHeartbeatOutput$;
|
|
3069
|
+
exports.SendTaskSuccess$ = SendTaskSuccess$;
|
|
812
3070
|
exports.SendTaskSuccessCommand = SendTaskSuccessCommand;
|
|
3071
|
+
exports.SendTaskSuccessInput$ = SendTaskSuccessInput$;
|
|
3072
|
+
exports.SendTaskSuccessOutput$ = SendTaskSuccessOutput$;
|
|
3073
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3074
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3075
|
+
exports.StartExecution$ = StartExecution$;
|
|
813
3076
|
exports.StartExecutionCommand = StartExecutionCommand;
|
|
3077
|
+
exports.StartExecutionInput$ = StartExecutionInput$;
|
|
3078
|
+
exports.StartExecutionOutput$ = StartExecutionOutput$;
|
|
3079
|
+
exports.StartSyncExecution$ = StartSyncExecution$;
|
|
814
3080
|
exports.StartSyncExecutionCommand = StartSyncExecutionCommand;
|
|
3081
|
+
exports.StartSyncExecutionInput$ = StartSyncExecutionInput$;
|
|
3082
|
+
exports.StartSyncExecutionOutput$ = StartSyncExecutionOutput$;
|
|
3083
|
+
exports.StateEnteredEventDetails$ = StateEnteredEventDetails$;
|
|
3084
|
+
exports.StateExitedEventDetails$ = StateExitedEventDetails$;
|
|
3085
|
+
exports.StateMachineAliasListItem$ = StateMachineAliasListItem$;
|
|
3086
|
+
exports.StateMachineAlreadyExists = StateMachineAlreadyExists;
|
|
3087
|
+
exports.StateMachineAlreadyExists$ = StateMachineAlreadyExists$;
|
|
3088
|
+
exports.StateMachineDeleting = StateMachineDeleting;
|
|
3089
|
+
exports.StateMachineDeleting$ = StateMachineDeleting$;
|
|
3090
|
+
exports.StateMachineDoesNotExist = StateMachineDoesNotExist;
|
|
3091
|
+
exports.StateMachineDoesNotExist$ = StateMachineDoesNotExist$;
|
|
3092
|
+
exports.StateMachineLimitExceeded = StateMachineLimitExceeded;
|
|
3093
|
+
exports.StateMachineLimitExceeded$ = StateMachineLimitExceeded$;
|
|
3094
|
+
exports.StateMachineListItem$ = StateMachineListItem$;
|
|
815
3095
|
exports.StateMachineStatus = StateMachineStatus;
|
|
816
3096
|
exports.StateMachineType = StateMachineType;
|
|
3097
|
+
exports.StateMachineTypeNotSupported = StateMachineTypeNotSupported;
|
|
3098
|
+
exports.StateMachineTypeNotSupported$ = StateMachineTypeNotSupported$;
|
|
3099
|
+
exports.StateMachineVersionListItem$ = StateMachineVersionListItem$;
|
|
3100
|
+
exports.StopExecution$ = StopExecution$;
|
|
817
3101
|
exports.StopExecutionCommand = StopExecutionCommand;
|
|
3102
|
+
exports.StopExecutionInput$ = StopExecutionInput$;
|
|
3103
|
+
exports.StopExecutionOutput$ = StopExecutionOutput$;
|
|
818
3104
|
exports.SyncExecutionStatus = SyncExecutionStatus;
|
|
3105
|
+
exports.Tag$ = Tag$;
|
|
3106
|
+
exports.TagResource$ = TagResource$;
|
|
819
3107
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3108
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
3109
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
3110
|
+
exports.TaskCredentials$ = TaskCredentials$;
|
|
3111
|
+
exports.TaskDoesNotExist = TaskDoesNotExist;
|
|
3112
|
+
exports.TaskDoesNotExist$ = TaskDoesNotExist$;
|
|
3113
|
+
exports.TaskFailedEventDetails$ = TaskFailedEventDetails$;
|
|
3114
|
+
exports.TaskScheduledEventDetails$ = TaskScheduledEventDetails$;
|
|
3115
|
+
exports.TaskStartFailedEventDetails$ = TaskStartFailedEventDetails$;
|
|
3116
|
+
exports.TaskStartedEventDetails$ = TaskStartedEventDetails$;
|
|
3117
|
+
exports.TaskSubmitFailedEventDetails$ = TaskSubmitFailedEventDetails$;
|
|
3118
|
+
exports.TaskSubmittedEventDetails$ = TaskSubmittedEventDetails$;
|
|
3119
|
+
exports.TaskSucceededEventDetails$ = TaskSucceededEventDetails$;
|
|
3120
|
+
exports.TaskTimedOut = TaskTimedOut;
|
|
3121
|
+
exports.TaskTimedOut$ = TaskTimedOut$;
|
|
3122
|
+
exports.TaskTimedOutEventDetails$ = TaskTimedOutEventDetails$;
|
|
820
3123
|
exports.TestExecutionStatus = TestExecutionStatus;
|
|
3124
|
+
exports.TestState$ = TestState$;
|
|
821
3125
|
exports.TestStateCommand = TestStateCommand;
|
|
3126
|
+
exports.TestStateConfiguration$ = TestStateConfiguration$;
|
|
3127
|
+
exports.TestStateInput$ = TestStateInput$;
|
|
3128
|
+
exports.TestStateOutput$ = TestStateOutput$;
|
|
3129
|
+
exports.TooManyTags = TooManyTags;
|
|
3130
|
+
exports.TooManyTags$ = TooManyTags$;
|
|
3131
|
+
exports.TracingConfiguration$ = TracingConfiguration$;
|
|
3132
|
+
exports.UntagResource$ = UntagResource$;
|
|
822
3133
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3134
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
3135
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
3136
|
+
exports.UpdateMapRun$ = UpdateMapRun$;
|
|
823
3137
|
exports.UpdateMapRunCommand = UpdateMapRunCommand;
|
|
3138
|
+
exports.UpdateMapRunInput$ = UpdateMapRunInput$;
|
|
3139
|
+
exports.UpdateMapRunOutput$ = UpdateMapRunOutput$;
|
|
3140
|
+
exports.UpdateStateMachine$ = UpdateStateMachine$;
|
|
3141
|
+
exports.UpdateStateMachineAlias$ = UpdateStateMachineAlias$;
|
|
824
3142
|
exports.UpdateStateMachineAliasCommand = UpdateStateMachineAliasCommand;
|
|
3143
|
+
exports.UpdateStateMachineAliasInput$ = UpdateStateMachineAliasInput$;
|
|
3144
|
+
exports.UpdateStateMachineAliasOutput$ = UpdateStateMachineAliasOutput$;
|
|
825
3145
|
exports.UpdateStateMachineCommand = UpdateStateMachineCommand;
|
|
3146
|
+
exports.UpdateStateMachineInput$ = UpdateStateMachineInput$;
|
|
3147
|
+
exports.UpdateStateMachineOutput$ = UpdateStateMachineOutput$;
|
|
3148
|
+
exports.ValidateStateMachineDefinition$ = ValidateStateMachineDefinition$;
|
|
826
3149
|
exports.ValidateStateMachineDefinitionCommand = ValidateStateMachineDefinitionCommand;
|
|
3150
|
+
exports.ValidateStateMachineDefinitionDiagnostic$ = ValidateStateMachineDefinitionDiagnostic$;
|
|
3151
|
+
exports.ValidateStateMachineDefinitionInput$ = ValidateStateMachineDefinitionInput$;
|
|
3152
|
+
exports.ValidateStateMachineDefinitionOutput$ = ValidateStateMachineDefinitionOutput$;
|
|
827
3153
|
exports.ValidateStateMachineDefinitionResultCode = ValidateStateMachineDefinitionResultCode;
|
|
828
3154
|
exports.ValidateStateMachineDefinitionSeverity = ValidateStateMachineDefinitionSeverity;
|
|
3155
|
+
exports.ValidationException = ValidationException;
|
|
3156
|
+
exports.ValidationException$ = ValidationException$;
|
|
829
3157
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
3158
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
830
3159
|
exports.paginateGetExecutionHistory = paginateGetExecutionHistory;
|
|
831
3160
|
exports.paginateListActivities = paginateListActivities;
|
|
832
3161
|
exports.paginateListExecutions = paginateListExecutions;
|