@aws-sdk/client-sfn 3.987.0 → 3.989.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 +56 -2190
- package/dist-cjs/models/SFNServiceException.js +12 -0
- package/dist-cjs/models/errors.js +441 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1515 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +236 -230
- package/dist-types/schemas/schemas_0.d.ts +39 -32
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +34 -32
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SFNServiceException = require('./models/SFNServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1917 +113,6 @@ class SFNClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SFNServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SFNServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ActivityAlreadyExists extends SFNServiceException {
|
|
121
|
-
name = "ActivityAlreadyExists";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ActivityAlreadyExists",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ActivityAlreadyExists.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ActivityDoesNotExist extends SFNServiceException {
|
|
133
|
-
name = "ActivityDoesNotExist";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ActivityDoesNotExist",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ActivityDoesNotExist.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ActivityLimitExceeded extends SFNServiceException {
|
|
145
|
-
name = "ActivityLimitExceeded";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ActivityLimitExceeded",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ActivityLimitExceeded.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ActivityWorkerLimitExceeded extends SFNServiceException {
|
|
157
|
-
name = "ActivityWorkerLimitExceeded";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ActivityWorkerLimitExceeded",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ActivityWorkerLimitExceeded.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class InvalidEncryptionConfiguration extends SFNServiceException {
|
|
169
|
-
name = "InvalidEncryptionConfiguration";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "InvalidEncryptionConfiguration",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, InvalidEncryptionConfiguration.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class InvalidName extends SFNServiceException {
|
|
181
|
-
name = "InvalidName";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "InvalidName",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, InvalidName.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class KmsAccessDeniedException extends SFNServiceException {
|
|
193
|
-
name = "KmsAccessDeniedException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "KmsAccessDeniedException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, KmsAccessDeniedException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class KmsThrottlingException extends SFNServiceException {
|
|
205
|
-
name = "KmsThrottlingException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "KmsThrottlingException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, KmsThrottlingException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class TooManyTags extends SFNServiceException {
|
|
217
|
-
name = "TooManyTags";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
resourceName;
|
|
220
|
-
constructor(opts) {
|
|
221
|
-
super({
|
|
222
|
-
name: "TooManyTags",
|
|
223
|
-
$fault: "client",
|
|
224
|
-
...opts,
|
|
225
|
-
});
|
|
226
|
-
Object.setPrototypeOf(this, TooManyTags.prototype);
|
|
227
|
-
this.resourceName = opts.resourceName;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
class ConflictException extends SFNServiceException {
|
|
231
|
-
name = "ConflictException";
|
|
232
|
-
$fault = "client";
|
|
233
|
-
constructor(opts) {
|
|
234
|
-
super({
|
|
235
|
-
name: "ConflictException",
|
|
236
|
-
$fault: "client",
|
|
237
|
-
...opts,
|
|
238
|
-
});
|
|
239
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
class InvalidArn extends SFNServiceException {
|
|
243
|
-
name = "InvalidArn";
|
|
244
|
-
$fault = "client";
|
|
245
|
-
constructor(opts) {
|
|
246
|
-
super({
|
|
247
|
-
name: "InvalidArn",
|
|
248
|
-
$fault: "client",
|
|
249
|
-
...opts,
|
|
250
|
-
});
|
|
251
|
-
Object.setPrototypeOf(this, InvalidArn.prototype);
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
class InvalidDefinition extends SFNServiceException {
|
|
255
|
-
name = "InvalidDefinition";
|
|
256
|
-
$fault = "client";
|
|
257
|
-
constructor(opts) {
|
|
258
|
-
super({
|
|
259
|
-
name: "InvalidDefinition",
|
|
260
|
-
$fault: "client",
|
|
261
|
-
...opts,
|
|
262
|
-
});
|
|
263
|
-
Object.setPrototypeOf(this, InvalidDefinition.prototype);
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
class InvalidLoggingConfiguration extends SFNServiceException {
|
|
267
|
-
name = "InvalidLoggingConfiguration";
|
|
268
|
-
$fault = "client";
|
|
269
|
-
constructor(opts) {
|
|
270
|
-
super({
|
|
271
|
-
name: "InvalidLoggingConfiguration",
|
|
272
|
-
$fault: "client",
|
|
273
|
-
...opts,
|
|
274
|
-
});
|
|
275
|
-
Object.setPrototypeOf(this, InvalidLoggingConfiguration.prototype);
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
class InvalidTracingConfiguration extends SFNServiceException {
|
|
279
|
-
name = "InvalidTracingConfiguration";
|
|
280
|
-
$fault = "client";
|
|
281
|
-
constructor(opts) {
|
|
282
|
-
super({
|
|
283
|
-
name: "InvalidTracingConfiguration",
|
|
284
|
-
$fault: "client",
|
|
285
|
-
...opts,
|
|
286
|
-
});
|
|
287
|
-
Object.setPrototypeOf(this, InvalidTracingConfiguration.prototype);
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
class StateMachineAlreadyExists extends SFNServiceException {
|
|
291
|
-
name = "StateMachineAlreadyExists";
|
|
292
|
-
$fault = "client";
|
|
293
|
-
constructor(opts) {
|
|
294
|
-
super({
|
|
295
|
-
name: "StateMachineAlreadyExists",
|
|
296
|
-
$fault: "client",
|
|
297
|
-
...opts,
|
|
298
|
-
});
|
|
299
|
-
Object.setPrototypeOf(this, StateMachineAlreadyExists.prototype);
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
class StateMachineDeleting extends SFNServiceException {
|
|
303
|
-
name = "StateMachineDeleting";
|
|
304
|
-
$fault = "client";
|
|
305
|
-
constructor(opts) {
|
|
306
|
-
super({
|
|
307
|
-
name: "StateMachineDeleting",
|
|
308
|
-
$fault: "client",
|
|
309
|
-
...opts,
|
|
310
|
-
});
|
|
311
|
-
Object.setPrototypeOf(this, StateMachineDeleting.prototype);
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
class StateMachineLimitExceeded extends SFNServiceException {
|
|
315
|
-
name = "StateMachineLimitExceeded";
|
|
316
|
-
$fault = "client";
|
|
317
|
-
constructor(opts) {
|
|
318
|
-
super({
|
|
319
|
-
name: "StateMachineLimitExceeded",
|
|
320
|
-
$fault: "client",
|
|
321
|
-
...opts,
|
|
322
|
-
});
|
|
323
|
-
Object.setPrototypeOf(this, StateMachineLimitExceeded.prototype);
|
|
324
|
-
}
|
|
325
|
-
}
|
|
326
|
-
class StateMachineTypeNotSupported extends SFNServiceException {
|
|
327
|
-
name = "StateMachineTypeNotSupported";
|
|
328
|
-
$fault = "client";
|
|
329
|
-
constructor(opts) {
|
|
330
|
-
super({
|
|
331
|
-
name: "StateMachineTypeNotSupported",
|
|
332
|
-
$fault: "client",
|
|
333
|
-
...opts,
|
|
334
|
-
});
|
|
335
|
-
Object.setPrototypeOf(this, StateMachineTypeNotSupported.prototype);
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
class ValidationException extends SFNServiceException {
|
|
339
|
-
name = "ValidationException";
|
|
340
|
-
$fault = "client";
|
|
341
|
-
reason;
|
|
342
|
-
constructor(opts) {
|
|
343
|
-
super({
|
|
344
|
-
name: "ValidationException",
|
|
345
|
-
$fault: "client",
|
|
346
|
-
...opts,
|
|
347
|
-
});
|
|
348
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
349
|
-
this.reason = opts.reason;
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
class ResourceNotFound extends SFNServiceException {
|
|
353
|
-
name = "ResourceNotFound";
|
|
354
|
-
$fault = "client";
|
|
355
|
-
resourceName;
|
|
356
|
-
constructor(opts) {
|
|
357
|
-
super({
|
|
358
|
-
name: "ResourceNotFound",
|
|
359
|
-
$fault: "client",
|
|
360
|
-
...opts,
|
|
361
|
-
});
|
|
362
|
-
Object.setPrototypeOf(this, ResourceNotFound.prototype);
|
|
363
|
-
this.resourceName = opts.resourceName;
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
class ServiceQuotaExceededException extends SFNServiceException {
|
|
367
|
-
name = "ServiceQuotaExceededException";
|
|
368
|
-
$fault = "client";
|
|
369
|
-
constructor(opts) {
|
|
370
|
-
super({
|
|
371
|
-
name: "ServiceQuotaExceededException",
|
|
372
|
-
$fault: "client",
|
|
373
|
-
...opts,
|
|
374
|
-
});
|
|
375
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
class ExecutionDoesNotExist extends SFNServiceException {
|
|
379
|
-
name = "ExecutionDoesNotExist";
|
|
380
|
-
$fault = "client";
|
|
381
|
-
constructor(opts) {
|
|
382
|
-
super({
|
|
383
|
-
name: "ExecutionDoesNotExist",
|
|
384
|
-
$fault: "client",
|
|
385
|
-
...opts,
|
|
386
|
-
});
|
|
387
|
-
Object.setPrototypeOf(this, ExecutionDoesNotExist.prototype);
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
class KmsInvalidStateException extends SFNServiceException {
|
|
391
|
-
name = "KmsInvalidStateException";
|
|
392
|
-
$fault = "client";
|
|
393
|
-
kmsKeyState;
|
|
394
|
-
constructor(opts) {
|
|
395
|
-
super({
|
|
396
|
-
name: "KmsInvalidStateException",
|
|
397
|
-
$fault: "client",
|
|
398
|
-
...opts,
|
|
399
|
-
});
|
|
400
|
-
Object.setPrototypeOf(this, KmsInvalidStateException.prototype);
|
|
401
|
-
this.kmsKeyState = opts.kmsKeyState;
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
class StateMachineDoesNotExist extends SFNServiceException {
|
|
405
|
-
name = "StateMachineDoesNotExist";
|
|
406
|
-
$fault = "client";
|
|
407
|
-
constructor(opts) {
|
|
408
|
-
super({
|
|
409
|
-
name: "StateMachineDoesNotExist",
|
|
410
|
-
$fault: "client",
|
|
411
|
-
...opts,
|
|
412
|
-
});
|
|
413
|
-
Object.setPrototypeOf(this, StateMachineDoesNotExist.prototype);
|
|
414
|
-
}
|
|
415
|
-
}
|
|
416
|
-
class InvalidToken extends SFNServiceException {
|
|
417
|
-
name = "InvalidToken";
|
|
418
|
-
$fault = "client";
|
|
419
|
-
constructor(opts) {
|
|
420
|
-
super({
|
|
421
|
-
name: "InvalidToken",
|
|
422
|
-
$fault: "client",
|
|
423
|
-
...opts,
|
|
424
|
-
});
|
|
425
|
-
Object.setPrototypeOf(this, InvalidToken.prototype);
|
|
426
|
-
}
|
|
427
|
-
}
|
|
428
|
-
class ExecutionLimitExceeded extends SFNServiceException {
|
|
429
|
-
name = "ExecutionLimitExceeded";
|
|
430
|
-
$fault = "client";
|
|
431
|
-
constructor(opts) {
|
|
432
|
-
super({
|
|
433
|
-
name: "ExecutionLimitExceeded",
|
|
434
|
-
$fault: "client",
|
|
435
|
-
...opts,
|
|
436
|
-
});
|
|
437
|
-
Object.setPrototypeOf(this, ExecutionLimitExceeded.prototype);
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
class ExecutionNotRedrivable extends SFNServiceException {
|
|
441
|
-
name = "ExecutionNotRedrivable";
|
|
442
|
-
$fault = "client";
|
|
443
|
-
constructor(opts) {
|
|
444
|
-
super({
|
|
445
|
-
name: "ExecutionNotRedrivable",
|
|
446
|
-
$fault: "client",
|
|
447
|
-
...opts,
|
|
448
|
-
});
|
|
449
|
-
Object.setPrototypeOf(this, ExecutionNotRedrivable.prototype);
|
|
450
|
-
}
|
|
451
|
-
}
|
|
452
|
-
class TaskDoesNotExist extends SFNServiceException {
|
|
453
|
-
name = "TaskDoesNotExist";
|
|
454
|
-
$fault = "client";
|
|
455
|
-
constructor(opts) {
|
|
456
|
-
super({
|
|
457
|
-
name: "TaskDoesNotExist",
|
|
458
|
-
$fault: "client",
|
|
459
|
-
...opts,
|
|
460
|
-
});
|
|
461
|
-
Object.setPrototypeOf(this, TaskDoesNotExist.prototype);
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
class TaskTimedOut extends SFNServiceException {
|
|
465
|
-
name = "TaskTimedOut";
|
|
466
|
-
$fault = "client";
|
|
467
|
-
constructor(opts) {
|
|
468
|
-
super({
|
|
469
|
-
name: "TaskTimedOut",
|
|
470
|
-
$fault: "client",
|
|
471
|
-
...opts,
|
|
472
|
-
});
|
|
473
|
-
Object.setPrototypeOf(this, TaskTimedOut.prototype);
|
|
474
|
-
}
|
|
475
|
-
}
|
|
476
|
-
class InvalidOutput extends SFNServiceException {
|
|
477
|
-
name = "InvalidOutput";
|
|
478
|
-
$fault = "client";
|
|
479
|
-
constructor(opts) {
|
|
480
|
-
super({
|
|
481
|
-
name: "InvalidOutput",
|
|
482
|
-
$fault: "client",
|
|
483
|
-
...opts,
|
|
484
|
-
});
|
|
485
|
-
Object.setPrototypeOf(this, InvalidOutput.prototype);
|
|
486
|
-
}
|
|
487
|
-
}
|
|
488
|
-
class ExecutionAlreadyExists extends SFNServiceException {
|
|
489
|
-
name = "ExecutionAlreadyExists";
|
|
490
|
-
$fault = "client";
|
|
491
|
-
constructor(opts) {
|
|
492
|
-
super({
|
|
493
|
-
name: "ExecutionAlreadyExists",
|
|
494
|
-
$fault: "client",
|
|
495
|
-
...opts,
|
|
496
|
-
});
|
|
497
|
-
Object.setPrototypeOf(this, ExecutionAlreadyExists.prototype);
|
|
498
|
-
}
|
|
499
|
-
}
|
|
500
|
-
class InvalidExecutionInput extends SFNServiceException {
|
|
501
|
-
name = "InvalidExecutionInput";
|
|
502
|
-
$fault = "client";
|
|
503
|
-
constructor(opts) {
|
|
504
|
-
super({
|
|
505
|
-
name: "InvalidExecutionInput",
|
|
506
|
-
$fault: "client",
|
|
507
|
-
...opts,
|
|
508
|
-
});
|
|
509
|
-
Object.setPrototypeOf(this, InvalidExecutionInput.prototype);
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
class MissingRequiredParameter extends SFNServiceException {
|
|
513
|
-
name = "MissingRequiredParameter";
|
|
514
|
-
$fault = "client";
|
|
515
|
-
constructor(opts) {
|
|
516
|
-
super({
|
|
517
|
-
name: "MissingRequiredParameter",
|
|
518
|
-
$fault: "client",
|
|
519
|
-
...opts,
|
|
520
|
-
});
|
|
521
|
-
Object.setPrototypeOf(this, MissingRequiredParameter.prototype);
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
const _AAE = "ActivityAlreadyExists";
|
|
526
|
-
const _AD = "AliasDescription";
|
|
527
|
-
const _ADNE = "ActivityDoesNotExist";
|
|
528
|
-
const _AFED = "ActivityFailedEventDetails";
|
|
529
|
-
const _AL = "ActivityList";
|
|
530
|
-
const _ALE = "ActivityLimitExceeded";
|
|
531
|
-
const _ALI = "ActivityListItem";
|
|
532
|
-
const _ASED = "ActivityScheduledEventDetails";
|
|
533
|
-
const _ASEDc = "ActivityStartedEventDetails";
|
|
534
|
-
const _ASEDct = "ActivitySucceededEventDetails";
|
|
535
|
-
const _ASFED = "ActivityScheduleFailedEventDetails";
|
|
536
|
-
const _ATOED = "ActivityTimedOutEventDetails";
|
|
537
|
-
const _AV = "AssignedVariables";
|
|
538
|
-
const _AVD = "AssignedVariablesDetails";
|
|
539
|
-
const _AWLE = "ActivityWorkerLimitExceeded";
|
|
540
|
-
const _BD = "BillingDetails";
|
|
541
|
-
const _CA = "CreateActivity";
|
|
542
|
-
const _CAI = "CreateActivityInput";
|
|
543
|
-
const _CAO = "CreateActivityOutput";
|
|
544
|
-
const _CE = "ConflictException";
|
|
545
|
-
const _CP = "ConnectorParameters";
|
|
546
|
-
const _CSM = "CreateStateMachine";
|
|
547
|
-
const _CSMA = "CreateStateMachineAlias";
|
|
548
|
-
const _CSMAI = "CreateStateMachineAliasInput";
|
|
549
|
-
const _CSMAO = "CreateStateMachineAliasOutput";
|
|
550
|
-
const _CSMI = "CreateStateMachineInput";
|
|
551
|
-
const _CSMO = "CreateStateMachineOutput";
|
|
552
|
-
const _CWEEDD = "CloudWatchEventsExecutionDataDetails";
|
|
553
|
-
const _CWLLG = "CloudWatchLogsLogGroup";
|
|
554
|
-
const _D = "Definition";
|
|
555
|
-
const _DA = "DeleteActivity";
|
|
556
|
-
const _DAI = "DeleteActivityInput";
|
|
557
|
-
const _DAIe = "DescribeActivityInput";
|
|
558
|
-
const _DAO = "DeleteActivityOutput";
|
|
559
|
-
const _DAOe = "DescribeActivityOutput";
|
|
560
|
-
const _DAe = "DescribeActivity";
|
|
561
|
-
const _DE = "DescribeExecution";
|
|
562
|
-
const _DEI = "DescribeExecutionInput";
|
|
563
|
-
const _DEO = "DescribeExecutionOutput";
|
|
564
|
-
const _DMR = "DescribeMapRun";
|
|
565
|
-
const _DMRI = "DescribeMapRunInput";
|
|
566
|
-
const _DMRO = "DescribeMapRunOutput";
|
|
567
|
-
const _DSM = "DeleteStateMachine";
|
|
568
|
-
const _DSMA = "DeleteStateMachineAlias";
|
|
569
|
-
const _DSMAI = "DeleteStateMachineAliasInput";
|
|
570
|
-
const _DSMAIe = "DescribeStateMachineAliasInput";
|
|
571
|
-
const _DSMAO = "DeleteStateMachineAliasOutput";
|
|
572
|
-
const _DSMAOe = "DescribeStateMachineAliasOutput";
|
|
573
|
-
const _DSMAe = "DescribeStateMachineAlias";
|
|
574
|
-
const _DSMFE = "DescribeStateMachineForExecution";
|
|
575
|
-
const _DSMFEI = "DescribeStateMachineForExecutionInput";
|
|
576
|
-
const _DSMFEO = "DescribeStateMachineForExecutionOutput";
|
|
577
|
-
const _DSMI = "DeleteStateMachineInput";
|
|
578
|
-
const _DSMIe = "DescribeStateMachineInput";
|
|
579
|
-
const _DSMO = "DeleteStateMachineOutput";
|
|
580
|
-
const _DSMOe = "DescribeStateMachineOutput";
|
|
581
|
-
const _DSMV = "DeleteStateMachineVersion";
|
|
582
|
-
const _DSMVI = "DeleteStateMachineVersionInput";
|
|
583
|
-
const _DSMVO = "DeleteStateMachineVersionOutput";
|
|
584
|
-
const _DSMe = "DescribeStateMachine";
|
|
585
|
-
const _EAE = "ExecutionAlreadyExists";
|
|
586
|
-
const _EAED = "ExecutionAbortedEventDetails";
|
|
587
|
-
const _EC = "EncryptionConfiguration";
|
|
588
|
-
const _EDNE = "ExecutionDoesNotExist";
|
|
589
|
-
const _EFED = "EvaluationFailedEventDetails";
|
|
590
|
-
const _EFEDx = "ExecutionFailedEventDetails";
|
|
591
|
-
const _EFL = "EvaluationFailureLocation";
|
|
592
|
-
const _EHI = "ExceptionHandlerIndex";
|
|
593
|
-
const _EL = "ExecutionList";
|
|
594
|
-
const _ELE = "ExecutionLimitExceeded";
|
|
595
|
-
const _ELI = "ExecutionListItem";
|
|
596
|
-
const _ENR = "ExecutionNotRedrivable";
|
|
597
|
-
const _ERED = "ExecutionRedrivenEventDetails";
|
|
598
|
-
const _ESED = "ExecutionStartedEventDetails";
|
|
599
|
-
const _ESEDx = "ExecutionSucceededEventDetails";
|
|
600
|
-
const _ETOED = "ExecutionTimedOutEventDetails";
|
|
601
|
-
const _GAT = "GetActivityTask";
|
|
602
|
-
const _GATI = "GetActivityTaskInput";
|
|
603
|
-
const _GATO = "GetActivityTaskOutput";
|
|
604
|
-
const _GEH = "GetExecutionHistory";
|
|
605
|
-
const _GEHI = "GetExecutionHistoryInput";
|
|
606
|
-
const _GEHO = "GetExecutionHistoryOutput";
|
|
607
|
-
const _HE = "HistoryEvent";
|
|
608
|
-
const _HEEDD = "HistoryEventExecutionDataDetails";
|
|
609
|
-
const _HEL = "HistoryEventList";
|
|
610
|
-
const _IA = "InvalidArn";
|
|
611
|
-
const _ID = "InspectionData";
|
|
612
|
-
const _IDR = "InspectionDataRequest";
|
|
613
|
-
const _IDRn = "InspectionDataResponse";
|
|
614
|
-
const _IDn = "InvalidDefinition";
|
|
615
|
-
const _IEC = "InvalidEncryptionConfiguration";
|
|
616
|
-
const _IED = "InspectionErrorDetails";
|
|
617
|
-
const _IEI = "InvalidExecutionInput";
|
|
618
|
-
const _ILC = "InvalidLoggingConfiguration";
|
|
619
|
-
const _IMC = "InspectionMaxConcurrency";
|
|
620
|
-
const _IN = "InvalidName";
|
|
621
|
-
const _IO = "InvalidOutput";
|
|
622
|
-
const _IT = "InvalidToken";
|
|
623
|
-
const _ITC = "InvalidTracingConfiguration";
|
|
624
|
-
const _ITFC = "InspectionToleratedFailureCount";
|
|
625
|
-
const _ITFP = "InspectionToleratedFailurePercentage";
|
|
626
|
-
const _KADE = "KmsAccessDeniedException";
|
|
627
|
-
const _KISE = "KmsInvalidStateException";
|
|
628
|
-
const _KTE = "KmsThrottlingException";
|
|
629
|
-
const _LA = "ListActivities";
|
|
630
|
-
const _LAI = "ListActivitiesInput";
|
|
631
|
-
const _LAO = "ListActivitiesOutput";
|
|
632
|
-
const _LC = "LoggingConfiguration";
|
|
633
|
-
const _LD = "LogDestination";
|
|
634
|
-
const _LDL = "LogDestinationList";
|
|
635
|
-
const _LE = "ListExecutions";
|
|
636
|
-
const _LEI = "ListExecutionsInput";
|
|
637
|
-
const _LEO = "ListExecutionsOutput";
|
|
638
|
-
const _LFFED = "LambdaFunctionFailedEventDetails";
|
|
639
|
-
const _LFSED = "LambdaFunctionScheduledEventDetails";
|
|
640
|
-
const _LFSEDa = "LambdaFunctionSucceededEventDetails";
|
|
641
|
-
const _LFSFED = "LambdaFunctionScheduleFailedEventDetails";
|
|
642
|
-
const _LFSFEDa = "LambdaFunctionStartFailedEventDetails";
|
|
643
|
-
const _LFTOED = "LambdaFunctionTimedOutEventDetails";
|
|
644
|
-
const _LMR = "ListMapRuns";
|
|
645
|
-
const _LMRI = "ListMapRunsInput";
|
|
646
|
-
const _LMRO = "ListMapRunsOutput";
|
|
647
|
-
const _LSM = "ListStateMachines";
|
|
648
|
-
const _LSMA = "ListStateMachineAliases";
|
|
649
|
-
const _LSMAI = "ListStateMachineAliasesInput";
|
|
650
|
-
const _LSMAO = "ListStateMachineAliasesOutput";
|
|
651
|
-
const _LSMI = "ListStateMachinesInput";
|
|
652
|
-
const _LSMO = "ListStateMachinesOutput";
|
|
653
|
-
const _LSMV = "ListStateMachineVersions";
|
|
654
|
-
const _LSMVI = "ListStateMachineVersionsInput";
|
|
655
|
-
const _LSMVO = "ListStateMachineVersionsOutput";
|
|
656
|
-
const _LTFR = "ListTagsForResource";
|
|
657
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
658
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
659
|
-
const _MEO = "MockErrorOutput";
|
|
660
|
-
const _MI = "MockInput";
|
|
661
|
-
const _MIED = "MapIterationEventDetails";
|
|
662
|
-
const _MREC = "MapRunExecutionCounts";
|
|
663
|
-
const _MRFED = "MapRunFailedEventDetails";
|
|
664
|
-
const _MRIC = "MapRunItemCounts";
|
|
665
|
-
const _MRL = "MapRunList";
|
|
666
|
-
const _MRLI = "MapRunListItem";
|
|
667
|
-
const _MRP = "MissingRequiredParameter";
|
|
668
|
-
const _MRRED = "MapRunRedrivenEventDetails";
|
|
669
|
-
const _MRSED = "MapRunStartedEventDetails";
|
|
670
|
-
const _MSSED = "MapStateStartedEventDetails";
|
|
671
|
-
const _PSMV = "PublishStateMachineVersion";
|
|
672
|
-
const _PSMVI = "PublishStateMachineVersionInput";
|
|
673
|
-
const _PSMVO = "PublishStateMachineVersionOutput";
|
|
674
|
-
const _RBIS = "RetryBackoffIntervalSeconds";
|
|
675
|
-
const _RCL = "RoutingConfigurationList";
|
|
676
|
-
const _RCLI = "RoutingConfigurationListItem";
|
|
677
|
-
const _RE = "RedriveExecution";
|
|
678
|
-
const _REI = "RedriveExecutionInput";
|
|
679
|
-
const _REO = "RedriveExecutionOutput";
|
|
680
|
-
const _RNF = "ResourceNotFound";
|
|
681
|
-
const _SC = "SensitiveCause";
|
|
682
|
-
const _SD = "SensitiveData";
|
|
683
|
-
const _SDJI = "SensitiveDataJobInput";
|
|
684
|
-
const _SE = "SensitiveError";
|
|
685
|
-
const _SEED = "StateEnteredEventDetails";
|
|
686
|
-
const _SEEDt = "StateExitedEventDetails";
|
|
687
|
-
const _SEI = "StartExecutionInput";
|
|
688
|
-
const _SEIt = "StopExecutionInput";
|
|
689
|
-
const _SEO = "StartExecutionOutput";
|
|
690
|
-
const _SEOt = "StopExecutionOutput";
|
|
691
|
-
const _SEt = "StartExecution";
|
|
692
|
-
const _SEto = "StopExecution";
|
|
693
|
-
const _SMAE = "StateMachineAlreadyExists";
|
|
694
|
-
const _SMAL = "StateMachineAliasList";
|
|
695
|
-
const _SMALI = "StateMachineAliasListItem";
|
|
696
|
-
const _SMD = "StateMachineDeleting";
|
|
697
|
-
const _SMDNE = "StateMachineDoesNotExist";
|
|
698
|
-
const _SML = "StateMachineList";
|
|
699
|
-
const _SMLE = "StateMachineLimitExceeded";
|
|
700
|
-
const _SMLI = "StateMachineListItem";
|
|
701
|
-
const _SMTNS = "StateMachineTypeNotSupported";
|
|
702
|
-
const _SMVL = "StateMachineVersionList";
|
|
703
|
-
const _SMVLI = "StateMachineVersionListItem";
|
|
704
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
705
|
-
const _SSE = "StartSyncExecution";
|
|
706
|
-
const _SSEI = "StartSyncExecutionInput";
|
|
707
|
-
const _SSEO = "StartSyncExecutionOutput";
|
|
708
|
-
const _STF = "SendTaskFailure";
|
|
709
|
-
const _STFI = "SendTaskFailureInput";
|
|
710
|
-
const _STFO = "SendTaskFailureOutput";
|
|
711
|
-
const _STH = "SendTaskHeartbeat";
|
|
712
|
-
const _STHI = "SendTaskHeartbeatInput";
|
|
713
|
-
const _STHO = "SendTaskHeartbeatOutput";
|
|
714
|
-
const _STS = "SendTaskSuccess";
|
|
715
|
-
const _STSI = "SendTaskSuccessInput";
|
|
716
|
-
const _STSO = "SendTaskSuccessOutput";
|
|
717
|
-
const _T = "Tag";
|
|
718
|
-
const _TC = "TaskCredentials";
|
|
719
|
-
const _TCr = "TracingConfiguration";
|
|
720
|
-
const _TDNE = "TaskDoesNotExist";
|
|
721
|
-
const _TFED = "TaskFailedEventDetails";
|
|
722
|
-
const _TL = "TagList";
|
|
723
|
-
const _TMT = "TooManyTags";
|
|
724
|
-
const _TR = "TagResource";
|
|
725
|
-
const _TRI = "TagResourceInput";
|
|
726
|
-
const _TRO = "TagResourceOutput";
|
|
727
|
-
const _TS = "TestState";
|
|
728
|
-
const _TSC = "TestStateConfiguration";
|
|
729
|
-
const _TSED = "TaskScheduledEventDetails";
|
|
730
|
-
const _TSEDa = "TaskStartedEventDetails";
|
|
731
|
-
const _TSEDas = "TaskSubmittedEventDetails";
|
|
732
|
-
const _TSEDask = "TaskSucceededEventDetails";
|
|
733
|
-
const _TSFED = "TaskStartFailedEventDetails";
|
|
734
|
-
const _TSFEDa = "TaskSubmitFailedEventDetails";
|
|
735
|
-
const _TSI = "TestStateInput";
|
|
736
|
-
const _TSO = "TestStateOutput";
|
|
737
|
-
const _TSSN = "TestStateStateName";
|
|
738
|
-
const _TTO = "TaskTimedOut";
|
|
739
|
-
const _TTOED = "TaskTimedOutEventDetails";
|
|
740
|
-
const _UMR = "UpdateMapRun";
|
|
741
|
-
const _UMRI = "UpdateMapRunInput";
|
|
742
|
-
const _UMRO = "UpdateMapRunOutput";
|
|
743
|
-
const _UR = "UntagResource";
|
|
744
|
-
const _URI = "UntagResourceInput";
|
|
745
|
-
const _URO = "UntagResourceOutput";
|
|
746
|
-
const _USM = "UpdateStateMachine";
|
|
747
|
-
const _USMA = "UpdateStateMachineAlias";
|
|
748
|
-
const _USMAI = "UpdateStateMachineAliasInput";
|
|
749
|
-
const _USMAO = "UpdateStateMachineAliasOutput";
|
|
750
|
-
const _USMI = "UpdateStateMachineInput";
|
|
751
|
-
const _USMO = "UpdateStateMachineOutput";
|
|
752
|
-
const _VD = "VersionDescription";
|
|
753
|
-
const _VE = "ValidationException";
|
|
754
|
-
const _VN = "VariableName";
|
|
755
|
-
const _VNL = "VariableNameList";
|
|
756
|
-
const _VR = "VariableReferences";
|
|
757
|
-
const _VSMD = "ValidateStateMachineDefinition";
|
|
758
|
-
const _VSMDC = "ValidateStateMachineDefinitionCode";
|
|
759
|
-
const _VSMDD = "ValidateStateMachineDefinitionDiagnostic";
|
|
760
|
-
const _VSMDDL = "ValidateStateMachineDefinitionDiagnosticList";
|
|
761
|
-
const _VSMDI = "ValidateStateMachineDefinitionInput";
|
|
762
|
-
const _VSMDL = "ValidateStateMachineDefinitionLocation";
|
|
763
|
-
const _VSMDM = "ValidateStateMachineDefinitionMessage";
|
|
764
|
-
const _VSMDO = "ValidateStateMachineDefinitionOutput";
|
|
765
|
-
const _VV = "VariableValue";
|
|
766
|
-
const _a = "activities";
|
|
767
|
-
const _aA = "activityArn";
|
|
768
|
-
const _aAf = "afterArguments";
|
|
769
|
-
const _aFED = "activityFailedEventDetails";
|
|
770
|
-
const _aIB = "afterItemBatcher";
|
|
771
|
-
const _aIP = "afterInputPath";
|
|
772
|
-
const _aIPf = "afterItemsPath";
|
|
773
|
-
const _aIPft = "afterItemsPointer";
|
|
774
|
-
const _aIS = "afterItemSelector";
|
|
775
|
-
const _aP = "afterParameters";
|
|
776
|
-
const _aRP = "afterResultPath";
|
|
777
|
-
const _aRS = "afterResultSelector";
|
|
778
|
-
const _aSED = "activityScheduledEventDetails";
|
|
779
|
-
const _aSEDc = "activityStartedEventDetails";
|
|
780
|
-
const _aSEDct = "activitySucceededEventDetails";
|
|
781
|
-
const _aSFED = "activityScheduleFailedEventDetails";
|
|
782
|
-
const _aTOED = "activityTimedOutEventDetails";
|
|
783
|
-
const _aV = "assignedVariables";
|
|
784
|
-
const _aVD = "assignedVariablesDetails";
|
|
785
|
-
const _ab = "aborted";
|
|
786
|
-
const _b = "body";
|
|
787
|
-
const _bD = "billingDetails";
|
|
788
|
-
const _bDIM = "billedDurationInMilliseconds";
|
|
789
|
-
const _bMUIMB = "billedMemoryUsedInMB";
|
|
790
|
-
const _c = "client";
|
|
791
|
-
const _cD = "creationDate";
|
|
792
|
-
const _cI = "catchIndex";
|
|
793
|
-
const _cT = "clientToken";
|
|
794
|
-
const _cWLLG = "cloudWatchLogsLogGroup";
|
|
795
|
-
const _ca = "cause";
|
|
796
|
-
const _co = "context";
|
|
797
|
-
const _cod = "code";
|
|
798
|
-
const _d = "description";
|
|
799
|
-
const _de = "definition";
|
|
800
|
-
const _des = "destinations";
|
|
801
|
-
const _di = "diagnostics";
|
|
802
|
-
const _e = "error";
|
|
803
|
-
const _eA = "executionArn";
|
|
804
|
-
const _eAED = "executionAbortedEventDetails";
|
|
805
|
-
const _eC = "encryptionConfiguration";
|
|
806
|
-
const _eCBS = "errorCausedByState";
|
|
807
|
-
const _eCx = "executionCounts";
|
|
808
|
-
const _eD = "errorDetails";
|
|
809
|
-
const _eFED = "executionFailedEventDetails";
|
|
810
|
-
const _eFEDv = "evaluationFailedEventDetails";
|
|
811
|
-
const _eO = "errorOutput";
|
|
812
|
-
const _eRED = "executionRedrivenEventDetails";
|
|
813
|
-
const _eSED = "executionStartedEventDetails";
|
|
814
|
-
const _eSEDx = "executionSucceededEventDetails";
|
|
815
|
-
const _eTOED = "executionTimedOutEventDetails";
|
|
816
|
-
const _en = "enabled";
|
|
817
|
-
const _end = "endpoint";
|
|
818
|
-
const _ev = "events";
|
|
819
|
-
const _ex = "executions";
|
|
820
|
-
const _f = "failed";
|
|
821
|
-
const _fNR = "failuresNotRedrivable";
|
|
822
|
-
const _fVM = "fieldValidationMode";
|
|
823
|
-
const _h = "headers";
|
|
824
|
-
const _hE = "httpError";
|
|
825
|
-
const _hIS = "heartbeatInSeconds";
|
|
826
|
-
const _i = "input";
|
|
827
|
-
const _iC = "itemCounts";
|
|
828
|
-
const _iCt = "itemCount";
|
|
829
|
-
const _iD = "inputDetails";
|
|
830
|
-
const _iDn = "includedData";
|
|
831
|
-
const _iDns = "inspectionData";
|
|
832
|
-
const _iED = "includeExecutionData";
|
|
833
|
-
const _iL = "inspectionLevel";
|
|
834
|
-
const _id = "id";
|
|
835
|
-
const _in = "included";
|
|
836
|
-
const _ind = "index";
|
|
837
|
-
const _k = "key";
|
|
838
|
-
const _kDKRPS = "kmsDataKeyReusePeriodSeconds";
|
|
839
|
-
const _kKI = "kmsKeyId";
|
|
840
|
-
const _kKS = "kmsKeyState";
|
|
841
|
-
const _l = "label";
|
|
842
|
-
const _lC = "loggingConfiguration";
|
|
843
|
-
const _lFFED = "lambdaFunctionFailedEventDetails";
|
|
844
|
-
const _lFSED = "lambdaFunctionScheduledEventDetails";
|
|
845
|
-
const _lFSEDa = "lambdaFunctionSucceededEventDetails";
|
|
846
|
-
const _lFSFED = "lambdaFunctionScheduleFailedEventDetails";
|
|
847
|
-
const _lFSFEDa = "lambdaFunctionStartFailedEventDetails";
|
|
848
|
-
const _lFTOED = "lambdaFunctionTimedOutEventDetails";
|
|
849
|
-
const _lGA = "logGroupArn";
|
|
850
|
-
const _le = "level";
|
|
851
|
-
const _len = "length";
|
|
852
|
-
const _lo = "location";
|
|
853
|
-
const _m = "message";
|
|
854
|
-
const _mC = "maxConcurrency";
|
|
855
|
-
const _mIAED = "mapIterationAbortedEventDetails";
|
|
856
|
-
const _mIFC = "mapIterationFailureCount";
|
|
857
|
-
const _mIFED = "mapIterationFailedEventDetails";
|
|
858
|
-
const _mIRD = "mapItemReaderData";
|
|
859
|
-
const _mISED = "mapIterationStartedEventDetails";
|
|
860
|
-
const _mISEDa = "mapIterationSucceededEventDetails";
|
|
861
|
-
const _mR = "maxResults";
|
|
862
|
-
const _mRA = "mapRunArn";
|
|
863
|
-
const _mRFED = "mapRunFailedEventDetails";
|
|
864
|
-
const _mRRED = "mapRunRedrivenEventDetails";
|
|
865
|
-
const _mRSED = "mapRunStartedEventDetails";
|
|
866
|
-
const _mRa = "mapRuns";
|
|
867
|
-
const _mSSED = "mapStateStartedEventDetails";
|
|
868
|
-
const _me = "method";
|
|
869
|
-
const _mo = "mock";
|
|
870
|
-
const _n = "name";
|
|
871
|
-
const _nS = "nextState";
|
|
872
|
-
const _nT = "nextToken";
|
|
873
|
-
const _o = "output";
|
|
874
|
-
const _oD = "outputDetails";
|
|
875
|
-
const _p = "publish";
|
|
876
|
-
const _pEI = "previousEventId";
|
|
877
|
-
const _pR = "pendingRedrive";
|
|
878
|
-
const _pa = "parameters";
|
|
879
|
-
const _pe = "pending";
|
|
880
|
-
const _pr = "protocol";
|
|
881
|
-
const _r = "resource";
|
|
882
|
-
const _rA = "roleArn";
|
|
883
|
-
const _rAe = "resourceArn";
|
|
884
|
-
const _rBIS = "retryBackoffIntervalSeconds";
|
|
885
|
-
const _rC = "routingConfiguration";
|
|
886
|
-
const _rCe = "redriveCount";
|
|
887
|
-
const _rD = "redriveDate";
|
|
888
|
-
const _rF = "redriveFilter";
|
|
889
|
-
const _rI = "revisionId";
|
|
890
|
-
const _rIe = "retryIndex";
|
|
891
|
-
const _rN = "resourceName";
|
|
892
|
-
const _rO = "reverseOrder";
|
|
893
|
-
const _rRC = "retrierRetryCount";
|
|
894
|
-
const _rS = "redriveStatus";
|
|
895
|
-
const _rSR = "redriveStatusReason";
|
|
896
|
-
const _rSe = "revealSecrets";
|
|
897
|
-
const _rT = "resourceType";
|
|
898
|
-
const _rW = "resultsWritten";
|
|
899
|
-
const _re = "result";
|
|
900
|
-
const _rea = "reason";
|
|
901
|
-
const _reg = "region";
|
|
902
|
-
const _req = "request";
|
|
903
|
-
const _res = "response";
|
|
904
|
-
const _ru = "running";
|
|
905
|
-
const _s = "status";
|
|
906
|
-
const _sC = "statusCode";
|
|
907
|
-
const _sCt = "stateConfiguration";
|
|
908
|
-
const _sD = "startDate";
|
|
909
|
-
const _sDt = "stopDate";
|
|
910
|
-
const _sEED = "stateEnteredEventDetails";
|
|
911
|
-
const _sEEDt = "stateExitedEventDetails";
|
|
912
|
-
const _sF = "statusFilter";
|
|
913
|
-
const _sM = "statusMessage";
|
|
914
|
-
const _sMA = "stateMachineArn";
|
|
915
|
-
const _sMAA = "stateMachineAliasArn";
|
|
916
|
-
const _sMAt = "stateMachineAliases";
|
|
917
|
-
const _sMV = "stateMachineVersions";
|
|
918
|
-
const _sMVA = "stateMachineVersionArn";
|
|
919
|
-
const _sMt = "stateMachines";
|
|
920
|
-
const _sN = "stateName";
|
|
921
|
-
const _se = "severity";
|
|
922
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.sfn";
|
|
923
|
-
const _st = "state";
|
|
924
|
-
const _su = "succeeded";
|
|
925
|
-
const _t = "truncated";
|
|
926
|
-
const _tC = "tracingConfiguration";
|
|
927
|
-
const _tCa = "taskCredentials";
|
|
928
|
-
const _tFC = "toleratedFailureCount";
|
|
929
|
-
const _tFED = "taskFailedEventDetails";
|
|
930
|
-
const _tFP = "toleratedFailurePercentage";
|
|
931
|
-
const _tH = "traceHeader";
|
|
932
|
-
const _tIS = "timeoutInSeconds";
|
|
933
|
-
const _tK = "tagKeys";
|
|
934
|
-
const _tO = "timedOut";
|
|
935
|
-
const _tSED = "taskScheduledEventDetails";
|
|
936
|
-
const _tSEDa = "taskStartedEventDetails";
|
|
937
|
-
const _tSEDas = "taskSubmittedEventDetails";
|
|
938
|
-
const _tSEDask = "taskSucceededEventDetails";
|
|
939
|
-
const _tSFED = "taskStartFailedEventDetails";
|
|
940
|
-
const _tSFEDa = "taskSubmitFailedEventDetails";
|
|
941
|
-
const _tT = "taskToken";
|
|
942
|
-
const _tTOED = "taskTimedOutEventDetails";
|
|
943
|
-
const _ta = "tags";
|
|
944
|
-
const _ti = "timestamp";
|
|
945
|
-
const _to = "total";
|
|
946
|
-
const _ty = "type";
|
|
947
|
-
const _u = "url";
|
|
948
|
-
const _uD = "updateDate";
|
|
949
|
-
const _v = "variables";
|
|
950
|
-
const _vD = "versionDescription";
|
|
951
|
-
const _vR = "variableReferences";
|
|
952
|
-
const _va = "value";
|
|
953
|
-
const _w = "weight";
|
|
954
|
-
const _wN = "workerName";
|
|
955
|
-
const n0 = "com.amazonaws.sfn";
|
|
956
|
-
var AliasDescription = [0, n0, _AD, 8, 0];
|
|
957
|
-
var ConnectorParameters = [0, n0, _CP, 8, 0];
|
|
958
|
-
var Definition = [0, n0, _D, 8, 0];
|
|
959
|
-
var EvaluationFailureLocation = [0, n0, _EFL, 8, 0];
|
|
960
|
-
var ExceptionHandlerIndex = [0, n0, _EHI, 8, 1];
|
|
961
|
-
var InspectionMaxConcurrency = [0, n0, _IMC, 8, 1];
|
|
962
|
-
var InspectionToleratedFailureCount = [0, n0, _ITFC, 8, 1];
|
|
963
|
-
var InspectionToleratedFailurePercentage = [0, n0, _ITFP, 8, 1];
|
|
964
|
-
var RetryBackoffIntervalSeconds = [0, n0, _RBIS, 8, 1];
|
|
965
|
-
var SensitiveCause = [0, n0, _SC, 8, 0];
|
|
966
|
-
var SensitiveData = [0, n0, _SD, 8, 0];
|
|
967
|
-
var SensitiveDataJobInput = [0, n0, _SDJI, 8, 0];
|
|
968
|
-
var SensitiveError = [0, n0, _SE, 8, 0];
|
|
969
|
-
var TestStateStateName = [0, n0, _TSSN, 8, 0];
|
|
970
|
-
var ValidateStateMachineDefinitionCode = [0, n0, _VSMDC, 8, 0];
|
|
971
|
-
var ValidateStateMachineDefinitionLocation = [0, n0, _VSMDL, 8, 0];
|
|
972
|
-
var ValidateStateMachineDefinitionMessage = [0, n0, _VSMDM, 8, 0];
|
|
973
|
-
var VariableName = [0, n0, _VN, 8, 0];
|
|
974
|
-
var VariableValue = [0, n0, _VV, 8, 0];
|
|
975
|
-
var VersionDescription = [0, n0, _VD, 8, 0];
|
|
976
|
-
var ActivityAlreadyExists$ = [-3, n0, _AAE,
|
|
977
|
-
{ [_e]: _c },
|
|
978
|
-
[_m],
|
|
979
|
-
[0]
|
|
980
|
-
];
|
|
981
|
-
schema.TypeRegistry.for(n0).registerError(ActivityAlreadyExists$, ActivityAlreadyExists);
|
|
982
|
-
var ActivityDoesNotExist$ = [-3, n0, _ADNE,
|
|
983
|
-
{ [_e]: _c },
|
|
984
|
-
[_m],
|
|
985
|
-
[0]
|
|
986
|
-
];
|
|
987
|
-
schema.TypeRegistry.for(n0).registerError(ActivityDoesNotExist$, ActivityDoesNotExist);
|
|
988
|
-
var ActivityFailedEventDetails$ = [3, n0, _AFED,
|
|
989
|
-
0,
|
|
990
|
-
[_e, _ca],
|
|
991
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
992
|
-
];
|
|
993
|
-
var ActivityLimitExceeded$ = [-3, n0, _ALE,
|
|
994
|
-
{ [_e]: _c },
|
|
995
|
-
[_m],
|
|
996
|
-
[0]
|
|
997
|
-
];
|
|
998
|
-
schema.TypeRegistry.for(n0).registerError(ActivityLimitExceeded$, ActivityLimitExceeded);
|
|
999
|
-
var ActivityListItem$ = [3, n0, _ALI,
|
|
1000
|
-
0,
|
|
1001
|
-
[_aA, _n, _cD],
|
|
1002
|
-
[0, 0, 4], 3
|
|
1003
|
-
];
|
|
1004
|
-
var ActivityScheduledEventDetails$ = [3, n0, _ASED,
|
|
1005
|
-
0,
|
|
1006
|
-
[_r, _i, _iD, _tIS, _hIS],
|
|
1007
|
-
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 1, 1], 1
|
|
1008
|
-
];
|
|
1009
|
-
var ActivityScheduleFailedEventDetails$ = [3, n0, _ASFED,
|
|
1010
|
-
0,
|
|
1011
|
-
[_e, _ca],
|
|
1012
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1013
|
-
];
|
|
1014
|
-
var ActivityStartedEventDetails$ = [3, n0, _ASEDc,
|
|
1015
|
-
0,
|
|
1016
|
-
[_wN],
|
|
1017
|
-
[0]
|
|
1018
|
-
];
|
|
1019
|
-
var ActivitySucceededEventDetails$ = [3, n0, _ASEDct,
|
|
1020
|
-
0,
|
|
1021
|
-
[_o, _oD],
|
|
1022
|
-
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$]
|
|
1023
|
-
];
|
|
1024
|
-
var ActivityTimedOutEventDetails$ = [3, n0, _ATOED,
|
|
1025
|
-
0,
|
|
1026
|
-
[_e, _ca],
|
|
1027
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1028
|
-
];
|
|
1029
|
-
var ActivityWorkerLimitExceeded$ = [-3, n0, _AWLE,
|
|
1030
|
-
{ [_e]: _c },
|
|
1031
|
-
[_m],
|
|
1032
|
-
[0]
|
|
1033
|
-
];
|
|
1034
|
-
schema.TypeRegistry.for(n0).registerError(ActivityWorkerLimitExceeded$, ActivityWorkerLimitExceeded);
|
|
1035
|
-
var AssignedVariablesDetails$ = [3, n0, _AVD,
|
|
1036
|
-
0,
|
|
1037
|
-
[_t],
|
|
1038
|
-
[2]
|
|
1039
|
-
];
|
|
1040
|
-
var BillingDetails$ = [3, n0, _BD,
|
|
1041
|
-
0,
|
|
1042
|
-
[_bMUIMB, _bDIM],
|
|
1043
|
-
[1, 1]
|
|
1044
|
-
];
|
|
1045
|
-
var CloudWatchEventsExecutionDataDetails$ = [3, n0, _CWEEDD,
|
|
1046
|
-
0,
|
|
1047
|
-
[_in],
|
|
1048
|
-
[2]
|
|
1049
|
-
];
|
|
1050
|
-
var CloudWatchLogsLogGroup$ = [3, n0, _CWLLG,
|
|
1051
|
-
0,
|
|
1052
|
-
[_lGA],
|
|
1053
|
-
[0]
|
|
1054
|
-
];
|
|
1055
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
1056
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1057
|
-
[_m],
|
|
1058
|
-
[0]
|
|
1059
|
-
];
|
|
1060
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1061
|
-
var CreateActivityInput$ = [3, n0, _CAI,
|
|
1062
|
-
0,
|
|
1063
|
-
[_n, _ta, _eC],
|
|
1064
|
-
[0, () => TagList, () => EncryptionConfiguration$], 1
|
|
1065
|
-
];
|
|
1066
|
-
var CreateActivityOutput$ = [3, n0, _CAO,
|
|
1067
|
-
0,
|
|
1068
|
-
[_aA, _cD],
|
|
1069
|
-
[0, 4], 2
|
|
1070
|
-
];
|
|
1071
|
-
var CreateStateMachineAliasInput$ = [3, n0, _CSMAI,
|
|
1072
|
-
0,
|
|
1073
|
-
[_n, _rC, _d],
|
|
1074
|
-
[0, () => RoutingConfigurationList, [() => AliasDescription, 0]], 2
|
|
1075
|
-
];
|
|
1076
|
-
var CreateStateMachineAliasOutput$ = [3, n0, _CSMAO,
|
|
1077
|
-
0,
|
|
1078
|
-
[_sMAA, _cD],
|
|
1079
|
-
[0, 4], 2
|
|
1080
|
-
];
|
|
1081
|
-
var CreateStateMachineInput$ = [3, n0, _CSMI,
|
|
1082
|
-
0,
|
|
1083
|
-
[_n, _de, _rA, _ty, _lC, _ta, _tC, _p, _vD, _eC],
|
|
1084
|
-
[0, [() => Definition, 0], 0, 0, () => LoggingConfiguration$, () => TagList, () => TracingConfiguration$, 2, [() => VersionDescription, 0], () => EncryptionConfiguration$], 3
|
|
1085
|
-
];
|
|
1086
|
-
var CreateStateMachineOutput$ = [3, n0, _CSMO,
|
|
1087
|
-
0,
|
|
1088
|
-
[_sMA, _cD, _sMVA],
|
|
1089
|
-
[0, 4, 0], 2
|
|
1090
|
-
];
|
|
1091
|
-
var DeleteActivityInput$ = [3, n0, _DAI,
|
|
1092
|
-
0,
|
|
1093
|
-
[_aA],
|
|
1094
|
-
[0], 1
|
|
1095
|
-
];
|
|
1096
|
-
var DeleteActivityOutput$ = [3, n0, _DAO,
|
|
1097
|
-
0,
|
|
1098
|
-
[],
|
|
1099
|
-
[]
|
|
1100
|
-
];
|
|
1101
|
-
var DeleteStateMachineAliasInput$ = [3, n0, _DSMAI,
|
|
1102
|
-
0,
|
|
1103
|
-
[_sMAA],
|
|
1104
|
-
[0], 1
|
|
1105
|
-
];
|
|
1106
|
-
var DeleteStateMachineAliasOutput$ = [3, n0, _DSMAO,
|
|
1107
|
-
0,
|
|
1108
|
-
[],
|
|
1109
|
-
[]
|
|
1110
|
-
];
|
|
1111
|
-
var DeleteStateMachineInput$ = [3, n0, _DSMI,
|
|
1112
|
-
0,
|
|
1113
|
-
[_sMA],
|
|
1114
|
-
[0], 1
|
|
1115
|
-
];
|
|
1116
|
-
var DeleteStateMachineOutput$ = [3, n0, _DSMO,
|
|
1117
|
-
0,
|
|
1118
|
-
[],
|
|
1119
|
-
[]
|
|
1120
|
-
];
|
|
1121
|
-
var DeleteStateMachineVersionInput$ = [3, n0, _DSMVI,
|
|
1122
|
-
0,
|
|
1123
|
-
[_sMVA],
|
|
1124
|
-
[0], 1
|
|
1125
|
-
];
|
|
1126
|
-
var DeleteStateMachineVersionOutput$ = [3, n0, _DSMVO,
|
|
1127
|
-
0,
|
|
1128
|
-
[],
|
|
1129
|
-
[]
|
|
1130
|
-
];
|
|
1131
|
-
var DescribeActivityInput$ = [3, n0, _DAIe,
|
|
1132
|
-
0,
|
|
1133
|
-
[_aA],
|
|
1134
|
-
[0], 1
|
|
1135
|
-
];
|
|
1136
|
-
var DescribeActivityOutput$ = [3, n0, _DAOe,
|
|
1137
|
-
0,
|
|
1138
|
-
[_aA, _n, _cD, _eC],
|
|
1139
|
-
[0, 0, 4, () => EncryptionConfiguration$], 3
|
|
1140
|
-
];
|
|
1141
|
-
var DescribeExecutionInput$ = [3, n0, _DEI,
|
|
1142
|
-
0,
|
|
1143
|
-
[_eA, _iDn],
|
|
1144
|
-
[0, 0], 1
|
|
1145
|
-
];
|
|
1146
|
-
var DescribeExecutionOutput$ = [3, n0, _DEO,
|
|
1147
|
-
0,
|
|
1148
|
-
[_eA, _sMA, _s, _sD, _n, _sDt, _i, _iD, _o, _oD, _tH, _mRA, _e, _ca, _sMVA, _sMAA, _rCe, _rD, _rS, _rSR],
|
|
1149
|
-
[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
|
|
1150
|
-
];
|
|
1151
|
-
var DescribeMapRunInput$ = [3, n0, _DMRI,
|
|
1152
|
-
0,
|
|
1153
|
-
[_mRA],
|
|
1154
|
-
[0], 1
|
|
1155
|
-
];
|
|
1156
|
-
var DescribeMapRunOutput$ = [3, n0, _DMRO,
|
|
1157
|
-
0,
|
|
1158
|
-
[_mRA, _eA, _s, _sD, _mC, _tFP, _tFC, _iC, _eCx, _sDt, _rCe, _rD],
|
|
1159
|
-
[0, 0, 0, 4, 1, 1, 1, () => MapRunItemCounts$, () => MapRunExecutionCounts$, 4, 1, 4], 9
|
|
1160
|
-
];
|
|
1161
|
-
var DescribeStateMachineAliasInput$ = [3, n0, _DSMAIe,
|
|
1162
|
-
0,
|
|
1163
|
-
[_sMAA],
|
|
1164
|
-
[0], 1
|
|
1165
|
-
];
|
|
1166
|
-
var DescribeStateMachineAliasOutput$ = [3, n0, _DSMAOe,
|
|
1167
|
-
0,
|
|
1168
|
-
[_sMAA, _n, _d, _rC, _cD, _uD],
|
|
1169
|
-
[0, 0, [() => AliasDescription, 0], () => RoutingConfigurationList, 4, 4]
|
|
1170
|
-
];
|
|
1171
|
-
var DescribeStateMachineForExecutionInput$ = [3, n0, _DSMFEI,
|
|
1172
|
-
0,
|
|
1173
|
-
[_eA, _iDn],
|
|
1174
|
-
[0, 0], 1
|
|
1175
|
-
];
|
|
1176
|
-
var DescribeStateMachineForExecutionOutput$ = [3, n0, _DSMFEO,
|
|
1177
|
-
0,
|
|
1178
|
-
[_sMA, _n, _de, _rA, _uD, _lC, _tC, _mRA, _l, _rI, _eC, _vR],
|
|
1179
|
-
[0, 0, [() => Definition, 0], 0, 4, () => LoggingConfiguration$, () => TracingConfiguration$, 0, 0, 0, () => EncryptionConfiguration$, [() => VariableReferences, 0]], 5
|
|
1180
|
-
];
|
|
1181
|
-
var DescribeStateMachineInput$ = [3, n0, _DSMIe,
|
|
1182
|
-
0,
|
|
1183
|
-
[_sMA, _iDn],
|
|
1184
|
-
[0, 0], 1
|
|
1185
|
-
];
|
|
1186
|
-
var DescribeStateMachineOutput$ = [3, n0, _DSMOe,
|
|
1187
|
-
0,
|
|
1188
|
-
[_sMA, _n, _de, _rA, _ty, _cD, _s, _lC, _tC, _l, _rI, _d, _eC, _vR],
|
|
1189
|
-
[0, 0, [() => Definition, 0], 0, 0, 4, 0, () => LoggingConfiguration$, () => TracingConfiguration$, 0, 0, [() => VersionDescription, 0], () => EncryptionConfiguration$, [() => VariableReferences, 0]], 6
|
|
1190
|
-
];
|
|
1191
|
-
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
1192
|
-
0,
|
|
1193
|
-
[_ty, _kKI, _kDKRPS],
|
|
1194
|
-
[0, 0, 1], 1
|
|
1195
|
-
];
|
|
1196
|
-
var EvaluationFailedEventDetails$ = [3, n0, _EFED,
|
|
1197
|
-
0,
|
|
1198
|
-
[_st, _e, _ca, _lo],
|
|
1199
|
-
[0, [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => EvaluationFailureLocation, 0]], 1
|
|
1200
|
-
];
|
|
1201
|
-
var ExecutionAbortedEventDetails$ = [3, n0, _EAED,
|
|
1202
|
-
0,
|
|
1203
|
-
[_e, _ca],
|
|
1204
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1205
|
-
];
|
|
1206
|
-
var ExecutionAlreadyExists$ = [-3, n0, _EAE,
|
|
1207
|
-
{ [_e]: _c },
|
|
1208
|
-
[_m],
|
|
1209
|
-
[0]
|
|
1210
|
-
];
|
|
1211
|
-
schema.TypeRegistry.for(n0).registerError(ExecutionAlreadyExists$, ExecutionAlreadyExists);
|
|
1212
|
-
var ExecutionDoesNotExist$ = [-3, n0, _EDNE,
|
|
1213
|
-
{ [_e]: _c },
|
|
1214
|
-
[_m],
|
|
1215
|
-
[0]
|
|
1216
|
-
];
|
|
1217
|
-
schema.TypeRegistry.for(n0).registerError(ExecutionDoesNotExist$, ExecutionDoesNotExist);
|
|
1218
|
-
var ExecutionFailedEventDetails$ = [3, n0, _EFEDx,
|
|
1219
|
-
0,
|
|
1220
|
-
[_e, _ca],
|
|
1221
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1222
|
-
];
|
|
1223
|
-
var ExecutionLimitExceeded$ = [-3, n0, _ELE,
|
|
1224
|
-
{ [_e]: _c },
|
|
1225
|
-
[_m],
|
|
1226
|
-
[0]
|
|
1227
|
-
];
|
|
1228
|
-
schema.TypeRegistry.for(n0).registerError(ExecutionLimitExceeded$, ExecutionLimitExceeded);
|
|
1229
|
-
var ExecutionListItem$ = [3, n0, _ELI,
|
|
1230
|
-
0,
|
|
1231
|
-
[_eA, _sMA, _n, _s, _sD, _sDt, _mRA, _iCt, _sMVA, _sMAA, _rCe, _rD],
|
|
1232
|
-
[0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 1, 4], 5
|
|
1233
|
-
];
|
|
1234
|
-
var ExecutionNotRedrivable$ = [-3, n0, _ENR,
|
|
1235
|
-
{ [_e]: _c },
|
|
1236
|
-
[_m],
|
|
1237
|
-
[0]
|
|
1238
|
-
];
|
|
1239
|
-
schema.TypeRegistry.for(n0).registerError(ExecutionNotRedrivable$, ExecutionNotRedrivable);
|
|
1240
|
-
var ExecutionRedrivenEventDetails$ = [3, n0, _ERED,
|
|
1241
|
-
0,
|
|
1242
|
-
[_rCe],
|
|
1243
|
-
[1]
|
|
1244
|
-
];
|
|
1245
|
-
var ExecutionStartedEventDetails$ = [3, n0, _ESED,
|
|
1246
|
-
0,
|
|
1247
|
-
[_i, _iD, _rA, _sMAA, _sMVA],
|
|
1248
|
-
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 0, 0, 0]
|
|
1249
|
-
];
|
|
1250
|
-
var ExecutionSucceededEventDetails$ = [3, n0, _ESEDx,
|
|
1251
|
-
0,
|
|
1252
|
-
[_o, _oD],
|
|
1253
|
-
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$]
|
|
1254
|
-
];
|
|
1255
|
-
var ExecutionTimedOutEventDetails$ = [3, n0, _ETOED,
|
|
1256
|
-
0,
|
|
1257
|
-
[_e, _ca],
|
|
1258
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1259
|
-
];
|
|
1260
|
-
var GetActivityTaskInput$ = [3, n0, _GATI,
|
|
1261
|
-
0,
|
|
1262
|
-
[_aA, _wN],
|
|
1263
|
-
[0, 0], 1
|
|
1264
|
-
];
|
|
1265
|
-
var GetActivityTaskOutput$ = [3, n0, _GATO,
|
|
1266
|
-
0,
|
|
1267
|
-
[_tT, _i],
|
|
1268
|
-
[0, [() => SensitiveDataJobInput, 0]]
|
|
1269
|
-
];
|
|
1270
|
-
var GetExecutionHistoryInput$ = [3, n0, _GEHI,
|
|
1271
|
-
0,
|
|
1272
|
-
[_eA, _mR, _rO, _nT, _iED],
|
|
1273
|
-
[0, 1, 2, 0, 2], 1
|
|
1274
|
-
];
|
|
1275
|
-
var GetExecutionHistoryOutput$ = [3, n0, _GEHO,
|
|
1276
|
-
0,
|
|
1277
|
-
[_ev, _nT],
|
|
1278
|
-
[[() => HistoryEventList, 0], 0], 1
|
|
1279
|
-
];
|
|
1280
|
-
var HistoryEvent$ = [3, n0, _HE,
|
|
1281
|
-
0,
|
|
1282
|
-
[_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],
|
|
1283
|
-
[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
|
|
1284
|
-
];
|
|
1285
|
-
var HistoryEventExecutionDataDetails$ = [3, n0, _HEEDD,
|
|
1286
|
-
0,
|
|
1287
|
-
[_t],
|
|
1288
|
-
[2]
|
|
1289
|
-
];
|
|
1290
|
-
var InspectionData$ = [3, n0, _ID,
|
|
1291
|
-
8,
|
|
1292
|
-
[_i, _aAf, _aIP, _aP, _re, _aRS, _aRP, _req, _res, _v, _eD, _aIPf, _aIS, _aIB, _aIPft, _tFC, _tFP, _mC],
|
|
1293
|
-
[[() => 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]]
|
|
1294
|
-
];
|
|
1295
|
-
var InspectionDataRequest$ = [3, n0, _IDR,
|
|
1296
|
-
0,
|
|
1297
|
-
[_pr, _me, _u, _h, _b],
|
|
1298
|
-
[0, 0, 0, 0, 0]
|
|
1299
|
-
];
|
|
1300
|
-
var InspectionDataResponse$ = [3, n0, _IDRn,
|
|
1301
|
-
0,
|
|
1302
|
-
[_pr, _sC, _sM, _h, _b],
|
|
1303
|
-
[0, 0, 0, 0, 0]
|
|
1304
|
-
];
|
|
1305
|
-
var InspectionErrorDetails$ = [3, n0, _IED,
|
|
1306
|
-
0,
|
|
1307
|
-
[_cI, _rIe, _rBIS],
|
|
1308
|
-
[[() => ExceptionHandlerIndex, 0], [() => ExceptionHandlerIndex, 0], [() => RetryBackoffIntervalSeconds, 0]]
|
|
1309
|
-
];
|
|
1310
|
-
var InvalidArn$ = [-3, n0, _IA,
|
|
1311
|
-
{ [_e]: _c },
|
|
1312
|
-
[_m],
|
|
1313
|
-
[0]
|
|
1314
|
-
];
|
|
1315
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArn$, InvalidArn);
|
|
1316
|
-
var InvalidDefinition$ = [-3, n0, _IDn,
|
|
1317
|
-
{ [_e]: _c },
|
|
1318
|
-
[_m],
|
|
1319
|
-
[0]
|
|
1320
|
-
];
|
|
1321
|
-
schema.TypeRegistry.for(n0).registerError(InvalidDefinition$, InvalidDefinition);
|
|
1322
|
-
var InvalidEncryptionConfiguration$ = [-3, n0, _IEC,
|
|
1323
|
-
{ [_e]: _c },
|
|
1324
|
-
[_m],
|
|
1325
|
-
[0]
|
|
1326
|
-
];
|
|
1327
|
-
schema.TypeRegistry.for(n0).registerError(InvalidEncryptionConfiguration$, InvalidEncryptionConfiguration);
|
|
1328
|
-
var InvalidExecutionInput$ = [-3, n0, _IEI,
|
|
1329
|
-
{ [_e]: _c },
|
|
1330
|
-
[_m],
|
|
1331
|
-
[0]
|
|
1332
|
-
];
|
|
1333
|
-
schema.TypeRegistry.for(n0).registerError(InvalidExecutionInput$, InvalidExecutionInput);
|
|
1334
|
-
var InvalidLoggingConfiguration$ = [-3, n0, _ILC,
|
|
1335
|
-
{ [_e]: _c },
|
|
1336
|
-
[_m],
|
|
1337
|
-
[0]
|
|
1338
|
-
];
|
|
1339
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLoggingConfiguration$, InvalidLoggingConfiguration);
|
|
1340
|
-
var InvalidName$ = [-3, n0, _IN,
|
|
1341
|
-
{ [_e]: _c },
|
|
1342
|
-
[_m],
|
|
1343
|
-
[0]
|
|
1344
|
-
];
|
|
1345
|
-
schema.TypeRegistry.for(n0).registerError(InvalidName$, InvalidName);
|
|
1346
|
-
var InvalidOutput$ = [-3, n0, _IO,
|
|
1347
|
-
{ [_e]: _c },
|
|
1348
|
-
[_m],
|
|
1349
|
-
[0]
|
|
1350
|
-
];
|
|
1351
|
-
schema.TypeRegistry.for(n0).registerError(InvalidOutput$, InvalidOutput);
|
|
1352
|
-
var InvalidToken$ = [-3, n0, _IT,
|
|
1353
|
-
{ [_e]: _c },
|
|
1354
|
-
[_m],
|
|
1355
|
-
[0]
|
|
1356
|
-
];
|
|
1357
|
-
schema.TypeRegistry.for(n0).registerError(InvalidToken$, InvalidToken);
|
|
1358
|
-
var InvalidTracingConfiguration$ = [-3, n0, _ITC,
|
|
1359
|
-
{ [_e]: _c },
|
|
1360
|
-
[_m],
|
|
1361
|
-
[0]
|
|
1362
|
-
];
|
|
1363
|
-
schema.TypeRegistry.for(n0).registerError(InvalidTracingConfiguration$, InvalidTracingConfiguration);
|
|
1364
|
-
var KmsAccessDeniedException$ = [-3, n0, _KADE,
|
|
1365
|
-
{ [_e]: _c },
|
|
1366
|
-
[_m],
|
|
1367
|
-
[0]
|
|
1368
|
-
];
|
|
1369
|
-
schema.TypeRegistry.for(n0).registerError(KmsAccessDeniedException$, KmsAccessDeniedException);
|
|
1370
|
-
var KmsInvalidStateException$ = [-3, n0, _KISE,
|
|
1371
|
-
{ [_e]: _c },
|
|
1372
|
-
[_kKS, _m],
|
|
1373
|
-
[0, 0]
|
|
1374
|
-
];
|
|
1375
|
-
schema.TypeRegistry.for(n0).registerError(KmsInvalidStateException$, KmsInvalidStateException);
|
|
1376
|
-
var KmsThrottlingException$ = [-3, n0, _KTE,
|
|
1377
|
-
{ [_e]: _c },
|
|
1378
|
-
[_m],
|
|
1379
|
-
[0]
|
|
1380
|
-
];
|
|
1381
|
-
schema.TypeRegistry.for(n0).registerError(KmsThrottlingException$, KmsThrottlingException);
|
|
1382
|
-
var LambdaFunctionFailedEventDetails$ = [3, n0, _LFFED,
|
|
1383
|
-
0,
|
|
1384
|
-
[_e, _ca],
|
|
1385
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1386
|
-
];
|
|
1387
|
-
var LambdaFunctionScheduledEventDetails$ = [3, n0, _LFSED,
|
|
1388
|
-
0,
|
|
1389
|
-
[_r, _i, _iD, _tIS, _tCa],
|
|
1390
|
-
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 1, () => TaskCredentials$], 1
|
|
1391
|
-
];
|
|
1392
|
-
var LambdaFunctionScheduleFailedEventDetails$ = [3, n0, _LFSFED,
|
|
1393
|
-
0,
|
|
1394
|
-
[_e, _ca],
|
|
1395
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1396
|
-
];
|
|
1397
|
-
var LambdaFunctionStartFailedEventDetails$ = [3, n0, _LFSFEDa,
|
|
1398
|
-
0,
|
|
1399
|
-
[_e, _ca],
|
|
1400
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1401
|
-
];
|
|
1402
|
-
var LambdaFunctionSucceededEventDetails$ = [3, n0, _LFSEDa,
|
|
1403
|
-
0,
|
|
1404
|
-
[_o, _oD],
|
|
1405
|
-
[[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$]
|
|
1406
|
-
];
|
|
1407
|
-
var LambdaFunctionTimedOutEventDetails$ = [3, n0, _LFTOED,
|
|
1408
|
-
0,
|
|
1409
|
-
[_e, _ca],
|
|
1410
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1411
|
-
];
|
|
1412
|
-
var ListActivitiesInput$ = [3, n0, _LAI,
|
|
1413
|
-
0,
|
|
1414
|
-
[_mR, _nT],
|
|
1415
|
-
[1, 0]
|
|
1416
|
-
];
|
|
1417
|
-
var ListActivitiesOutput$ = [3, n0, _LAO,
|
|
1418
|
-
0,
|
|
1419
|
-
[_a, _nT],
|
|
1420
|
-
[() => ActivityList, 0], 1
|
|
1421
|
-
];
|
|
1422
|
-
var ListExecutionsInput$ = [3, n0, _LEI,
|
|
1423
|
-
0,
|
|
1424
|
-
[_sMA, _sF, _mR, _nT, _mRA, _rF],
|
|
1425
|
-
[0, 0, 1, 0, 0, 0]
|
|
1426
|
-
];
|
|
1427
|
-
var ListExecutionsOutput$ = [3, n0, _LEO,
|
|
1428
|
-
0,
|
|
1429
|
-
[_ex, _nT],
|
|
1430
|
-
[() => ExecutionList, 0], 1
|
|
1431
|
-
];
|
|
1432
|
-
var ListMapRunsInput$ = [3, n0, _LMRI,
|
|
1433
|
-
0,
|
|
1434
|
-
[_eA, _mR, _nT],
|
|
1435
|
-
[0, 1, 0], 1
|
|
1436
|
-
];
|
|
1437
|
-
var ListMapRunsOutput$ = [3, n0, _LMRO,
|
|
1438
|
-
0,
|
|
1439
|
-
[_mRa, _nT],
|
|
1440
|
-
[() => MapRunList, 0], 1
|
|
1441
|
-
];
|
|
1442
|
-
var ListStateMachineAliasesInput$ = [3, n0, _LSMAI,
|
|
1443
|
-
0,
|
|
1444
|
-
[_sMA, _nT, _mR],
|
|
1445
|
-
[0, 0, 1], 1
|
|
1446
|
-
];
|
|
1447
|
-
var ListStateMachineAliasesOutput$ = [3, n0, _LSMAO,
|
|
1448
|
-
0,
|
|
1449
|
-
[_sMAt, _nT],
|
|
1450
|
-
[() => StateMachineAliasList, 0], 1
|
|
1451
|
-
];
|
|
1452
|
-
var ListStateMachinesInput$ = [3, n0, _LSMI,
|
|
1453
|
-
0,
|
|
1454
|
-
[_mR, _nT],
|
|
1455
|
-
[1, 0]
|
|
1456
|
-
];
|
|
1457
|
-
var ListStateMachinesOutput$ = [3, n0, _LSMO,
|
|
1458
|
-
0,
|
|
1459
|
-
[_sMt, _nT],
|
|
1460
|
-
[() => StateMachineList, 0], 1
|
|
1461
|
-
];
|
|
1462
|
-
var ListStateMachineVersionsInput$ = [3, n0, _LSMVI,
|
|
1463
|
-
0,
|
|
1464
|
-
[_sMA, _nT, _mR],
|
|
1465
|
-
[0, 0, 1], 1
|
|
1466
|
-
];
|
|
1467
|
-
var ListStateMachineVersionsOutput$ = [3, n0, _LSMVO,
|
|
1468
|
-
0,
|
|
1469
|
-
[_sMV, _nT],
|
|
1470
|
-
[() => StateMachineVersionList, 0], 1
|
|
1471
|
-
];
|
|
1472
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1473
|
-
0,
|
|
1474
|
-
[_rAe],
|
|
1475
|
-
[0], 1
|
|
1476
|
-
];
|
|
1477
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1478
|
-
0,
|
|
1479
|
-
[_ta],
|
|
1480
|
-
[() => TagList]
|
|
1481
|
-
];
|
|
1482
|
-
var LogDestination$ = [3, n0, _LD,
|
|
1483
|
-
0,
|
|
1484
|
-
[_cWLLG],
|
|
1485
|
-
[() => CloudWatchLogsLogGroup$]
|
|
1486
|
-
];
|
|
1487
|
-
var LoggingConfiguration$ = [3, n0, _LC,
|
|
1488
|
-
0,
|
|
1489
|
-
[_le, _iED, _des],
|
|
1490
|
-
[0, 2, () => LogDestinationList]
|
|
1491
|
-
];
|
|
1492
|
-
var MapIterationEventDetails$ = [3, n0, _MIED,
|
|
1493
|
-
0,
|
|
1494
|
-
[_n, _ind],
|
|
1495
|
-
[0, 1]
|
|
1496
|
-
];
|
|
1497
|
-
var MapRunExecutionCounts$ = [3, n0, _MREC,
|
|
1498
|
-
0,
|
|
1499
|
-
[_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
|
|
1500
|
-
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1], 8
|
|
1501
|
-
];
|
|
1502
|
-
var MapRunFailedEventDetails$ = [3, n0, _MRFED,
|
|
1503
|
-
0,
|
|
1504
|
-
[_e, _ca],
|
|
1505
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1506
|
-
];
|
|
1507
|
-
var MapRunItemCounts$ = [3, n0, _MRIC,
|
|
1508
|
-
0,
|
|
1509
|
-
[_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
|
|
1510
|
-
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1], 8
|
|
1511
|
-
];
|
|
1512
|
-
var MapRunListItem$ = [3, n0, _MRLI,
|
|
1513
|
-
0,
|
|
1514
|
-
[_eA, _mRA, _sMA, _sD, _sDt],
|
|
1515
|
-
[0, 0, 0, 4, 4], 4
|
|
1516
|
-
];
|
|
1517
|
-
var MapRunRedrivenEventDetails$ = [3, n0, _MRRED,
|
|
1518
|
-
0,
|
|
1519
|
-
[_mRA, _rCe],
|
|
1520
|
-
[0, 1]
|
|
1521
|
-
];
|
|
1522
|
-
var MapRunStartedEventDetails$ = [3, n0, _MRSED,
|
|
1523
|
-
0,
|
|
1524
|
-
[_mRA],
|
|
1525
|
-
[0]
|
|
1526
|
-
];
|
|
1527
|
-
var MapStateStartedEventDetails$ = [3, n0, _MSSED,
|
|
1528
|
-
0,
|
|
1529
|
-
[_len],
|
|
1530
|
-
[1]
|
|
1531
|
-
];
|
|
1532
|
-
var MissingRequiredParameter$ = [-3, n0, _MRP,
|
|
1533
|
-
{ [_e]: _c },
|
|
1534
|
-
[_m],
|
|
1535
|
-
[0]
|
|
1536
|
-
];
|
|
1537
|
-
schema.TypeRegistry.for(n0).registerError(MissingRequiredParameter$, MissingRequiredParameter);
|
|
1538
|
-
var MockErrorOutput$ = [3, n0, _MEO,
|
|
1539
|
-
0,
|
|
1540
|
-
[_e, _ca],
|
|
1541
|
-
[[() => SensitiveError, 0], [() => SensitiveCause, 0]]
|
|
1542
|
-
];
|
|
1543
|
-
var MockInput$ = [3, n0, _MI,
|
|
1544
|
-
0,
|
|
1545
|
-
[_re, _eO, _fVM],
|
|
1546
|
-
[[() => SensitiveData, 0], [() => MockErrorOutput$, 0], 0]
|
|
1547
|
-
];
|
|
1548
|
-
var PublishStateMachineVersionInput$ = [3, n0, _PSMVI,
|
|
1549
|
-
0,
|
|
1550
|
-
[_sMA, _rI, _d],
|
|
1551
|
-
[0, 0, [() => VersionDescription, 0]], 1
|
|
1552
|
-
];
|
|
1553
|
-
var PublishStateMachineVersionOutput$ = [3, n0, _PSMVO,
|
|
1554
|
-
0,
|
|
1555
|
-
[_cD, _sMVA],
|
|
1556
|
-
[4, 0], 2
|
|
1557
|
-
];
|
|
1558
|
-
var RedriveExecutionInput$ = [3, n0, _REI,
|
|
1559
|
-
0,
|
|
1560
|
-
[_eA, _cT],
|
|
1561
|
-
[0, [0, 4]], 1
|
|
1562
|
-
];
|
|
1563
|
-
var RedriveExecutionOutput$ = [3, n0, _REO,
|
|
1564
|
-
0,
|
|
1565
|
-
[_rD],
|
|
1566
|
-
[4], 1
|
|
1567
|
-
];
|
|
1568
|
-
var ResourceNotFound$ = [-3, n0, _RNF,
|
|
1569
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1570
|
-
[_m, _rN],
|
|
1571
|
-
[0, 0]
|
|
1572
|
-
];
|
|
1573
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFound$, ResourceNotFound);
|
|
1574
|
-
var RoutingConfigurationListItem$ = [3, n0, _RCLI,
|
|
1575
|
-
0,
|
|
1576
|
-
[_sMVA, _w],
|
|
1577
|
-
[0, 1], 2
|
|
1578
|
-
];
|
|
1579
|
-
var SendTaskFailureInput$ = [3, n0, _STFI,
|
|
1580
|
-
0,
|
|
1581
|
-
[_tT, _e, _ca],
|
|
1582
|
-
[0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 1
|
|
1583
|
-
];
|
|
1584
|
-
var SendTaskFailureOutput$ = [3, n0, _STFO,
|
|
1585
|
-
0,
|
|
1586
|
-
[],
|
|
1587
|
-
[]
|
|
1588
|
-
];
|
|
1589
|
-
var SendTaskHeartbeatInput$ = [3, n0, _STHI,
|
|
1590
|
-
0,
|
|
1591
|
-
[_tT],
|
|
1592
|
-
[0], 1
|
|
1593
|
-
];
|
|
1594
|
-
var SendTaskHeartbeatOutput$ = [3, n0, _STHO,
|
|
1595
|
-
0,
|
|
1596
|
-
[],
|
|
1597
|
-
[]
|
|
1598
|
-
];
|
|
1599
|
-
var SendTaskSuccessInput$ = [3, n0, _STSI,
|
|
1600
|
-
0,
|
|
1601
|
-
[_tT, _o],
|
|
1602
|
-
[0, [() => SensitiveData, 0]], 2
|
|
1603
|
-
];
|
|
1604
|
-
var SendTaskSuccessOutput$ = [3, n0, _STSO,
|
|
1605
|
-
0,
|
|
1606
|
-
[],
|
|
1607
|
-
[]
|
|
1608
|
-
];
|
|
1609
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1610
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1611
|
-
[_m],
|
|
1612
|
-
[0]
|
|
1613
|
-
];
|
|
1614
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1615
|
-
var StartExecutionInput$ = [3, n0, _SEI,
|
|
1616
|
-
0,
|
|
1617
|
-
[_sMA, _n, _i, _tH],
|
|
1618
|
-
[0, 0, [() => SensitiveData, 0], 0], 1
|
|
1619
|
-
];
|
|
1620
|
-
var StartExecutionOutput$ = [3, n0, _SEO,
|
|
1621
|
-
0,
|
|
1622
|
-
[_eA, _sD],
|
|
1623
|
-
[0, 4], 2
|
|
1624
|
-
];
|
|
1625
|
-
var StartSyncExecutionInput$ = [3, n0, _SSEI,
|
|
1626
|
-
0,
|
|
1627
|
-
[_sMA, _n, _i, _tH, _iDn],
|
|
1628
|
-
[0, 0, [() => SensitiveData, 0], 0, 0], 1
|
|
1629
|
-
];
|
|
1630
|
-
var StartSyncExecutionOutput$ = [3, n0, _SSEO,
|
|
1631
|
-
0,
|
|
1632
|
-
[_eA, _sD, _sDt, _s, _sMA, _n, _e, _ca, _i, _iD, _o, _oD, _tH, _bD],
|
|
1633
|
-
[0, 4, 4, 0, 0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => SensitiveData, 0], () => CloudWatchEventsExecutionDataDetails$, [() => SensitiveData, 0], () => CloudWatchEventsExecutionDataDetails$, 0, () => BillingDetails$], 4
|
|
1634
|
-
];
|
|
1635
|
-
var StateEnteredEventDetails$ = [3, n0, _SEED,
|
|
1636
|
-
0,
|
|
1637
|
-
[_n, _i, _iD],
|
|
1638
|
-
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$], 1
|
|
1639
|
-
];
|
|
1640
|
-
var StateExitedEventDetails$ = [3, n0, _SEEDt,
|
|
1641
|
-
0,
|
|
1642
|
-
[_n, _o, _oD, _aV, _aVD],
|
|
1643
|
-
[0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, [() => AssignedVariables, 0], () => AssignedVariablesDetails$], 1
|
|
1644
|
-
];
|
|
1645
|
-
var StateMachineAliasListItem$ = [3, n0, _SMALI,
|
|
1646
|
-
0,
|
|
1647
|
-
[_sMAA, _cD],
|
|
1648
|
-
[0, 4], 2
|
|
1649
|
-
];
|
|
1650
|
-
var StateMachineAlreadyExists$ = [-3, n0, _SMAE,
|
|
1651
|
-
{ [_e]: _c },
|
|
1652
|
-
[_m],
|
|
1653
|
-
[0]
|
|
1654
|
-
];
|
|
1655
|
-
schema.TypeRegistry.for(n0).registerError(StateMachineAlreadyExists$, StateMachineAlreadyExists);
|
|
1656
|
-
var StateMachineDeleting$ = [-3, n0, _SMD,
|
|
1657
|
-
{ [_e]: _c },
|
|
1658
|
-
[_m],
|
|
1659
|
-
[0]
|
|
1660
|
-
];
|
|
1661
|
-
schema.TypeRegistry.for(n0).registerError(StateMachineDeleting$, StateMachineDeleting);
|
|
1662
|
-
var StateMachineDoesNotExist$ = [-3, n0, _SMDNE,
|
|
1663
|
-
{ [_e]: _c },
|
|
1664
|
-
[_m],
|
|
1665
|
-
[0]
|
|
1666
|
-
];
|
|
1667
|
-
schema.TypeRegistry.for(n0).registerError(StateMachineDoesNotExist$, StateMachineDoesNotExist);
|
|
1668
|
-
var StateMachineLimitExceeded$ = [-3, n0, _SMLE,
|
|
1669
|
-
{ [_e]: _c },
|
|
1670
|
-
[_m],
|
|
1671
|
-
[0]
|
|
1672
|
-
];
|
|
1673
|
-
schema.TypeRegistry.for(n0).registerError(StateMachineLimitExceeded$, StateMachineLimitExceeded);
|
|
1674
|
-
var StateMachineListItem$ = [3, n0, _SMLI,
|
|
1675
|
-
0,
|
|
1676
|
-
[_sMA, _n, _ty, _cD],
|
|
1677
|
-
[0, 0, 0, 4], 4
|
|
1678
|
-
];
|
|
1679
|
-
var StateMachineTypeNotSupported$ = [-3, n0, _SMTNS,
|
|
1680
|
-
{ [_e]: _c },
|
|
1681
|
-
[_m],
|
|
1682
|
-
[0]
|
|
1683
|
-
];
|
|
1684
|
-
schema.TypeRegistry.for(n0).registerError(StateMachineTypeNotSupported$, StateMachineTypeNotSupported);
|
|
1685
|
-
var StateMachineVersionListItem$ = [3, n0, _SMVLI,
|
|
1686
|
-
0,
|
|
1687
|
-
[_sMVA, _cD],
|
|
1688
|
-
[0, 4], 2
|
|
1689
|
-
];
|
|
1690
|
-
var StopExecutionInput$ = [3, n0, _SEIt,
|
|
1691
|
-
0,
|
|
1692
|
-
[_eA, _e, _ca],
|
|
1693
|
-
[0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 1
|
|
1694
|
-
];
|
|
1695
|
-
var StopExecutionOutput$ = [3, n0, _SEOt,
|
|
1696
|
-
0,
|
|
1697
|
-
[_sDt],
|
|
1698
|
-
[4], 1
|
|
1699
|
-
];
|
|
1700
|
-
var Tag$ = [3, n0, _T,
|
|
1701
|
-
0,
|
|
1702
|
-
[_k, _va],
|
|
1703
|
-
[0, 0]
|
|
1704
|
-
];
|
|
1705
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
1706
|
-
0,
|
|
1707
|
-
[_rAe, _ta],
|
|
1708
|
-
[0, () => TagList], 2
|
|
1709
|
-
];
|
|
1710
|
-
var TagResourceOutput$ = [3, n0, _TRO,
|
|
1711
|
-
0,
|
|
1712
|
-
[],
|
|
1713
|
-
[]
|
|
1714
|
-
];
|
|
1715
|
-
var TaskCredentials$ = [3, n0, _TC,
|
|
1716
|
-
0,
|
|
1717
|
-
[_rA],
|
|
1718
|
-
[0]
|
|
1719
|
-
];
|
|
1720
|
-
var TaskDoesNotExist$ = [-3, n0, _TDNE,
|
|
1721
|
-
{ [_e]: _c },
|
|
1722
|
-
[_m],
|
|
1723
|
-
[0]
|
|
1724
|
-
];
|
|
1725
|
-
schema.TypeRegistry.for(n0).registerError(TaskDoesNotExist$, TaskDoesNotExist);
|
|
1726
|
-
var TaskFailedEventDetails$ = [3, n0, _TFED,
|
|
1727
|
-
0,
|
|
1728
|
-
[_rT, _r, _e, _ca],
|
|
1729
|
-
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1730
|
-
];
|
|
1731
|
-
var TaskScheduledEventDetails$ = [3, n0, _TSED,
|
|
1732
|
-
0,
|
|
1733
|
-
[_rT, _r, _reg, _pa, _tIS, _hIS, _tCa],
|
|
1734
|
-
[0, 0, 0, [() => ConnectorParameters, 0], 1, 1, () => TaskCredentials$], 4
|
|
1735
|
-
];
|
|
1736
|
-
var TaskStartedEventDetails$ = [3, n0, _TSEDa,
|
|
1737
|
-
0,
|
|
1738
|
-
[_rT, _r],
|
|
1739
|
-
[0, 0], 2
|
|
1740
|
-
];
|
|
1741
|
-
var TaskStartFailedEventDetails$ = [3, n0, _TSFED,
|
|
1742
|
-
0,
|
|
1743
|
-
[_rT, _r, _e, _ca],
|
|
1744
|
-
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1745
|
-
];
|
|
1746
|
-
var TaskSubmitFailedEventDetails$ = [3, n0, _TSFEDa,
|
|
1747
|
-
0,
|
|
1748
|
-
[_rT, _r, _e, _ca],
|
|
1749
|
-
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1750
|
-
];
|
|
1751
|
-
var TaskSubmittedEventDetails$ = [3, n0, _TSEDas,
|
|
1752
|
-
0,
|
|
1753
|
-
[_rT, _r, _o, _oD],
|
|
1754
|
-
[0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$], 2
|
|
1755
|
-
];
|
|
1756
|
-
var TaskSucceededEventDetails$ = [3, n0, _TSEDask,
|
|
1757
|
-
0,
|
|
1758
|
-
[_rT, _r, _o, _oD],
|
|
1759
|
-
[0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$], 2
|
|
1760
|
-
];
|
|
1761
|
-
var TaskTimedOut$ = [-3, n0, _TTO,
|
|
1762
|
-
{ [_e]: _c },
|
|
1763
|
-
[_m],
|
|
1764
|
-
[0]
|
|
1765
|
-
];
|
|
1766
|
-
schema.TypeRegistry.for(n0).registerError(TaskTimedOut$, TaskTimedOut);
|
|
1767
|
-
var TaskTimedOutEventDetails$ = [3, n0, _TTOED,
|
|
1768
|
-
0,
|
|
1769
|
-
[_rT, _r, _e, _ca],
|
|
1770
|
-
[0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]], 2
|
|
1771
|
-
];
|
|
1772
|
-
var TestStateConfiguration$ = [3, n0, _TSC,
|
|
1773
|
-
0,
|
|
1774
|
-
[_rRC, _eCBS, _mIFC, _mIRD],
|
|
1775
|
-
[1, [() => TestStateStateName, 0], 1, [() => SensitiveData, 0]]
|
|
1776
|
-
];
|
|
1777
|
-
var TestStateInput$ = [3, n0, _TSI,
|
|
1778
|
-
0,
|
|
1779
|
-
[_de, _rA, _i, _iL, _rSe, _v, _sN, _mo, _co, _sCt],
|
|
1780
|
-
[[() => Definition, 0], 0, [() => SensitiveData, 0], 0, 2, [() => SensitiveData, 0], [() => TestStateStateName, 0], [() => MockInput$, 0], [() => SensitiveData, 0], [() => TestStateConfiguration$, 0]], 1
|
|
1781
|
-
];
|
|
1782
|
-
var TestStateOutput$ = [3, n0, _TSO,
|
|
1783
|
-
0,
|
|
1784
|
-
[_o, _e, _ca, _iDns, _nS, _s],
|
|
1785
|
-
[[() => SensitiveData, 0], [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => InspectionData$, 0], 0, 0]
|
|
1786
|
-
];
|
|
1787
|
-
var TooManyTags$ = [-3, n0, _TMT,
|
|
1788
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1789
|
-
[_m, _rN],
|
|
1790
|
-
[0, 0]
|
|
1791
|
-
];
|
|
1792
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTags$, TooManyTags);
|
|
1793
|
-
var TracingConfiguration$ = [3, n0, _TCr,
|
|
1794
|
-
0,
|
|
1795
|
-
[_en],
|
|
1796
|
-
[2]
|
|
1797
|
-
];
|
|
1798
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
1799
|
-
0,
|
|
1800
|
-
[_rAe, _tK],
|
|
1801
|
-
[0, 64 | 0], 2
|
|
1802
|
-
];
|
|
1803
|
-
var UntagResourceOutput$ = [3, n0, _URO,
|
|
1804
|
-
0,
|
|
1805
|
-
[],
|
|
1806
|
-
[]
|
|
1807
|
-
];
|
|
1808
|
-
var UpdateMapRunInput$ = [3, n0, _UMRI,
|
|
1809
|
-
0,
|
|
1810
|
-
[_mRA, _mC, _tFP, _tFC],
|
|
1811
|
-
[0, 1, 1, 1], 1
|
|
1812
|
-
];
|
|
1813
|
-
var UpdateMapRunOutput$ = [3, n0, _UMRO,
|
|
1814
|
-
0,
|
|
1815
|
-
[],
|
|
1816
|
-
[]
|
|
1817
|
-
];
|
|
1818
|
-
var UpdateStateMachineAliasInput$ = [3, n0, _USMAI,
|
|
1819
|
-
0,
|
|
1820
|
-
[_sMAA, _d, _rC],
|
|
1821
|
-
[0, [() => AliasDescription, 0], () => RoutingConfigurationList], 1
|
|
1822
|
-
];
|
|
1823
|
-
var UpdateStateMachineAliasOutput$ = [3, n0, _USMAO,
|
|
1824
|
-
0,
|
|
1825
|
-
[_uD],
|
|
1826
|
-
[4], 1
|
|
1827
|
-
];
|
|
1828
|
-
var UpdateStateMachineInput$ = [3, n0, _USMI,
|
|
1829
|
-
0,
|
|
1830
|
-
[_sMA, _de, _rA, _lC, _tC, _p, _vD, _eC],
|
|
1831
|
-
[0, [() => Definition, 0], 0, () => LoggingConfiguration$, () => TracingConfiguration$, 2, [() => VersionDescription, 0], () => EncryptionConfiguration$], 1
|
|
1832
|
-
];
|
|
1833
|
-
var UpdateStateMachineOutput$ = [3, n0, _USMO,
|
|
1834
|
-
0,
|
|
1835
|
-
[_uD, _rI, _sMVA],
|
|
1836
|
-
[4, 0, 0], 1
|
|
1837
|
-
];
|
|
1838
|
-
var ValidateStateMachineDefinitionDiagnostic$ = [3, n0, _VSMDD,
|
|
1839
|
-
0,
|
|
1840
|
-
[_se, _cod, _m, _lo],
|
|
1841
|
-
[0, [() => ValidateStateMachineDefinitionCode, 0], [() => ValidateStateMachineDefinitionMessage, 0], [() => ValidateStateMachineDefinitionLocation, 0]], 3
|
|
1842
|
-
];
|
|
1843
|
-
var ValidateStateMachineDefinitionInput$ = [3, n0, _VSMDI,
|
|
1844
|
-
0,
|
|
1845
|
-
[_de, _ty, _se, _mR],
|
|
1846
|
-
[[() => Definition, 0], 0, 0, 1], 1
|
|
1847
|
-
];
|
|
1848
|
-
var ValidateStateMachineDefinitionOutput$ = [3, n0, _VSMDO,
|
|
1849
|
-
0,
|
|
1850
|
-
[_re, _di, _t],
|
|
1851
|
-
[0, [() => ValidateStateMachineDefinitionDiagnosticList, 0], 2], 2
|
|
1852
|
-
];
|
|
1853
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1854
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1855
|
-
[_m, _rea],
|
|
1856
|
-
[0, 0]
|
|
1857
|
-
];
|
|
1858
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1859
|
-
var SFNServiceException$ = [-3, _sm, "SFNServiceException", 0, [], []];
|
|
1860
|
-
schema.TypeRegistry.for(_sm).registerError(SFNServiceException$, SFNServiceException);
|
|
1861
|
-
var ActivityList = [1, n0, _AL,
|
|
1862
|
-
0, () => ActivityListItem$
|
|
1863
|
-
];
|
|
1864
|
-
var ExecutionList = [1, n0, _EL,
|
|
1865
|
-
0, () => ExecutionListItem$
|
|
1866
|
-
];
|
|
1867
|
-
var HistoryEventList = [1, n0, _HEL,
|
|
1868
|
-
0, [() => HistoryEvent$,
|
|
1869
|
-
0]
|
|
1870
|
-
];
|
|
1871
|
-
var LogDestinationList = [1, n0, _LDL,
|
|
1872
|
-
0, () => LogDestination$
|
|
1873
|
-
];
|
|
1874
|
-
var MapRunList = [1, n0, _MRL,
|
|
1875
|
-
0, () => MapRunListItem$
|
|
1876
|
-
];
|
|
1877
|
-
var RoutingConfigurationList = [1, n0, _RCL,
|
|
1878
|
-
0, () => RoutingConfigurationListItem$
|
|
1879
|
-
];
|
|
1880
|
-
var StateMachineAliasList = [1, n0, _SMAL,
|
|
1881
|
-
0, () => StateMachineAliasListItem$
|
|
1882
|
-
];
|
|
1883
|
-
var StateMachineList = [1, n0, _SML,
|
|
1884
|
-
0, () => StateMachineListItem$
|
|
1885
|
-
];
|
|
1886
|
-
var StateMachineVersionList = [1, n0, _SMVL,
|
|
1887
|
-
0, () => StateMachineVersionListItem$
|
|
1888
|
-
];
|
|
1889
|
-
var TagList = [1, n0, _TL,
|
|
1890
|
-
0, () => Tag$
|
|
1891
|
-
];
|
|
1892
|
-
var ValidateStateMachineDefinitionDiagnosticList = [1, n0, _VSMDDL,
|
|
1893
|
-
0, [() => ValidateStateMachineDefinitionDiagnostic$,
|
|
1894
|
-
0]
|
|
1895
|
-
];
|
|
1896
|
-
var VariableNameList = [1, n0, _VNL,
|
|
1897
|
-
0, [() => VariableName,
|
|
1898
|
-
0]
|
|
1899
|
-
];
|
|
1900
|
-
var AssignedVariables = [2, n0, _AV,
|
|
1901
|
-
0, [() => VariableName,
|
|
1902
|
-
0],
|
|
1903
|
-
[() => VariableValue,
|
|
1904
|
-
0]
|
|
1905
|
-
];
|
|
1906
|
-
var VariableReferences = [2, n0, _VR,
|
|
1907
|
-
8, [0,
|
|
1908
|
-
0],
|
|
1909
|
-
[() => VariableNameList,
|
|
1910
|
-
0]
|
|
1911
|
-
];
|
|
1912
|
-
var CreateActivity$ = [9, n0, _CA,
|
|
1913
|
-
2, () => CreateActivityInput$, () => CreateActivityOutput$
|
|
1914
|
-
];
|
|
1915
|
-
var CreateStateMachine$ = [9, n0, _CSM,
|
|
1916
|
-
2, () => CreateStateMachineInput$, () => CreateStateMachineOutput$
|
|
1917
|
-
];
|
|
1918
|
-
var CreateStateMachineAlias$ = [9, n0, _CSMA,
|
|
1919
|
-
0, () => CreateStateMachineAliasInput$, () => CreateStateMachineAliasOutput$
|
|
1920
|
-
];
|
|
1921
|
-
var DeleteActivity$ = [9, n0, _DA,
|
|
1922
|
-
0, () => DeleteActivityInput$, () => DeleteActivityOutput$
|
|
1923
|
-
];
|
|
1924
|
-
var DeleteStateMachine$ = [9, n0, _DSM,
|
|
1925
|
-
0, () => DeleteStateMachineInput$, () => DeleteStateMachineOutput$
|
|
1926
|
-
];
|
|
1927
|
-
var DeleteStateMachineAlias$ = [9, n0, _DSMA,
|
|
1928
|
-
0, () => DeleteStateMachineAliasInput$, () => DeleteStateMachineAliasOutput$
|
|
1929
|
-
];
|
|
1930
|
-
var DeleteStateMachineVersion$ = [9, n0, _DSMV,
|
|
1931
|
-
0, () => DeleteStateMachineVersionInput$, () => DeleteStateMachineVersionOutput$
|
|
1932
|
-
];
|
|
1933
|
-
var DescribeActivity$ = [9, n0, _DAe,
|
|
1934
|
-
0, () => DescribeActivityInput$, () => DescribeActivityOutput$
|
|
1935
|
-
];
|
|
1936
|
-
var DescribeExecution$ = [9, n0, _DE,
|
|
1937
|
-
0, () => DescribeExecutionInput$, () => DescribeExecutionOutput$
|
|
1938
|
-
];
|
|
1939
|
-
var DescribeMapRun$ = [9, n0, _DMR,
|
|
1940
|
-
0, () => DescribeMapRunInput$, () => DescribeMapRunOutput$
|
|
1941
|
-
];
|
|
1942
|
-
var DescribeStateMachine$ = [9, n0, _DSMe,
|
|
1943
|
-
0, () => DescribeStateMachineInput$, () => DescribeStateMachineOutput$
|
|
1944
|
-
];
|
|
1945
|
-
var DescribeStateMachineAlias$ = [9, n0, _DSMAe,
|
|
1946
|
-
0, () => DescribeStateMachineAliasInput$, () => DescribeStateMachineAliasOutput$
|
|
1947
|
-
];
|
|
1948
|
-
var DescribeStateMachineForExecution$ = [9, n0, _DSMFE,
|
|
1949
|
-
0, () => DescribeStateMachineForExecutionInput$, () => DescribeStateMachineForExecutionOutput$
|
|
1950
|
-
];
|
|
1951
|
-
var GetActivityTask$ = [9, n0, _GAT,
|
|
1952
|
-
0, () => GetActivityTaskInput$, () => GetActivityTaskOutput$
|
|
1953
|
-
];
|
|
1954
|
-
var GetExecutionHistory$ = [9, n0, _GEH,
|
|
1955
|
-
0, () => GetExecutionHistoryInput$, () => GetExecutionHistoryOutput$
|
|
1956
|
-
];
|
|
1957
|
-
var ListActivities$ = [9, n0, _LA,
|
|
1958
|
-
0, () => ListActivitiesInput$, () => ListActivitiesOutput$
|
|
1959
|
-
];
|
|
1960
|
-
var ListExecutions$ = [9, n0, _LE,
|
|
1961
|
-
0, () => ListExecutionsInput$, () => ListExecutionsOutput$
|
|
1962
|
-
];
|
|
1963
|
-
var ListMapRuns$ = [9, n0, _LMR,
|
|
1964
|
-
0, () => ListMapRunsInput$, () => ListMapRunsOutput$
|
|
1965
|
-
];
|
|
1966
|
-
var ListStateMachineAliases$ = [9, n0, _LSMA,
|
|
1967
|
-
0, () => ListStateMachineAliasesInput$, () => ListStateMachineAliasesOutput$
|
|
1968
|
-
];
|
|
1969
|
-
var ListStateMachines$ = [9, n0, _LSM,
|
|
1970
|
-
0, () => ListStateMachinesInput$, () => ListStateMachinesOutput$
|
|
1971
|
-
];
|
|
1972
|
-
var ListStateMachineVersions$ = [9, n0, _LSMV,
|
|
1973
|
-
0, () => ListStateMachineVersionsInput$, () => ListStateMachineVersionsOutput$
|
|
1974
|
-
];
|
|
1975
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1976
|
-
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1977
|
-
];
|
|
1978
|
-
var PublishStateMachineVersion$ = [9, n0, _PSMV,
|
|
1979
|
-
2, () => PublishStateMachineVersionInput$, () => PublishStateMachineVersionOutput$
|
|
1980
|
-
];
|
|
1981
|
-
var RedriveExecution$ = [9, n0, _RE,
|
|
1982
|
-
2, () => RedriveExecutionInput$, () => RedriveExecutionOutput$
|
|
1983
|
-
];
|
|
1984
|
-
var SendTaskFailure$ = [9, n0, _STF,
|
|
1985
|
-
0, () => SendTaskFailureInput$, () => SendTaskFailureOutput$
|
|
1986
|
-
];
|
|
1987
|
-
var SendTaskHeartbeat$ = [9, n0, _STH,
|
|
1988
|
-
0, () => SendTaskHeartbeatInput$, () => SendTaskHeartbeatOutput$
|
|
1989
|
-
];
|
|
1990
|
-
var SendTaskSuccess$ = [9, n0, _STS,
|
|
1991
|
-
0, () => SendTaskSuccessInput$, () => SendTaskSuccessOutput$
|
|
1992
|
-
];
|
|
1993
|
-
var StartExecution$ = [9, n0, _SEt,
|
|
1994
|
-
2, () => StartExecutionInput$, () => StartExecutionOutput$
|
|
1995
|
-
];
|
|
1996
|
-
var StartSyncExecution$ = [9, n0, _SSE,
|
|
1997
|
-
{ [_end]: ["sync-"] }, () => StartSyncExecutionInput$, () => StartSyncExecutionOutput$
|
|
1998
|
-
];
|
|
1999
|
-
var StopExecution$ = [9, n0, _SEto,
|
|
2000
|
-
0, () => StopExecutionInput$, () => StopExecutionOutput$
|
|
2001
|
-
];
|
|
2002
|
-
var TagResource$ = [9, n0, _TR,
|
|
2003
|
-
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
2004
|
-
];
|
|
2005
|
-
var TestState$ = [9, n0, _TS,
|
|
2006
|
-
{ [_end]: ["sync-"] }, () => TestStateInput$, () => TestStateOutput$
|
|
2007
|
-
];
|
|
2008
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2009
|
-
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
2010
|
-
];
|
|
2011
|
-
var UpdateMapRun$ = [9, n0, _UMR,
|
|
2012
|
-
0, () => UpdateMapRunInput$, () => UpdateMapRunOutput$
|
|
2013
|
-
];
|
|
2014
|
-
var UpdateStateMachine$ = [9, n0, _USM,
|
|
2015
|
-
2, () => UpdateStateMachineInput$, () => UpdateStateMachineOutput$
|
|
2016
|
-
];
|
|
2017
|
-
var UpdateStateMachineAlias$ = [9, n0, _USMA,
|
|
2018
|
-
0, () => UpdateStateMachineAliasInput$, () => UpdateStateMachineAliasOutput$
|
|
2019
|
-
];
|
|
2020
|
-
var ValidateStateMachineDefinition$ = [9, n0, _VSMD,
|
|
2021
|
-
0, () => ValidateStateMachineDefinitionInput$, () => ValidateStateMachineDefinitionOutput$
|
|
2022
|
-
];
|
|
2023
|
-
|
|
2024
116
|
class CreateActivityCommand extends smithyClient.Command
|
|
2025
117
|
.classBuilder()
|
|
2026
118
|
.ep(commonParams)
|
|
@@ -2029,7 +121,7 @@ class CreateActivityCommand extends smithyClient.Command
|
|
|
2029
121
|
})
|
|
2030
122
|
.s("AWSStepFunctions", "CreateActivity", {})
|
|
2031
123
|
.n("SFNClient", "CreateActivityCommand")
|
|
2032
|
-
.sc(CreateActivity$)
|
|
124
|
+
.sc(schemas_0.CreateActivity$)
|
|
2033
125
|
.build() {
|
|
2034
126
|
}
|
|
2035
127
|
|
|
@@ -2041,7 +133,7 @@ class CreateStateMachineAliasCommand extends smithyClient.Command
|
|
|
2041
133
|
})
|
|
2042
134
|
.s("AWSStepFunctions", "CreateStateMachineAlias", {})
|
|
2043
135
|
.n("SFNClient", "CreateStateMachineAliasCommand")
|
|
2044
|
-
.sc(CreateStateMachineAlias$)
|
|
136
|
+
.sc(schemas_0.CreateStateMachineAlias$)
|
|
2045
137
|
.build() {
|
|
2046
138
|
}
|
|
2047
139
|
|
|
@@ -2053,7 +145,7 @@ class CreateStateMachineCommand extends smithyClient.Command
|
|
|
2053
145
|
})
|
|
2054
146
|
.s("AWSStepFunctions", "CreateStateMachine", {})
|
|
2055
147
|
.n("SFNClient", "CreateStateMachineCommand")
|
|
2056
|
-
.sc(CreateStateMachine$)
|
|
148
|
+
.sc(schemas_0.CreateStateMachine$)
|
|
2057
149
|
.build() {
|
|
2058
150
|
}
|
|
2059
151
|
|
|
@@ -2065,7 +157,7 @@ class DeleteActivityCommand extends smithyClient.Command
|
|
|
2065
157
|
})
|
|
2066
158
|
.s("AWSStepFunctions", "DeleteActivity", {})
|
|
2067
159
|
.n("SFNClient", "DeleteActivityCommand")
|
|
2068
|
-
.sc(DeleteActivity$)
|
|
160
|
+
.sc(schemas_0.DeleteActivity$)
|
|
2069
161
|
.build() {
|
|
2070
162
|
}
|
|
2071
163
|
|
|
@@ -2077,7 +169,7 @@ class DeleteStateMachineAliasCommand extends smithyClient.Command
|
|
|
2077
169
|
})
|
|
2078
170
|
.s("AWSStepFunctions", "DeleteStateMachineAlias", {})
|
|
2079
171
|
.n("SFNClient", "DeleteStateMachineAliasCommand")
|
|
2080
|
-
.sc(DeleteStateMachineAlias$)
|
|
172
|
+
.sc(schemas_0.DeleteStateMachineAlias$)
|
|
2081
173
|
.build() {
|
|
2082
174
|
}
|
|
2083
175
|
|
|
@@ -2089,7 +181,7 @@ class DeleteStateMachineCommand extends smithyClient.Command
|
|
|
2089
181
|
})
|
|
2090
182
|
.s("AWSStepFunctions", "DeleteStateMachine", {})
|
|
2091
183
|
.n("SFNClient", "DeleteStateMachineCommand")
|
|
2092
|
-
.sc(DeleteStateMachine$)
|
|
184
|
+
.sc(schemas_0.DeleteStateMachine$)
|
|
2093
185
|
.build() {
|
|
2094
186
|
}
|
|
2095
187
|
|
|
@@ -2101,7 +193,7 @@ class DeleteStateMachineVersionCommand extends smithyClient.Command
|
|
|
2101
193
|
})
|
|
2102
194
|
.s("AWSStepFunctions", "DeleteStateMachineVersion", {})
|
|
2103
195
|
.n("SFNClient", "DeleteStateMachineVersionCommand")
|
|
2104
|
-
.sc(DeleteStateMachineVersion$)
|
|
196
|
+
.sc(schemas_0.DeleteStateMachineVersion$)
|
|
2105
197
|
.build() {
|
|
2106
198
|
}
|
|
2107
199
|
|
|
@@ -2113,7 +205,7 @@ class DescribeActivityCommand extends smithyClient.Command
|
|
|
2113
205
|
})
|
|
2114
206
|
.s("AWSStepFunctions", "DescribeActivity", {})
|
|
2115
207
|
.n("SFNClient", "DescribeActivityCommand")
|
|
2116
|
-
.sc(DescribeActivity$)
|
|
208
|
+
.sc(schemas_0.DescribeActivity$)
|
|
2117
209
|
.build() {
|
|
2118
210
|
}
|
|
2119
211
|
|
|
@@ -2125,7 +217,7 @@ class DescribeExecutionCommand extends smithyClient.Command
|
|
|
2125
217
|
})
|
|
2126
218
|
.s("AWSStepFunctions", "DescribeExecution", {})
|
|
2127
219
|
.n("SFNClient", "DescribeExecutionCommand")
|
|
2128
|
-
.sc(DescribeExecution$)
|
|
220
|
+
.sc(schemas_0.DescribeExecution$)
|
|
2129
221
|
.build() {
|
|
2130
222
|
}
|
|
2131
223
|
|
|
@@ -2137,7 +229,7 @@ class DescribeMapRunCommand extends smithyClient.Command
|
|
|
2137
229
|
})
|
|
2138
230
|
.s("AWSStepFunctions", "DescribeMapRun", {})
|
|
2139
231
|
.n("SFNClient", "DescribeMapRunCommand")
|
|
2140
|
-
.sc(DescribeMapRun$)
|
|
232
|
+
.sc(schemas_0.DescribeMapRun$)
|
|
2141
233
|
.build() {
|
|
2142
234
|
}
|
|
2143
235
|
|
|
@@ -2149,7 +241,7 @@ class DescribeStateMachineAliasCommand extends smithyClient.Command
|
|
|
2149
241
|
})
|
|
2150
242
|
.s("AWSStepFunctions", "DescribeStateMachineAlias", {})
|
|
2151
243
|
.n("SFNClient", "DescribeStateMachineAliasCommand")
|
|
2152
|
-
.sc(DescribeStateMachineAlias$)
|
|
244
|
+
.sc(schemas_0.DescribeStateMachineAlias$)
|
|
2153
245
|
.build() {
|
|
2154
246
|
}
|
|
2155
247
|
|
|
@@ -2161,7 +253,7 @@ class DescribeStateMachineCommand extends smithyClient.Command
|
|
|
2161
253
|
})
|
|
2162
254
|
.s("AWSStepFunctions", "DescribeStateMachine", {})
|
|
2163
255
|
.n("SFNClient", "DescribeStateMachineCommand")
|
|
2164
|
-
.sc(DescribeStateMachine$)
|
|
256
|
+
.sc(schemas_0.DescribeStateMachine$)
|
|
2165
257
|
.build() {
|
|
2166
258
|
}
|
|
2167
259
|
|
|
@@ -2173,7 +265,7 @@ class DescribeStateMachineForExecutionCommand extends smithyClient.Command
|
|
|
2173
265
|
})
|
|
2174
266
|
.s("AWSStepFunctions", "DescribeStateMachineForExecution", {})
|
|
2175
267
|
.n("SFNClient", "DescribeStateMachineForExecutionCommand")
|
|
2176
|
-
.sc(DescribeStateMachineForExecution$)
|
|
268
|
+
.sc(schemas_0.DescribeStateMachineForExecution$)
|
|
2177
269
|
.build() {
|
|
2178
270
|
}
|
|
2179
271
|
|
|
@@ -2185,7 +277,7 @@ class GetActivityTaskCommand extends smithyClient.Command
|
|
|
2185
277
|
})
|
|
2186
278
|
.s("AWSStepFunctions", "GetActivityTask", {})
|
|
2187
279
|
.n("SFNClient", "GetActivityTaskCommand")
|
|
2188
|
-
.sc(GetActivityTask$)
|
|
280
|
+
.sc(schemas_0.GetActivityTask$)
|
|
2189
281
|
.build() {
|
|
2190
282
|
}
|
|
2191
283
|
|
|
@@ -2197,7 +289,7 @@ class GetExecutionHistoryCommand extends smithyClient.Command
|
|
|
2197
289
|
})
|
|
2198
290
|
.s("AWSStepFunctions", "GetExecutionHistory", {})
|
|
2199
291
|
.n("SFNClient", "GetExecutionHistoryCommand")
|
|
2200
|
-
.sc(GetExecutionHistory$)
|
|
292
|
+
.sc(schemas_0.GetExecutionHistory$)
|
|
2201
293
|
.build() {
|
|
2202
294
|
}
|
|
2203
295
|
|
|
@@ -2209,7 +301,7 @@ class ListActivitiesCommand extends smithyClient.Command
|
|
|
2209
301
|
})
|
|
2210
302
|
.s("AWSStepFunctions", "ListActivities", {})
|
|
2211
303
|
.n("SFNClient", "ListActivitiesCommand")
|
|
2212
|
-
.sc(ListActivities$)
|
|
304
|
+
.sc(schemas_0.ListActivities$)
|
|
2213
305
|
.build() {
|
|
2214
306
|
}
|
|
2215
307
|
|
|
@@ -2221,7 +313,7 @@ class ListExecutionsCommand extends smithyClient.Command
|
|
|
2221
313
|
})
|
|
2222
314
|
.s("AWSStepFunctions", "ListExecutions", {})
|
|
2223
315
|
.n("SFNClient", "ListExecutionsCommand")
|
|
2224
|
-
.sc(ListExecutions$)
|
|
316
|
+
.sc(schemas_0.ListExecutions$)
|
|
2225
317
|
.build() {
|
|
2226
318
|
}
|
|
2227
319
|
|
|
@@ -2233,7 +325,7 @@ class ListMapRunsCommand extends smithyClient.Command
|
|
|
2233
325
|
})
|
|
2234
326
|
.s("AWSStepFunctions", "ListMapRuns", {})
|
|
2235
327
|
.n("SFNClient", "ListMapRunsCommand")
|
|
2236
|
-
.sc(ListMapRuns$)
|
|
328
|
+
.sc(schemas_0.ListMapRuns$)
|
|
2237
329
|
.build() {
|
|
2238
330
|
}
|
|
2239
331
|
|
|
@@ -2245,7 +337,7 @@ class ListStateMachineAliasesCommand extends smithyClient.Command
|
|
|
2245
337
|
})
|
|
2246
338
|
.s("AWSStepFunctions", "ListStateMachineAliases", {})
|
|
2247
339
|
.n("SFNClient", "ListStateMachineAliasesCommand")
|
|
2248
|
-
.sc(ListStateMachineAliases$)
|
|
340
|
+
.sc(schemas_0.ListStateMachineAliases$)
|
|
2249
341
|
.build() {
|
|
2250
342
|
}
|
|
2251
343
|
|
|
@@ -2257,7 +349,7 @@ class ListStateMachinesCommand extends smithyClient.Command
|
|
|
2257
349
|
})
|
|
2258
350
|
.s("AWSStepFunctions", "ListStateMachines", {})
|
|
2259
351
|
.n("SFNClient", "ListStateMachinesCommand")
|
|
2260
|
-
.sc(ListStateMachines$)
|
|
352
|
+
.sc(schemas_0.ListStateMachines$)
|
|
2261
353
|
.build() {
|
|
2262
354
|
}
|
|
2263
355
|
|
|
@@ -2269,7 +361,7 @@ class ListStateMachineVersionsCommand extends smithyClient.Command
|
|
|
2269
361
|
})
|
|
2270
362
|
.s("AWSStepFunctions", "ListStateMachineVersions", {})
|
|
2271
363
|
.n("SFNClient", "ListStateMachineVersionsCommand")
|
|
2272
|
-
.sc(ListStateMachineVersions$)
|
|
364
|
+
.sc(schemas_0.ListStateMachineVersions$)
|
|
2273
365
|
.build() {
|
|
2274
366
|
}
|
|
2275
367
|
|
|
@@ -2281,7 +373,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2281
373
|
})
|
|
2282
374
|
.s("AWSStepFunctions", "ListTagsForResource", {})
|
|
2283
375
|
.n("SFNClient", "ListTagsForResourceCommand")
|
|
2284
|
-
.sc(ListTagsForResource$)
|
|
376
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2285
377
|
.build() {
|
|
2286
378
|
}
|
|
2287
379
|
|
|
@@ -2293,7 +385,7 @@ class PublishStateMachineVersionCommand extends smithyClient.Command
|
|
|
2293
385
|
})
|
|
2294
386
|
.s("AWSStepFunctions", "PublishStateMachineVersion", {})
|
|
2295
387
|
.n("SFNClient", "PublishStateMachineVersionCommand")
|
|
2296
|
-
.sc(PublishStateMachineVersion$)
|
|
388
|
+
.sc(schemas_0.PublishStateMachineVersion$)
|
|
2297
389
|
.build() {
|
|
2298
390
|
}
|
|
2299
391
|
|
|
@@ -2305,7 +397,7 @@ class RedriveExecutionCommand extends smithyClient.Command
|
|
|
2305
397
|
})
|
|
2306
398
|
.s("AWSStepFunctions", "RedriveExecution", {})
|
|
2307
399
|
.n("SFNClient", "RedriveExecutionCommand")
|
|
2308
|
-
.sc(RedriveExecution$)
|
|
400
|
+
.sc(schemas_0.RedriveExecution$)
|
|
2309
401
|
.build() {
|
|
2310
402
|
}
|
|
2311
403
|
|
|
@@ -2317,7 +409,7 @@ class SendTaskFailureCommand extends smithyClient.Command
|
|
|
2317
409
|
})
|
|
2318
410
|
.s("AWSStepFunctions", "SendTaskFailure", {})
|
|
2319
411
|
.n("SFNClient", "SendTaskFailureCommand")
|
|
2320
|
-
.sc(SendTaskFailure$)
|
|
412
|
+
.sc(schemas_0.SendTaskFailure$)
|
|
2321
413
|
.build() {
|
|
2322
414
|
}
|
|
2323
415
|
|
|
@@ -2329,7 +421,7 @@ class SendTaskHeartbeatCommand extends smithyClient.Command
|
|
|
2329
421
|
})
|
|
2330
422
|
.s("AWSStepFunctions", "SendTaskHeartbeat", {})
|
|
2331
423
|
.n("SFNClient", "SendTaskHeartbeatCommand")
|
|
2332
|
-
.sc(SendTaskHeartbeat$)
|
|
424
|
+
.sc(schemas_0.SendTaskHeartbeat$)
|
|
2333
425
|
.build() {
|
|
2334
426
|
}
|
|
2335
427
|
|
|
@@ -2341,7 +433,7 @@ class SendTaskSuccessCommand extends smithyClient.Command
|
|
|
2341
433
|
})
|
|
2342
434
|
.s("AWSStepFunctions", "SendTaskSuccess", {})
|
|
2343
435
|
.n("SFNClient", "SendTaskSuccessCommand")
|
|
2344
|
-
.sc(SendTaskSuccess$)
|
|
436
|
+
.sc(schemas_0.SendTaskSuccess$)
|
|
2345
437
|
.build() {
|
|
2346
438
|
}
|
|
2347
439
|
|
|
@@ -2353,7 +445,7 @@ class StartExecutionCommand extends smithyClient.Command
|
|
|
2353
445
|
})
|
|
2354
446
|
.s("AWSStepFunctions", "StartExecution", {})
|
|
2355
447
|
.n("SFNClient", "StartExecutionCommand")
|
|
2356
|
-
.sc(StartExecution$)
|
|
448
|
+
.sc(schemas_0.StartExecution$)
|
|
2357
449
|
.build() {
|
|
2358
450
|
}
|
|
2359
451
|
|
|
@@ -2365,7 +457,7 @@ class StartSyncExecutionCommand extends smithyClient.Command
|
|
|
2365
457
|
})
|
|
2366
458
|
.s("AWSStepFunctions", "StartSyncExecution", {})
|
|
2367
459
|
.n("SFNClient", "StartSyncExecutionCommand")
|
|
2368
|
-
.sc(StartSyncExecution$)
|
|
460
|
+
.sc(schemas_0.StartSyncExecution$)
|
|
2369
461
|
.build() {
|
|
2370
462
|
}
|
|
2371
463
|
|
|
@@ -2377,7 +469,7 @@ class StopExecutionCommand extends smithyClient.Command
|
|
|
2377
469
|
})
|
|
2378
470
|
.s("AWSStepFunctions", "StopExecution", {})
|
|
2379
471
|
.n("SFNClient", "StopExecutionCommand")
|
|
2380
|
-
.sc(StopExecution$)
|
|
472
|
+
.sc(schemas_0.StopExecution$)
|
|
2381
473
|
.build() {
|
|
2382
474
|
}
|
|
2383
475
|
|
|
@@ -2389,7 +481,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2389
481
|
})
|
|
2390
482
|
.s("AWSStepFunctions", "TagResource", {})
|
|
2391
483
|
.n("SFNClient", "TagResourceCommand")
|
|
2392
|
-
.sc(TagResource$)
|
|
484
|
+
.sc(schemas_0.TagResource$)
|
|
2393
485
|
.build() {
|
|
2394
486
|
}
|
|
2395
487
|
|
|
@@ -2401,7 +493,7 @@ class TestStateCommand extends smithyClient.Command
|
|
|
2401
493
|
})
|
|
2402
494
|
.s("AWSStepFunctions", "TestState", {})
|
|
2403
495
|
.n("SFNClient", "TestStateCommand")
|
|
2404
|
-
.sc(TestState$)
|
|
496
|
+
.sc(schemas_0.TestState$)
|
|
2405
497
|
.build() {
|
|
2406
498
|
}
|
|
2407
499
|
|
|
@@ -2413,7 +505,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2413
505
|
})
|
|
2414
506
|
.s("AWSStepFunctions", "UntagResource", {})
|
|
2415
507
|
.n("SFNClient", "UntagResourceCommand")
|
|
2416
|
-
.sc(UntagResource$)
|
|
508
|
+
.sc(schemas_0.UntagResource$)
|
|
2417
509
|
.build() {
|
|
2418
510
|
}
|
|
2419
511
|
|
|
@@ -2425,7 +517,7 @@ class UpdateMapRunCommand extends smithyClient.Command
|
|
|
2425
517
|
})
|
|
2426
518
|
.s("AWSStepFunctions", "UpdateMapRun", {})
|
|
2427
519
|
.n("SFNClient", "UpdateMapRunCommand")
|
|
2428
|
-
.sc(UpdateMapRun$)
|
|
520
|
+
.sc(schemas_0.UpdateMapRun$)
|
|
2429
521
|
.build() {
|
|
2430
522
|
}
|
|
2431
523
|
|
|
@@ -2437,7 +529,7 @@ class UpdateStateMachineAliasCommand extends smithyClient.Command
|
|
|
2437
529
|
})
|
|
2438
530
|
.s("AWSStepFunctions", "UpdateStateMachineAlias", {})
|
|
2439
531
|
.n("SFNClient", "UpdateStateMachineAliasCommand")
|
|
2440
|
-
.sc(UpdateStateMachineAlias$)
|
|
532
|
+
.sc(schemas_0.UpdateStateMachineAlias$)
|
|
2441
533
|
.build() {
|
|
2442
534
|
}
|
|
2443
535
|
|
|
@@ -2449,7 +541,7 @@ class UpdateStateMachineCommand extends smithyClient.Command
|
|
|
2449
541
|
})
|
|
2450
542
|
.s("AWSStepFunctions", "UpdateStateMachine", {})
|
|
2451
543
|
.n("SFNClient", "UpdateStateMachineCommand")
|
|
2452
|
-
.sc(UpdateStateMachine$)
|
|
544
|
+
.sc(schemas_0.UpdateStateMachine$)
|
|
2453
545
|
.build() {
|
|
2454
546
|
}
|
|
2455
547
|
|
|
@@ -2461,7 +553,7 @@ class ValidateStateMachineDefinitionCommand extends smithyClient.Command
|
|
|
2461
553
|
})
|
|
2462
554
|
.s("AWSStepFunctions", "ValidateStateMachineDefinition", {})
|
|
2463
555
|
.n("SFNClient", "ValidateStateMachineDefinitionCommand")
|
|
2464
|
-
.sc(ValidateStateMachineDefinition$)
|
|
556
|
+
.sc(schemas_0.ValidateStateMachineDefinition$)
|
|
2465
557
|
.build() {
|
|
2466
558
|
}
|
|
2467
559
|
|
|
@@ -2685,307 +777,81 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2685
777
|
enumerable: true,
|
|
2686
778
|
get: function () { return smithyClient.Client; }
|
|
2687
779
|
});
|
|
2688
|
-
exports
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
exports.ActivityFailedEventDetails$ = ActivityFailedEventDetails$;
|
|
2693
|
-
exports.ActivityLimitExceeded = ActivityLimitExceeded;
|
|
2694
|
-
exports.ActivityLimitExceeded$ = ActivityLimitExceeded$;
|
|
2695
|
-
exports.ActivityListItem$ = ActivityListItem$;
|
|
2696
|
-
exports.ActivityScheduleFailedEventDetails$ = ActivityScheduleFailedEventDetails$;
|
|
2697
|
-
exports.ActivityScheduledEventDetails$ = ActivityScheduledEventDetails$;
|
|
2698
|
-
exports.ActivityStartedEventDetails$ = ActivityStartedEventDetails$;
|
|
2699
|
-
exports.ActivitySucceededEventDetails$ = ActivitySucceededEventDetails$;
|
|
2700
|
-
exports.ActivityTimedOutEventDetails$ = ActivityTimedOutEventDetails$;
|
|
2701
|
-
exports.ActivityWorkerLimitExceeded = ActivityWorkerLimitExceeded;
|
|
2702
|
-
exports.ActivityWorkerLimitExceeded$ = ActivityWorkerLimitExceeded$;
|
|
2703
|
-
exports.AssignedVariablesDetails$ = AssignedVariablesDetails$;
|
|
2704
|
-
exports.BillingDetails$ = BillingDetails$;
|
|
2705
|
-
exports.CloudWatchEventsExecutionDataDetails$ = CloudWatchEventsExecutionDataDetails$;
|
|
2706
|
-
exports.CloudWatchLogsLogGroup$ = CloudWatchLogsLogGroup$;
|
|
2707
|
-
exports.ConflictException = ConflictException;
|
|
2708
|
-
exports.ConflictException$ = ConflictException$;
|
|
2709
|
-
exports.CreateActivity$ = CreateActivity$;
|
|
780
|
+
Object.defineProperty(exports, "SFNServiceException", {
|
|
781
|
+
enumerable: true,
|
|
782
|
+
get: function () { return SFNServiceException.SFNServiceException; }
|
|
783
|
+
});
|
|
2710
784
|
exports.CreateActivityCommand = CreateActivityCommand;
|
|
2711
|
-
exports.CreateActivityInput$ = CreateActivityInput$;
|
|
2712
|
-
exports.CreateActivityOutput$ = CreateActivityOutput$;
|
|
2713
|
-
exports.CreateStateMachine$ = CreateStateMachine$;
|
|
2714
|
-
exports.CreateStateMachineAlias$ = CreateStateMachineAlias$;
|
|
2715
785
|
exports.CreateStateMachineAliasCommand = CreateStateMachineAliasCommand;
|
|
2716
|
-
exports.CreateStateMachineAliasInput$ = CreateStateMachineAliasInput$;
|
|
2717
|
-
exports.CreateStateMachineAliasOutput$ = CreateStateMachineAliasOutput$;
|
|
2718
786
|
exports.CreateStateMachineCommand = CreateStateMachineCommand;
|
|
2719
|
-
exports.CreateStateMachineInput$ = CreateStateMachineInput$;
|
|
2720
|
-
exports.CreateStateMachineOutput$ = CreateStateMachineOutput$;
|
|
2721
|
-
exports.DeleteActivity$ = DeleteActivity$;
|
|
2722
787
|
exports.DeleteActivityCommand = DeleteActivityCommand;
|
|
2723
|
-
exports.DeleteActivityInput$ = DeleteActivityInput$;
|
|
2724
|
-
exports.DeleteActivityOutput$ = DeleteActivityOutput$;
|
|
2725
|
-
exports.DeleteStateMachine$ = DeleteStateMachine$;
|
|
2726
|
-
exports.DeleteStateMachineAlias$ = DeleteStateMachineAlias$;
|
|
2727
788
|
exports.DeleteStateMachineAliasCommand = DeleteStateMachineAliasCommand;
|
|
2728
|
-
exports.DeleteStateMachineAliasInput$ = DeleteStateMachineAliasInput$;
|
|
2729
|
-
exports.DeleteStateMachineAliasOutput$ = DeleteStateMachineAliasOutput$;
|
|
2730
789
|
exports.DeleteStateMachineCommand = DeleteStateMachineCommand;
|
|
2731
|
-
exports.DeleteStateMachineInput$ = DeleteStateMachineInput$;
|
|
2732
|
-
exports.DeleteStateMachineOutput$ = DeleteStateMachineOutput$;
|
|
2733
|
-
exports.DeleteStateMachineVersion$ = DeleteStateMachineVersion$;
|
|
2734
790
|
exports.DeleteStateMachineVersionCommand = DeleteStateMachineVersionCommand;
|
|
2735
|
-
exports.DeleteStateMachineVersionInput$ = DeleteStateMachineVersionInput$;
|
|
2736
|
-
exports.DeleteStateMachineVersionOutput$ = DeleteStateMachineVersionOutput$;
|
|
2737
|
-
exports.DescribeActivity$ = DescribeActivity$;
|
|
2738
791
|
exports.DescribeActivityCommand = DescribeActivityCommand;
|
|
2739
|
-
exports.DescribeActivityInput$ = DescribeActivityInput$;
|
|
2740
|
-
exports.DescribeActivityOutput$ = DescribeActivityOutput$;
|
|
2741
|
-
exports.DescribeExecution$ = DescribeExecution$;
|
|
2742
792
|
exports.DescribeExecutionCommand = DescribeExecutionCommand;
|
|
2743
|
-
exports.DescribeExecutionInput$ = DescribeExecutionInput$;
|
|
2744
|
-
exports.DescribeExecutionOutput$ = DescribeExecutionOutput$;
|
|
2745
|
-
exports.DescribeMapRun$ = DescribeMapRun$;
|
|
2746
793
|
exports.DescribeMapRunCommand = DescribeMapRunCommand;
|
|
2747
|
-
exports.DescribeMapRunInput$ = DescribeMapRunInput$;
|
|
2748
|
-
exports.DescribeMapRunOutput$ = DescribeMapRunOutput$;
|
|
2749
|
-
exports.DescribeStateMachine$ = DescribeStateMachine$;
|
|
2750
|
-
exports.DescribeStateMachineAlias$ = DescribeStateMachineAlias$;
|
|
2751
794
|
exports.DescribeStateMachineAliasCommand = DescribeStateMachineAliasCommand;
|
|
2752
|
-
exports.DescribeStateMachineAliasInput$ = DescribeStateMachineAliasInput$;
|
|
2753
|
-
exports.DescribeStateMachineAliasOutput$ = DescribeStateMachineAliasOutput$;
|
|
2754
795
|
exports.DescribeStateMachineCommand = DescribeStateMachineCommand;
|
|
2755
|
-
exports.DescribeStateMachineForExecution$ = DescribeStateMachineForExecution$;
|
|
2756
796
|
exports.DescribeStateMachineForExecutionCommand = DescribeStateMachineForExecutionCommand;
|
|
2757
|
-
exports.DescribeStateMachineForExecutionInput$ = DescribeStateMachineForExecutionInput$;
|
|
2758
|
-
exports.DescribeStateMachineForExecutionOutput$ = DescribeStateMachineForExecutionOutput$;
|
|
2759
|
-
exports.DescribeStateMachineInput$ = DescribeStateMachineInput$;
|
|
2760
|
-
exports.DescribeStateMachineOutput$ = DescribeStateMachineOutput$;
|
|
2761
|
-
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
2762
797
|
exports.EncryptionType = EncryptionType;
|
|
2763
|
-
exports.EvaluationFailedEventDetails$ = EvaluationFailedEventDetails$;
|
|
2764
|
-
exports.ExecutionAbortedEventDetails$ = ExecutionAbortedEventDetails$;
|
|
2765
|
-
exports.ExecutionAlreadyExists = ExecutionAlreadyExists;
|
|
2766
|
-
exports.ExecutionAlreadyExists$ = ExecutionAlreadyExists$;
|
|
2767
|
-
exports.ExecutionDoesNotExist = ExecutionDoesNotExist;
|
|
2768
|
-
exports.ExecutionDoesNotExist$ = ExecutionDoesNotExist$;
|
|
2769
|
-
exports.ExecutionFailedEventDetails$ = ExecutionFailedEventDetails$;
|
|
2770
|
-
exports.ExecutionLimitExceeded = ExecutionLimitExceeded;
|
|
2771
|
-
exports.ExecutionLimitExceeded$ = ExecutionLimitExceeded$;
|
|
2772
|
-
exports.ExecutionListItem$ = ExecutionListItem$;
|
|
2773
|
-
exports.ExecutionNotRedrivable = ExecutionNotRedrivable;
|
|
2774
|
-
exports.ExecutionNotRedrivable$ = ExecutionNotRedrivable$;
|
|
2775
798
|
exports.ExecutionRedriveFilter = ExecutionRedriveFilter;
|
|
2776
799
|
exports.ExecutionRedriveStatus = ExecutionRedriveStatus;
|
|
2777
|
-
exports.ExecutionRedrivenEventDetails$ = ExecutionRedrivenEventDetails$;
|
|
2778
|
-
exports.ExecutionStartedEventDetails$ = ExecutionStartedEventDetails$;
|
|
2779
800
|
exports.ExecutionStatus = ExecutionStatus;
|
|
2780
|
-
exports.ExecutionSucceededEventDetails$ = ExecutionSucceededEventDetails$;
|
|
2781
|
-
exports.ExecutionTimedOutEventDetails$ = ExecutionTimedOutEventDetails$;
|
|
2782
|
-
exports.GetActivityTask$ = GetActivityTask$;
|
|
2783
801
|
exports.GetActivityTaskCommand = GetActivityTaskCommand;
|
|
2784
|
-
exports.GetActivityTaskInput$ = GetActivityTaskInput$;
|
|
2785
|
-
exports.GetActivityTaskOutput$ = GetActivityTaskOutput$;
|
|
2786
|
-
exports.GetExecutionHistory$ = GetExecutionHistory$;
|
|
2787
802
|
exports.GetExecutionHistoryCommand = GetExecutionHistoryCommand;
|
|
2788
|
-
exports.GetExecutionHistoryInput$ = GetExecutionHistoryInput$;
|
|
2789
|
-
exports.GetExecutionHistoryOutput$ = GetExecutionHistoryOutput$;
|
|
2790
|
-
exports.HistoryEvent$ = HistoryEvent$;
|
|
2791
|
-
exports.HistoryEventExecutionDataDetails$ = HistoryEventExecutionDataDetails$;
|
|
2792
803
|
exports.HistoryEventType = HistoryEventType;
|
|
2793
804
|
exports.IncludedData = IncludedData;
|
|
2794
|
-
exports.InspectionData$ = InspectionData$;
|
|
2795
|
-
exports.InspectionDataRequest$ = InspectionDataRequest$;
|
|
2796
|
-
exports.InspectionDataResponse$ = InspectionDataResponse$;
|
|
2797
|
-
exports.InspectionErrorDetails$ = InspectionErrorDetails$;
|
|
2798
805
|
exports.InspectionLevel = InspectionLevel;
|
|
2799
|
-
exports.InvalidArn = InvalidArn;
|
|
2800
|
-
exports.InvalidArn$ = InvalidArn$;
|
|
2801
|
-
exports.InvalidDefinition = InvalidDefinition;
|
|
2802
|
-
exports.InvalidDefinition$ = InvalidDefinition$;
|
|
2803
|
-
exports.InvalidEncryptionConfiguration = InvalidEncryptionConfiguration;
|
|
2804
|
-
exports.InvalidEncryptionConfiguration$ = InvalidEncryptionConfiguration$;
|
|
2805
|
-
exports.InvalidExecutionInput = InvalidExecutionInput;
|
|
2806
|
-
exports.InvalidExecutionInput$ = InvalidExecutionInput$;
|
|
2807
|
-
exports.InvalidLoggingConfiguration = InvalidLoggingConfiguration;
|
|
2808
|
-
exports.InvalidLoggingConfiguration$ = InvalidLoggingConfiguration$;
|
|
2809
|
-
exports.InvalidName = InvalidName;
|
|
2810
|
-
exports.InvalidName$ = InvalidName$;
|
|
2811
|
-
exports.InvalidOutput = InvalidOutput;
|
|
2812
|
-
exports.InvalidOutput$ = InvalidOutput$;
|
|
2813
|
-
exports.InvalidToken = InvalidToken;
|
|
2814
|
-
exports.InvalidToken$ = InvalidToken$;
|
|
2815
|
-
exports.InvalidTracingConfiguration = InvalidTracingConfiguration;
|
|
2816
|
-
exports.InvalidTracingConfiguration$ = InvalidTracingConfiguration$;
|
|
2817
|
-
exports.KmsAccessDeniedException = KmsAccessDeniedException;
|
|
2818
|
-
exports.KmsAccessDeniedException$ = KmsAccessDeniedException$;
|
|
2819
|
-
exports.KmsInvalidStateException = KmsInvalidStateException;
|
|
2820
|
-
exports.KmsInvalidStateException$ = KmsInvalidStateException$;
|
|
2821
806
|
exports.KmsKeyState = KmsKeyState;
|
|
2822
|
-
exports.KmsThrottlingException = KmsThrottlingException;
|
|
2823
|
-
exports.KmsThrottlingException$ = KmsThrottlingException$;
|
|
2824
|
-
exports.LambdaFunctionFailedEventDetails$ = LambdaFunctionFailedEventDetails$;
|
|
2825
|
-
exports.LambdaFunctionScheduleFailedEventDetails$ = LambdaFunctionScheduleFailedEventDetails$;
|
|
2826
|
-
exports.LambdaFunctionScheduledEventDetails$ = LambdaFunctionScheduledEventDetails$;
|
|
2827
|
-
exports.LambdaFunctionStartFailedEventDetails$ = LambdaFunctionStartFailedEventDetails$;
|
|
2828
|
-
exports.LambdaFunctionSucceededEventDetails$ = LambdaFunctionSucceededEventDetails$;
|
|
2829
|
-
exports.LambdaFunctionTimedOutEventDetails$ = LambdaFunctionTimedOutEventDetails$;
|
|
2830
|
-
exports.ListActivities$ = ListActivities$;
|
|
2831
807
|
exports.ListActivitiesCommand = ListActivitiesCommand;
|
|
2832
|
-
exports.ListActivitiesInput$ = ListActivitiesInput$;
|
|
2833
|
-
exports.ListActivitiesOutput$ = ListActivitiesOutput$;
|
|
2834
|
-
exports.ListExecutions$ = ListExecutions$;
|
|
2835
808
|
exports.ListExecutionsCommand = ListExecutionsCommand;
|
|
2836
|
-
exports.ListExecutionsInput$ = ListExecutionsInput$;
|
|
2837
|
-
exports.ListExecutionsOutput$ = ListExecutionsOutput$;
|
|
2838
|
-
exports.ListMapRuns$ = ListMapRuns$;
|
|
2839
809
|
exports.ListMapRunsCommand = ListMapRunsCommand;
|
|
2840
|
-
exports.ListMapRunsInput$ = ListMapRunsInput$;
|
|
2841
|
-
exports.ListMapRunsOutput$ = ListMapRunsOutput$;
|
|
2842
|
-
exports.ListStateMachineAliases$ = ListStateMachineAliases$;
|
|
2843
810
|
exports.ListStateMachineAliasesCommand = ListStateMachineAliasesCommand;
|
|
2844
|
-
exports.ListStateMachineAliasesInput$ = ListStateMachineAliasesInput$;
|
|
2845
|
-
exports.ListStateMachineAliasesOutput$ = ListStateMachineAliasesOutput$;
|
|
2846
|
-
exports.ListStateMachineVersions$ = ListStateMachineVersions$;
|
|
2847
811
|
exports.ListStateMachineVersionsCommand = ListStateMachineVersionsCommand;
|
|
2848
|
-
exports.ListStateMachineVersionsInput$ = ListStateMachineVersionsInput$;
|
|
2849
|
-
exports.ListStateMachineVersionsOutput$ = ListStateMachineVersionsOutput$;
|
|
2850
|
-
exports.ListStateMachines$ = ListStateMachines$;
|
|
2851
812
|
exports.ListStateMachinesCommand = ListStateMachinesCommand;
|
|
2852
|
-
exports.ListStateMachinesInput$ = ListStateMachinesInput$;
|
|
2853
|
-
exports.ListStateMachinesOutput$ = ListStateMachinesOutput$;
|
|
2854
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2855
813
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2856
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2857
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2858
|
-
exports.LogDestination$ = LogDestination$;
|
|
2859
814
|
exports.LogLevel = LogLevel;
|
|
2860
|
-
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
2861
|
-
exports.MapIterationEventDetails$ = MapIterationEventDetails$;
|
|
2862
|
-
exports.MapRunExecutionCounts$ = MapRunExecutionCounts$;
|
|
2863
|
-
exports.MapRunFailedEventDetails$ = MapRunFailedEventDetails$;
|
|
2864
|
-
exports.MapRunItemCounts$ = MapRunItemCounts$;
|
|
2865
|
-
exports.MapRunListItem$ = MapRunListItem$;
|
|
2866
|
-
exports.MapRunRedrivenEventDetails$ = MapRunRedrivenEventDetails$;
|
|
2867
|
-
exports.MapRunStartedEventDetails$ = MapRunStartedEventDetails$;
|
|
2868
815
|
exports.MapRunStatus = MapRunStatus;
|
|
2869
|
-
exports.MapStateStartedEventDetails$ = MapStateStartedEventDetails$;
|
|
2870
|
-
exports.MissingRequiredParameter = MissingRequiredParameter;
|
|
2871
|
-
exports.MissingRequiredParameter$ = MissingRequiredParameter$;
|
|
2872
|
-
exports.MockErrorOutput$ = MockErrorOutput$;
|
|
2873
|
-
exports.MockInput$ = MockInput$;
|
|
2874
816
|
exports.MockResponseValidationMode = MockResponseValidationMode;
|
|
2875
|
-
exports.PublishStateMachineVersion$ = PublishStateMachineVersion$;
|
|
2876
817
|
exports.PublishStateMachineVersionCommand = PublishStateMachineVersionCommand;
|
|
2877
|
-
exports.PublishStateMachineVersionInput$ = PublishStateMachineVersionInput$;
|
|
2878
|
-
exports.PublishStateMachineVersionOutput$ = PublishStateMachineVersionOutput$;
|
|
2879
|
-
exports.RedriveExecution$ = RedriveExecution$;
|
|
2880
818
|
exports.RedriveExecutionCommand = RedriveExecutionCommand;
|
|
2881
|
-
exports.RedriveExecutionInput$ = RedriveExecutionInput$;
|
|
2882
|
-
exports.RedriveExecutionOutput$ = RedriveExecutionOutput$;
|
|
2883
|
-
exports.ResourceNotFound = ResourceNotFound;
|
|
2884
|
-
exports.ResourceNotFound$ = ResourceNotFound$;
|
|
2885
|
-
exports.RoutingConfigurationListItem$ = RoutingConfigurationListItem$;
|
|
2886
819
|
exports.SFN = SFN;
|
|
2887
820
|
exports.SFNClient = SFNClient;
|
|
2888
|
-
exports.SFNServiceException = SFNServiceException;
|
|
2889
|
-
exports.SFNServiceException$ = SFNServiceException$;
|
|
2890
|
-
exports.SendTaskFailure$ = SendTaskFailure$;
|
|
2891
821
|
exports.SendTaskFailureCommand = SendTaskFailureCommand;
|
|
2892
|
-
exports.SendTaskFailureInput$ = SendTaskFailureInput$;
|
|
2893
|
-
exports.SendTaskFailureOutput$ = SendTaskFailureOutput$;
|
|
2894
|
-
exports.SendTaskHeartbeat$ = SendTaskHeartbeat$;
|
|
2895
822
|
exports.SendTaskHeartbeatCommand = SendTaskHeartbeatCommand;
|
|
2896
|
-
exports.SendTaskHeartbeatInput$ = SendTaskHeartbeatInput$;
|
|
2897
|
-
exports.SendTaskHeartbeatOutput$ = SendTaskHeartbeatOutput$;
|
|
2898
|
-
exports.SendTaskSuccess$ = SendTaskSuccess$;
|
|
2899
823
|
exports.SendTaskSuccessCommand = SendTaskSuccessCommand;
|
|
2900
|
-
exports.SendTaskSuccessInput$ = SendTaskSuccessInput$;
|
|
2901
|
-
exports.SendTaskSuccessOutput$ = SendTaskSuccessOutput$;
|
|
2902
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2903
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2904
|
-
exports.StartExecution$ = StartExecution$;
|
|
2905
824
|
exports.StartExecutionCommand = StartExecutionCommand;
|
|
2906
|
-
exports.StartExecutionInput$ = StartExecutionInput$;
|
|
2907
|
-
exports.StartExecutionOutput$ = StartExecutionOutput$;
|
|
2908
|
-
exports.StartSyncExecution$ = StartSyncExecution$;
|
|
2909
825
|
exports.StartSyncExecutionCommand = StartSyncExecutionCommand;
|
|
2910
|
-
exports.StartSyncExecutionInput$ = StartSyncExecutionInput$;
|
|
2911
|
-
exports.StartSyncExecutionOutput$ = StartSyncExecutionOutput$;
|
|
2912
|
-
exports.StateEnteredEventDetails$ = StateEnteredEventDetails$;
|
|
2913
|
-
exports.StateExitedEventDetails$ = StateExitedEventDetails$;
|
|
2914
|
-
exports.StateMachineAliasListItem$ = StateMachineAliasListItem$;
|
|
2915
|
-
exports.StateMachineAlreadyExists = StateMachineAlreadyExists;
|
|
2916
|
-
exports.StateMachineAlreadyExists$ = StateMachineAlreadyExists$;
|
|
2917
|
-
exports.StateMachineDeleting = StateMachineDeleting;
|
|
2918
|
-
exports.StateMachineDeleting$ = StateMachineDeleting$;
|
|
2919
|
-
exports.StateMachineDoesNotExist = StateMachineDoesNotExist;
|
|
2920
|
-
exports.StateMachineDoesNotExist$ = StateMachineDoesNotExist$;
|
|
2921
|
-
exports.StateMachineLimitExceeded = StateMachineLimitExceeded;
|
|
2922
|
-
exports.StateMachineLimitExceeded$ = StateMachineLimitExceeded$;
|
|
2923
|
-
exports.StateMachineListItem$ = StateMachineListItem$;
|
|
2924
826
|
exports.StateMachineStatus = StateMachineStatus;
|
|
2925
827
|
exports.StateMachineType = StateMachineType;
|
|
2926
|
-
exports.StateMachineTypeNotSupported = StateMachineTypeNotSupported;
|
|
2927
|
-
exports.StateMachineTypeNotSupported$ = StateMachineTypeNotSupported$;
|
|
2928
|
-
exports.StateMachineVersionListItem$ = StateMachineVersionListItem$;
|
|
2929
|
-
exports.StopExecution$ = StopExecution$;
|
|
2930
828
|
exports.StopExecutionCommand = StopExecutionCommand;
|
|
2931
|
-
exports.StopExecutionInput$ = StopExecutionInput$;
|
|
2932
|
-
exports.StopExecutionOutput$ = StopExecutionOutput$;
|
|
2933
829
|
exports.SyncExecutionStatus = SyncExecutionStatus;
|
|
2934
|
-
exports.Tag$ = Tag$;
|
|
2935
|
-
exports.TagResource$ = TagResource$;
|
|
2936
830
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2937
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
2938
|
-
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
2939
|
-
exports.TaskCredentials$ = TaskCredentials$;
|
|
2940
|
-
exports.TaskDoesNotExist = TaskDoesNotExist;
|
|
2941
|
-
exports.TaskDoesNotExist$ = TaskDoesNotExist$;
|
|
2942
|
-
exports.TaskFailedEventDetails$ = TaskFailedEventDetails$;
|
|
2943
|
-
exports.TaskScheduledEventDetails$ = TaskScheduledEventDetails$;
|
|
2944
|
-
exports.TaskStartFailedEventDetails$ = TaskStartFailedEventDetails$;
|
|
2945
|
-
exports.TaskStartedEventDetails$ = TaskStartedEventDetails$;
|
|
2946
|
-
exports.TaskSubmitFailedEventDetails$ = TaskSubmitFailedEventDetails$;
|
|
2947
|
-
exports.TaskSubmittedEventDetails$ = TaskSubmittedEventDetails$;
|
|
2948
|
-
exports.TaskSucceededEventDetails$ = TaskSucceededEventDetails$;
|
|
2949
|
-
exports.TaskTimedOut = TaskTimedOut;
|
|
2950
|
-
exports.TaskTimedOut$ = TaskTimedOut$;
|
|
2951
|
-
exports.TaskTimedOutEventDetails$ = TaskTimedOutEventDetails$;
|
|
2952
831
|
exports.TestExecutionStatus = TestExecutionStatus;
|
|
2953
|
-
exports.TestState$ = TestState$;
|
|
2954
832
|
exports.TestStateCommand = TestStateCommand;
|
|
2955
|
-
exports.TestStateConfiguration$ = TestStateConfiguration$;
|
|
2956
|
-
exports.TestStateInput$ = TestStateInput$;
|
|
2957
|
-
exports.TestStateOutput$ = TestStateOutput$;
|
|
2958
|
-
exports.TooManyTags = TooManyTags;
|
|
2959
|
-
exports.TooManyTags$ = TooManyTags$;
|
|
2960
|
-
exports.TracingConfiguration$ = TracingConfiguration$;
|
|
2961
|
-
exports.UntagResource$ = UntagResource$;
|
|
2962
833
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2963
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2964
|
-
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
2965
|
-
exports.UpdateMapRun$ = UpdateMapRun$;
|
|
2966
834
|
exports.UpdateMapRunCommand = UpdateMapRunCommand;
|
|
2967
|
-
exports.UpdateMapRunInput$ = UpdateMapRunInput$;
|
|
2968
|
-
exports.UpdateMapRunOutput$ = UpdateMapRunOutput$;
|
|
2969
|
-
exports.UpdateStateMachine$ = UpdateStateMachine$;
|
|
2970
|
-
exports.UpdateStateMachineAlias$ = UpdateStateMachineAlias$;
|
|
2971
835
|
exports.UpdateStateMachineAliasCommand = UpdateStateMachineAliasCommand;
|
|
2972
|
-
exports.UpdateStateMachineAliasInput$ = UpdateStateMachineAliasInput$;
|
|
2973
|
-
exports.UpdateStateMachineAliasOutput$ = UpdateStateMachineAliasOutput$;
|
|
2974
836
|
exports.UpdateStateMachineCommand = UpdateStateMachineCommand;
|
|
2975
|
-
exports.UpdateStateMachineInput$ = UpdateStateMachineInput$;
|
|
2976
|
-
exports.UpdateStateMachineOutput$ = UpdateStateMachineOutput$;
|
|
2977
|
-
exports.ValidateStateMachineDefinition$ = ValidateStateMachineDefinition$;
|
|
2978
837
|
exports.ValidateStateMachineDefinitionCommand = ValidateStateMachineDefinitionCommand;
|
|
2979
|
-
exports.ValidateStateMachineDefinitionDiagnostic$ = ValidateStateMachineDefinitionDiagnostic$;
|
|
2980
|
-
exports.ValidateStateMachineDefinitionInput$ = ValidateStateMachineDefinitionInput$;
|
|
2981
|
-
exports.ValidateStateMachineDefinitionOutput$ = ValidateStateMachineDefinitionOutput$;
|
|
2982
838
|
exports.ValidateStateMachineDefinitionResultCode = ValidateStateMachineDefinitionResultCode;
|
|
2983
839
|
exports.ValidateStateMachineDefinitionSeverity = ValidateStateMachineDefinitionSeverity;
|
|
2984
|
-
exports.ValidationException = ValidationException;
|
|
2985
|
-
exports.ValidationException$ = ValidationException$;
|
|
2986
840
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2987
841
|
exports.paginateGetExecutionHistory = paginateGetExecutionHistory;
|
|
2988
842
|
exports.paginateListActivities = paginateListActivities;
|
|
2989
843
|
exports.paginateListExecutions = paginateListExecutions;
|
|
2990
844
|
exports.paginateListMapRuns = paginateListMapRuns;
|
|
2991
845
|
exports.paginateListStateMachines = paginateListStateMachines;
|
|
846
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
847
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
848
|
+
enumerable: true,
|
|
849
|
+
get: function () { return schemas_0[k]; }
|
|
850
|
+
});
|
|
851
|
+
});
|
|
852
|
+
Object.keys(errors).forEach(function (k) {
|
|
853
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
854
|
+
enumerable: true,
|
|
855
|
+
get: function () { return errors[k]; }
|
|
856
|
+
});
|
|
857
|
+
});
|