@aws-sdk/client-sfn 3.952.0 → 3.953.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.
Files changed (57) hide show
  1. package/dist-cjs/index.js +756 -534
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/CreateActivityCommand.js +2 -2
  4. package/dist-es/commands/CreateStateMachineAliasCommand.js +2 -2
  5. package/dist-es/commands/CreateStateMachineCommand.js +2 -2
  6. package/dist-es/commands/DeleteActivityCommand.js +2 -2
  7. package/dist-es/commands/DeleteStateMachineAliasCommand.js +2 -2
  8. package/dist-es/commands/DeleteStateMachineCommand.js +2 -2
  9. package/dist-es/commands/DeleteStateMachineVersionCommand.js +2 -2
  10. package/dist-es/commands/DescribeActivityCommand.js +2 -2
  11. package/dist-es/commands/DescribeExecutionCommand.js +2 -2
  12. package/dist-es/commands/DescribeMapRunCommand.js +2 -2
  13. package/dist-es/commands/DescribeStateMachineAliasCommand.js +2 -2
  14. package/dist-es/commands/DescribeStateMachineCommand.js +2 -2
  15. package/dist-es/commands/DescribeStateMachineForExecutionCommand.js +2 -2
  16. package/dist-es/commands/GetActivityTaskCommand.js +2 -2
  17. package/dist-es/commands/GetExecutionHistoryCommand.js +2 -2
  18. package/dist-es/commands/ListActivitiesCommand.js +2 -2
  19. package/dist-es/commands/ListExecutionsCommand.js +2 -2
  20. package/dist-es/commands/ListMapRunsCommand.js +2 -2
  21. package/dist-es/commands/ListStateMachineAliasesCommand.js +2 -2
  22. package/dist-es/commands/ListStateMachineVersionsCommand.js +2 -2
  23. package/dist-es/commands/ListStateMachinesCommand.js +2 -2
  24. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  25. package/dist-es/commands/PublishStateMachineVersionCommand.js +2 -2
  26. package/dist-es/commands/RedriveExecutionCommand.js +2 -2
  27. package/dist-es/commands/SendTaskFailureCommand.js +2 -2
  28. package/dist-es/commands/SendTaskHeartbeatCommand.js +2 -2
  29. package/dist-es/commands/SendTaskSuccessCommand.js +2 -2
  30. package/dist-es/commands/StartExecutionCommand.js +2 -2
  31. package/dist-es/commands/StartSyncExecutionCommand.js +2 -2
  32. package/dist-es/commands/StopExecutionCommand.js +2 -2
  33. package/dist-es/commands/TagResourceCommand.js +2 -2
  34. package/dist-es/commands/TestStateCommand.js +2 -2
  35. package/dist-es/commands/UntagResourceCommand.js +2 -2
  36. package/dist-es/commands/UpdateMapRunCommand.js +2 -2
  37. package/dist-es/commands/UpdateStateMachineAliasCommand.js +2 -2
  38. package/dist-es/commands/UpdateStateMachineCommand.js +2 -2
  39. package/dist-es/commands/ValidateStateMachineDefinitionCommand.js +2 -2
  40. package/dist-es/index.js +1 -0
  41. package/dist-es/runtimeConfig.shared.js +7 -6
  42. package/dist-es/schemas/schemas_0.js +436 -422
  43. package/dist-types/SFNClient.d.ts +1 -10
  44. package/dist-types/index.d.ts +1 -0
  45. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  46. package/dist-types/runtimeConfig.d.ts +6 -2
  47. package/dist-types/runtimeConfig.native.d.ts +6 -2
  48. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  49. package/dist-types/schemas/schemas_0.d.ts +209 -244
  50. package/dist-types/ts3.4/SFNClient.d.ts +0 -4
  51. package/dist-types/ts3.4/index.d.ts +1 -0
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  56. package/dist-types/ts3.4/schemas/schemas_0.d.ts +208 -246
  57. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class SFNClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let SFNServiceException$1 = class SFNServiceException extends smithyClient.ServiceException {
113
+ class SFNServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, SFNServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let ActivityAlreadyExists$1 = class ActivityAlreadyExists extends SFNServiceException$1 {
120
+ class ActivityAlreadyExists extends SFNServiceException {
121
121
  name = "ActivityAlreadyExists";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let ActivityAlreadyExists$1 = class ActivityAlreadyExists extends SFNServiceExce
128
128
  });
129
129
  Object.setPrototypeOf(this, ActivityAlreadyExists.prototype);
130
130
  }
131
- };
132
- let ActivityDoesNotExist$1 = class ActivityDoesNotExist extends SFNServiceException$1 {
131
+ }
132
+ class ActivityDoesNotExist extends SFNServiceException {
133
133
  name = "ActivityDoesNotExist";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ActivityDoesNotExist$1 = class ActivityDoesNotExist extends SFNServiceExcept
140
140
  });
141
141
  Object.setPrototypeOf(this, ActivityDoesNotExist.prototype);
142
142
  }
143
- };
144
- let ActivityLimitExceeded$1 = class ActivityLimitExceeded extends SFNServiceException$1 {
143
+ }
144
+ class ActivityLimitExceeded extends SFNServiceException {
145
145
  name = "ActivityLimitExceeded";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let ActivityLimitExceeded$1 = class ActivityLimitExceeded extends SFNServiceExce
152
152
  });
153
153
  Object.setPrototypeOf(this, ActivityLimitExceeded.prototype);
154
154
  }
155
- };
156
- let ActivityWorkerLimitExceeded$1 = class ActivityWorkerLimitExceeded extends SFNServiceException$1 {
155
+ }
156
+ class ActivityWorkerLimitExceeded extends SFNServiceException {
157
157
  name = "ActivityWorkerLimitExceeded";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let ActivityWorkerLimitExceeded$1 = class ActivityWorkerLimitExceeded extends SF
164
164
  });
165
165
  Object.setPrototypeOf(this, ActivityWorkerLimitExceeded.prototype);
166
166
  }
167
- };
168
- let InvalidEncryptionConfiguration$1 = class InvalidEncryptionConfiguration extends SFNServiceException$1 {
167
+ }
168
+ class InvalidEncryptionConfiguration extends SFNServiceException {
169
169
  name = "InvalidEncryptionConfiguration";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,8 +176,8 @@ let InvalidEncryptionConfiguration$1 = class InvalidEncryptionConfiguration exte
176
176
  });
177
177
  Object.setPrototypeOf(this, InvalidEncryptionConfiguration.prototype);
178
178
  }
179
- };
180
- let InvalidName$1 = class InvalidName extends SFNServiceException$1 {
179
+ }
180
+ class InvalidName extends SFNServiceException {
181
181
  name = "InvalidName";
182
182
  $fault = "client";
183
183
  constructor(opts) {
@@ -188,8 +188,8 @@ let InvalidName$1 = class InvalidName extends SFNServiceException$1 {
188
188
  });
189
189
  Object.setPrototypeOf(this, InvalidName.prototype);
190
190
  }
191
- };
192
- let KmsAccessDeniedException$1 = class KmsAccessDeniedException extends SFNServiceException$1 {
191
+ }
192
+ class KmsAccessDeniedException extends SFNServiceException {
193
193
  name = "KmsAccessDeniedException";
194
194
  $fault = "client";
195
195
  constructor(opts) {
@@ -200,8 +200,8 @@ let KmsAccessDeniedException$1 = class KmsAccessDeniedException extends SFNServi
200
200
  });
201
201
  Object.setPrototypeOf(this, KmsAccessDeniedException.prototype);
202
202
  }
203
- };
204
- let KmsThrottlingException$1 = class KmsThrottlingException extends SFNServiceException$1 {
203
+ }
204
+ class KmsThrottlingException extends SFNServiceException {
205
205
  name = "KmsThrottlingException";
206
206
  $fault = "client";
207
207
  constructor(opts) {
@@ -212,8 +212,8 @@ let KmsThrottlingException$1 = class KmsThrottlingException extends SFNServiceEx
212
212
  });
213
213
  Object.setPrototypeOf(this, KmsThrottlingException.prototype);
214
214
  }
215
- };
216
- let TooManyTags$1 = class TooManyTags extends SFNServiceException$1 {
215
+ }
216
+ class TooManyTags extends SFNServiceException {
217
217
  name = "TooManyTags";
218
218
  $fault = "client";
219
219
  resourceName;
@@ -226,8 +226,8 @@ let TooManyTags$1 = class TooManyTags extends SFNServiceException$1 {
226
226
  Object.setPrototypeOf(this, TooManyTags.prototype);
227
227
  this.resourceName = opts.resourceName;
228
228
  }
229
- };
230
- let ConflictException$1 = class ConflictException extends SFNServiceException$1 {
229
+ }
230
+ class ConflictException extends SFNServiceException {
231
231
  name = "ConflictException";
232
232
  $fault = "client";
233
233
  constructor(opts) {
@@ -238,8 +238,8 @@ let ConflictException$1 = class ConflictException extends SFNServiceException$1
238
238
  });
239
239
  Object.setPrototypeOf(this, ConflictException.prototype);
240
240
  }
241
- };
242
- let InvalidArn$1 = class InvalidArn extends SFNServiceException$1 {
241
+ }
242
+ class InvalidArn extends SFNServiceException {
243
243
  name = "InvalidArn";
244
244
  $fault = "client";
245
245
  constructor(opts) {
@@ -250,8 +250,8 @@ let InvalidArn$1 = class InvalidArn extends SFNServiceException$1 {
250
250
  });
251
251
  Object.setPrototypeOf(this, InvalidArn.prototype);
252
252
  }
253
- };
254
- let InvalidDefinition$1 = class InvalidDefinition extends SFNServiceException$1 {
253
+ }
254
+ class InvalidDefinition extends SFNServiceException {
255
255
  name = "InvalidDefinition";
256
256
  $fault = "client";
257
257
  constructor(opts) {
@@ -262,8 +262,8 @@ let InvalidDefinition$1 = class InvalidDefinition extends SFNServiceException$1
262
262
  });
263
263
  Object.setPrototypeOf(this, InvalidDefinition.prototype);
264
264
  }
265
- };
266
- let InvalidLoggingConfiguration$1 = class InvalidLoggingConfiguration extends SFNServiceException$1 {
265
+ }
266
+ class InvalidLoggingConfiguration extends SFNServiceException {
267
267
  name = "InvalidLoggingConfiguration";
268
268
  $fault = "client";
269
269
  constructor(opts) {
@@ -274,8 +274,8 @@ let InvalidLoggingConfiguration$1 = class InvalidLoggingConfiguration extends SF
274
274
  });
275
275
  Object.setPrototypeOf(this, InvalidLoggingConfiguration.prototype);
276
276
  }
277
- };
278
- let InvalidTracingConfiguration$1 = class InvalidTracingConfiguration extends SFNServiceException$1 {
277
+ }
278
+ class InvalidTracingConfiguration extends SFNServiceException {
279
279
  name = "InvalidTracingConfiguration";
280
280
  $fault = "client";
281
281
  constructor(opts) {
@@ -286,8 +286,8 @@ let InvalidTracingConfiguration$1 = class InvalidTracingConfiguration extends SF
286
286
  });
287
287
  Object.setPrototypeOf(this, InvalidTracingConfiguration.prototype);
288
288
  }
289
- };
290
- let StateMachineAlreadyExists$1 = class StateMachineAlreadyExists extends SFNServiceException$1 {
289
+ }
290
+ class StateMachineAlreadyExists extends SFNServiceException {
291
291
  name = "StateMachineAlreadyExists";
292
292
  $fault = "client";
293
293
  constructor(opts) {
@@ -298,8 +298,8 @@ let StateMachineAlreadyExists$1 = class StateMachineAlreadyExists extends SFNSer
298
298
  });
299
299
  Object.setPrototypeOf(this, StateMachineAlreadyExists.prototype);
300
300
  }
301
- };
302
- let StateMachineDeleting$1 = class StateMachineDeleting extends SFNServiceException$1 {
301
+ }
302
+ class StateMachineDeleting extends SFNServiceException {
303
303
  name = "StateMachineDeleting";
304
304
  $fault = "client";
305
305
  constructor(opts) {
@@ -310,8 +310,8 @@ let StateMachineDeleting$1 = class StateMachineDeleting extends SFNServiceExcept
310
310
  });
311
311
  Object.setPrototypeOf(this, StateMachineDeleting.prototype);
312
312
  }
313
- };
314
- let StateMachineLimitExceeded$1 = class StateMachineLimitExceeded extends SFNServiceException$1 {
313
+ }
314
+ class StateMachineLimitExceeded extends SFNServiceException {
315
315
  name = "StateMachineLimitExceeded";
316
316
  $fault = "client";
317
317
  constructor(opts) {
@@ -322,8 +322,8 @@ let StateMachineLimitExceeded$1 = class StateMachineLimitExceeded extends SFNSer
322
322
  });
323
323
  Object.setPrototypeOf(this, StateMachineLimitExceeded.prototype);
324
324
  }
325
- };
326
- let StateMachineTypeNotSupported$1 = class StateMachineTypeNotSupported extends SFNServiceException$1 {
325
+ }
326
+ class StateMachineTypeNotSupported extends SFNServiceException {
327
327
  name = "StateMachineTypeNotSupported";
328
328
  $fault = "client";
329
329
  constructor(opts) {
@@ -334,8 +334,8 @@ let StateMachineTypeNotSupported$1 = class StateMachineTypeNotSupported extends
334
334
  });
335
335
  Object.setPrototypeOf(this, StateMachineTypeNotSupported.prototype);
336
336
  }
337
- };
338
- let ValidationException$1 = class ValidationException extends SFNServiceException$1 {
337
+ }
338
+ class ValidationException extends SFNServiceException {
339
339
  name = "ValidationException";
340
340
  $fault = "client";
341
341
  reason;
@@ -348,8 +348,8 @@ let ValidationException$1 = class ValidationException extends SFNServiceExceptio
348
348
  Object.setPrototypeOf(this, ValidationException.prototype);
349
349
  this.reason = opts.reason;
350
350
  }
351
- };
352
- let ResourceNotFound$1 = class ResourceNotFound extends SFNServiceException$1 {
351
+ }
352
+ class ResourceNotFound extends SFNServiceException {
353
353
  name = "ResourceNotFound";
354
354
  $fault = "client";
355
355
  resourceName;
@@ -362,8 +362,8 @@ let ResourceNotFound$1 = class ResourceNotFound extends SFNServiceException$1 {
362
362
  Object.setPrototypeOf(this, ResourceNotFound.prototype);
363
363
  this.resourceName = opts.resourceName;
364
364
  }
365
- };
366
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SFNServiceException$1 {
365
+ }
366
+ class ServiceQuotaExceededException extends SFNServiceException {
367
367
  name = "ServiceQuotaExceededException";
368
368
  $fault = "client";
369
369
  constructor(opts) {
@@ -374,8 +374,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
374
374
  });
375
375
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
376
376
  }
377
- };
378
- let ExecutionDoesNotExist$1 = class ExecutionDoesNotExist extends SFNServiceException$1 {
377
+ }
378
+ class ExecutionDoesNotExist extends SFNServiceException {
379
379
  name = "ExecutionDoesNotExist";
380
380
  $fault = "client";
381
381
  constructor(opts) {
@@ -386,8 +386,8 @@ let ExecutionDoesNotExist$1 = class ExecutionDoesNotExist extends SFNServiceExce
386
386
  });
387
387
  Object.setPrototypeOf(this, ExecutionDoesNotExist.prototype);
388
388
  }
389
- };
390
- let KmsInvalidStateException$1 = class KmsInvalidStateException extends SFNServiceException$1 {
389
+ }
390
+ class KmsInvalidStateException extends SFNServiceException {
391
391
  name = "KmsInvalidStateException";
392
392
  $fault = "client";
393
393
  kmsKeyState;
@@ -400,8 +400,8 @@ let KmsInvalidStateException$1 = class KmsInvalidStateException extends SFNServi
400
400
  Object.setPrototypeOf(this, KmsInvalidStateException.prototype);
401
401
  this.kmsKeyState = opts.kmsKeyState;
402
402
  }
403
- };
404
- let StateMachineDoesNotExist$1 = class StateMachineDoesNotExist extends SFNServiceException$1 {
403
+ }
404
+ class StateMachineDoesNotExist extends SFNServiceException {
405
405
  name = "StateMachineDoesNotExist";
406
406
  $fault = "client";
407
407
  constructor(opts) {
@@ -412,8 +412,8 @@ let StateMachineDoesNotExist$1 = class StateMachineDoesNotExist extends SFNServi
412
412
  });
413
413
  Object.setPrototypeOf(this, StateMachineDoesNotExist.prototype);
414
414
  }
415
- };
416
- let InvalidToken$1 = class InvalidToken extends SFNServiceException$1 {
415
+ }
416
+ class InvalidToken extends SFNServiceException {
417
417
  name = "InvalidToken";
418
418
  $fault = "client";
419
419
  constructor(opts) {
@@ -424,8 +424,8 @@ let InvalidToken$1 = class InvalidToken extends SFNServiceException$1 {
424
424
  });
425
425
  Object.setPrototypeOf(this, InvalidToken.prototype);
426
426
  }
427
- };
428
- let ExecutionLimitExceeded$1 = class ExecutionLimitExceeded extends SFNServiceException$1 {
427
+ }
428
+ class ExecutionLimitExceeded extends SFNServiceException {
429
429
  name = "ExecutionLimitExceeded";
430
430
  $fault = "client";
431
431
  constructor(opts) {
@@ -436,8 +436,8 @@ let ExecutionLimitExceeded$1 = class ExecutionLimitExceeded extends SFNServiceEx
436
436
  });
437
437
  Object.setPrototypeOf(this, ExecutionLimitExceeded.prototype);
438
438
  }
439
- };
440
- let ExecutionNotRedrivable$1 = class ExecutionNotRedrivable extends SFNServiceException$1 {
439
+ }
440
+ class ExecutionNotRedrivable extends SFNServiceException {
441
441
  name = "ExecutionNotRedrivable";
442
442
  $fault = "client";
443
443
  constructor(opts) {
@@ -448,8 +448,8 @@ let ExecutionNotRedrivable$1 = class ExecutionNotRedrivable extends SFNServiceEx
448
448
  });
449
449
  Object.setPrototypeOf(this, ExecutionNotRedrivable.prototype);
450
450
  }
451
- };
452
- let TaskDoesNotExist$1 = class TaskDoesNotExist extends SFNServiceException$1 {
451
+ }
452
+ class TaskDoesNotExist extends SFNServiceException {
453
453
  name = "TaskDoesNotExist";
454
454
  $fault = "client";
455
455
  constructor(opts) {
@@ -460,8 +460,8 @@ let TaskDoesNotExist$1 = class TaskDoesNotExist extends SFNServiceException$1 {
460
460
  });
461
461
  Object.setPrototypeOf(this, TaskDoesNotExist.prototype);
462
462
  }
463
- };
464
- let TaskTimedOut$1 = class TaskTimedOut extends SFNServiceException$1 {
463
+ }
464
+ class TaskTimedOut extends SFNServiceException {
465
465
  name = "TaskTimedOut";
466
466
  $fault = "client";
467
467
  constructor(opts) {
@@ -472,8 +472,8 @@ let TaskTimedOut$1 = class TaskTimedOut extends SFNServiceException$1 {
472
472
  });
473
473
  Object.setPrototypeOf(this, TaskTimedOut.prototype);
474
474
  }
475
- };
476
- let InvalidOutput$1 = class InvalidOutput extends SFNServiceException$1 {
475
+ }
476
+ class InvalidOutput extends SFNServiceException {
477
477
  name = "InvalidOutput";
478
478
  $fault = "client";
479
479
  constructor(opts) {
@@ -484,8 +484,8 @@ let InvalidOutput$1 = class InvalidOutput extends SFNServiceException$1 {
484
484
  });
485
485
  Object.setPrototypeOf(this, InvalidOutput.prototype);
486
486
  }
487
- };
488
- let ExecutionAlreadyExists$1 = class ExecutionAlreadyExists extends SFNServiceException$1 {
487
+ }
488
+ class ExecutionAlreadyExists extends SFNServiceException {
489
489
  name = "ExecutionAlreadyExists";
490
490
  $fault = "client";
491
491
  constructor(opts) {
@@ -496,8 +496,8 @@ let ExecutionAlreadyExists$1 = class ExecutionAlreadyExists extends SFNServiceEx
496
496
  });
497
497
  Object.setPrototypeOf(this, ExecutionAlreadyExists.prototype);
498
498
  }
499
- };
500
- let InvalidExecutionInput$1 = class InvalidExecutionInput extends SFNServiceException$1 {
499
+ }
500
+ class InvalidExecutionInput extends SFNServiceException {
501
501
  name = "InvalidExecutionInput";
502
502
  $fault = "client";
503
503
  constructor(opts) {
@@ -508,8 +508,8 @@ let InvalidExecutionInput$1 = class InvalidExecutionInput extends SFNServiceExce
508
508
  });
509
509
  Object.setPrototypeOf(this, InvalidExecutionInput.prototype);
510
510
  }
511
- };
512
- let MissingRequiredParameter$1 = class MissingRequiredParameter extends SFNServiceException$1 {
511
+ }
512
+ class MissingRequiredParameter extends SFNServiceException {
513
513
  name = "MissingRequiredParameter";
514
514
  $fault = "client";
515
515
  constructor(opts) {
@@ -520,7 +520,7 @@ let MissingRequiredParameter$1 = class MissingRequiredParameter extends SFNServi
520
520
  });
521
521
  Object.setPrototypeOf(this, MissingRequiredParameter.prototype);
522
522
  }
523
- };
523
+ }
524
524
 
525
525
  const _AAE = "ActivityAlreadyExists";
526
526
  const _AD = "AliasDescription";
@@ -973,11 +973,11 @@ var ValidateStateMachineDefinitionMessage = [0, n0, _VSMDM, 8, 0];
973
973
  var VariableName = [0, n0, _VN, 8, 0];
974
974
  var VariableValue = [0, n0, _VV, 8, 0];
975
975
  var VersionDescription = [0, n0, _VD, 8, 0];
976
- var ActivityAlreadyExists = [-3, n0, _AAE, { [_e]: _c }, [_m], [0]];
977
- schema.TypeRegistry.for(n0).registerError(ActivityAlreadyExists, ActivityAlreadyExists$1);
978
- var ActivityDoesNotExist = [-3, n0, _ADNE, { [_e]: _c }, [_m], [0]];
979
- schema.TypeRegistry.for(n0).registerError(ActivityDoesNotExist, ActivityDoesNotExist$1);
980
- var ActivityFailedEventDetails = [
976
+ var ActivityAlreadyExists$ = [-3, n0, _AAE, { [_e]: _c }, [_m], [0]];
977
+ schema.TypeRegistry.for(n0).registerError(ActivityAlreadyExists$, ActivityAlreadyExists);
978
+ var ActivityDoesNotExist$ = [-3, n0, _ADNE, { [_e]: _c }, [_m], [0]];
979
+ schema.TypeRegistry.for(n0).registerError(ActivityDoesNotExist$, ActivityDoesNotExist);
980
+ var ActivityFailedEventDetails$ = [
981
981
  3,
982
982
  n0,
983
983
  _AFED,
@@ -988,18 +988,18 @@ var ActivityFailedEventDetails = [
988
988
  [() => SensitiveCause, 0],
989
989
  ],
990
990
  ];
991
- var ActivityLimitExceeded = [-3, n0, _ALE, { [_e]: _c }, [_m], [0]];
992
- schema.TypeRegistry.for(n0).registerError(ActivityLimitExceeded, ActivityLimitExceeded$1);
993
- var ActivityListItem = [3, n0, _ALI, 0, [_aA, _n, _cD], [0, 0, 4]];
994
- var ActivityScheduledEventDetails = [
991
+ var ActivityLimitExceeded$ = [-3, n0, _ALE, { [_e]: _c }, [_m], [0]];
992
+ schema.TypeRegistry.for(n0).registerError(ActivityLimitExceeded$, ActivityLimitExceeded);
993
+ var ActivityListItem$ = [3, n0, _ALI, 0, [_aA, _n, _cD], [0, 0, 4]];
994
+ var ActivityScheduledEventDetails$ = [
995
995
  3,
996
996
  n0,
997
997
  _ASED,
998
998
  0,
999
999
  [_r, _i, _iD, _tIS, _hIS],
1000
- [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails, 1, 1],
1000
+ [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 1, 1],
1001
1001
  ];
1002
- var ActivityScheduleFailedEventDetails = [
1002
+ var ActivityScheduleFailedEventDetails$ = [
1003
1003
  3,
1004
1004
  n0,
1005
1005
  _ASFED,
@@ -1010,16 +1010,16 @@ var ActivityScheduleFailedEventDetails = [
1010
1010
  [() => SensitiveCause, 0],
1011
1011
  ],
1012
1012
  ];
1013
- var ActivityStartedEventDetails = [3, n0, _ASEDc, 0, [_wN], [0]];
1014
- var ActivitySucceededEventDetails = [
1013
+ var ActivityStartedEventDetails$ = [3, n0, _ASEDc, 0, [_wN], [0]];
1014
+ var ActivitySucceededEventDetails$ = [
1015
1015
  3,
1016
1016
  n0,
1017
1017
  _ASEDct,
1018
1018
  0,
1019
1019
  [_o, _oD],
1020
- [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1020
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$],
1021
1021
  ];
1022
- var ActivityTimedOutEventDetails = [
1022
+ var ActivityTimedOutEventDetails$ = [
1023
1023
  3,
1024
1024
  n0,
1025
1025
  _ATOED,
@@ -1030,24 +1030,24 @@ var ActivityTimedOutEventDetails = [
1030
1030
  [() => SensitiveCause, 0],
1031
1031
  ],
1032
1032
  ];
1033
- var ActivityWorkerLimitExceeded = [-3, n0, _AWLE, { [_e]: _c }, [_m], [0]];
1034
- schema.TypeRegistry.for(n0).registerError(ActivityWorkerLimitExceeded, ActivityWorkerLimitExceeded$1);
1035
- var AssignedVariablesDetails = [3, n0, _AVD, 0, [_t], [2]];
1036
- var BillingDetails = [3, n0, _BD, 0, [_bMUIMB, _bDIM], [1, 1]];
1037
- var CloudWatchEventsExecutionDataDetails = [3, n0, _CWEEDD, 0, [_in], [2]];
1038
- var CloudWatchLogsLogGroup = [3, n0, _CWLLG, 0, [_lGA], [0]];
1039
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
1040
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
1041
- var CreateActivityInput = [
1033
+ var ActivityWorkerLimitExceeded$ = [-3, n0, _AWLE, { [_e]: _c }, [_m], [0]];
1034
+ schema.TypeRegistry.for(n0).registerError(ActivityWorkerLimitExceeded$, ActivityWorkerLimitExceeded);
1035
+ var AssignedVariablesDetails$ = [3, n0, _AVD, 0, [_t], [2]];
1036
+ var BillingDetails$ = [3, n0, _BD, 0, [_bMUIMB, _bDIM], [1, 1]];
1037
+ var CloudWatchEventsExecutionDataDetails$ = [3, n0, _CWEEDD, 0, [_in], [2]];
1038
+ var CloudWatchLogsLogGroup$ = [3, n0, _CWLLG, 0, [_lGA], [0]];
1039
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
1040
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
1041
+ var CreateActivityInput$ = [
1042
1042
  3,
1043
1043
  n0,
1044
1044
  _CAI,
1045
1045
  0,
1046
1046
  [_n, _ta, _eC],
1047
- [0, () => TagList, () => EncryptionConfiguration],
1047
+ [0, () => TagList, () => EncryptionConfiguration$],
1048
1048
  ];
1049
- var CreateActivityOutput = [3, n0, _CAO, 0, [_aA, _cD], [0, 4]];
1050
- var CreateStateMachineAliasInput = [
1049
+ var CreateActivityOutput$ = [3, n0, _CAO, 0, [_aA, _cD], [0, 4]];
1050
+ var CreateStateMachineAliasInput$ = [
1051
1051
  3,
1052
1052
  n0,
1053
1053
  _CSMAI,
@@ -1055,8 +1055,8 @@ var CreateStateMachineAliasInput = [
1055
1055
  [_d, _n, _rC],
1056
1056
  [[() => AliasDescription, 0], 0, () => RoutingConfigurationList],
1057
1057
  ];
1058
- var CreateStateMachineAliasOutput = [3, n0, _CSMAO, 0, [_sMAA, _cD], [0, 4]];
1059
- var CreateStateMachineInput = [
1058
+ var CreateStateMachineAliasOutput$ = [3, n0, _CSMAO, 0, [_sMAA, _cD], [0, 4]];
1059
+ var CreateStateMachineInput$ = [
1060
1060
  3,
1061
1061
  n0,
1062
1062
  _CSMI,
@@ -1067,34 +1067,34 @@ var CreateStateMachineInput = [
1067
1067
  [() => Definition, 0],
1068
1068
  0,
1069
1069
  0,
1070
- () => LoggingConfiguration,
1070
+ () => LoggingConfiguration$,
1071
1071
  () => TagList,
1072
- () => TracingConfiguration,
1072
+ () => TracingConfiguration$,
1073
1073
  2,
1074
1074
  [() => VersionDescription, 0],
1075
- () => EncryptionConfiguration,
1075
+ () => EncryptionConfiguration$,
1076
1076
  ],
1077
1077
  ];
1078
- var CreateStateMachineOutput = [3, n0, _CSMO, 0, [_sMA, _cD, _sMVA], [0, 4, 0]];
1079
- var DeleteActivityInput = [3, n0, _DAI, 0, [_aA], [0]];
1080
- var DeleteActivityOutput = [3, n0, _DAO, 0, [], []];
1081
- var DeleteStateMachineAliasInput = [3, n0, _DSMAI, 0, [_sMAA], [0]];
1082
- var DeleteStateMachineAliasOutput = [3, n0, _DSMAO, 0, [], []];
1083
- var DeleteStateMachineInput = [3, n0, _DSMI, 0, [_sMA], [0]];
1084
- var DeleteStateMachineOutput = [3, n0, _DSMO, 0, [], []];
1085
- var DeleteStateMachineVersionInput = [3, n0, _DSMVI, 0, [_sMVA], [0]];
1086
- var DeleteStateMachineVersionOutput = [3, n0, _DSMVO, 0, [], []];
1087
- var DescribeActivityInput = [3, n0, _DAIe, 0, [_aA], [0]];
1088
- var DescribeActivityOutput = [
1078
+ var CreateStateMachineOutput$ = [3, n0, _CSMO, 0, [_sMA, _cD, _sMVA], [0, 4, 0]];
1079
+ var DeleteActivityInput$ = [3, n0, _DAI, 0, [_aA], [0]];
1080
+ var DeleteActivityOutput$ = [3, n0, _DAO, 0, [], []];
1081
+ var DeleteStateMachineAliasInput$ = [3, n0, _DSMAI, 0, [_sMAA], [0]];
1082
+ var DeleteStateMachineAliasOutput$ = [3, n0, _DSMAO, 0, [], []];
1083
+ var DeleteStateMachineInput$ = [3, n0, _DSMI, 0, [_sMA], [0]];
1084
+ var DeleteStateMachineOutput$ = [3, n0, _DSMO, 0, [], []];
1085
+ var DeleteStateMachineVersionInput$ = [3, n0, _DSMVI, 0, [_sMVA], [0]];
1086
+ var DeleteStateMachineVersionOutput$ = [3, n0, _DSMVO, 0, [], []];
1087
+ var DescribeActivityInput$ = [3, n0, _DAIe, 0, [_aA], [0]];
1088
+ var DescribeActivityOutput$ = [
1089
1089
  3,
1090
1090
  n0,
1091
1091
  _DAOe,
1092
1092
  0,
1093
1093
  [_aA, _n, _cD, _eC],
1094
- [0, 0, 4, () => EncryptionConfiguration],
1094
+ [0, 0, 4, () => EncryptionConfiguration$],
1095
1095
  ];
1096
- var DescribeExecutionInput = [3, n0, _DEI, 0, [_eA, _iDn], [0, 0]];
1097
- var DescribeExecutionOutput = [
1096
+ var DescribeExecutionInput$ = [3, n0, _DEI, 0, [_eA, _iDn], [0, 0]];
1097
+ var DescribeExecutionOutput$ = [
1098
1098
  3,
1099
1099
  n0,
1100
1100
  _DEO,
@@ -1108,9 +1108,9 @@ var DescribeExecutionOutput = [
1108
1108
  4,
1109
1109
  4,
1110
1110
  [() => SensitiveData, 0],
1111
- () => CloudWatchEventsExecutionDataDetails,
1111
+ () => CloudWatchEventsExecutionDataDetails$,
1112
1112
  [() => SensitiveData, 0],
1113
- () => CloudWatchEventsExecutionDataDetails,
1113
+ () => CloudWatchEventsExecutionDataDetails$,
1114
1114
  0,
1115
1115
  0,
1116
1116
  [() => SensitiveError, 0],
@@ -1123,17 +1123,17 @@ var DescribeExecutionOutput = [
1123
1123
  [() => SensitiveData, 0],
1124
1124
  ],
1125
1125
  ];
1126
- var DescribeMapRunInput = [3, n0, _DMRI, 0, [_mRA], [0]];
1127
- var DescribeMapRunOutput = [
1126
+ var DescribeMapRunInput$ = [3, n0, _DMRI, 0, [_mRA], [0]];
1127
+ var DescribeMapRunOutput$ = [
1128
1128
  3,
1129
1129
  n0,
1130
1130
  _DMRO,
1131
1131
  0,
1132
1132
  [_mRA, _eA, _s, _sD, _sDt, _mC, _tFP, _tFC, _iC, _eCx, _rCe, _rD],
1133
- [0, 0, 0, 4, 4, 1, 1, 1, () => MapRunItemCounts, () => MapRunExecutionCounts, 1, 4],
1133
+ [0, 0, 0, 4, 4, 1, 1, 1, () => MapRunItemCounts$, () => MapRunExecutionCounts$, 1, 4],
1134
1134
  ];
1135
- var DescribeStateMachineAliasInput = [3, n0, _DSMAIe, 0, [_sMAA], [0]];
1136
- var DescribeStateMachineAliasOutput = [
1135
+ var DescribeStateMachineAliasInput$ = [3, n0, _DSMAIe, 0, [_sMAA], [0]];
1136
+ var DescribeStateMachineAliasOutput$ = [
1137
1137
  3,
1138
1138
  n0,
1139
1139
  _DSMAOe,
@@ -1141,8 +1141,8 @@ var DescribeStateMachineAliasOutput = [
1141
1141
  [_sMAA, _n, _d, _rC, _cD, _uD],
1142
1142
  [0, 0, [() => AliasDescription, 0], () => RoutingConfigurationList, 4, 4],
1143
1143
  ];
1144
- var DescribeStateMachineForExecutionInput = [3, n0, _DSMFEI, 0, [_eA, _iDn], [0, 0]];
1145
- var DescribeStateMachineForExecutionOutput = [
1144
+ var DescribeStateMachineForExecutionInput$ = [3, n0, _DSMFEI, 0, [_eA, _iDn], [0, 0]];
1145
+ var DescribeStateMachineForExecutionOutput$ = [
1146
1146
  3,
1147
1147
  n0,
1148
1148
  _DSMFEO,
@@ -1154,17 +1154,17 @@ var DescribeStateMachineForExecutionOutput = [
1154
1154
  [() => Definition, 0],
1155
1155
  0,
1156
1156
  4,
1157
- () => LoggingConfiguration,
1158
- () => TracingConfiguration,
1157
+ () => LoggingConfiguration$,
1158
+ () => TracingConfiguration$,
1159
1159
  0,
1160
1160
  0,
1161
1161
  0,
1162
- () => EncryptionConfiguration,
1162
+ () => EncryptionConfiguration$,
1163
1163
  [() => VariableReferences, 0],
1164
1164
  ],
1165
1165
  ];
1166
- var DescribeStateMachineInput = [3, n0, _DSMIe, 0, [_sMA, _iDn], [0, 0]];
1167
- var DescribeStateMachineOutput = [
1166
+ var DescribeStateMachineInput$ = [3, n0, _DSMIe, 0, [_sMA, _iDn], [0, 0]];
1167
+ var DescribeStateMachineOutput$ = [
1168
1168
  3,
1169
1169
  n0,
1170
1170
  _DSMOe,
@@ -1178,17 +1178,17 @@ var DescribeStateMachineOutput = [
1178
1178
  0,
1179
1179
  0,
1180
1180
  4,
1181
- () => LoggingConfiguration,
1182
- () => TracingConfiguration,
1181
+ () => LoggingConfiguration$,
1182
+ () => TracingConfiguration$,
1183
1183
  0,
1184
1184
  0,
1185
1185
  [() => VersionDescription, 0],
1186
- () => EncryptionConfiguration,
1186
+ () => EncryptionConfiguration$,
1187
1187
  [() => VariableReferences, 0],
1188
1188
  ],
1189
1189
  ];
1190
- var EncryptionConfiguration = [3, n0, _EC, 0, [_kKI, _kDKRPS, _ty], [0, 1, 0]];
1191
- var EvaluationFailedEventDetails = [
1190
+ var EncryptionConfiguration$ = [3, n0, _EC, 0, [_kKI, _kDKRPS, _ty], [0, 1, 0]];
1191
+ var EvaluationFailedEventDetails$ = [
1192
1192
  3,
1193
1193
  n0,
1194
1194
  _EFED,
@@ -1196,7 +1196,7 @@ var EvaluationFailedEventDetails = [
1196
1196
  [_e, _ca, _lo, _st],
1197
1197
  [[() => SensitiveError, 0], [() => SensitiveCause, 0], [() => EvaluationFailureLocation, 0], 0],
1198
1198
  ];
1199
- var ExecutionAbortedEventDetails = [
1199
+ var ExecutionAbortedEventDetails$ = [
1200
1200
  3,
1201
1201
  n0,
1202
1202
  _EAED,
@@ -1207,11 +1207,11 @@ var ExecutionAbortedEventDetails = [
1207
1207
  [() => SensitiveCause, 0],
1208
1208
  ],
1209
1209
  ];
1210
- var ExecutionAlreadyExists = [-3, n0, _EAE, { [_e]: _c }, [_m], [0]];
1211
- schema.TypeRegistry.for(n0).registerError(ExecutionAlreadyExists, ExecutionAlreadyExists$1);
1212
- var ExecutionDoesNotExist = [-3, n0, _EDNE, { [_e]: _c }, [_m], [0]];
1213
- schema.TypeRegistry.for(n0).registerError(ExecutionDoesNotExist, ExecutionDoesNotExist$1);
1214
- var ExecutionFailedEventDetails = [
1210
+ var ExecutionAlreadyExists$ = [-3, n0, _EAE, { [_e]: _c }, [_m], [0]];
1211
+ schema.TypeRegistry.for(n0).registerError(ExecutionAlreadyExists$, ExecutionAlreadyExists);
1212
+ var ExecutionDoesNotExist$ = [-3, n0, _EDNE, { [_e]: _c }, [_m], [0]];
1213
+ schema.TypeRegistry.for(n0).registerError(ExecutionDoesNotExist$, ExecutionDoesNotExist);
1214
+ var ExecutionFailedEventDetails$ = [
1215
1215
  3,
1216
1216
  n0,
1217
1217
  _EFEDx,
@@ -1222,9 +1222,9 @@ var ExecutionFailedEventDetails = [
1222
1222
  [() => SensitiveCause, 0],
1223
1223
  ],
1224
1224
  ];
1225
- var ExecutionLimitExceeded = [-3, n0, _ELE, { [_e]: _c }, [_m], [0]];
1226
- schema.TypeRegistry.for(n0).registerError(ExecutionLimitExceeded, ExecutionLimitExceeded$1);
1227
- var ExecutionListItem = [
1225
+ var ExecutionLimitExceeded$ = [-3, n0, _ELE, { [_e]: _c }, [_m], [0]];
1226
+ schema.TypeRegistry.for(n0).registerError(ExecutionLimitExceeded$, ExecutionLimitExceeded);
1227
+ var ExecutionListItem$ = [
1228
1228
  3,
1229
1229
  n0,
1230
1230
  _ELI,
@@ -1232,26 +1232,26 @@ var ExecutionListItem = [
1232
1232
  [_eA, _sMA, _n, _s, _sD, _sDt, _mRA, _iCt, _sMVA, _sMAA, _rCe, _rD],
1233
1233
  [0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 1, 4],
1234
1234
  ];
1235
- var ExecutionNotRedrivable = [-3, n0, _ENR, { [_e]: _c }, [_m], [0]];
1236
- schema.TypeRegistry.for(n0).registerError(ExecutionNotRedrivable, ExecutionNotRedrivable$1);
1237
- var ExecutionRedrivenEventDetails = [3, n0, _ERED, 0, [_rCe], [1]];
1238
- var ExecutionStartedEventDetails = [
1235
+ var ExecutionNotRedrivable$ = [-3, n0, _ENR, { [_e]: _c }, [_m], [0]];
1236
+ schema.TypeRegistry.for(n0).registerError(ExecutionNotRedrivable$, ExecutionNotRedrivable);
1237
+ var ExecutionRedrivenEventDetails$ = [3, n0, _ERED, 0, [_rCe], [1]];
1238
+ var ExecutionStartedEventDetails$ = [
1239
1239
  3,
1240
1240
  n0,
1241
1241
  _ESED,
1242
1242
  0,
1243
1243
  [_i, _iD, _rA, _sMAA, _sMVA],
1244
- [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails, 0, 0, 0],
1244
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 0, 0, 0],
1245
1245
  ];
1246
- var ExecutionSucceededEventDetails = [
1246
+ var ExecutionSucceededEventDetails$ = [
1247
1247
  3,
1248
1248
  n0,
1249
1249
  _ESEDx,
1250
1250
  0,
1251
1251
  [_o, _oD],
1252
- [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1252
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$],
1253
1253
  ];
1254
- var ExecutionTimedOutEventDetails = [
1254
+ var ExecutionTimedOutEventDetails$ = [
1255
1255
  3,
1256
1256
  n0,
1257
1257
  _ETOED,
@@ -1262,8 +1262,8 @@ var ExecutionTimedOutEventDetails = [
1262
1262
  [() => SensitiveCause, 0],
1263
1263
  ],
1264
1264
  ];
1265
- var GetActivityTaskInput = [3, n0, _GATI, 0, [_aA, _wN], [0, 0]];
1266
- var GetActivityTaskOutput = [
1265
+ var GetActivityTaskInput$ = [3, n0, _GATI, 0, [_aA, _wN], [0, 0]];
1266
+ var GetActivityTaskOutput$ = [
1267
1267
  3,
1268
1268
  n0,
1269
1269
  _GATO,
@@ -1271,7 +1271,7 @@ var GetActivityTaskOutput = [
1271
1271
  [_tT, _i],
1272
1272
  [0, [() => SensitiveDataJobInput, 0]],
1273
1273
  ];
1274
- var GetExecutionHistoryInput = [
1274
+ var GetExecutionHistoryInput$ = [
1275
1275
  3,
1276
1276
  n0,
1277
1277
  _GEHI,
@@ -1279,7 +1279,7 @@ var GetExecutionHistoryInput = [
1279
1279
  [_eA, _mR, _rO, _nT, _iED],
1280
1280
  [0, 1, 2, 0, 2],
1281
1281
  ];
1282
- var GetExecutionHistoryOutput = [
1282
+ var GetExecutionHistoryOutput$ = [
1283
1283
  3,
1284
1284
  n0,
1285
1285
  _GEHO,
@@ -1287,7 +1287,7 @@ var GetExecutionHistoryOutput = [
1287
1287
  [_ev, _nT],
1288
1288
  [[() => HistoryEventList, 0], 0],
1289
1289
  ];
1290
- var HistoryEvent = [
1290
+ var HistoryEvent$ = [
1291
1291
  3,
1292
1292
  n0,
1293
1293
  _HE,
@@ -1340,47 +1340,47 @@ var HistoryEvent = [
1340
1340
  0,
1341
1341
  1,
1342
1342
  1,
1343
- [() => ActivityFailedEventDetails, 0],
1344
- [() => ActivityScheduleFailedEventDetails, 0],
1345
- [() => ActivityScheduledEventDetails, 0],
1346
- () => ActivityStartedEventDetails,
1347
- [() => ActivitySucceededEventDetails, 0],
1348
- [() => ActivityTimedOutEventDetails, 0],
1349
- [() => TaskFailedEventDetails, 0],
1350
- [() => TaskScheduledEventDetails, 0],
1351
- [() => TaskStartFailedEventDetails, 0],
1352
- () => TaskStartedEventDetails,
1353
- [() => TaskSubmitFailedEventDetails, 0],
1354
- [() => TaskSubmittedEventDetails, 0],
1355
- [() => TaskSucceededEventDetails, 0],
1356
- [() => TaskTimedOutEventDetails, 0],
1357
- [() => ExecutionFailedEventDetails, 0],
1358
- [() => ExecutionStartedEventDetails, 0],
1359
- [() => ExecutionSucceededEventDetails, 0],
1360
- [() => ExecutionAbortedEventDetails, 0],
1361
- [() => ExecutionTimedOutEventDetails, 0],
1362
- () => ExecutionRedrivenEventDetails,
1363
- () => MapStateStartedEventDetails,
1364
- () => MapIterationEventDetails,
1365
- () => MapIterationEventDetails,
1366
- () => MapIterationEventDetails,
1367
- () => MapIterationEventDetails,
1368
- [() => LambdaFunctionFailedEventDetails, 0],
1369
- [() => LambdaFunctionScheduleFailedEventDetails, 0],
1370
- [() => LambdaFunctionScheduledEventDetails, 0],
1371
- [() => LambdaFunctionStartFailedEventDetails, 0],
1372
- [() => LambdaFunctionSucceededEventDetails, 0],
1373
- [() => LambdaFunctionTimedOutEventDetails, 0],
1374
- [() => StateEnteredEventDetails, 0],
1375
- [() => StateExitedEventDetails, 0],
1376
- () => MapRunStartedEventDetails,
1377
- [() => MapRunFailedEventDetails, 0],
1378
- () => MapRunRedrivenEventDetails,
1379
- [() => EvaluationFailedEventDetails, 0],
1343
+ [() => ActivityFailedEventDetails$, 0],
1344
+ [() => ActivityScheduleFailedEventDetails$, 0],
1345
+ [() => ActivityScheduledEventDetails$, 0],
1346
+ () => ActivityStartedEventDetails$,
1347
+ [() => ActivitySucceededEventDetails$, 0],
1348
+ [() => ActivityTimedOutEventDetails$, 0],
1349
+ [() => TaskFailedEventDetails$, 0],
1350
+ [() => TaskScheduledEventDetails$, 0],
1351
+ [() => TaskStartFailedEventDetails$, 0],
1352
+ () => TaskStartedEventDetails$,
1353
+ [() => TaskSubmitFailedEventDetails$, 0],
1354
+ [() => TaskSubmittedEventDetails$, 0],
1355
+ [() => TaskSucceededEventDetails$, 0],
1356
+ [() => TaskTimedOutEventDetails$, 0],
1357
+ [() => ExecutionFailedEventDetails$, 0],
1358
+ [() => ExecutionStartedEventDetails$, 0],
1359
+ [() => ExecutionSucceededEventDetails$, 0],
1360
+ [() => ExecutionAbortedEventDetails$, 0],
1361
+ [() => ExecutionTimedOutEventDetails$, 0],
1362
+ () => ExecutionRedrivenEventDetails$,
1363
+ () => MapStateStartedEventDetails$,
1364
+ () => MapIterationEventDetails$,
1365
+ () => MapIterationEventDetails$,
1366
+ () => MapIterationEventDetails$,
1367
+ () => MapIterationEventDetails$,
1368
+ [() => LambdaFunctionFailedEventDetails$, 0],
1369
+ [() => LambdaFunctionScheduleFailedEventDetails$, 0],
1370
+ [() => LambdaFunctionScheduledEventDetails$, 0],
1371
+ [() => LambdaFunctionStartFailedEventDetails$, 0],
1372
+ [() => LambdaFunctionSucceededEventDetails$, 0],
1373
+ [() => LambdaFunctionTimedOutEventDetails$, 0],
1374
+ [() => StateEnteredEventDetails$, 0],
1375
+ [() => StateExitedEventDetails$, 0],
1376
+ () => MapRunStartedEventDetails$,
1377
+ [() => MapRunFailedEventDetails$, 0],
1378
+ () => MapRunRedrivenEventDetails$,
1379
+ [() => EvaluationFailedEventDetails$, 0],
1380
1380
  ],
1381
1381
  ];
1382
- var HistoryEventExecutionDataDetails = [3, n0, _HEEDD, 0, [_t], [2]];
1383
- var InspectionData = [
1382
+ var HistoryEventExecutionDataDetails$ = [3, n0, _HEEDD, 0, [_t], [2]];
1383
+ var InspectionData$ = [
1384
1384
  3,
1385
1385
  n0,
1386
1386
  _ID,
@@ -1394,10 +1394,10 @@ var InspectionData = [
1394
1394
  [() => SensitiveData, 0],
1395
1395
  [() => SensitiveData, 0],
1396
1396
  [() => SensitiveData, 0],
1397
- () => InspectionDataRequest,
1398
- () => InspectionDataResponse,
1397
+ () => InspectionDataRequest$,
1398
+ () => InspectionDataResponse$,
1399
1399
  [() => SensitiveData, 0],
1400
- [() => InspectionErrorDetails, 0],
1400
+ [() => InspectionErrorDetails$, 0],
1401
1401
  [() => SensitiveData, 0],
1402
1402
  [() => SensitiveData, 0],
1403
1403
  [() => SensitiveData, 0],
@@ -1407,9 +1407,9 @@ var InspectionData = [
1407
1407
  [() => InspectionMaxConcurrency, 0],
1408
1408
  ],
1409
1409
  ];
1410
- var InspectionDataRequest = [3, n0, _IDR, 0, [_pr, _me, _u, _h, _b], [0, 0, 0, 0, 0]];
1411
- var InspectionDataResponse = [3, n0, _IDRn, 0, [_pr, _sC, _sM, _h, _b], [0, 0, 0, 0, 0]];
1412
- var InspectionErrorDetails = [
1410
+ var InspectionDataRequest$ = [3, n0, _IDR, 0, [_pr, _me, _u, _h, _b], [0, 0, 0, 0, 0]];
1411
+ var InspectionDataResponse$ = [3, n0, _IDRn, 0, [_pr, _sC, _sM, _h, _b], [0, 0, 0, 0, 0]];
1412
+ var InspectionErrorDetails$ = [
1413
1413
  3,
1414
1414
  n0,
1415
1415
  _IED,
@@ -1421,31 +1421,31 @@ var InspectionErrorDetails = [
1421
1421
  [() => RetryBackoffIntervalSeconds, 0],
1422
1422
  ],
1423
1423
  ];
1424
- var InvalidArn = [-3, n0, _IA, { [_e]: _c }, [_m], [0]];
1425
- schema.TypeRegistry.for(n0).registerError(InvalidArn, InvalidArn$1);
1426
- var InvalidDefinition = [-3, n0, _IDn, { [_e]: _c }, [_m], [0]];
1427
- schema.TypeRegistry.for(n0).registerError(InvalidDefinition, InvalidDefinition$1);
1428
- var InvalidEncryptionConfiguration = [-3, n0, _IEC, { [_e]: _c }, [_m], [0]];
1429
- schema.TypeRegistry.for(n0).registerError(InvalidEncryptionConfiguration, InvalidEncryptionConfiguration$1);
1430
- var InvalidExecutionInput = [-3, n0, _IEI, { [_e]: _c }, [_m], [0]];
1431
- schema.TypeRegistry.for(n0).registerError(InvalidExecutionInput, InvalidExecutionInput$1);
1432
- var InvalidLoggingConfiguration = [-3, n0, _ILC, { [_e]: _c }, [_m], [0]];
1433
- schema.TypeRegistry.for(n0).registerError(InvalidLoggingConfiguration, InvalidLoggingConfiguration$1);
1434
- var InvalidName = [-3, n0, _IN, { [_e]: _c }, [_m], [0]];
1435
- schema.TypeRegistry.for(n0).registerError(InvalidName, InvalidName$1);
1436
- var InvalidOutput = [-3, n0, _IO, { [_e]: _c }, [_m], [0]];
1437
- schema.TypeRegistry.for(n0).registerError(InvalidOutput, InvalidOutput$1);
1438
- var InvalidToken = [-3, n0, _IT, { [_e]: _c }, [_m], [0]];
1439
- schema.TypeRegistry.for(n0).registerError(InvalidToken, InvalidToken$1);
1440
- var InvalidTracingConfiguration = [-3, n0, _ITC, { [_e]: _c }, [_m], [0]];
1441
- schema.TypeRegistry.for(n0).registerError(InvalidTracingConfiguration, InvalidTracingConfiguration$1);
1442
- var KmsAccessDeniedException = [-3, n0, _KADE, { [_e]: _c }, [_m], [0]];
1443
- schema.TypeRegistry.for(n0).registerError(KmsAccessDeniedException, KmsAccessDeniedException$1);
1444
- var KmsInvalidStateException = [-3, n0, _KISE, { [_e]: _c }, [_kKS, _m], [0, 0]];
1445
- schema.TypeRegistry.for(n0).registerError(KmsInvalidStateException, KmsInvalidStateException$1);
1446
- var KmsThrottlingException = [-3, n0, _KTE, { [_e]: _c }, [_m], [0]];
1447
- schema.TypeRegistry.for(n0).registerError(KmsThrottlingException, KmsThrottlingException$1);
1448
- var LambdaFunctionFailedEventDetails = [
1424
+ var InvalidArn$ = [-3, n0, _IA, { [_e]: _c }, [_m], [0]];
1425
+ schema.TypeRegistry.for(n0).registerError(InvalidArn$, InvalidArn);
1426
+ var InvalidDefinition$ = [-3, n0, _IDn, { [_e]: _c }, [_m], [0]];
1427
+ schema.TypeRegistry.for(n0).registerError(InvalidDefinition$, InvalidDefinition);
1428
+ var InvalidEncryptionConfiguration$ = [-3, n0, _IEC, { [_e]: _c }, [_m], [0]];
1429
+ schema.TypeRegistry.for(n0).registerError(InvalidEncryptionConfiguration$, InvalidEncryptionConfiguration);
1430
+ var InvalidExecutionInput$ = [-3, n0, _IEI, { [_e]: _c }, [_m], [0]];
1431
+ schema.TypeRegistry.for(n0).registerError(InvalidExecutionInput$, InvalidExecutionInput);
1432
+ var InvalidLoggingConfiguration$ = [-3, n0, _ILC, { [_e]: _c }, [_m], [0]];
1433
+ schema.TypeRegistry.for(n0).registerError(InvalidLoggingConfiguration$, InvalidLoggingConfiguration);
1434
+ var InvalidName$ = [-3, n0, _IN, { [_e]: _c }, [_m], [0]];
1435
+ schema.TypeRegistry.for(n0).registerError(InvalidName$, InvalidName);
1436
+ var InvalidOutput$ = [-3, n0, _IO, { [_e]: _c }, [_m], [0]];
1437
+ schema.TypeRegistry.for(n0).registerError(InvalidOutput$, InvalidOutput);
1438
+ var InvalidToken$ = [-3, n0, _IT, { [_e]: _c }, [_m], [0]];
1439
+ schema.TypeRegistry.for(n0).registerError(InvalidToken$, InvalidToken);
1440
+ var InvalidTracingConfiguration$ = [-3, n0, _ITC, { [_e]: _c }, [_m], [0]];
1441
+ schema.TypeRegistry.for(n0).registerError(InvalidTracingConfiguration$, InvalidTracingConfiguration);
1442
+ var KmsAccessDeniedException$ = [-3, n0, _KADE, { [_e]: _c }, [_m], [0]];
1443
+ schema.TypeRegistry.for(n0).registerError(KmsAccessDeniedException$, KmsAccessDeniedException);
1444
+ var KmsInvalidStateException$ = [-3, n0, _KISE, { [_e]: _c }, [_kKS, _m], [0, 0]];
1445
+ schema.TypeRegistry.for(n0).registerError(KmsInvalidStateException$, KmsInvalidStateException);
1446
+ var KmsThrottlingException$ = [-3, n0, _KTE, { [_e]: _c }, [_m], [0]];
1447
+ schema.TypeRegistry.for(n0).registerError(KmsThrottlingException$, KmsThrottlingException);
1448
+ var LambdaFunctionFailedEventDetails$ = [
1449
1449
  3,
1450
1450
  n0,
1451
1451
  _LFFED,
@@ -1456,15 +1456,15 @@ var LambdaFunctionFailedEventDetails = [
1456
1456
  [() => SensitiveCause, 0],
1457
1457
  ],
1458
1458
  ];
1459
- var LambdaFunctionScheduledEventDetails = [
1459
+ var LambdaFunctionScheduledEventDetails$ = [
1460
1460
  3,
1461
1461
  n0,
1462
1462
  _LFSED,
1463
1463
  0,
1464
1464
  [_r, _i, _iD, _tIS, _tCa],
1465
- [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails, 1, () => TaskCredentials],
1465
+ [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$, 1, () => TaskCredentials$],
1466
1466
  ];
1467
- var LambdaFunctionScheduleFailedEventDetails = [
1467
+ var LambdaFunctionScheduleFailedEventDetails$ = [
1468
1468
  3,
1469
1469
  n0,
1470
1470
  _LFSFED,
@@ -1475,7 +1475,7 @@ var LambdaFunctionScheduleFailedEventDetails = [
1475
1475
  [() => SensitiveCause, 0],
1476
1476
  ],
1477
1477
  ];
1478
- var LambdaFunctionStartFailedEventDetails = [
1478
+ var LambdaFunctionStartFailedEventDetails$ = [
1479
1479
  3,
1480
1480
  n0,
1481
1481
  _LFSFEDa,
@@ -1486,15 +1486,15 @@ var LambdaFunctionStartFailedEventDetails = [
1486
1486
  [() => SensitiveCause, 0],
1487
1487
  ],
1488
1488
  ];
1489
- var LambdaFunctionSucceededEventDetails = [
1489
+ var LambdaFunctionSucceededEventDetails$ = [
1490
1490
  3,
1491
1491
  n0,
1492
1492
  _LFSEDa,
1493
1493
  0,
1494
1494
  [_o, _oD],
1495
- [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1495
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$],
1496
1496
  ];
1497
- var LambdaFunctionTimedOutEventDetails = [
1497
+ var LambdaFunctionTimedOutEventDetails$ = [
1498
1498
  3,
1499
1499
  n0,
1500
1500
  _LFTOED,
@@ -1505,9 +1505,9 @@ var LambdaFunctionTimedOutEventDetails = [
1505
1505
  [() => SensitiveCause, 0],
1506
1506
  ],
1507
1507
  ];
1508
- var ListActivitiesInput = [3, n0, _LAI, 0, [_mR, _nT], [1, 0]];
1509
- var ListActivitiesOutput = [3, n0, _LAO, 0, [_a, _nT], [() => ActivityList, 0]];
1510
- var ListExecutionsInput = [
1508
+ var ListActivitiesInput$ = [3, n0, _LAI, 0, [_mR, _nT], [1, 0]];
1509
+ var ListActivitiesOutput$ = [3, n0, _LAO, 0, [_a, _nT], [() => ActivityList, 0]];
1510
+ var ListExecutionsInput$ = [
1511
1511
  3,
1512
1512
  n0,
1513
1513
  _LEI,
@@ -1515,11 +1515,11 @@ var ListExecutionsInput = [
1515
1515
  [_sMA, _sF, _mR, _nT, _mRA, _rF],
1516
1516
  [0, 0, 1, 0, 0, 0],
1517
1517
  ];
1518
- var ListExecutionsOutput = [3, n0, _LEO, 0, [_ex, _nT], [() => ExecutionList, 0]];
1519
- var ListMapRunsInput = [3, n0, _LMRI, 0, [_eA, _mR, _nT], [0, 1, 0]];
1520
- var ListMapRunsOutput = [3, n0, _LMRO, 0, [_mRa, _nT], [() => MapRunList, 0]];
1521
- var ListStateMachineAliasesInput = [3, n0, _LSMAI, 0, [_sMA, _nT, _mR], [0, 0, 1]];
1522
- var ListStateMachineAliasesOutput = [
1518
+ var ListExecutionsOutput$ = [3, n0, _LEO, 0, [_ex, _nT], [() => ExecutionList, 0]];
1519
+ var ListMapRunsInput$ = [3, n0, _LMRI, 0, [_eA, _mR, _nT], [0, 1, 0]];
1520
+ var ListMapRunsOutput$ = [3, n0, _LMRO, 0, [_mRa, _nT], [() => MapRunList, 0]];
1521
+ var ListStateMachineAliasesInput$ = [3, n0, _LSMAI, 0, [_sMA, _nT, _mR], [0, 0, 1]];
1522
+ var ListStateMachineAliasesOutput$ = [
1523
1523
  3,
1524
1524
  n0,
1525
1525
  _LSMAO,
@@ -1527,10 +1527,17 @@ var ListStateMachineAliasesOutput = [
1527
1527
  [_sMAt, _nT],
1528
1528
  [() => StateMachineAliasList, 0],
1529
1529
  ];
1530
- var ListStateMachinesInput = [3, n0, _LSMI, 0, [_mR, _nT], [1, 0]];
1531
- var ListStateMachinesOutput = [3, n0, _LSMO, 0, [_sMt, _nT], [() => StateMachineList, 0]];
1532
- var ListStateMachineVersionsInput = [3, n0, _LSMVI, 0, [_sMA, _nT, _mR], [0, 0, 1]];
1533
- var ListStateMachineVersionsOutput = [
1530
+ var ListStateMachinesInput$ = [3, n0, _LSMI, 0, [_mR, _nT], [1, 0]];
1531
+ var ListStateMachinesOutput$ = [
1532
+ 3,
1533
+ n0,
1534
+ _LSMO,
1535
+ 0,
1536
+ [_sMt, _nT],
1537
+ [() => StateMachineList, 0],
1538
+ ];
1539
+ var ListStateMachineVersionsInput$ = [3, n0, _LSMVI, 0, [_sMA, _nT, _mR], [0, 0, 1]];
1540
+ var ListStateMachineVersionsOutput$ = [
1534
1541
  3,
1535
1542
  n0,
1536
1543
  _LSMVO,
@@ -1538,10 +1545,10 @@ var ListStateMachineVersionsOutput = [
1538
1545
  [_sMV, _nT],
1539
1546
  [() => StateMachineVersionList, 0],
1540
1547
  ];
1541
- var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rAe], [0]];
1542
- var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_ta], [() => TagList]];
1543
- var LogDestination = [3, n0, _LD, 0, [_cWLLG], [() => CloudWatchLogsLogGroup]];
1544
- var LoggingConfiguration = [
1548
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_rAe], [0]];
1549
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_ta], [() => TagList]];
1550
+ var LogDestination$ = [3, n0, _LD, 0, [_cWLLG], [() => CloudWatchLogsLogGroup$]];
1551
+ var LoggingConfiguration$ = [
1545
1552
  3,
1546
1553
  n0,
1547
1554
  _LC,
@@ -1549,8 +1556,8 @@ var LoggingConfiguration = [
1549
1556
  [_le, _iED, _des],
1550
1557
  [0, 2, () => LogDestinationList],
1551
1558
  ];
1552
- var MapIterationEventDetails = [3, n0, _MIED, 0, [_n, _ind], [0, 1]];
1553
- var MapRunExecutionCounts = [
1559
+ var MapIterationEventDetails$ = [3, n0, _MIED, 0, [_n, _ind], [0, 1]];
1560
+ var MapRunExecutionCounts$ = [
1554
1561
  3,
1555
1562
  n0,
1556
1563
  _MREC,
@@ -1558,7 +1565,7 @@ var MapRunExecutionCounts = [
1558
1565
  [_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
1559
1566
  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
1560
1567
  ];
1561
- var MapRunFailedEventDetails = [
1568
+ var MapRunFailedEventDetails$ = [
1562
1569
  3,
1563
1570
  n0,
1564
1571
  _MRFED,
@@ -1569,7 +1576,7 @@ var MapRunFailedEventDetails = [
1569
1576
  [() => SensitiveCause, 0],
1570
1577
  ],
1571
1578
  ];
1572
- var MapRunItemCounts = [
1579
+ var MapRunItemCounts$ = [
1573
1580
  3,
1574
1581
  n0,
1575
1582
  _MRIC,
@@ -1577,13 +1584,13 @@ var MapRunItemCounts = [
1577
1584
  [_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
1578
1585
  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
1579
1586
  ];
1580
- var MapRunListItem = [3, n0, _MRLI, 0, [_eA, _mRA, _sMA, _sD, _sDt], [0, 0, 0, 4, 4]];
1581
- var MapRunRedrivenEventDetails = [3, n0, _MRRED, 0, [_mRA, _rCe], [0, 1]];
1582
- var MapRunStartedEventDetails = [3, n0, _MRSED, 0, [_mRA], [0]];
1583
- var MapStateStartedEventDetails = [3, n0, _MSSED, 0, [_len], [1]];
1584
- var MissingRequiredParameter = [-3, n0, _MRP, { [_e]: _c }, [_m], [0]];
1585
- schema.TypeRegistry.for(n0).registerError(MissingRequiredParameter, MissingRequiredParameter$1);
1586
- var MockErrorOutput = [
1587
+ var MapRunListItem$ = [3, n0, _MRLI, 0, [_eA, _mRA, _sMA, _sD, _sDt], [0, 0, 0, 4, 4]];
1588
+ var MapRunRedrivenEventDetails$ = [3, n0, _MRRED, 0, [_mRA, _rCe], [0, 1]];
1589
+ var MapRunStartedEventDetails$ = [3, n0, _MRSED, 0, [_mRA], [0]];
1590
+ var MapStateStartedEventDetails$ = [3, n0, _MSSED, 0, [_len], [1]];
1591
+ var MissingRequiredParameter$ = [-3, n0, _MRP, { [_e]: _c }, [_m], [0]];
1592
+ schema.TypeRegistry.for(n0).registerError(MissingRequiredParameter$, MissingRequiredParameter);
1593
+ var MockErrorOutput$ = [
1587
1594
  3,
1588
1595
  n0,
1589
1596
  _MEO,
@@ -1594,15 +1601,15 @@ var MockErrorOutput = [
1594
1601
  [() => SensitiveCause, 0],
1595
1602
  ],
1596
1603
  ];
1597
- var MockInput = [
1604
+ var MockInput$ = [
1598
1605
  3,
1599
1606
  n0,
1600
1607
  _MI,
1601
1608
  0,
1602
1609
  [_re, _eO, _fVM],
1603
- [[() => SensitiveData, 0], [() => MockErrorOutput, 0], 0],
1610
+ [[() => SensitiveData, 0], [() => MockErrorOutput$, 0], 0],
1604
1611
  ];
1605
- var PublishStateMachineVersionInput = [
1612
+ var PublishStateMachineVersionInput$ = [
1606
1613
  3,
1607
1614
  n0,
1608
1615
  _PSMVI,
@@ -1610,13 +1617,13 @@ var PublishStateMachineVersionInput = [
1610
1617
  [_sMA, _rI, _d],
1611
1618
  [0, 0, [() => VersionDescription, 0]],
1612
1619
  ];
1613
- var PublishStateMachineVersionOutput = [3, n0, _PSMVO, 0, [_cD, _sMVA], [4, 0]];
1614
- var RedriveExecutionInput = [3, n0, _REI, 0, [_eA, _cT], [0, [0, 4]]];
1615
- var RedriveExecutionOutput = [3, n0, _REO, 0, [_rD], [4]];
1616
- var ResourceNotFound = [-3, n0, _RNF, { [_e]: _c, [_hE]: 404 }, [_m, _rN], [0, 0]];
1617
- schema.TypeRegistry.for(n0).registerError(ResourceNotFound, ResourceNotFound$1);
1618
- var RoutingConfigurationListItem = [3, n0, _RCLI, 0, [_sMVA, _w], [0, 1]];
1619
- var SendTaskFailureInput = [
1620
+ var PublishStateMachineVersionOutput$ = [3, n0, _PSMVO, 0, [_cD, _sMVA], [4, 0]];
1621
+ var RedriveExecutionInput$ = [3, n0, _REI, 0, [_eA, _cT], [0, [0, 4]]];
1622
+ var RedriveExecutionOutput$ = [3, n0, _REO, 0, [_rD], [4]];
1623
+ var ResourceNotFound$ = [-3, n0, _RNF, { [_e]: _c, [_hE]: 404 }, [_m, _rN], [0, 0]];
1624
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFound$, ResourceNotFound);
1625
+ var RoutingConfigurationListItem$ = [3, n0, _RCLI, 0, [_sMVA, _w], [0, 1]];
1626
+ var SendTaskFailureInput$ = [
1620
1627
  3,
1621
1628
  n0,
1622
1629
  _STFI,
@@ -1624,14 +1631,14 @@ var SendTaskFailureInput = [
1624
1631
  [_tT, _e, _ca],
1625
1632
  [0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
1626
1633
  ];
1627
- var SendTaskFailureOutput = [3, n0, _STFO, 0, [], []];
1628
- var SendTaskHeartbeatInput = [3, n0, _STHI, 0, [_tT], [0]];
1629
- var SendTaskHeartbeatOutput = [3, n0, _STHO, 0, [], []];
1630
- var SendTaskSuccessInput = [3, n0, _STSI, 0, [_tT, _o], [0, [() => SensitiveData, 0]]];
1631
- var SendTaskSuccessOutput = [3, n0, _STSO, 0, [], []];
1632
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1633
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1634
- var StartExecutionInput = [
1634
+ var SendTaskFailureOutput$ = [3, n0, _STFO, 0, [], []];
1635
+ var SendTaskHeartbeatInput$ = [3, n0, _STHI, 0, [_tT], [0]];
1636
+ var SendTaskHeartbeatOutput$ = [3, n0, _STHO, 0, [], []];
1637
+ var SendTaskSuccessInput$ = [3, n0, _STSI, 0, [_tT, _o], [0, [() => SensitiveData, 0]]];
1638
+ var SendTaskSuccessOutput$ = [3, n0, _STSO, 0, [], []];
1639
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1640
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1641
+ var StartExecutionInput$ = [
1635
1642
  3,
1636
1643
  n0,
1637
1644
  _SEI,
@@ -1639,8 +1646,8 @@ var StartExecutionInput = [
1639
1646
  [_sMA, _n, _i, _tH],
1640
1647
  [0, 0, [() => SensitiveData, 0], 0],
1641
1648
  ];
1642
- var StartExecutionOutput = [3, n0, _SEO, 0, [_eA, _sD], [0, 4]];
1643
- var StartSyncExecutionInput = [
1649
+ var StartExecutionOutput$ = [3, n0, _SEO, 0, [_eA, _sD], [0, 4]];
1650
+ var StartSyncExecutionInput$ = [
1644
1651
  3,
1645
1652
  n0,
1646
1653
  _SSEI,
@@ -1648,7 +1655,7 @@ var StartSyncExecutionInput = [
1648
1655
  [_sMA, _n, _i, _tH, _iDn],
1649
1656
  [0, 0, [() => SensitiveData, 0], 0, 0],
1650
1657
  ];
1651
- var StartSyncExecutionOutput = [
1658
+ var StartSyncExecutionOutput$ = [
1652
1659
  3,
1653
1660
  n0,
1654
1661
  _SSEO,
@@ -1664,22 +1671,22 @@ var StartSyncExecutionOutput = [
1664
1671
  [() => SensitiveError, 0],
1665
1672
  [() => SensitiveCause, 0],
1666
1673
  [() => SensitiveData, 0],
1667
- () => CloudWatchEventsExecutionDataDetails,
1674
+ () => CloudWatchEventsExecutionDataDetails$,
1668
1675
  [() => SensitiveData, 0],
1669
- () => CloudWatchEventsExecutionDataDetails,
1676
+ () => CloudWatchEventsExecutionDataDetails$,
1670
1677
  0,
1671
- () => BillingDetails,
1678
+ () => BillingDetails$,
1672
1679
  ],
1673
1680
  ];
1674
- var StateEnteredEventDetails = [
1681
+ var StateEnteredEventDetails$ = [
1675
1682
  3,
1676
1683
  n0,
1677
1684
  _SEED,
1678
1685
  0,
1679
1686
  [_n, _i, _iD],
1680
- [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1687
+ [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$],
1681
1688
  ];
1682
- var StateExitedEventDetails = [
1689
+ var StateExitedEventDetails$ = [
1683
1690
  3,
1684
1691
  n0,
1685
1692
  _SEEDt,
@@ -1688,25 +1695,25 @@ var StateExitedEventDetails = [
1688
1695
  [
1689
1696
  0,
1690
1697
  [() => SensitiveData, 0],
1691
- () => HistoryEventExecutionDataDetails,
1698
+ () => HistoryEventExecutionDataDetails$,
1692
1699
  [() => AssignedVariables, 0],
1693
- () => AssignedVariablesDetails,
1700
+ () => AssignedVariablesDetails$,
1694
1701
  ],
1695
1702
  ];
1696
- var StateMachineAliasListItem = [3, n0, _SMALI, 0, [_sMAA, _cD], [0, 4]];
1697
- var StateMachineAlreadyExists = [-3, n0, _SMAE, { [_e]: _c }, [_m], [0]];
1698
- schema.TypeRegistry.for(n0).registerError(StateMachineAlreadyExists, StateMachineAlreadyExists$1);
1699
- var StateMachineDeleting = [-3, n0, _SMD, { [_e]: _c }, [_m], [0]];
1700
- schema.TypeRegistry.for(n0).registerError(StateMachineDeleting, StateMachineDeleting$1);
1701
- var StateMachineDoesNotExist = [-3, n0, _SMDNE, { [_e]: _c }, [_m], [0]];
1702
- schema.TypeRegistry.for(n0).registerError(StateMachineDoesNotExist, StateMachineDoesNotExist$1);
1703
- var StateMachineLimitExceeded = [-3, n0, _SMLE, { [_e]: _c }, [_m], [0]];
1704
- schema.TypeRegistry.for(n0).registerError(StateMachineLimitExceeded, StateMachineLimitExceeded$1);
1705
- var StateMachineListItem = [3, n0, _SMLI, 0, [_sMA, _n, _ty, _cD], [0, 0, 0, 4]];
1706
- var StateMachineTypeNotSupported = [-3, n0, _SMTNS, { [_e]: _c }, [_m], [0]];
1707
- schema.TypeRegistry.for(n0).registerError(StateMachineTypeNotSupported, StateMachineTypeNotSupported$1);
1708
- var StateMachineVersionListItem = [3, n0, _SMVLI, 0, [_sMVA, _cD], [0, 4]];
1709
- var StopExecutionInput = [
1703
+ var StateMachineAliasListItem$ = [3, n0, _SMALI, 0, [_sMAA, _cD], [0, 4]];
1704
+ var StateMachineAlreadyExists$ = [-3, n0, _SMAE, { [_e]: _c }, [_m], [0]];
1705
+ schema.TypeRegistry.for(n0).registerError(StateMachineAlreadyExists$, StateMachineAlreadyExists);
1706
+ var StateMachineDeleting$ = [-3, n0, _SMD, { [_e]: _c }, [_m], [0]];
1707
+ schema.TypeRegistry.for(n0).registerError(StateMachineDeleting$, StateMachineDeleting);
1708
+ var StateMachineDoesNotExist$ = [-3, n0, _SMDNE, { [_e]: _c }, [_m], [0]];
1709
+ schema.TypeRegistry.for(n0).registerError(StateMachineDoesNotExist$, StateMachineDoesNotExist);
1710
+ var StateMachineLimitExceeded$ = [-3, n0, _SMLE, { [_e]: _c }, [_m], [0]];
1711
+ schema.TypeRegistry.for(n0).registerError(StateMachineLimitExceeded$, StateMachineLimitExceeded);
1712
+ var StateMachineListItem$ = [3, n0, _SMLI, 0, [_sMA, _n, _ty, _cD], [0, 0, 0, 4]];
1713
+ var StateMachineTypeNotSupported$ = [-3, n0, _SMTNS, { [_e]: _c }, [_m], [0]];
1714
+ schema.TypeRegistry.for(n0).registerError(StateMachineTypeNotSupported$, StateMachineTypeNotSupported);
1715
+ var StateMachineVersionListItem$ = [3, n0, _SMVLI, 0, [_sMVA, _cD], [0, 4]];
1716
+ var StopExecutionInput$ = [
1710
1717
  3,
1711
1718
  n0,
1712
1719
  _SEIt,
@@ -1714,14 +1721,14 @@ var StopExecutionInput = [
1714
1721
  [_eA, _e, _ca],
1715
1722
  [0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
1716
1723
  ];
1717
- var StopExecutionOutput = [3, n0, _SEOt, 0, [_sDt], [4]];
1718
- var Tag = [3, n0, _T, 0, [_k, _va], [0, 0]];
1719
- var TagResourceInput = [3, n0, _TRI, 0, [_rAe, _ta], [0, () => TagList]];
1720
- var TagResourceOutput = [3, n0, _TRO, 0, [], []];
1721
- var TaskCredentials = [3, n0, _TC, 0, [_rA], [0]];
1722
- var TaskDoesNotExist = [-3, n0, _TDNE, { [_e]: _c }, [_m], [0]];
1723
- schema.TypeRegistry.for(n0).registerError(TaskDoesNotExist, TaskDoesNotExist$1);
1724
- var TaskFailedEventDetails = [
1724
+ var StopExecutionOutput$ = [3, n0, _SEOt, 0, [_sDt], [4]];
1725
+ var Tag$ = [3, n0, _T, 0, [_k, _va], [0, 0]];
1726
+ var TagResourceInput$ = [3, n0, _TRI, 0, [_rAe, _ta], [0, () => TagList]];
1727
+ var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
1728
+ var TaskCredentials$ = [3, n0, _TC, 0, [_rA], [0]];
1729
+ var TaskDoesNotExist$ = [-3, n0, _TDNE, { [_e]: _c }, [_m], [0]];
1730
+ schema.TypeRegistry.for(n0).registerError(TaskDoesNotExist$, TaskDoesNotExist);
1731
+ var TaskFailedEventDetails$ = [
1725
1732
  3,
1726
1733
  n0,
1727
1734
  _TFED,
@@ -1729,16 +1736,16 @@ var TaskFailedEventDetails = [
1729
1736
  [_rT, _r, _e, _ca],
1730
1737
  [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
1731
1738
  ];
1732
- var TaskScheduledEventDetails = [
1739
+ var TaskScheduledEventDetails$ = [
1733
1740
  3,
1734
1741
  n0,
1735
1742
  _TSED,
1736
1743
  0,
1737
1744
  [_rT, _r, _reg, _pa, _tIS, _hIS, _tCa],
1738
- [0, 0, 0, [() => ConnectorParameters, 0], 1, 1, () => TaskCredentials],
1745
+ [0, 0, 0, [() => ConnectorParameters, 0], 1, 1, () => TaskCredentials$],
1739
1746
  ];
1740
- var TaskStartedEventDetails = [3, n0, _TSEDa, 0, [_rT, _r], [0, 0]];
1741
- var TaskStartFailedEventDetails = [
1747
+ var TaskStartedEventDetails$ = [3, n0, _TSEDa, 0, [_rT, _r], [0, 0]];
1748
+ var TaskStartFailedEventDetails$ = [
1742
1749
  3,
1743
1750
  n0,
1744
1751
  _TSFED,
@@ -1746,7 +1753,7 @@ var TaskStartFailedEventDetails = [
1746
1753
  [_rT, _r, _e, _ca],
1747
1754
  [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
1748
1755
  ];
1749
- var TaskSubmitFailedEventDetails = [
1756
+ var TaskSubmitFailedEventDetails$ = [
1750
1757
  3,
1751
1758
  n0,
1752
1759
  _TSFEDa,
@@ -1754,25 +1761,25 @@ var TaskSubmitFailedEventDetails = [
1754
1761
  [_rT, _r, _e, _ca],
1755
1762
  [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
1756
1763
  ];
1757
- var TaskSubmittedEventDetails = [
1764
+ var TaskSubmittedEventDetails$ = [
1758
1765
  3,
1759
1766
  n0,
1760
1767
  _TSEDas,
1761
1768
  0,
1762
1769
  [_rT, _r, _o, _oD],
1763
- [0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1770
+ [0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$],
1764
1771
  ];
1765
- var TaskSucceededEventDetails = [
1772
+ var TaskSucceededEventDetails$ = [
1766
1773
  3,
1767
1774
  n0,
1768
1775
  _TSEDask,
1769
1776
  0,
1770
1777
  [_rT, _r, _o, _oD],
1771
- [0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1778
+ [0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails$],
1772
1779
  ];
1773
- var TaskTimedOut = [-3, n0, _TTO, { [_e]: _c }, [_m], [0]];
1774
- schema.TypeRegistry.for(n0).registerError(TaskTimedOut, TaskTimedOut$1);
1775
- var TaskTimedOutEventDetails = [
1780
+ var TaskTimedOut$ = [-3, n0, _TTO, { [_e]: _c }, [_m], [0]];
1781
+ schema.TypeRegistry.for(n0).registerError(TaskTimedOut$, TaskTimedOut);
1782
+ var TaskTimedOutEventDetails$ = [
1776
1783
  3,
1777
1784
  n0,
1778
1785
  _TTOED,
@@ -1780,7 +1787,7 @@ var TaskTimedOutEventDetails = [
1780
1787
  [_rT, _r, _e, _ca],
1781
1788
  [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
1782
1789
  ];
1783
- var TestStateConfiguration = [
1790
+ var TestStateConfiguration$ = [
1784
1791
  3,
1785
1792
  n0,
1786
1793
  _TSC,
@@ -1788,7 +1795,7 @@ var TestStateConfiguration = [
1788
1795
  [_rRC, _eCBS, _mIFC, _mIRD],
1789
1796
  [1, [() => TestStateStateName, 0], 1, [() => SensitiveData, 0]],
1790
1797
  ];
1791
- var TestStateInput = [
1798
+ var TestStateInput$ = [
1792
1799
  3,
1793
1800
  n0,
1794
1801
  _TSI,
@@ -1802,27 +1809,27 @@ var TestStateInput = [
1802
1809
  2,
1803
1810
  [() => SensitiveData, 0],
1804
1811
  [() => TestStateStateName, 0],
1805
- [() => MockInput, 0],
1812
+ [() => MockInput$, 0],
1806
1813
  [() => SensitiveData, 0],
1807
- [() => TestStateConfiguration, 0],
1814
+ [() => TestStateConfiguration$, 0],
1808
1815
  ],
1809
1816
  ];
1810
- var TestStateOutput = [
1817
+ var TestStateOutput$ = [
1811
1818
  3,
1812
1819
  n0,
1813
1820
  _TSO,
1814
1821
  0,
1815
1822
  [_o, _e, _ca, _iDns, _nS, _s],
1816
- [[() => SensitiveData, 0], [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => InspectionData, 0], 0, 0],
1823
+ [[() => SensitiveData, 0], [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => InspectionData$, 0], 0, 0],
1817
1824
  ];
1818
- var TooManyTags = [-3, n0, _TMT, { [_e]: _c, [_hE]: 400 }, [_m, _rN], [0, 0]];
1819
- schema.TypeRegistry.for(n0).registerError(TooManyTags, TooManyTags$1);
1820
- var TracingConfiguration = [3, n0, _TCr, 0, [_en], [2]];
1821
- var UntagResourceInput = [3, n0, _URI, 0, [_rAe, _tK], [0, 64 | 0]];
1822
- var UntagResourceOutput = [3, n0, _URO, 0, [], []];
1823
- var UpdateMapRunInput = [3, n0, _UMRI, 0, [_mRA, _mC, _tFP, _tFC], [0, 1, 1, 1]];
1824
- var UpdateMapRunOutput = [3, n0, _UMRO, 0, [], []];
1825
- var UpdateStateMachineAliasInput = [
1825
+ var TooManyTags$ = [-3, n0, _TMT, { [_e]: _c, [_hE]: 400 }, [_m, _rN], [0, 0]];
1826
+ schema.TypeRegistry.for(n0).registerError(TooManyTags$, TooManyTags);
1827
+ var TracingConfiguration$ = [3, n0, _TCr, 0, [_en], [2]];
1828
+ var UntagResourceInput$ = [3, n0, _URI, 0, [_rAe, _tK], [0, 64 | 0]];
1829
+ var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
1830
+ var UpdateMapRunInput$ = [3, n0, _UMRI, 0, [_mRA, _mC, _tFP, _tFC], [0, 1, 1, 1]];
1831
+ var UpdateMapRunOutput$ = [3, n0, _UMRO, 0, [], []];
1832
+ var UpdateStateMachineAliasInput$ = [
1826
1833
  3,
1827
1834
  n0,
1828
1835
  _USMAI,
@@ -1830,8 +1837,8 @@ var UpdateStateMachineAliasInput = [
1830
1837
  [_sMAA, _d, _rC],
1831
1838
  [0, [() => AliasDescription, 0], () => RoutingConfigurationList],
1832
1839
  ];
1833
- var UpdateStateMachineAliasOutput = [3, n0, _USMAO, 0, [_uD], [4]];
1834
- var UpdateStateMachineInput = [
1840
+ var UpdateStateMachineAliasOutput$ = [3, n0, _USMAO, 0, [_uD], [4]];
1841
+ var UpdateStateMachineInput$ = [
1835
1842
  3,
1836
1843
  n0,
1837
1844
  _USMI,
@@ -1841,15 +1848,15 @@ var UpdateStateMachineInput = [
1841
1848
  0,
1842
1849
  [() => Definition, 0],
1843
1850
  0,
1844
- () => LoggingConfiguration,
1845
- () => TracingConfiguration,
1851
+ () => LoggingConfiguration$,
1852
+ () => TracingConfiguration$,
1846
1853
  2,
1847
1854
  [() => VersionDescription, 0],
1848
- () => EncryptionConfiguration,
1855
+ () => EncryptionConfiguration$,
1849
1856
  ],
1850
1857
  ];
1851
- var UpdateStateMachineOutput = [3, n0, _USMO, 0, [_uD, _rI, _sMVA], [4, 0, 0]];
1852
- var ValidateStateMachineDefinitionDiagnostic = [
1858
+ var UpdateStateMachineOutput$ = [3, n0, _USMO, 0, [_uD, _rI, _sMVA], [4, 0, 0]];
1859
+ var ValidateStateMachineDefinitionDiagnostic$ = [
1853
1860
  3,
1854
1861
  n0,
1855
1862
  _VSMDD,
@@ -1862,7 +1869,7 @@ var ValidateStateMachineDefinitionDiagnostic = [
1862
1869
  [() => ValidateStateMachineDefinitionLocation, 0],
1863
1870
  ],
1864
1871
  ];
1865
- var ValidateStateMachineDefinitionInput = [
1872
+ var ValidateStateMachineDefinitionInput$ = [
1866
1873
  3,
1867
1874
  n0,
1868
1875
  _VSMDI,
@@ -1870,7 +1877,7 @@ var ValidateStateMachineDefinitionInput = [
1870
1877
  [_de, _ty, _se, _mR],
1871
1878
  [[() => Definition, 0], 0, 0, 1],
1872
1879
  ];
1873
- var ValidateStateMachineDefinitionOutput = [
1880
+ var ValidateStateMachineDefinitionOutput$ = [
1874
1881
  3,
1875
1882
  n0,
1876
1883
  _VSMDO,
@@ -1878,297 +1885,304 @@ var ValidateStateMachineDefinitionOutput = [
1878
1885
  [_re, _di, _t],
1879
1886
  [0, [() => ValidateStateMachineDefinitionDiagnosticList, 0], 2],
1880
1887
  ];
1881
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _rea], [0, 0]];
1882
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1883
- var SFNServiceException = [-3, _sm, "SFNServiceException", 0, [], []];
1884
- schema.TypeRegistry.for(_sm).registerError(SFNServiceException, SFNServiceException$1);
1885
- var ActivityList = [1, n0, _AL, 0, () => ActivityListItem];
1886
- var ExecutionList = [1, n0, _EL, 0, () => ExecutionListItem];
1887
- var HistoryEventList = [1, n0, _HEL, 0, [() => HistoryEvent, 0]];
1888
- var LogDestinationList = [1, n0, _LDL, 0, () => LogDestination];
1889
- var MapRunList = [1, n0, _MRL, 0, () => MapRunListItem];
1890
- var RoutingConfigurationList = [1, n0, _RCL, 0, () => RoutingConfigurationListItem];
1891
- var StateMachineAliasList = [1, n0, _SMAL, 0, () => StateMachineAliasListItem];
1892
- var StateMachineList = [1, n0, _SML, 0, () => StateMachineListItem];
1893
- var StateMachineVersionList = [1, n0, _SMVL, 0, () => StateMachineVersionListItem];
1894
- var TagList = [1, n0, _TL, 0, () => Tag];
1888
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _rea], [0, 0]];
1889
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1890
+ var SFNServiceException$ = [-3, _sm, "SFNServiceException", 0, [], []];
1891
+ schema.TypeRegistry.for(_sm).registerError(SFNServiceException$, SFNServiceException);
1892
+ var ActivityList = [1, n0, _AL, 0, () => ActivityListItem$];
1893
+ var ExecutionList = [1, n0, _EL, 0, () => ExecutionListItem$];
1894
+ var HistoryEventList = [1, n0, _HEL, 0, [() => HistoryEvent$, 0]];
1895
+ var LogDestinationList = [1, n0, _LDL, 0, () => LogDestination$];
1896
+ var MapRunList = [1, n0, _MRL, 0, () => MapRunListItem$];
1897
+ var RoutingConfigurationList = [1, n0, _RCL, 0, () => RoutingConfigurationListItem$];
1898
+ var StateMachineAliasList = [1, n0, _SMAL, 0, () => StateMachineAliasListItem$];
1899
+ var StateMachineList = [1, n0, _SML, 0, () => StateMachineListItem$];
1900
+ var StateMachineVersionList = [1, n0, _SMVL, 0, () => StateMachineVersionListItem$];
1901
+ var TagList = [1, n0, _TL, 0, () => Tag$];
1895
1902
  var ValidateStateMachineDefinitionDiagnosticList = [
1896
1903
  1,
1897
1904
  n0,
1898
1905
  _VSMDDL,
1899
1906
  0,
1900
- [() => ValidateStateMachineDefinitionDiagnostic, 0],
1907
+ [() => ValidateStateMachineDefinitionDiagnostic$, 0],
1901
1908
  ];
1902
1909
  var VariableNameList = [1, n0, _VNL, 0, [() => VariableName, 0]];
1903
1910
  var AssignedVariables = [2, n0, _AV, 0, [() => VariableName, 0], [() => VariableValue, 0]];
1904
1911
  var VariableReferences = [2, n0, _VR, 8, [0, 0], [() => VariableNameList, 0]];
1905
- var CreateActivity = [
1912
+ var CreateActivity$ = [
1906
1913
  9,
1907
1914
  n0,
1908
1915
  _CA,
1909
1916
  2,
1910
- () => CreateActivityInput,
1911
- () => CreateActivityOutput,
1917
+ () => CreateActivityInput$,
1918
+ () => CreateActivityOutput$,
1912
1919
  ];
1913
- var CreateStateMachine = [
1920
+ var CreateStateMachine$ = [
1914
1921
  9,
1915
1922
  n0,
1916
1923
  _CSM,
1917
1924
  2,
1918
- () => CreateStateMachineInput,
1919
- () => CreateStateMachineOutput,
1925
+ () => CreateStateMachineInput$,
1926
+ () => CreateStateMachineOutput$,
1920
1927
  ];
1921
- var CreateStateMachineAlias = [
1928
+ var CreateStateMachineAlias$ = [
1922
1929
  9,
1923
1930
  n0,
1924
1931
  _CSMA,
1925
1932
  0,
1926
- () => CreateStateMachineAliasInput,
1927
- () => CreateStateMachineAliasOutput,
1933
+ () => CreateStateMachineAliasInput$,
1934
+ () => CreateStateMachineAliasOutput$,
1928
1935
  ];
1929
- var DeleteActivity = [
1936
+ var DeleteActivity$ = [
1930
1937
  9,
1931
1938
  n0,
1932
1939
  _DA,
1933
1940
  0,
1934
- () => DeleteActivityInput,
1935
- () => DeleteActivityOutput,
1941
+ () => DeleteActivityInput$,
1942
+ () => DeleteActivityOutput$,
1936
1943
  ];
1937
- var DeleteStateMachine = [
1944
+ var DeleteStateMachine$ = [
1938
1945
  9,
1939
1946
  n0,
1940
1947
  _DSM,
1941
1948
  0,
1942
- () => DeleteStateMachineInput,
1943
- () => DeleteStateMachineOutput,
1949
+ () => DeleteStateMachineInput$,
1950
+ () => DeleteStateMachineOutput$,
1944
1951
  ];
1945
- var DeleteStateMachineAlias = [
1952
+ var DeleteStateMachineAlias$ = [
1946
1953
  9,
1947
1954
  n0,
1948
1955
  _DSMA,
1949
1956
  0,
1950
- () => DeleteStateMachineAliasInput,
1951
- () => DeleteStateMachineAliasOutput,
1957
+ () => DeleteStateMachineAliasInput$,
1958
+ () => DeleteStateMachineAliasOutput$,
1952
1959
  ];
1953
- var DeleteStateMachineVersion = [
1960
+ var DeleteStateMachineVersion$ = [
1954
1961
  9,
1955
1962
  n0,
1956
1963
  _DSMV,
1957
1964
  0,
1958
- () => DeleteStateMachineVersionInput,
1959
- () => DeleteStateMachineVersionOutput,
1965
+ () => DeleteStateMachineVersionInput$,
1966
+ () => DeleteStateMachineVersionOutput$,
1960
1967
  ];
1961
- var DescribeActivity = [
1968
+ var DescribeActivity$ = [
1962
1969
  9,
1963
1970
  n0,
1964
1971
  _DAe,
1965
1972
  0,
1966
- () => DescribeActivityInput,
1967
- () => DescribeActivityOutput,
1973
+ () => DescribeActivityInput$,
1974
+ () => DescribeActivityOutput$,
1968
1975
  ];
1969
- var DescribeExecution = [
1976
+ var DescribeExecution$ = [
1970
1977
  9,
1971
1978
  n0,
1972
1979
  _DE,
1973
1980
  0,
1974
- () => DescribeExecutionInput,
1975
- () => DescribeExecutionOutput,
1981
+ () => DescribeExecutionInput$,
1982
+ () => DescribeExecutionOutput$,
1976
1983
  ];
1977
- var DescribeMapRun = [
1984
+ var DescribeMapRun$ = [
1978
1985
  9,
1979
1986
  n0,
1980
1987
  _DMR,
1981
1988
  0,
1982
- () => DescribeMapRunInput,
1983
- () => DescribeMapRunOutput,
1989
+ () => DescribeMapRunInput$,
1990
+ () => DescribeMapRunOutput$,
1984
1991
  ];
1985
- var DescribeStateMachine = [
1992
+ var DescribeStateMachine$ = [
1986
1993
  9,
1987
1994
  n0,
1988
1995
  _DSMe,
1989
1996
  0,
1990
- () => DescribeStateMachineInput,
1991
- () => DescribeStateMachineOutput,
1997
+ () => DescribeStateMachineInput$,
1998
+ () => DescribeStateMachineOutput$,
1992
1999
  ];
1993
- var DescribeStateMachineAlias = [
2000
+ var DescribeStateMachineAlias$ = [
1994
2001
  9,
1995
2002
  n0,
1996
2003
  _DSMAe,
1997
2004
  0,
1998
- () => DescribeStateMachineAliasInput,
1999
- () => DescribeStateMachineAliasOutput,
2005
+ () => DescribeStateMachineAliasInput$,
2006
+ () => DescribeStateMachineAliasOutput$,
2000
2007
  ];
2001
- var DescribeStateMachineForExecution = [
2008
+ var DescribeStateMachineForExecution$ = [
2002
2009
  9,
2003
2010
  n0,
2004
2011
  _DSMFE,
2005
2012
  0,
2006
- () => DescribeStateMachineForExecutionInput,
2007
- () => DescribeStateMachineForExecutionOutput,
2013
+ () => DescribeStateMachineForExecutionInput$,
2014
+ () => DescribeStateMachineForExecutionOutput$,
2008
2015
  ];
2009
- var GetActivityTask = [
2016
+ var GetActivityTask$ = [
2010
2017
  9,
2011
2018
  n0,
2012
2019
  _GAT,
2013
2020
  0,
2014
- () => GetActivityTaskInput,
2015
- () => GetActivityTaskOutput,
2021
+ () => GetActivityTaskInput$,
2022
+ () => GetActivityTaskOutput$,
2016
2023
  ];
2017
- var GetExecutionHistory = [
2024
+ var GetExecutionHistory$ = [
2018
2025
  9,
2019
2026
  n0,
2020
2027
  _GEH,
2021
2028
  0,
2022
- () => GetExecutionHistoryInput,
2023
- () => GetExecutionHistoryOutput,
2029
+ () => GetExecutionHistoryInput$,
2030
+ () => GetExecutionHistoryOutput$,
2024
2031
  ];
2025
- var ListActivities = [
2032
+ var ListActivities$ = [
2026
2033
  9,
2027
2034
  n0,
2028
2035
  _LA,
2029
2036
  0,
2030
- () => ListActivitiesInput,
2031
- () => ListActivitiesOutput,
2037
+ () => ListActivitiesInput$,
2038
+ () => ListActivitiesOutput$,
2032
2039
  ];
2033
- var ListExecutions = [
2040
+ var ListExecutions$ = [
2034
2041
  9,
2035
2042
  n0,
2036
2043
  _LE,
2037
2044
  0,
2038
- () => ListExecutionsInput,
2039
- () => ListExecutionsOutput,
2045
+ () => ListExecutionsInput$,
2046
+ () => ListExecutionsOutput$,
2040
2047
  ];
2041
- var ListMapRuns = [9, n0, _LMR, 0, () => ListMapRunsInput, () => ListMapRunsOutput];
2042
- var ListStateMachineAliases = [
2048
+ var ListMapRuns$ = [9, n0, _LMR, 0, () => ListMapRunsInput$, () => ListMapRunsOutput$];
2049
+ var ListStateMachineAliases$ = [
2043
2050
  9,
2044
2051
  n0,
2045
2052
  _LSMA,
2046
2053
  0,
2047
- () => ListStateMachineAliasesInput,
2048
- () => ListStateMachineAliasesOutput,
2054
+ () => ListStateMachineAliasesInput$,
2055
+ () => ListStateMachineAliasesOutput$,
2049
2056
  ];
2050
- var ListStateMachines = [
2057
+ var ListStateMachines$ = [
2051
2058
  9,
2052
2059
  n0,
2053
2060
  _LSM,
2054
2061
  0,
2055
- () => ListStateMachinesInput,
2056
- () => ListStateMachinesOutput,
2062
+ () => ListStateMachinesInput$,
2063
+ () => ListStateMachinesOutput$,
2057
2064
  ];
2058
- var ListStateMachineVersions = [
2065
+ var ListStateMachineVersions$ = [
2059
2066
  9,
2060
2067
  n0,
2061
2068
  _LSMV,
2062
2069
  0,
2063
- () => ListStateMachineVersionsInput,
2064
- () => ListStateMachineVersionsOutput,
2070
+ () => ListStateMachineVersionsInput$,
2071
+ () => ListStateMachineVersionsOutput$,
2065
2072
  ];
2066
- var ListTagsForResource = [
2073
+ var ListTagsForResource$ = [
2067
2074
  9,
2068
2075
  n0,
2069
2076
  _LTFR,
2070
2077
  0,
2071
- () => ListTagsForResourceInput,
2072
- () => ListTagsForResourceOutput,
2078
+ () => ListTagsForResourceInput$,
2079
+ () => ListTagsForResourceOutput$,
2073
2080
  ];
2074
- var PublishStateMachineVersion = [
2081
+ var PublishStateMachineVersion$ = [
2075
2082
  9,
2076
2083
  n0,
2077
2084
  _PSMV,
2078
2085
  2,
2079
- () => PublishStateMachineVersionInput,
2080
- () => PublishStateMachineVersionOutput,
2086
+ () => PublishStateMachineVersionInput$,
2087
+ () => PublishStateMachineVersionOutput$,
2081
2088
  ];
2082
- var RedriveExecution = [
2089
+ var RedriveExecution$ = [
2083
2090
  9,
2084
2091
  n0,
2085
2092
  _RE,
2086
2093
  2,
2087
- () => RedriveExecutionInput,
2088
- () => RedriveExecutionOutput,
2094
+ () => RedriveExecutionInput$,
2095
+ () => RedriveExecutionOutput$,
2089
2096
  ];
2090
- var SendTaskFailure = [
2097
+ var SendTaskFailure$ = [
2091
2098
  9,
2092
2099
  n0,
2093
2100
  _STF,
2094
2101
  0,
2095
- () => SendTaskFailureInput,
2096
- () => SendTaskFailureOutput,
2102
+ () => SendTaskFailureInput$,
2103
+ () => SendTaskFailureOutput$,
2097
2104
  ];
2098
- var SendTaskHeartbeat = [
2105
+ var SendTaskHeartbeat$ = [
2099
2106
  9,
2100
2107
  n0,
2101
2108
  _STH,
2102
2109
  0,
2103
- () => SendTaskHeartbeatInput,
2104
- () => SendTaskHeartbeatOutput,
2110
+ () => SendTaskHeartbeatInput$,
2111
+ () => SendTaskHeartbeatOutput$,
2105
2112
  ];
2106
- var SendTaskSuccess = [
2113
+ var SendTaskSuccess$ = [
2107
2114
  9,
2108
2115
  n0,
2109
2116
  _STS,
2110
2117
  0,
2111
- () => SendTaskSuccessInput,
2112
- () => SendTaskSuccessOutput,
2118
+ () => SendTaskSuccessInput$,
2119
+ () => SendTaskSuccessOutput$,
2113
2120
  ];
2114
- var StartExecution = [
2121
+ var StartExecution$ = [
2115
2122
  9,
2116
2123
  n0,
2117
2124
  _SEt,
2118
2125
  2,
2119
- () => StartExecutionInput,
2120
- () => StartExecutionOutput,
2126
+ () => StartExecutionInput$,
2127
+ () => StartExecutionOutput$,
2121
2128
  ];
2122
- var StartSyncExecution = [
2129
+ var StartSyncExecution$ = [
2123
2130
  9,
2124
2131
  n0,
2125
2132
  _SSE,
2126
2133
  { [_end]: ["sync-"] },
2127
- () => StartSyncExecutionInput,
2128
- () => StartSyncExecutionOutput,
2134
+ () => StartSyncExecutionInput$,
2135
+ () => StartSyncExecutionOutput$,
2129
2136
  ];
2130
- var StopExecution = [
2137
+ var StopExecution$ = [
2131
2138
  9,
2132
2139
  n0,
2133
2140
  _SEto,
2134
2141
  0,
2135
- () => StopExecutionInput,
2136
- () => StopExecutionOutput,
2142
+ () => StopExecutionInput$,
2143
+ () => StopExecutionOutput$,
2137
2144
  ];
2138
- var TagResource = [9, n0, _TR, 0, () => TagResourceInput, () => TagResourceOutput];
2139
- var TestState = [
2145
+ var TagResource$ = [9, n0, _TR, 0, () => TagResourceInput$, () => TagResourceOutput$];
2146
+ var TestState$ = [
2140
2147
  9,
2141
2148
  n0,
2142
2149
  _TS,
2143
2150
  { [_end]: ["sync-"] },
2144
- () => TestStateInput,
2145
- () => TestStateOutput,
2151
+ () => TestStateInput$,
2152
+ () => TestStateOutput$,
2153
+ ];
2154
+ var UntagResource$ = [
2155
+ 9,
2156
+ n0,
2157
+ _UR,
2158
+ 0,
2159
+ () => UntagResourceInput$,
2160
+ () => UntagResourceOutput$,
2146
2161
  ];
2147
- var UntagResource = [9, n0, _UR, 0, () => UntagResourceInput, () => UntagResourceOutput];
2148
- var UpdateMapRun = [9, n0, _UMR, 0, () => UpdateMapRunInput, () => UpdateMapRunOutput];
2149
- var UpdateStateMachine = [
2162
+ var UpdateMapRun$ = [9, n0, _UMR, 0, () => UpdateMapRunInput$, () => UpdateMapRunOutput$];
2163
+ var UpdateStateMachine$ = [
2150
2164
  9,
2151
2165
  n0,
2152
2166
  _USM,
2153
2167
  2,
2154
- () => UpdateStateMachineInput,
2155
- () => UpdateStateMachineOutput,
2168
+ () => UpdateStateMachineInput$,
2169
+ () => UpdateStateMachineOutput$,
2156
2170
  ];
2157
- var UpdateStateMachineAlias = [
2171
+ var UpdateStateMachineAlias$ = [
2158
2172
  9,
2159
2173
  n0,
2160
2174
  _USMA,
2161
2175
  0,
2162
- () => UpdateStateMachineAliasInput,
2163
- () => UpdateStateMachineAliasOutput,
2176
+ () => UpdateStateMachineAliasInput$,
2177
+ () => UpdateStateMachineAliasOutput$,
2164
2178
  ];
2165
- var ValidateStateMachineDefinition = [
2179
+ var ValidateStateMachineDefinition$ = [
2166
2180
  9,
2167
2181
  n0,
2168
2182
  _VSMD,
2169
2183
  0,
2170
- () => ValidateStateMachineDefinitionInput,
2171
- () => ValidateStateMachineDefinitionOutput,
2184
+ () => ValidateStateMachineDefinitionInput$,
2185
+ () => ValidateStateMachineDefinitionOutput$,
2172
2186
  ];
2173
2187
 
2174
2188
  class CreateActivityCommand extends smithyClient.Command
@@ -2179,7 +2193,7 @@ class CreateActivityCommand extends smithyClient.Command
2179
2193
  })
2180
2194
  .s("AWSStepFunctions", "CreateActivity", {})
2181
2195
  .n("SFNClient", "CreateActivityCommand")
2182
- .sc(CreateActivity)
2196
+ .sc(CreateActivity$)
2183
2197
  .build() {
2184
2198
  }
2185
2199
 
@@ -2191,7 +2205,7 @@ class CreateStateMachineAliasCommand extends smithyClient.Command
2191
2205
  })
2192
2206
  .s("AWSStepFunctions", "CreateStateMachineAlias", {})
2193
2207
  .n("SFNClient", "CreateStateMachineAliasCommand")
2194
- .sc(CreateStateMachineAlias)
2208
+ .sc(CreateStateMachineAlias$)
2195
2209
  .build() {
2196
2210
  }
2197
2211
 
@@ -2203,7 +2217,7 @@ class CreateStateMachineCommand extends smithyClient.Command
2203
2217
  })
2204
2218
  .s("AWSStepFunctions", "CreateStateMachine", {})
2205
2219
  .n("SFNClient", "CreateStateMachineCommand")
2206
- .sc(CreateStateMachine)
2220
+ .sc(CreateStateMachine$)
2207
2221
  .build() {
2208
2222
  }
2209
2223
 
@@ -2215,7 +2229,7 @@ class DeleteActivityCommand extends smithyClient.Command
2215
2229
  })
2216
2230
  .s("AWSStepFunctions", "DeleteActivity", {})
2217
2231
  .n("SFNClient", "DeleteActivityCommand")
2218
- .sc(DeleteActivity)
2232
+ .sc(DeleteActivity$)
2219
2233
  .build() {
2220
2234
  }
2221
2235
 
@@ -2227,7 +2241,7 @@ class DeleteStateMachineAliasCommand extends smithyClient.Command
2227
2241
  })
2228
2242
  .s("AWSStepFunctions", "DeleteStateMachineAlias", {})
2229
2243
  .n("SFNClient", "DeleteStateMachineAliasCommand")
2230
- .sc(DeleteStateMachineAlias)
2244
+ .sc(DeleteStateMachineAlias$)
2231
2245
  .build() {
2232
2246
  }
2233
2247
 
@@ -2239,7 +2253,7 @@ class DeleteStateMachineCommand extends smithyClient.Command
2239
2253
  })
2240
2254
  .s("AWSStepFunctions", "DeleteStateMachine", {})
2241
2255
  .n("SFNClient", "DeleteStateMachineCommand")
2242
- .sc(DeleteStateMachine)
2256
+ .sc(DeleteStateMachine$)
2243
2257
  .build() {
2244
2258
  }
2245
2259
 
@@ -2251,7 +2265,7 @@ class DeleteStateMachineVersionCommand extends smithyClient.Command
2251
2265
  })
2252
2266
  .s("AWSStepFunctions", "DeleteStateMachineVersion", {})
2253
2267
  .n("SFNClient", "DeleteStateMachineVersionCommand")
2254
- .sc(DeleteStateMachineVersion)
2268
+ .sc(DeleteStateMachineVersion$)
2255
2269
  .build() {
2256
2270
  }
2257
2271
 
@@ -2263,7 +2277,7 @@ class DescribeActivityCommand extends smithyClient.Command
2263
2277
  })
2264
2278
  .s("AWSStepFunctions", "DescribeActivity", {})
2265
2279
  .n("SFNClient", "DescribeActivityCommand")
2266
- .sc(DescribeActivity)
2280
+ .sc(DescribeActivity$)
2267
2281
  .build() {
2268
2282
  }
2269
2283
 
@@ -2275,7 +2289,7 @@ class DescribeExecutionCommand extends smithyClient.Command
2275
2289
  })
2276
2290
  .s("AWSStepFunctions", "DescribeExecution", {})
2277
2291
  .n("SFNClient", "DescribeExecutionCommand")
2278
- .sc(DescribeExecution)
2292
+ .sc(DescribeExecution$)
2279
2293
  .build() {
2280
2294
  }
2281
2295
 
@@ -2287,7 +2301,7 @@ class DescribeMapRunCommand extends smithyClient.Command
2287
2301
  })
2288
2302
  .s("AWSStepFunctions", "DescribeMapRun", {})
2289
2303
  .n("SFNClient", "DescribeMapRunCommand")
2290
- .sc(DescribeMapRun)
2304
+ .sc(DescribeMapRun$)
2291
2305
  .build() {
2292
2306
  }
2293
2307
 
@@ -2299,7 +2313,7 @@ class DescribeStateMachineAliasCommand extends smithyClient.Command
2299
2313
  })
2300
2314
  .s("AWSStepFunctions", "DescribeStateMachineAlias", {})
2301
2315
  .n("SFNClient", "DescribeStateMachineAliasCommand")
2302
- .sc(DescribeStateMachineAlias)
2316
+ .sc(DescribeStateMachineAlias$)
2303
2317
  .build() {
2304
2318
  }
2305
2319
 
@@ -2311,7 +2325,7 @@ class DescribeStateMachineCommand extends smithyClient.Command
2311
2325
  })
2312
2326
  .s("AWSStepFunctions", "DescribeStateMachine", {})
2313
2327
  .n("SFNClient", "DescribeStateMachineCommand")
2314
- .sc(DescribeStateMachine)
2328
+ .sc(DescribeStateMachine$)
2315
2329
  .build() {
2316
2330
  }
2317
2331
 
@@ -2323,7 +2337,7 @@ class DescribeStateMachineForExecutionCommand extends smithyClient.Command
2323
2337
  })
2324
2338
  .s("AWSStepFunctions", "DescribeStateMachineForExecution", {})
2325
2339
  .n("SFNClient", "DescribeStateMachineForExecutionCommand")
2326
- .sc(DescribeStateMachineForExecution)
2340
+ .sc(DescribeStateMachineForExecution$)
2327
2341
  .build() {
2328
2342
  }
2329
2343
 
@@ -2335,7 +2349,7 @@ class GetActivityTaskCommand extends smithyClient.Command
2335
2349
  })
2336
2350
  .s("AWSStepFunctions", "GetActivityTask", {})
2337
2351
  .n("SFNClient", "GetActivityTaskCommand")
2338
- .sc(GetActivityTask)
2352
+ .sc(GetActivityTask$)
2339
2353
  .build() {
2340
2354
  }
2341
2355
 
@@ -2347,7 +2361,7 @@ class GetExecutionHistoryCommand extends smithyClient.Command
2347
2361
  })
2348
2362
  .s("AWSStepFunctions", "GetExecutionHistory", {})
2349
2363
  .n("SFNClient", "GetExecutionHistoryCommand")
2350
- .sc(GetExecutionHistory)
2364
+ .sc(GetExecutionHistory$)
2351
2365
  .build() {
2352
2366
  }
2353
2367
 
@@ -2359,7 +2373,7 @@ class ListActivitiesCommand extends smithyClient.Command
2359
2373
  })
2360
2374
  .s("AWSStepFunctions", "ListActivities", {})
2361
2375
  .n("SFNClient", "ListActivitiesCommand")
2362
- .sc(ListActivities)
2376
+ .sc(ListActivities$)
2363
2377
  .build() {
2364
2378
  }
2365
2379
 
@@ -2371,7 +2385,7 @@ class ListExecutionsCommand extends smithyClient.Command
2371
2385
  })
2372
2386
  .s("AWSStepFunctions", "ListExecutions", {})
2373
2387
  .n("SFNClient", "ListExecutionsCommand")
2374
- .sc(ListExecutions)
2388
+ .sc(ListExecutions$)
2375
2389
  .build() {
2376
2390
  }
2377
2391
 
@@ -2383,7 +2397,7 @@ class ListMapRunsCommand extends smithyClient.Command
2383
2397
  })
2384
2398
  .s("AWSStepFunctions", "ListMapRuns", {})
2385
2399
  .n("SFNClient", "ListMapRunsCommand")
2386
- .sc(ListMapRuns)
2400
+ .sc(ListMapRuns$)
2387
2401
  .build() {
2388
2402
  }
2389
2403
 
@@ -2395,7 +2409,7 @@ class ListStateMachineAliasesCommand extends smithyClient.Command
2395
2409
  })
2396
2410
  .s("AWSStepFunctions", "ListStateMachineAliases", {})
2397
2411
  .n("SFNClient", "ListStateMachineAliasesCommand")
2398
- .sc(ListStateMachineAliases)
2412
+ .sc(ListStateMachineAliases$)
2399
2413
  .build() {
2400
2414
  }
2401
2415
 
@@ -2407,7 +2421,7 @@ class ListStateMachinesCommand extends smithyClient.Command
2407
2421
  })
2408
2422
  .s("AWSStepFunctions", "ListStateMachines", {})
2409
2423
  .n("SFNClient", "ListStateMachinesCommand")
2410
- .sc(ListStateMachines)
2424
+ .sc(ListStateMachines$)
2411
2425
  .build() {
2412
2426
  }
2413
2427
 
@@ -2419,7 +2433,7 @@ class ListStateMachineVersionsCommand extends smithyClient.Command
2419
2433
  })
2420
2434
  .s("AWSStepFunctions", "ListStateMachineVersions", {})
2421
2435
  .n("SFNClient", "ListStateMachineVersionsCommand")
2422
- .sc(ListStateMachineVersions)
2436
+ .sc(ListStateMachineVersions$)
2423
2437
  .build() {
2424
2438
  }
2425
2439
 
@@ -2431,7 +2445,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2431
2445
  })
2432
2446
  .s("AWSStepFunctions", "ListTagsForResource", {})
2433
2447
  .n("SFNClient", "ListTagsForResourceCommand")
2434
- .sc(ListTagsForResource)
2448
+ .sc(ListTagsForResource$)
2435
2449
  .build() {
2436
2450
  }
2437
2451
 
@@ -2443,7 +2457,7 @@ class PublishStateMachineVersionCommand extends smithyClient.Command
2443
2457
  })
2444
2458
  .s("AWSStepFunctions", "PublishStateMachineVersion", {})
2445
2459
  .n("SFNClient", "PublishStateMachineVersionCommand")
2446
- .sc(PublishStateMachineVersion)
2460
+ .sc(PublishStateMachineVersion$)
2447
2461
  .build() {
2448
2462
  }
2449
2463
 
@@ -2455,7 +2469,7 @@ class RedriveExecutionCommand extends smithyClient.Command
2455
2469
  })
2456
2470
  .s("AWSStepFunctions", "RedriveExecution", {})
2457
2471
  .n("SFNClient", "RedriveExecutionCommand")
2458
- .sc(RedriveExecution)
2472
+ .sc(RedriveExecution$)
2459
2473
  .build() {
2460
2474
  }
2461
2475
 
@@ -2467,7 +2481,7 @@ class SendTaskFailureCommand extends smithyClient.Command
2467
2481
  })
2468
2482
  .s("AWSStepFunctions", "SendTaskFailure", {})
2469
2483
  .n("SFNClient", "SendTaskFailureCommand")
2470
- .sc(SendTaskFailure)
2484
+ .sc(SendTaskFailure$)
2471
2485
  .build() {
2472
2486
  }
2473
2487
 
@@ -2479,7 +2493,7 @@ class SendTaskHeartbeatCommand extends smithyClient.Command
2479
2493
  })
2480
2494
  .s("AWSStepFunctions", "SendTaskHeartbeat", {})
2481
2495
  .n("SFNClient", "SendTaskHeartbeatCommand")
2482
- .sc(SendTaskHeartbeat)
2496
+ .sc(SendTaskHeartbeat$)
2483
2497
  .build() {
2484
2498
  }
2485
2499
 
@@ -2491,7 +2505,7 @@ class SendTaskSuccessCommand extends smithyClient.Command
2491
2505
  })
2492
2506
  .s("AWSStepFunctions", "SendTaskSuccess", {})
2493
2507
  .n("SFNClient", "SendTaskSuccessCommand")
2494
- .sc(SendTaskSuccess)
2508
+ .sc(SendTaskSuccess$)
2495
2509
  .build() {
2496
2510
  }
2497
2511
 
@@ -2503,7 +2517,7 @@ class StartExecutionCommand extends smithyClient.Command
2503
2517
  })
2504
2518
  .s("AWSStepFunctions", "StartExecution", {})
2505
2519
  .n("SFNClient", "StartExecutionCommand")
2506
- .sc(StartExecution)
2520
+ .sc(StartExecution$)
2507
2521
  .build() {
2508
2522
  }
2509
2523
 
@@ -2515,7 +2529,7 @@ class StartSyncExecutionCommand extends smithyClient.Command
2515
2529
  })
2516
2530
  .s("AWSStepFunctions", "StartSyncExecution", {})
2517
2531
  .n("SFNClient", "StartSyncExecutionCommand")
2518
- .sc(StartSyncExecution)
2532
+ .sc(StartSyncExecution$)
2519
2533
  .build() {
2520
2534
  }
2521
2535
 
@@ -2527,7 +2541,7 @@ class StopExecutionCommand extends smithyClient.Command
2527
2541
  })
2528
2542
  .s("AWSStepFunctions", "StopExecution", {})
2529
2543
  .n("SFNClient", "StopExecutionCommand")
2530
- .sc(StopExecution)
2544
+ .sc(StopExecution$)
2531
2545
  .build() {
2532
2546
  }
2533
2547
 
@@ -2539,7 +2553,7 @@ class TagResourceCommand extends smithyClient.Command
2539
2553
  })
2540
2554
  .s("AWSStepFunctions", "TagResource", {})
2541
2555
  .n("SFNClient", "TagResourceCommand")
2542
- .sc(TagResource)
2556
+ .sc(TagResource$)
2543
2557
  .build() {
2544
2558
  }
2545
2559
 
@@ -2551,7 +2565,7 @@ class TestStateCommand extends smithyClient.Command
2551
2565
  })
2552
2566
  .s("AWSStepFunctions", "TestState", {})
2553
2567
  .n("SFNClient", "TestStateCommand")
2554
- .sc(TestState)
2568
+ .sc(TestState$)
2555
2569
  .build() {
2556
2570
  }
2557
2571
 
@@ -2563,7 +2577,7 @@ class UntagResourceCommand extends smithyClient.Command
2563
2577
  })
2564
2578
  .s("AWSStepFunctions", "UntagResource", {})
2565
2579
  .n("SFNClient", "UntagResourceCommand")
2566
- .sc(UntagResource)
2580
+ .sc(UntagResource$)
2567
2581
  .build() {
2568
2582
  }
2569
2583
 
@@ -2575,7 +2589,7 @@ class UpdateMapRunCommand extends smithyClient.Command
2575
2589
  })
2576
2590
  .s("AWSStepFunctions", "UpdateMapRun", {})
2577
2591
  .n("SFNClient", "UpdateMapRunCommand")
2578
- .sc(UpdateMapRun)
2592
+ .sc(UpdateMapRun$)
2579
2593
  .build() {
2580
2594
  }
2581
2595
 
@@ -2587,7 +2601,7 @@ class UpdateStateMachineAliasCommand extends smithyClient.Command
2587
2601
  })
2588
2602
  .s("AWSStepFunctions", "UpdateStateMachineAlias", {})
2589
2603
  .n("SFNClient", "UpdateStateMachineAliasCommand")
2590
- .sc(UpdateStateMachineAlias)
2604
+ .sc(UpdateStateMachineAlias$)
2591
2605
  .build() {
2592
2606
  }
2593
2607
 
@@ -2599,7 +2613,7 @@ class UpdateStateMachineCommand extends smithyClient.Command
2599
2613
  })
2600
2614
  .s("AWSStepFunctions", "UpdateStateMachine", {})
2601
2615
  .n("SFNClient", "UpdateStateMachineCommand")
2602
- .sc(UpdateStateMachine)
2616
+ .sc(UpdateStateMachine$)
2603
2617
  .build() {
2604
2618
  }
2605
2619
 
@@ -2611,7 +2625,7 @@ class ValidateStateMachineDefinitionCommand extends smithyClient.Command
2611
2625
  })
2612
2626
  .s("AWSStepFunctions", "ValidateStateMachineDefinition", {})
2613
2627
  .n("SFNClient", "ValidateStateMachineDefinitionCommand")
2614
- .sc(ValidateStateMachineDefinition)
2628
+ .sc(ValidateStateMachineDefinition$)
2615
2629
  .build() {
2616
2630
  }
2617
2631
 
@@ -2828,96 +2842,304 @@ Object.defineProperty(exports, "__Client", {
2828
2842
  enumerable: true,
2829
2843
  get: function () { return smithyClient.Client; }
2830
2844
  });
2831
- exports.ActivityAlreadyExists = ActivityAlreadyExists$1;
2832
- exports.ActivityDoesNotExist = ActivityDoesNotExist$1;
2833
- exports.ActivityLimitExceeded = ActivityLimitExceeded$1;
2834
- exports.ActivityWorkerLimitExceeded = ActivityWorkerLimitExceeded$1;
2835
- exports.ConflictException = ConflictException$1;
2845
+ exports.ActivityAlreadyExists = ActivityAlreadyExists;
2846
+ exports.ActivityAlreadyExists$ = ActivityAlreadyExists$;
2847
+ exports.ActivityDoesNotExist = ActivityDoesNotExist;
2848
+ exports.ActivityDoesNotExist$ = ActivityDoesNotExist$;
2849
+ exports.ActivityFailedEventDetails$ = ActivityFailedEventDetails$;
2850
+ exports.ActivityLimitExceeded = ActivityLimitExceeded;
2851
+ exports.ActivityLimitExceeded$ = ActivityLimitExceeded$;
2852
+ exports.ActivityListItem$ = ActivityListItem$;
2853
+ exports.ActivityScheduleFailedEventDetails$ = ActivityScheduleFailedEventDetails$;
2854
+ exports.ActivityScheduledEventDetails$ = ActivityScheduledEventDetails$;
2855
+ exports.ActivityStartedEventDetails$ = ActivityStartedEventDetails$;
2856
+ exports.ActivitySucceededEventDetails$ = ActivitySucceededEventDetails$;
2857
+ exports.ActivityTimedOutEventDetails$ = ActivityTimedOutEventDetails$;
2858
+ exports.ActivityWorkerLimitExceeded = ActivityWorkerLimitExceeded;
2859
+ exports.ActivityWorkerLimitExceeded$ = ActivityWorkerLimitExceeded$;
2860
+ exports.AssignedVariablesDetails$ = AssignedVariablesDetails$;
2861
+ exports.BillingDetails$ = BillingDetails$;
2862
+ exports.CloudWatchEventsExecutionDataDetails$ = CloudWatchEventsExecutionDataDetails$;
2863
+ exports.CloudWatchLogsLogGroup$ = CloudWatchLogsLogGroup$;
2864
+ exports.ConflictException = ConflictException;
2865
+ exports.ConflictException$ = ConflictException$;
2866
+ exports.CreateActivity$ = CreateActivity$;
2836
2867
  exports.CreateActivityCommand = CreateActivityCommand;
2868
+ exports.CreateActivityInput$ = CreateActivityInput$;
2869
+ exports.CreateActivityOutput$ = CreateActivityOutput$;
2870
+ exports.CreateStateMachine$ = CreateStateMachine$;
2871
+ exports.CreateStateMachineAlias$ = CreateStateMachineAlias$;
2837
2872
  exports.CreateStateMachineAliasCommand = CreateStateMachineAliasCommand;
2873
+ exports.CreateStateMachineAliasInput$ = CreateStateMachineAliasInput$;
2874
+ exports.CreateStateMachineAliasOutput$ = CreateStateMachineAliasOutput$;
2838
2875
  exports.CreateStateMachineCommand = CreateStateMachineCommand;
2876
+ exports.CreateStateMachineInput$ = CreateStateMachineInput$;
2877
+ exports.CreateStateMachineOutput$ = CreateStateMachineOutput$;
2878
+ exports.DeleteActivity$ = DeleteActivity$;
2839
2879
  exports.DeleteActivityCommand = DeleteActivityCommand;
2880
+ exports.DeleteActivityInput$ = DeleteActivityInput$;
2881
+ exports.DeleteActivityOutput$ = DeleteActivityOutput$;
2882
+ exports.DeleteStateMachine$ = DeleteStateMachine$;
2883
+ exports.DeleteStateMachineAlias$ = DeleteStateMachineAlias$;
2840
2884
  exports.DeleteStateMachineAliasCommand = DeleteStateMachineAliasCommand;
2885
+ exports.DeleteStateMachineAliasInput$ = DeleteStateMachineAliasInput$;
2886
+ exports.DeleteStateMachineAliasOutput$ = DeleteStateMachineAliasOutput$;
2841
2887
  exports.DeleteStateMachineCommand = DeleteStateMachineCommand;
2888
+ exports.DeleteStateMachineInput$ = DeleteStateMachineInput$;
2889
+ exports.DeleteStateMachineOutput$ = DeleteStateMachineOutput$;
2890
+ exports.DeleteStateMachineVersion$ = DeleteStateMachineVersion$;
2842
2891
  exports.DeleteStateMachineVersionCommand = DeleteStateMachineVersionCommand;
2892
+ exports.DeleteStateMachineVersionInput$ = DeleteStateMachineVersionInput$;
2893
+ exports.DeleteStateMachineVersionOutput$ = DeleteStateMachineVersionOutput$;
2894
+ exports.DescribeActivity$ = DescribeActivity$;
2843
2895
  exports.DescribeActivityCommand = DescribeActivityCommand;
2896
+ exports.DescribeActivityInput$ = DescribeActivityInput$;
2897
+ exports.DescribeActivityOutput$ = DescribeActivityOutput$;
2898
+ exports.DescribeExecution$ = DescribeExecution$;
2844
2899
  exports.DescribeExecutionCommand = DescribeExecutionCommand;
2900
+ exports.DescribeExecutionInput$ = DescribeExecutionInput$;
2901
+ exports.DescribeExecutionOutput$ = DescribeExecutionOutput$;
2902
+ exports.DescribeMapRun$ = DescribeMapRun$;
2845
2903
  exports.DescribeMapRunCommand = DescribeMapRunCommand;
2904
+ exports.DescribeMapRunInput$ = DescribeMapRunInput$;
2905
+ exports.DescribeMapRunOutput$ = DescribeMapRunOutput$;
2906
+ exports.DescribeStateMachine$ = DescribeStateMachine$;
2907
+ exports.DescribeStateMachineAlias$ = DescribeStateMachineAlias$;
2846
2908
  exports.DescribeStateMachineAliasCommand = DescribeStateMachineAliasCommand;
2909
+ exports.DescribeStateMachineAliasInput$ = DescribeStateMachineAliasInput$;
2910
+ exports.DescribeStateMachineAliasOutput$ = DescribeStateMachineAliasOutput$;
2847
2911
  exports.DescribeStateMachineCommand = DescribeStateMachineCommand;
2912
+ exports.DescribeStateMachineForExecution$ = DescribeStateMachineForExecution$;
2848
2913
  exports.DescribeStateMachineForExecutionCommand = DescribeStateMachineForExecutionCommand;
2914
+ exports.DescribeStateMachineForExecutionInput$ = DescribeStateMachineForExecutionInput$;
2915
+ exports.DescribeStateMachineForExecutionOutput$ = DescribeStateMachineForExecutionOutput$;
2916
+ exports.DescribeStateMachineInput$ = DescribeStateMachineInput$;
2917
+ exports.DescribeStateMachineOutput$ = DescribeStateMachineOutput$;
2918
+ exports.EncryptionConfiguration$ = EncryptionConfiguration$;
2849
2919
  exports.EncryptionType = EncryptionType;
2850
- exports.ExecutionAlreadyExists = ExecutionAlreadyExists$1;
2851
- exports.ExecutionDoesNotExist = ExecutionDoesNotExist$1;
2852
- exports.ExecutionLimitExceeded = ExecutionLimitExceeded$1;
2853
- exports.ExecutionNotRedrivable = ExecutionNotRedrivable$1;
2920
+ exports.EvaluationFailedEventDetails$ = EvaluationFailedEventDetails$;
2921
+ exports.ExecutionAbortedEventDetails$ = ExecutionAbortedEventDetails$;
2922
+ exports.ExecutionAlreadyExists = ExecutionAlreadyExists;
2923
+ exports.ExecutionAlreadyExists$ = ExecutionAlreadyExists$;
2924
+ exports.ExecutionDoesNotExist = ExecutionDoesNotExist;
2925
+ exports.ExecutionDoesNotExist$ = ExecutionDoesNotExist$;
2926
+ exports.ExecutionFailedEventDetails$ = ExecutionFailedEventDetails$;
2927
+ exports.ExecutionLimitExceeded = ExecutionLimitExceeded;
2928
+ exports.ExecutionLimitExceeded$ = ExecutionLimitExceeded$;
2929
+ exports.ExecutionListItem$ = ExecutionListItem$;
2930
+ exports.ExecutionNotRedrivable = ExecutionNotRedrivable;
2931
+ exports.ExecutionNotRedrivable$ = ExecutionNotRedrivable$;
2854
2932
  exports.ExecutionRedriveFilter = ExecutionRedriveFilter;
2855
2933
  exports.ExecutionRedriveStatus = ExecutionRedriveStatus;
2934
+ exports.ExecutionRedrivenEventDetails$ = ExecutionRedrivenEventDetails$;
2935
+ exports.ExecutionStartedEventDetails$ = ExecutionStartedEventDetails$;
2856
2936
  exports.ExecutionStatus = ExecutionStatus;
2937
+ exports.ExecutionSucceededEventDetails$ = ExecutionSucceededEventDetails$;
2938
+ exports.ExecutionTimedOutEventDetails$ = ExecutionTimedOutEventDetails$;
2939
+ exports.GetActivityTask$ = GetActivityTask$;
2857
2940
  exports.GetActivityTaskCommand = GetActivityTaskCommand;
2941
+ exports.GetActivityTaskInput$ = GetActivityTaskInput$;
2942
+ exports.GetActivityTaskOutput$ = GetActivityTaskOutput$;
2943
+ exports.GetExecutionHistory$ = GetExecutionHistory$;
2858
2944
  exports.GetExecutionHistoryCommand = GetExecutionHistoryCommand;
2945
+ exports.GetExecutionHistoryInput$ = GetExecutionHistoryInput$;
2946
+ exports.GetExecutionHistoryOutput$ = GetExecutionHistoryOutput$;
2947
+ exports.HistoryEvent$ = HistoryEvent$;
2948
+ exports.HistoryEventExecutionDataDetails$ = HistoryEventExecutionDataDetails$;
2859
2949
  exports.HistoryEventType = HistoryEventType;
2860
2950
  exports.IncludedData = IncludedData;
2951
+ exports.InspectionData$ = InspectionData$;
2952
+ exports.InspectionDataRequest$ = InspectionDataRequest$;
2953
+ exports.InspectionDataResponse$ = InspectionDataResponse$;
2954
+ exports.InspectionErrorDetails$ = InspectionErrorDetails$;
2861
2955
  exports.InspectionLevel = InspectionLevel;
2862
- exports.InvalidArn = InvalidArn$1;
2863
- exports.InvalidDefinition = InvalidDefinition$1;
2864
- exports.InvalidEncryptionConfiguration = InvalidEncryptionConfiguration$1;
2865
- exports.InvalidExecutionInput = InvalidExecutionInput$1;
2866
- exports.InvalidLoggingConfiguration = InvalidLoggingConfiguration$1;
2867
- exports.InvalidName = InvalidName$1;
2868
- exports.InvalidOutput = InvalidOutput$1;
2869
- exports.InvalidToken = InvalidToken$1;
2870
- exports.InvalidTracingConfiguration = InvalidTracingConfiguration$1;
2871
- exports.KmsAccessDeniedException = KmsAccessDeniedException$1;
2872
- exports.KmsInvalidStateException = KmsInvalidStateException$1;
2956
+ exports.InvalidArn = InvalidArn;
2957
+ exports.InvalidArn$ = InvalidArn$;
2958
+ exports.InvalidDefinition = InvalidDefinition;
2959
+ exports.InvalidDefinition$ = InvalidDefinition$;
2960
+ exports.InvalidEncryptionConfiguration = InvalidEncryptionConfiguration;
2961
+ exports.InvalidEncryptionConfiguration$ = InvalidEncryptionConfiguration$;
2962
+ exports.InvalidExecutionInput = InvalidExecutionInput;
2963
+ exports.InvalidExecutionInput$ = InvalidExecutionInput$;
2964
+ exports.InvalidLoggingConfiguration = InvalidLoggingConfiguration;
2965
+ exports.InvalidLoggingConfiguration$ = InvalidLoggingConfiguration$;
2966
+ exports.InvalidName = InvalidName;
2967
+ exports.InvalidName$ = InvalidName$;
2968
+ exports.InvalidOutput = InvalidOutput;
2969
+ exports.InvalidOutput$ = InvalidOutput$;
2970
+ exports.InvalidToken = InvalidToken;
2971
+ exports.InvalidToken$ = InvalidToken$;
2972
+ exports.InvalidTracingConfiguration = InvalidTracingConfiguration;
2973
+ exports.InvalidTracingConfiguration$ = InvalidTracingConfiguration$;
2974
+ exports.KmsAccessDeniedException = KmsAccessDeniedException;
2975
+ exports.KmsAccessDeniedException$ = KmsAccessDeniedException$;
2976
+ exports.KmsInvalidStateException = KmsInvalidStateException;
2977
+ exports.KmsInvalidStateException$ = KmsInvalidStateException$;
2873
2978
  exports.KmsKeyState = KmsKeyState;
2874
- exports.KmsThrottlingException = KmsThrottlingException$1;
2979
+ exports.KmsThrottlingException = KmsThrottlingException;
2980
+ exports.KmsThrottlingException$ = KmsThrottlingException$;
2981
+ exports.LambdaFunctionFailedEventDetails$ = LambdaFunctionFailedEventDetails$;
2982
+ exports.LambdaFunctionScheduleFailedEventDetails$ = LambdaFunctionScheduleFailedEventDetails$;
2983
+ exports.LambdaFunctionScheduledEventDetails$ = LambdaFunctionScheduledEventDetails$;
2984
+ exports.LambdaFunctionStartFailedEventDetails$ = LambdaFunctionStartFailedEventDetails$;
2985
+ exports.LambdaFunctionSucceededEventDetails$ = LambdaFunctionSucceededEventDetails$;
2986
+ exports.LambdaFunctionTimedOutEventDetails$ = LambdaFunctionTimedOutEventDetails$;
2987
+ exports.ListActivities$ = ListActivities$;
2875
2988
  exports.ListActivitiesCommand = ListActivitiesCommand;
2989
+ exports.ListActivitiesInput$ = ListActivitiesInput$;
2990
+ exports.ListActivitiesOutput$ = ListActivitiesOutput$;
2991
+ exports.ListExecutions$ = ListExecutions$;
2876
2992
  exports.ListExecutionsCommand = ListExecutionsCommand;
2993
+ exports.ListExecutionsInput$ = ListExecutionsInput$;
2994
+ exports.ListExecutionsOutput$ = ListExecutionsOutput$;
2995
+ exports.ListMapRuns$ = ListMapRuns$;
2877
2996
  exports.ListMapRunsCommand = ListMapRunsCommand;
2997
+ exports.ListMapRunsInput$ = ListMapRunsInput$;
2998
+ exports.ListMapRunsOutput$ = ListMapRunsOutput$;
2999
+ exports.ListStateMachineAliases$ = ListStateMachineAliases$;
2878
3000
  exports.ListStateMachineAliasesCommand = ListStateMachineAliasesCommand;
3001
+ exports.ListStateMachineAliasesInput$ = ListStateMachineAliasesInput$;
3002
+ exports.ListStateMachineAliasesOutput$ = ListStateMachineAliasesOutput$;
3003
+ exports.ListStateMachineVersions$ = ListStateMachineVersions$;
2879
3004
  exports.ListStateMachineVersionsCommand = ListStateMachineVersionsCommand;
3005
+ exports.ListStateMachineVersionsInput$ = ListStateMachineVersionsInput$;
3006
+ exports.ListStateMachineVersionsOutput$ = ListStateMachineVersionsOutput$;
3007
+ exports.ListStateMachines$ = ListStateMachines$;
2880
3008
  exports.ListStateMachinesCommand = ListStateMachinesCommand;
3009
+ exports.ListStateMachinesInput$ = ListStateMachinesInput$;
3010
+ exports.ListStateMachinesOutput$ = ListStateMachinesOutput$;
3011
+ exports.ListTagsForResource$ = ListTagsForResource$;
2881
3012
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3013
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
3014
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
3015
+ exports.LogDestination$ = LogDestination$;
2882
3016
  exports.LogLevel = LogLevel;
3017
+ exports.LoggingConfiguration$ = LoggingConfiguration$;
3018
+ exports.MapIterationEventDetails$ = MapIterationEventDetails$;
3019
+ exports.MapRunExecutionCounts$ = MapRunExecutionCounts$;
3020
+ exports.MapRunFailedEventDetails$ = MapRunFailedEventDetails$;
3021
+ exports.MapRunItemCounts$ = MapRunItemCounts$;
3022
+ exports.MapRunListItem$ = MapRunListItem$;
3023
+ exports.MapRunRedrivenEventDetails$ = MapRunRedrivenEventDetails$;
3024
+ exports.MapRunStartedEventDetails$ = MapRunStartedEventDetails$;
2883
3025
  exports.MapRunStatus = MapRunStatus;
2884
- exports.MissingRequiredParameter = MissingRequiredParameter$1;
3026
+ exports.MapStateStartedEventDetails$ = MapStateStartedEventDetails$;
3027
+ exports.MissingRequiredParameter = MissingRequiredParameter;
3028
+ exports.MissingRequiredParameter$ = MissingRequiredParameter$;
3029
+ exports.MockErrorOutput$ = MockErrorOutput$;
3030
+ exports.MockInput$ = MockInput$;
2885
3031
  exports.MockResponseValidationMode = MockResponseValidationMode;
3032
+ exports.PublishStateMachineVersion$ = PublishStateMachineVersion$;
2886
3033
  exports.PublishStateMachineVersionCommand = PublishStateMachineVersionCommand;
3034
+ exports.PublishStateMachineVersionInput$ = PublishStateMachineVersionInput$;
3035
+ exports.PublishStateMachineVersionOutput$ = PublishStateMachineVersionOutput$;
3036
+ exports.RedriveExecution$ = RedriveExecution$;
2887
3037
  exports.RedriveExecutionCommand = RedriveExecutionCommand;
2888
- exports.ResourceNotFound = ResourceNotFound$1;
3038
+ exports.RedriveExecutionInput$ = RedriveExecutionInput$;
3039
+ exports.RedriveExecutionOutput$ = RedriveExecutionOutput$;
3040
+ exports.ResourceNotFound = ResourceNotFound;
3041
+ exports.ResourceNotFound$ = ResourceNotFound$;
3042
+ exports.RoutingConfigurationListItem$ = RoutingConfigurationListItem$;
2889
3043
  exports.SFN = SFN;
2890
3044
  exports.SFNClient = SFNClient;
2891
- exports.SFNServiceException = SFNServiceException$1;
3045
+ exports.SFNServiceException = SFNServiceException;
3046
+ exports.SFNServiceException$ = SFNServiceException$;
3047
+ exports.SendTaskFailure$ = SendTaskFailure$;
2892
3048
  exports.SendTaskFailureCommand = SendTaskFailureCommand;
3049
+ exports.SendTaskFailureInput$ = SendTaskFailureInput$;
3050
+ exports.SendTaskFailureOutput$ = SendTaskFailureOutput$;
3051
+ exports.SendTaskHeartbeat$ = SendTaskHeartbeat$;
2893
3052
  exports.SendTaskHeartbeatCommand = SendTaskHeartbeatCommand;
3053
+ exports.SendTaskHeartbeatInput$ = SendTaskHeartbeatInput$;
3054
+ exports.SendTaskHeartbeatOutput$ = SendTaskHeartbeatOutput$;
3055
+ exports.SendTaskSuccess$ = SendTaskSuccess$;
2894
3056
  exports.SendTaskSuccessCommand = SendTaskSuccessCommand;
2895
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
3057
+ exports.SendTaskSuccessInput$ = SendTaskSuccessInput$;
3058
+ exports.SendTaskSuccessOutput$ = SendTaskSuccessOutput$;
3059
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3060
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
3061
+ exports.StartExecution$ = StartExecution$;
2896
3062
  exports.StartExecutionCommand = StartExecutionCommand;
3063
+ exports.StartExecutionInput$ = StartExecutionInput$;
3064
+ exports.StartExecutionOutput$ = StartExecutionOutput$;
3065
+ exports.StartSyncExecution$ = StartSyncExecution$;
2897
3066
  exports.StartSyncExecutionCommand = StartSyncExecutionCommand;
2898
- exports.StateMachineAlreadyExists = StateMachineAlreadyExists$1;
2899
- exports.StateMachineDeleting = StateMachineDeleting$1;
2900
- exports.StateMachineDoesNotExist = StateMachineDoesNotExist$1;
2901
- exports.StateMachineLimitExceeded = StateMachineLimitExceeded$1;
3067
+ exports.StartSyncExecutionInput$ = StartSyncExecutionInput$;
3068
+ exports.StartSyncExecutionOutput$ = StartSyncExecutionOutput$;
3069
+ exports.StateEnteredEventDetails$ = StateEnteredEventDetails$;
3070
+ exports.StateExitedEventDetails$ = StateExitedEventDetails$;
3071
+ exports.StateMachineAliasListItem$ = StateMachineAliasListItem$;
3072
+ exports.StateMachineAlreadyExists = StateMachineAlreadyExists;
3073
+ exports.StateMachineAlreadyExists$ = StateMachineAlreadyExists$;
3074
+ exports.StateMachineDeleting = StateMachineDeleting;
3075
+ exports.StateMachineDeleting$ = StateMachineDeleting$;
3076
+ exports.StateMachineDoesNotExist = StateMachineDoesNotExist;
3077
+ exports.StateMachineDoesNotExist$ = StateMachineDoesNotExist$;
3078
+ exports.StateMachineLimitExceeded = StateMachineLimitExceeded;
3079
+ exports.StateMachineLimitExceeded$ = StateMachineLimitExceeded$;
3080
+ exports.StateMachineListItem$ = StateMachineListItem$;
2902
3081
  exports.StateMachineStatus = StateMachineStatus;
2903
3082
  exports.StateMachineType = StateMachineType;
2904
- exports.StateMachineTypeNotSupported = StateMachineTypeNotSupported$1;
3083
+ exports.StateMachineTypeNotSupported = StateMachineTypeNotSupported;
3084
+ exports.StateMachineTypeNotSupported$ = StateMachineTypeNotSupported$;
3085
+ exports.StateMachineVersionListItem$ = StateMachineVersionListItem$;
3086
+ exports.StopExecution$ = StopExecution$;
2905
3087
  exports.StopExecutionCommand = StopExecutionCommand;
3088
+ exports.StopExecutionInput$ = StopExecutionInput$;
3089
+ exports.StopExecutionOutput$ = StopExecutionOutput$;
2906
3090
  exports.SyncExecutionStatus = SyncExecutionStatus;
3091
+ exports.Tag$ = Tag$;
3092
+ exports.TagResource$ = TagResource$;
2907
3093
  exports.TagResourceCommand = TagResourceCommand;
2908
- exports.TaskDoesNotExist = TaskDoesNotExist$1;
2909
- exports.TaskTimedOut = TaskTimedOut$1;
3094
+ exports.TagResourceInput$ = TagResourceInput$;
3095
+ exports.TagResourceOutput$ = TagResourceOutput$;
3096
+ exports.TaskCredentials$ = TaskCredentials$;
3097
+ exports.TaskDoesNotExist = TaskDoesNotExist;
3098
+ exports.TaskDoesNotExist$ = TaskDoesNotExist$;
3099
+ exports.TaskFailedEventDetails$ = TaskFailedEventDetails$;
3100
+ exports.TaskScheduledEventDetails$ = TaskScheduledEventDetails$;
3101
+ exports.TaskStartFailedEventDetails$ = TaskStartFailedEventDetails$;
3102
+ exports.TaskStartedEventDetails$ = TaskStartedEventDetails$;
3103
+ exports.TaskSubmitFailedEventDetails$ = TaskSubmitFailedEventDetails$;
3104
+ exports.TaskSubmittedEventDetails$ = TaskSubmittedEventDetails$;
3105
+ exports.TaskSucceededEventDetails$ = TaskSucceededEventDetails$;
3106
+ exports.TaskTimedOut = TaskTimedOut;
3107
+ exports.TaskTimedOut$ = TaskTimedOut$;
3108
+ exports.TaskTimedOutEventDetails$ = TaskTimedOutEventDetails$;
2910
3109
  exports.TestExecutionStatus = TestExecutionStatus;
3110
+ exports.TestState$ = TestState$;
2911
3111
  exports.TestStateCommand = TestStateCommand;
2912
- exports.TooManyTags = TooManyTags$1;
3112
+ exports.TestStateConfiguration$ = TestStateConfiguration$;
3113
+ exports.TestStateInput$ = TestStateInput$;
3114
+ exports.TestStateOutput$ = TestStateOutput$;
3115
+ exports.TooManyTags = TooManyTags;
3116
+ exports.TooManyTags$ = TooManyTags$;
3117
+ exports.TracingConfiguration$ = TracingConfiguration$;
3118
+ exports.UntagResource$ = UntagResource$;
2913
3119
  exports.UntagResourceCommand = UntagResourceCommand;
3120
+ exports.UntagResourceInput$ = UntagResourceInput$;
3121
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
3122
+ exports.UpdateMapRun$ = UpdateMapRun$;
2914
3123
  exports.UpdateMapRunCommand = UpdateMapRunCommand;
3124
+ exports.UpdateMapRunInput$ = UpdateMapRunInput$;
3125
+ exports.UpdateMapRunOutput$ = UpdateMapRunOutput$;
3126
+ exports.UpdateStateMachine$ = UpdateStateMachine$;
3127
+ exports.UpdateStateMachineAlias$ = UpdateStateMachineAlias$;
2915
3128
  exports.UpdateStateMachineAliasCommand = UpdateStateMachineAliasCommand;
3129
+ exports.UpdateStateMachineAliasInput$ = UpdateStateMachineAliasInput$;
3130
+ exports.UpdateStateMachineAliasOutput$ = UpdateStateMachineAliasOutput$;
2916
3131
  exports.UpdateStateMachineCommand = UpdateStateMachineCommand;
3132
+ exports.UpdateStateMachineInput$ = UpdateStateMachineInput$;
3133
+ exports.UpdateStateMachineOutput$ = UpdateStateMachineOutput$;
3134
+ exports.ValidateStateMachineDefinition$ = ValidateStateMachineDefinition$;
2917
3135
  exports.ValidateStateMachineDefinitionCommand = ValidateStateMachineDefinitionCommand;
3136
+ exports.ValidateStateMachineDefinitionDiagnostic$ = ValidateStateMachineDefinitionDiagnostic$;
3137
+ exports.ValidateStateMachineDefinitionInput$ = ValidateStateMachineDefinitionInput$;
3138
+ exports.ValidateStateMachineDefinitionOutput$ = ValidateStateMachineDefinitionOutput$;
2918
3139
  exports.ValidateStateMachineDefinitionResultCode = ValidateStateMachineDefinitionResultCode;
2919
3140
  exports.ValidateStateMachineDefinitionSeverity = ValidateStateMachineDefinitionSeverity;
2920
- exports.ValidationException = ValidationException$1;
3141
+ exports.ValidationException = ValidationException;
3142
+ exports.ValidationException$ = ValidationException$;
2921
3143
  exports.ValidationExceptionReason = ValidationExceptionReason;
2922
3144
  exports.paginateGetExecutionHistory = paginateGetExecutionHistory;
2923
3145
  exports.paginateListActivities = paginateListActivities;