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