@aws-sdk/client-sfn 3.927.0 → 3.929.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 (61) hide show
  1. package/dist-cjs/index.js +2040 -2279
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/SFNClient.js +2 -0
  4. package/dist-es/commands/CreateActivityCommand.js +3 -9
  5. package/dist-es/commands/CreateStateMachineAliasCommand.js +3 -10
  6. package/dist-es/commands/CreateStateMachineCommand.js +3 -10
  7. package/dist-es/commands/DeleteActivityCommand.js +3 -9
  8. package/dist-es/commands/DeleteStateMachineAliasCommand.js +3 -9
  9. package/dist-es/commands/DeleteStateMachineCommand.js +3 -9
  10. package/dist-es/commands/DeleteStateMachineVersionCommand.js +3 -9
  11. package/dist-es/commands/DescribeActivityCommand.js +3 -9
  12. package/dist-es/commands/DescribeExecutionCommand.js +3 -10
  13. package/dist-es/commands/DescribeMapRunCommand.js +3 -9
  14. package/dist-es/commands/DescribeStateMachineAliasCommand.js +3 -10
  15. package/dist-es/commands/DescribeStateMachineCommand.js +3 -10
  16. package/dist-es/commands/DescribeStateMachineForExecutionCommand.js +3 -10
  17. package/dist-es/commands/GetActivityTaskCommand.js +3 -10
  18. package/dist-es/commands/GetExecutionHistoryCommand.js +3 -10
  19. package/dist-es/commands/ListActivitiesCommand.js +3 -9
  20. package/dist-es/commands/ListExecutionsCommand.js +3 -9
  21. package/dist-es/commands/ListMapRunsCommand.js +3 -9
  22. package/dist-es/commands/ListStateMachineAliasesCommand.js +3 -9
  23. package/dist-es/commands/ListStateMachineVersionsCommand.js +3 -9
  24. package/dist-es/commands/ListStateMachinesCommand.js +3 -9
  25. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  26. package/dist-es/commands/PublishStateMachineVersionCommand.js +3 -10
  27. package/dist-es/commands/RedriveExecutionCommand.js +3 -9
  28. package/dist-es/commands/SendTaskFailureCommand.js +3 -10
  29. package/dist-es/commands/SendTaskHeartbeatCommand.js +3 -9
  30. package/dist-es/commands/SendTaskSuccessCommand.js +3 -10
  31. package/dist-es/commands/StartExecutionCommand.js +3 -10
  32. package/dist-es/commands/StartSyncExecutionCommand.js +3 -10
  33. package/dist-es/commands/StopExecutionCommand.js +3 -10
  34. package/dist-es/commands/TagResourceCommand.js +3 -9
  35. package/dist-es/commands/TestStateCommand.js +3 -10
  36. package/dist-es/commands/UntagResourceCommand.js +3 -9
  37. package/dist-es/commands/UpdateMapRunCommand.js +3 -9
  38. package/dist-es/commands/UpdateStateMachineAliasCommand.js +3 -10
  39. package/dist-es/commands/UpdateStateMachineCommand.js +3 -10
  40. package/dist-es/commands/ValidateStateMachineDefinitionCommand.js +3 -10
  41. package/dist-es/models/models_0.js +0 -333
  42. package/dist-es/runtimeConfig.shared.js +7 -0
  43. package/dist-es/schemas/schemas_0.js +1867 -0
  44. package/dist-types/SFNClient.d.ts +10 -1
  45. package/dist-types/models/models_0.d.ts +0 -204
  46. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  47. package/dist-types/runtimeConfig.d.ts +1 -0
  48. package/dist-types/runtimeConfig.native.d.ts +1 -0
  49. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  50. package/dist-types/schemas/schemas_0.d.ts +235 -0
  51. package/dist-types/ts3.4/SFNClient.d.ts +4 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +0 -151
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  56. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  57. package/dist-types/ts3.4/schemas/schemas_0.d.ts +242 -0
  58. package/package.json +5 -6
  59. package/dist-es/protocols/Aws_json1_0.js +0 -1539
  60. package/dist-types/protocols/Aws_json1_0.d.ts +0 -335
  61. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -449
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
- var uuid = require('@smithy/uuid');
20
18
 
21
19
  const resolveClientEndpointParameters = (options) => {
22
20
  return Object.assign(options, {
@@ -92,6 +90,7 @@ class SFNClient extends smithyClient.Client {
92
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
93
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
94
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
95
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
96
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
97
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -111,14 +110,14 @@ class SFNClient extends smithyClient.Client {
111
110
  }
112
111
  }
113
112
 
114
- class SFNServiceException extends smithyClient.ServiceException {
113
+ let SFNServiceException$1 = class SFNServiceException extends smithyClient.ServiceException {
115
114
  constructor(options) {
116
115
  super(options);
117
116
  Object.setPrototypeOf(this, SFNServiceException.prototype);
118
117
  }
119
- }
118
+ };
120
119
 
121
- class ActivityAlreadyExists extends SFNServiceException {
120
+ let ActivityAlreadyExists$1 = class ActivityAlreadyExists extends SFNServiceException$1 {
122
121
  name = "ActivityAlreadyExists";
123
122
  $fault = "client";
124
123
  constructor(opts) {
@@ -129,8 +128,8 @@ class ActivityAlreadyExists extends SFNServiceException {
129
128
  });
130
129
  Object.setPrototypeOf(this, ActivityAlreadyExists.prototype);
131
130
  }
132
- }
133
- class ActivityDoesNotExist extends SFNServiceException {
131
+ };
132
+ let ActivityDoesNotExist$1 = class ActivityDoesNotExist extends SFNServiceException$1 {
134
133
  name = "ActivityDoesNotExist";
135
134
  $fault = "client";
136
135
  constructor(opts) {
@@ -141,8 +140,8 @@ class ActivityDoesNotExist extends SFNServiceException {
141
140
  });
142
141
  Object.setPrototypeOf(this, ActivityDoesNotExist.prototype);
143
142
  }
144
- }
145
- class ActivityLimitExceeded extends SFNServiceException {
143
+ };
144
+ let ActivityLimitExceeded$1 = class ActivityLimitExceeded extends SFNServiceException$1 {
146
145
  name = "ActivityLimitExceeded";
147
146
  $fault = "client";
148
147
  constructor(opts) {
@@ -153,8 +152,8 @@ class ActivityLimitExceeded extends SFNServiceException {
153
152
  });
154
153
  Object.setPrototypeOf(this, ActivityLimitExceeded.prototype);
155
154
  }
156
- }
157
- class ActivityWorkerLimitExceeded extends SFNServiceException {
155
+ };
156
+ let ActivityWorkerLimitExceeded$1 = class ActivityWorkerLimitExceeded extends SFNServiceException$1 {
158
157
  name = "ActivityWorkerLimitExceeded";
159
158
  $fault = "client";
160
159
  constructor(opts) {
@@ -165,12 +164,12 @@ class ActivityWorkerLimitExceeded extends SFNServiceException {
165
164
  });
166
165
  Object.setPrototypeOf(this, ActivityWorkerLimitExceeded.prototype);
167
166
  }
168
- }
167
+ };
169
168
  const EncryptionType = {
170
169
  AWS_OWNED_KEY: "AWS_OWNED_KEY",
171
170
  CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
172
171
  };
173
- class InvalidEncryptionConfiguration extends SFNServiceException {
172
+ let InvalidEncryptionConfiguration$1 = class InvalidEncryptionConfiguration extends SFNServiceException$1 {
174
173
  name = "InvalidEncryptionConfiguration";
175
174
  $fault = "client";
176
175
  constructor(opts) {
@@ -181,8 +180,8 @@ class InvalidEncryptionConfiguration extends SFNServiceException {
181
180
  });
182
181
  Object.setPrototypeOf(this, InvalidEncryptionConfiguration.prototype);
183
182
  }
184
- }
185
- class InvalidName extends SFNServiceException {
183
+ };
184
+ let InvalidName$1 = class InvalidName extends SFNServiceException$1 {
186
185
  name = "InvalidName";
187
186
  $fault = "client";
188
187
  constructor(opts) {
@@ -193,8 +192,8 @@ class InvalidName extends SFNServiceException {
193
192
  });
194
193
  Object.setPrototypeOf(this, InvalidName.prototype);
195
194
  }
196
- }
197
- class KmsAccessDeniedException extends SFNServiceException {
195
+ };
196
+ let KmsAccessDeniedException$1 = class KmsAccessDeniedException extends SFNServiceException$1 {
198
197
  name = "KmsAccessDeniedException";
199
198
  $fault = "client";
200
199
  constructor(opts) {
@@ -205,8 +204,8 @@ class KmsAccessDeniedException extends SFNServiceException {
205
204
  });
206
205
  Object.setPrototypeOf(this, KmsAccessDeniedException.prototype);
207
206
  }
208
- }
209
- class KmsThrottlingException extends SFNServiceException {
207
+ };
208
+ let KmsThrottlingException$1 = class KmsThrottlingException extends SFNServiceException$1 {
210
209
  name = "KmsThrottlingException";
211
210
  $fault = "client";
212
211
  constructor(opts) {
@@ -217,8 +216,8 @@ class KmsThrottlingException extends SFNServiceException {
217
216
  });
218
217
  Object.setPrototypeOf(this, KmsThrottlingException.prototype);
219
218
  }
220
- }
221
- class TooManyTags extends SFNServiceException {
219
+ };
220
+ let TooManyTags$1 = class TooManyTags extends SFNServiceException$1 {
222
221
  name = "TooManyTags";
223
222
  $fault = "client";
224
223
  resourceName;
@@ -231,8 +230,8 @@ class TooManyTags extends SFNServiceException {
231
230
  Object.setPrototypeOf(this, TooManyTags.prototype);
232
231
  this.resourceName = opts.resourceName;
233
232
  }
234
- }
235
- class ConflictException extends SFNServiceException {
233
+ };
234
+ let ConflictException$1 = class ConflictException extends SFNServiceException$1 {
236
235
  name = "ConflictException";
237
236
  $fault = "client";
238
237
  constructor(opts) {
@@ -243,7 +242,7 @@ class ConflictException extends SFNServiceException {
243
242
  });
244
243
  Object.setPrototypeOf(this, ConflictException.prototype);
245
244
  }
246
- }
245
+ };
247
246
  const LogLevel = {
248
247
  ALL: "ALL",
249
248
  ERROR: "ERROR",
@@ -254,7 +253,7 @@ const StateMachineType = {
254
253
  EXPRESS: "EXPRESS",
255
254
  STANDARD: "STANDARD",
256
255
  };
257
- class InvalidArn extends SFNServiceException {
256
+ let InvalidArn$1 = class InvalidArn extends SFNServiceException$1 {
258
257
  name = "InvalidArn";
259
258
  $fault = "client";
260
259
  constructor(opts) {
@@ -265,8 +264,8 @@ class InvalidArn extends SFNServiceException {
265
264
  });
266
265
  Object.setPrototypeOf(this, InvalidArn.prototype);
267
266
  }
268
- }
269
- class InvalidDefinition extends SFNServiceException {
267
+ };
268
+ let InvalidDefinition$1 = class InvalidDefinition extends SFNServiceException$1 {
270
269
  name = "InvalidDefinition";
271
270
  $fault = "client";
272
271
  constructor(opts) {
@@ -277,8 +276,8 @@ class InvalidDefinition extends SFNServiceException {
277
276
  });
278
277
  Object.setPrototypeOf(this, InvalidDefinition.prototype);
279
278
  }
280
- }
281
- class InvalidLoggingConfiguration extends SFNServiceException {
279
+ };
280
+ let InvalidLoggingConfiguration$1 = class InvalidLoggingConfiguration extends SFNServiceException$1 {
282
281
  name = "InvalidLoggingConfiguration";
283
282
  $fault = "client";
284
283
  constructor(opts) {
@@ -289,8 +288,8 @@ class InvalidLoggingConfiguration extends SFNServiceException {
289
288
  });
290
289
  Object.setPrototypeOf(this, InvalidLoggingConfiguration.prototype);
291
290
  }
292
- }
293
- class InvalidTracingConfiguration extends SFNServiceException {
291
+ };
292
+ let InvalidTracingConfiguration$1 = class InvalidTracingConfiguration extends SFNServiceException$1 {
294
293
  name = "InvalidTracingConfiguration";
295
294
  $fault = "client";
296
295
  constructor(opts) {
@@ -301,8 +300,8 @@ class InvalidTracingConfiguration extends SFNServiceException {
301
300
  });
302
301
  Object.setPrototypeOf(this, InvalidTracingConfiguration.prototype);
303
302
  }
304
- }
305
- class StateMachineAlreadyExists extends SFNServiceException {
303
+ };
304
+ let StateMachineAlreadyExists$1 = class StateMachineAlreadyExists extends SFNServiceException$1 {
306
305
  name = "StateMachineAlreadyExists";
307
306
  $fault = "client";
308
307
  constructor(opts) {
@@ -313,8 +312,8 @@ class StateMachineAlreadyExists extends SFNServiceException {
313
312
  });
314
313
  Object.setPrototypeOf(this, StateMachineAlreadyExists.prototype);
315
314
  }
316
- }
317
- class StateMachineDeleting extends SFNServiceException {
315
+ };
316
+ let StateMachineDeleting$1 = class StateMachineDeleting extends SFNServiceException$1 {
318
317
  name = "StateMachineDeleting";
319
318
  $fault = "client";
320
319
  constructor(opts) {
@@ -325,8 +324,8 @@ class StateMachineDeleting extends SFNServiceException {
325
324
  });
326
325
  Object.setPrototypeOf(this, StateMachineDeleting.prototype);
327
326
  }
328
- }
329
- class StateMachineLimitExceeded extends SFNServiceException {
327
+ };
328
+ let StateMachineLimitExceeded$1 = class StateMachineLimitExceeded extends SFNServiceException$1 {
330
329
  name = "StateMachineLimitExceeded";
331
330
  $fault = "client";
332
331
  constructor(opts) {
@@ -337,8 +336,8 @@ class StateMachineLimitExceeded extends SFNServiceException {
337
336
  });
338
337
  Object.setPrototypeOf(this, StateMachineLimitExceeded.prototype);
339
338
  }
340
- }
341
- class StateMachineTypeNotSupported extends SFNServiceException {
339
+ };
340
+ let StateMachineTypeNotSupported$1 = class StateMachineTypeNotSupported extends SFNServiceException$1 {
342
341
  name = "StateMachineTypeNotSupported";
343
342
  $fault = "client";
344
343
  constructor(opts) {
@@ -349,14 +348,14 @@ class StateMachineTypeNotSupported extends SFNServiceException {
349
348
  });
350
349
  Object.setPrototypeOf(this, StateMachineTypeNotSupported.prototype);
351
350
  }
352
- }
351
+ };
353
352
  const ValidationExceptionReason = {
354
353
  API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS",
355
354
  CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN",
356
355
  INVALID_ROUTING_CONFIGURATION: "INVALID_ROUTING_CONFIGURATION",
357
356
  MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER",
358
357
  };
359
- class ValidationException extends SFNServiceException {
358
+ let ValidationException$1 = class ValidationException extends SFNServiceException$1 {
360
359
  name = "ValidationException";
361
360
  $fault = "client";
362
361
  reason;
@@ -369,8 +368,8 @@ class ValidationException extends SFNServiceException {
369
368
  Object.setPrototypeOf(this, ValidationException.prototype);
370
369
  this.reason = opts.reason;
371
370
  }
372
- }
373
- class ResourceNotFound extends SFNServiceException {
371
+ };
372
+ let ResourceNotFound$1 = class ResourceNotFound extends SFNServiceException$1 {
374
373
  name = "ResourceNotFound";
375
374
  $fault = "client";
376
375
  resourceName;
@@ -383,8 +382,8 @@ class ResourceNotFound extends SFNServiceException {
383
382
  Object.setPrototypeOf(this, ResourceNotFound.prototype);
384
383
  this.resourceName = opts.resourceName;
385
384
  }
386
- }
387
- class ServiceQuotaExceededException extends SFNServiceException {
385
+ };
386
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SFNServiceException$1 {
388
387
  name = "ServiceQuotaExceededException";
389
388
  $fault = "client";
390
389
  constructor(opts) {
@@ -395,7 +394,7 @@ class ServiceQuotaExceededException extends SFNServiceException {
395
394
  });
396
395
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
397
396
  }
398
- }
397
+ };
399
398
  const IncludedData = {
400
399
  ALL_DATA: "ALL_DATA",
401
400
  METADATA_ONLY: "METADATA_ONLY",
@@ -413,7 +412,7 @@ const ExecutionStatus = {
413
412
  SUCCEEDED: "SUCCEEDED",
414
413
  TIMED_OUT: "TIMED_OUT",
415
414
  };
416
- class ExecutionDoesNotExist extends SFNServiceException {
415
+ let ExecutionDoesNotExist$1 = class ExecutionDoesNotExist extends SFNServiceException$1 {
417
416
  name = "ExecutionDoesNotExist";
418
417
  $fault = "client";
419
418
  constructor(opts) {
@@ -424,7 +423,7 @@ class ExecutionDoesNotExist extends SFNServiceException {
424
423
  });
425
424
  Object.setPrototypeOf(this, ExecutionDoesNotExist.prototype);
426
425
  }
427
- }
426
+ };
428
427
  const KmsKeyState = {
429
428
  CREATING: "CREATING",
430
429
  DISABLED: "DISABLED",
@@ -432,7 +431,7 @@ const KmsKeyState = {
432
431
  PENDING_IMPORT: "PENDING_IMPORT",
433
432
  UNAVAILABLE: "UNAVAILABLE",
434
433
  };
435
- class KmsInvalidStateException extends SFNServiceException {
434
+ let KmsInvalidStateException$1 = class KmsInvalidStateException extends SFNServiceException$1 {
436
435
  name = "KmsInvalidStateException";
437
436
  $fault = "client";
438
437
  kmsKeyState;
@@ -445,7 +444,7 @@ class KmsInvalidStateException extends SFNServiceException {
445
444
  Object.setPrototypeOf(this, KmsInvalidStateException.prototype);
446
445
  this.kmsKeyState = opts.kmsKeyState;
447
446
  }
448
- }
447
+ };
449
448
  const MapRunStatus = {
450
449
  ABORTED: "ABORTED",
451
450
  FAILED: "FAILED",
@@ -456,7 +455,7 @@ const StateMachineStatus = {
456
455
  ACTIVE: "ACTIVE",
457
456
  DELETING: "DELETING",
458
457
  };
459
- class StateMachineDoesNotExist extends SFNServiceException {
458
+ let StateMachineDoesNotExist$1 = class StateMachineDoesNotExist extends SFNServiceException$1 {
460
459
  name = "StateMachineDoesNotExist";
461
460
  $fault = "client";
462
461
  constructor(opts) {
@@ -467,7 +466,7 @@ class StateMachineDoesNotExist extends SFNServiceException {
467
466
  });
468
467
  Object.setPrototypeOf(this, StateMachineDoesNotExist.prototype);
469
468
  }
470
- }
469
+ };
471
470
  const HistoryEventType = {
472
471
  ActivityFailed: "ActivityFailed",
473
472
  ActivityScheduleFailed: "ActivityScheduleFailed",
@@ -532,7 +531,7 @@ const HistoryEventType = {
532
531
  WaitStateEntered: "WaitStateEntered",
533
532
  WaitStateExited: "WaitStateExited",
534
533
  };
535
- class InvalidToken extends SFNServiceException {
534
+ let InvalidToken$1 = class InvalidToken extends SFNServiceException$1 {
536
535
  name = "InvalidToken";
537
536
  $fault = "client";
538
537
  constructor(opts) {
@@ -543,12 +542,12 @@ class InvalidToken extends SFNServiceException {
543
542
  });
544
543
  Object.setPrototypeOf(this, InvalidToken.prototype);
545
544
  }
546
- }
545
+ };
547
546
  const ExecutionRedriveFilter = {
548
547
  NOT_REDRIVEN: "NOT_REDRIVEN",
549
548
  REDRIVEN: "REDRIVEN",
550
549
  };
551
- class ExecutionLimitExceeded extends SFNServiceException {
550
+ let ExecutionLimitExceeded$1 = class ExecutionLimitExceeded extends SFNServiceException$1 {
552
551
  name = "ExecutionLimitExceeded";
553
552
  $fault = "client";
554
553
  constructor(opts) {
@@ -559,8 +558,8 @@ class ExecutionLimitExceeded extends SFNServiceException {
559
558
  });
560
559
  Object.setPrototypeOf(this, ExecutionLimitExceeded.prototype);
561
560
  }
562
- }
563
- class ExecutionNotRedrivable extends SFNServiceException {
561
+ };
562
+ let ExecutionNotRedrivable$1 = class ExecutionNotRedrivable extends SFNServiceException$1 {
564
563
  name = "ExecutionNotRedrivable";
565
564
  $fault = "client";
566
565
  constructor(opts) {
@@ -571,8 +570,8 @@ class ExecutionNotRedrivable extends SFNServiceException {
571
570
  });
572
571
  Object.setPrototypeOf(this, ExecutionNotRedrivable.prototype);
573
572
  }
574
- }
575
- class TaskDoesNotExist extends SFNServiceException {
573
+ };
574
+ let TaskDoesNotExist$1 = class TaskDoesNotExist extends SFNServiceException$1 {
576
575
  name = "TaskDoesNotExist";
577
576
  $fault = "client";
578
577
  constructor(opts) {
@@ -583,8 +582,8 @@ class TaskDoesNotExist extends SFNServiceException {
583
582
  });
584
583
  Object.setPrototypeOf(this, TaskDoesNotExist.prototype);
585
584
  }
586
- }
587
- class TaskTimedOut extends SFNServiceException {
585
+ };
586
+ let TaskTimedOut$1 = class TaskTimedOut extends SFNServiceException$1 {
588
587
  name = "TaskTimedOut";
589
588
  $fault = "client";
590
589
  constructor(opts) {
@@ -595,8 +594,8 @@ class TaskTimedOut extends SFNServiceException {
595
594
  });
596
595
  Object.setPrototypeOf(this, TaskTimedOut.prototype);
597
596
  }
598
- }
599
- class InvalidOutput extends SFNServiceException {
597
+ };
598
+ let InvalidOutput$1 = class InvalidOutput extends SFNServiceException$1 {
600
599
  name = "InvalidOutput";
601
600
  $fault = "client";
602
601
  constructor(opts) {
@@ -607,8 +606,8 @@ class InvalidOutput extends SFNServiceException {
607
606
  });
608
607
  Object.setPrototypeOf(this, InvalidOutput.prototype);
609
608
  }
610
- }
611
- class ExecutionAlreadyExists extends SFNServiceException {
609
+ };
610
+ let ExecutionAlreadyExists$1 = class ExecutionAlreadyExists extends SFNServiceException$1 {
612
611
  name = "ExecutionAlreadyExists";
613
612
  $fault = "client";
614
613
  constructor(opts) {
@@ -619,8 +618,8 @@ class ExecutionAlreadyExists extends SFNServiceException {
619
618
  });
620
619
  Object.setPrototypeOf(this, ExecutionAlreadyExists.prototype);
621
620
  }
622
- }
623
- class InvalidExecutionInput extends SFNServiceException {
621
+ };
622
+ let InvalidExecutionInput$1 = class InvalidExecutionInput extends SFNServiceException$1 {
624
623
  name = "InvalidExecutionInput";
625
624
  $fault = "client";
626
625
  constructor(opts) {
@@ -631,7 +630,7 @@ class InvalidExecutionInput extends SFNServiceException {
631
630
  });
632
631
  Object.setPrototypeOf(this, InvalidExecutionInput.prototype);
633
632
  }
634
- }
633
+ };
635
634
  const SyncExecutionStatus = {
636
635
  FAILED: "FAILED",
637
636
  SUCCEEDED: "SUCCEEDED",
@@ -648,7 +647,7 @@ const TestExecutionStatus = {
648
647
  RETRIABLE: "RETRIABLE",
649
648
  SUCCEEDED: "SUCCEEDED",
650
649
  };
651
- class MissingRequiredParameter extends SFNServiceException {
650
+ let MissingRequiredParameter$1 = class MissingRequiredParameter extends SFNServiceException$1 {
652
651
  name = "MissingRequiredParameter";
653
652
  $fault = "client";
654
653
  constructor(opts) {
@@ -659,7 +658,7 @@ class MissingRequiredParameter extends SFNServiceException {
659
658
  });
660
659
  Object.setPrototypeOf(this, MissingRequiredParameter.prototype);
661
660
  }
662
- }
661
+ };
663
662
  const ValidateStateMachineDefinitionSeverity = {
664
663
  ERROR: "ERROR",
665
664
  WARNING: "WARNING",
@@ -668,1886 +667,1879 @@ const ValidateStateMachineDefinitionResultCode = {
668
667
  FAIL: "FAIL",
669
668
  OK: "OK",
670
669
  };
671
- const ActivityFailedEventDetailsFilterSensitiveLog = (obj) => ({
672
- ...obj,
673
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
674
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
675
- });
676
- const ActivityScheduledEventDetailsFilterSensitiveLog = (obj) => ({
677
- ...obj,
678
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
679
- });
680
- const ActivityScheduleFailedEventDetailsFilterSensitiveLog = (obj) => ({
681
- ...obj,
682
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
683
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
684
- });
685
- const ActivitySucceededEventDetailsFilterSensitiveLog = (obj) => ({
686
- ...obj,
687
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
688
- });
689
- const ActivityTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
690
- ...obj,
691
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
692
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
693
- });
694
- const CreateStateMachineInputFilterSensitiveLog = (obj) => ({
695
- ...obj,
696
- ...(obj.definition && { definition: smithyClient.SENSITIVE_STRING }),
697
- ...(obj.versionDescription && { versionDescription: smithyClient.SENSITIVE_STRING }),
698
- });
699
- const CreateStateMachineAliasInputFilterSensitiveLog = (obj) => ({
700
- ...obj,
701
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
702
- });
703
- const DescribeExecutionOutputFilterSensitiveLog = (obj) => ({
704
- ...obj,
705
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
706
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
707
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
708
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
709
- ...(obj.redriveStatusReason && { redriveStatusReason: smithyClient.SENSITIVE_STRING }),
710
- });
711
- const DescribeStateMachineOutputFilterSensitiveLog = (obj) => ({
712
- ...obj,
713
- ...(obj.definition && { definition: smithyClient.SENSITIVE_STRING }),
714
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
715
- ...(obj.variableReferences && { variableReferences: smithyClient.SENSITIVE_STRING }),
716
- });
717
- const DescribeStateMachineAliasOutputFilterSensitiveLog = (obj) => ({
718
- ...obj,
719
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
720
- });
721
- const DescribeStateMachineForExecutionOutputFilterSensitiveLog = (obj) => ({
722
- ...obj,
723
- ...(obj.definition && { definition: smithyClient.SENSITIVE_STRING }),
724
- ...(obj.variableReferences && { variableReferences: smithyClient.SENSITIVE_STRING }),
725
- });
726
- const GetActivityTaskOutputFilterSensitiveLog = (obj) => ({
727
- ...obj,
728
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
729
- });
730
- const EvaluationFailedEventDetailsFilterSensitiveLog = (obj) => ({
731
- ...obj,
732
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
733
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
734
- ...(obj.location && { location: smithyClient.SENSITIVE_STRING }),
735
- });
736
- const ExecutionAbortedEventDetailsFilterSensitiveLog = (obj) => ({
737
- ...obj,
738
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
739
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
740
- });
741
- const ExecutionFailedEventDetailsFilterSensitiveLog = (obj) => ({
742
- ...obj,
743
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
744
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
745
- });
746
- const ExecutionStartedEventDetailsFilterSensitiveLog = (obj) => ({
747
- ...obj,
748
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
749
- });
750
- const ExecutionSucceededEventDetailsFilterSensitiveLog = (obj) => ({
751
- ...obj,
752
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
753
- });
754
- const ExecutionTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
755
- ...obj,
756
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
757
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
758
- });
759
- const LambdaFunctionFailedEventDetailsFilterSensitiveLog = (obj) => ({
760
- ...obj,
761
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
762
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
763
- });
764
- const LambdaFunctionScheduledEventDetailsFilterSensitiveLog = (obj) => ({
765
- ...obj,
766
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
767
- });
768
- const LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog = (obj) => ({
769
- ...obj,
770
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
771
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
772
- });
773
- const LambdaFunctionStartFailedEventDetailsFilterSensitiveLog = (obj) => ({
774
- ...obj,
775
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
776
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
777
- });
778
- const LambdaFunctionSucceededEventDetailsFilterSensitiveLog = (obj) => ({
779
- ...obj,
780
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
781
- });
782
- const LambdaFunctionTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
783
- ...obj,
784
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
785
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
786
- });
787
- const MapRunFailedEventDetailsFilterSensitiveLog = (obj) => ({
788
- ...obj,
789
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
790
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
791
- });
792
- const StateEnteredEventDetailsFilterSensitiveLog = (obj) => ({
793
- ...obj,
794
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
795
- });
796
- const StateExitedEventDetailsFilterSensitiveLog = (obj) => ({
797
- ...obj,
798
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
799
- ...(obj.assignedVariables && { assignedVariables: smithyClient.SENSITIVE_STRING }),
800
- });
801
- const TaskFailedEventDetailsFilterSensitiveLog = (obj) => ({
802
- ...obj,
803
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
804
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
805
- });
806
- const TaskScheduledEventDetailsFilterSensitiveLog = (obj) => ({
807
- ...obj,
808
- ...(obj.parameters && { parameters: smithyClient.SENSITIVE_STRING }),
809
- });
810
- const TaskStartFailedEventDetailsFilterSensitiveLog = (obj) => ({
811
- ...obj,
812
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
813
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
814
- });
815
- const TaskSubmitFailedEventDetailsFilterSensitiveLog = (obj) => ({
816
- ...obj,
817
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
818
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
819
- });
820
- const TaskSubmittedEventDetailsFilterSensitiveLog = (obj) => ({
821
- ...obj,
822
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
823
- });
824
- const TaskSucceededEventDetailsFilterSensitiveLog = (obj) => ({
825
- ...obj,
826
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
827
- });
828
- const TaskTimedOutEventDetailsFilterSensitiveLog = (obj) => ({
829
- ...obj,
830
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
831
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
832
- });
833
- const HistoryEventFilterSensitiveLog = (obj) => ({
834
- ...obj,
835
- ...(obj.activityFailedEventDetails && {
836
- activityFailedEventDetails: ActivityFailedEventDetailsFilterSensitiveLog(obj.activityFailedEventDetails),
837
- }),
838
- ...(obj.activityScheduleFailedEventDetails && {
839
- activityScheduleFailedEventDetails: ActivityScheduleFailedEventDetailsFilterSensitiveLog(obj.activityScheduleFailedEventDetails),
840
- }),
841
- ...(obj.activityScheduledEventDetails && {
842
- activityScheduledEventDetails: ActivityScheduledEventDetailsFilterSensitiveLog(obj.activityScheduledEventDetails),
843
- }),
844
- ...(obj.activitySucceededEventDetails && {
845
- activitySucceededEventDetails: ActivitySucceededEventDetailsFilterSensitiveLog(obj.activitySucceededEventDetails),
846
- }),
847
- ...(obj.activityTimedOutEventDetails && {
848
- activityTimedOutEventDetails: ActivityTimedOutEventDetailsFilterSensitiveLog(obj.activityTimedOutEventDetails),
849
- }),
850
- ...(obj.taskFailedEventDetails && {
851
- taskFailedEventDetails: TaskFailedEventDetailsFilterSensitiveLog(obj.taskFailedEventDetails),
852
- }),
853
- ...(obj.taskScheduledEventDetails && {
854
- taskScheduledEventDetails: TaskScheduledEventDetailsFilterSensitiveLog(obj.taskScheduledEventDetails),
855
- }),
856
- ...(obj.taskStartFailedEventDetails && {
857
- taskStartFailedEventDetails: TaskStartFailedEventDetailsFilterSensitiveLog(obj.taskStartFailedEventDetails),
858
- }),
859
- ...(obj.taskSubmitFailedEventDetails && {
860
- taskSubmitFailedEventDetails: TaskSubmitFailedEventDetailsFilterSensitiveLog(obj.taskSubmitFailedEventDetails),
861
- }),
862
- ...(obj.taskSubmittedEventDetails && {
863
- taskSubmittedEventDetails: TaskSubmittedEventDetailsFilterSensitiveLog(obj.taskSubmittedEventDetails),
864
- }),
865
- ...(obj.taskSucceededEventDetails && {
866
- taskSucceededEventDetails: TaskSucceededEventDetailsFilterSensitiveLog(obj.taskSucceededEventDetails),
867
- }),
868
- ...(obj.taskTimedOutEventDetails && {
869
- taskTimedOutEventDetails: TaskTimedOutEventDetailsFilterSensitiveLog(obj.taskTimedOutEventDetails),
870
- }),
871
- ...(obj.executionFailedEventDetails && {
872
- executionFailedEventDetails: ExecutionFailedEventDetailsFilterSensitiveLog(obj.executionFailedEventDetails),
873
- }),
874
- ...(obj.executionStartedEventDetails && {
875
- executionStartedEventDetails: ExecutionStartedEventDetailsFilterSensitiveLog(obj.executionStartedEventDetails),
876
- }),
877
- ...(obj.executionSucceededEventDetails && {
878
- executionSucceededEventDetails: ExecutionSucceededEventDetailsFilterSensitiveLog(obj.executionSucceededEventDetails),
879
- }),
880
- ...(obj.executionAbortedEventDetails && {
881
- executionAbortedEventDetails: ExecutionAbortedEventDetailsFilterSensitiveLog(obj.executionAbortedEventDetails),
882
- }),
883
- ...(obj.executionTimedOutEventDetails && {
884
- executionTimedOutEventDetails: ExecutionTimedOutEventDetailsFilterSensitiveLog(obj.executionTimedOutEventDetails),
885
- }),
886
- ...(obj.lambdaFunctionFailedEventDetails && {
887
- lambdaFunctionFailedEventDetails: LambdaFunctionFailedEventDetailsFilterSensitiveLog(obj.lambdaFunctionFailedEventDetails),
888
- }),
889
- ...(obj.lambdaFunctionScheduleFailedEventDetails && {
890
- lambdaFunctionScheduleFailedEventDetails: LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog(obj.lambdaFunctionScheduleFailedEventDetails),
891
- }),
892
- ...(obj.lambdaFunctionScheduledEventDetails && {
893
- lambdaFunctionScheduledEventDetails: LambdaFunctionScheduledEventDetailsFilterSensitiveLog(obj.lambdaFunctionScheduledEventDetails),
894
- }),
895
- ...(obj.lambdaFunctionStartFailedEventDetails && {
896
- lambdaFunctionStartFailedEventDetails: LambdaFunctionStartFailedEventDetailsFilterSensitiveLog(obj.lambdaFunctionStartFailedEventDetails),
897
- }),
898
- ...(obj.lambdaFunctionSucceededEventDetails && {
899
- lambdaFunctionSucceededEventDetails: LambdaFunctionSucceededEventDetailsFilterSensitiveLog(obj.lambdaFunctionSucceededEventDetails),
900
- }),
901
- ...(obj.lambdaFunctionTimedOutEventDetails && {
902
- lambdaFunctionTimedOutEventDetails: LambdaFunctionTimedOutEventDetailsFilterSensitiveLog(obj.lambdaFunctionTimedOutEventDetails),
903
- }),
904
- ...(obj.stateEnteredEventDetails && {
905
- stateEnteredEventDetails: StateEnteredEventDetailsFilterSensitiveLog(obj.stateEnteredEventDetails),
906
- }),
907
- ...(obj.stateExitedEventDetails && {
908
- stateExitedEventDetails: StateExitedEventDetailsFilterSensitiveLog(obj.stateExitedEventDetails),
909
- }),
910
- ...(obj.mapRunFailedEventDetails && {
911
- mapRunFailedEventDetails: MapRunFailedEventDetailsFilterSensitiveLog(obj.mapRunFailedEventDetails),
912
- }),
913
- ...(obj.evaluationFailedEventDetails && {
914
- evaluationFailedEventDetails: EvaluationFailedEventDetailsFilterSensitiveLog(obj.evaluationFailedEventDetails),
915
- }),
916
- });
917
- const GetExecutionHistoryOutputFilterSensitiveLog = (obj) => ({
918
- ...obj,
919
- ...(obj.events && { events: obj.events.map((item) => HistoryEventFilterSensitiveLog(item)) }),
920
- });
921
- const PublishStateMachineVersionInputFilterSensitiveLog = (obj) => ({
922
- ...obj,
923
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
924
- });
925
- const SendTaskFailureInputFilterSensitiveLog = (obj) => ({
926
- ...obj,
927
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
928
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
929
- });
930
- const SendTaskSuccessInputFilterSensitiveLog = (obj) => ({
931
- ...obj,
932
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
933
- });
934
- const StartExecutionInputFilterSensitiveLog = (obj) => ({
935
- ...obj,
936
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
937
- });
938
- const StartSyncExecutionInputFilterSensitiveLog = (obj) => ({
939
- ...obj,
940
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
941
- });
942
- const StartSyncExecutionOutputFilterSensitiveLog = (obj) => ({
943
- ...obj,
944
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
945
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
946
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
947
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
948
- });
949
- const StopExecutionInputFilterSensitiveLog = (obj) => ({
950
- ...obj,
951
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
952
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
953
- });
954
- const TestStateInputFilterSensitiveLog = (obj) => ({
955
- ...obj,
956
- ...(obj.definition && { definition: smithyClient.SENSITIVE_STRING }),
957
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
958
- ...(obj.variables && { variables: smithyClient.SENSITIVE_STRING }),
959
- });
960
- const InspectionDataFilterSensitiveLog = (obj) => ({
961
- ...obj,
962
- ...(obj.input && { input: smithyClient.SENSITIVE_STRING }),
963
- ...(obj.afterArguments && { afterArguments: smithyClient.SENSITIVE_STRING }),
964
- ...(obj.afterInputPath && { afterInputPath: smithyClient.SENSITIVE_STRING }),
965
- ...(obj.afterParameters && { afterParameters: smithyClient.SENSITIVE_STRING }),
966
- ...(obj.result && { result: smithyClient.SENSITIVE_STRING }),
967
- ...(obj.afterResultSelector && { afterResultSelector: smithyClient.SENSITIVE_STRING }),
968
- ...(obj.afterResultPath && { afterResultPath: smithyClient.SENSITIVE_STRING }),
969
- ...(obj.variables && { variables: smithyClient.SENSITIVE_STRING }),
970
- });
971
- const TestStateOutputFilterSensitiveLog = (obj) => ({
972
- ...obj,
973
- ...(obj.output && { output: smithyClient.SENSITIVE_STRING }),
974
- ...(obj.error && { error: smithyClient.SENSITIVE_STRING }),
975
- ...(obj.cause && { cause: smithyClient.SENSITIVE_STRING }),
976
- ...(obj.inspectionData && { inspectionData: smithyClient.SENSITIVE_STRING }),
977
- });
978
- const UpdateStateMachineInputFilterSensitiveLog = (obj) => ({
979
- ...obj,
980
- ...(obj.definition && { definition: smithyClient.SENSITIVE_STRING }),
981
- ...(obj.versionDescription && { versionDescription: smithyClient.SENSITIVE_STRING }),
982
- });
983
- const UpdateStateMachineAliasInputFilterSensitiveLog = (obj) => ({
984
- ...obj,
985
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
986
- });
987
- const ValidateStateMachineDefinitionInputFilterSensitiveLog = (obj) => ({
988
- ...obj,
989
- ...(obj.definition && { definition: smithyClient.SENSITIVE_STRING }),
990
- });
991
- const ValidateStateMachineDefinitionDiagnosticFilterSensitiveLog = (obj) => ({
992
- ...obj,
993
- ...(obj.code && { code: smithyClient.SENSITIVE_STRING }),
994
- ...(obj.message && { message: smithyClient.SENSITIVE_STRING }),
995
- ...(obj.location && { location: smithyClient.SENSITIVE_STRING }),
996
- });
997
- const ValidateStateMachineDefinitionOutputFilterSensitiveLog = (obj) => ({
998
- ...obj,
999
- ...(obj.diagnostics && {
1000
- diagnostics: obj.diagnostics.map((item) => ValidateStateMachineDefinitionDiagnosticFilterSensitiveLog(item)),
1001
- }),
1002
- });
1003
670
 
1004
- const se_CreateActivityCommand = async (input, context) => {
1005
- const headers = sharedHeaders("CreateActivity");
1006
- let body;
1007
- body = JSON.stringify(smithyClient._json(input));
1008
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1009
- };
1010
- const se_CreateStateMachineCommand = async (input, context) => {
1011
- const headers = sharedHeaders("CreateStateMachine");
1012
- let body;
1013
- body = JSON.stringify(smithyClient._json(input));
1014
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1015
- };
1016
- const se_CreateStateMachineAliasCommand = async (input, context) => {
1017
- const headers = sharedHeaders("CreateStateMachineAlias");
1018
- let body;
1019
- body = JSON.stringify(smithyClient._json(input));
1020
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1021
- };
1022
- const se_DeleteActivityCommand = async (input, context) => {
1023
- const headers = sharedHeaders("DeleteActivity");
1024
- let body;
1025
- body = JSON.stringify(smithyClient._json(input));
1026
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1027
- };
1028
- const se_DeleteStateMachineCommand = async (input, context) => {
1029
- const headers = sharedHeaders("DeleteStateMachine");
1030
- let body;
1031
- body = JSON.stringify(smithyClient._json(input));
1032
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1033
- };
1034
- const se_DeleteStateMachineAliasCommand = async (input, context) => {
1035
- const headers = sharedHeaders("DeleteStateMachineAlias");
1036
- let body;
1037
- body = JSON.stringify(smithyClient._json(input));
1038
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1039
- };
1040
- const se_DeleteStateMachineVersionCommand = async (input, context) => {
1041
- const headers = sharedHeaders("DeleteStateMachineVersion");
1042
- let body;
1043
- body = JSON.stringify(smithyClient._json(input));
1044
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1045
- };
1046
- const se_DescribeActivityCommand = async (input, context) => {
1047
- const headers = sharedHeaders("DescribeActivity");
1048
- let body;
1049
- body = JSON.stringify(smithyClient._json(input));
1050
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1051
- };
1052
- const se_DescribeExecutionCommand = async (input, context) => {
1053
- const headers = sharedHeaders("DescribeExecution");
1054
- let body;
1055
- body = JSON.stringify(smithyClient._json(input));
1056
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1057
- };
1058
- const se_DescribeMapRunCommand = async (input, context) => {
1059
- const headers = sharedHeaders("DescribeMapRun");
1060
- let body;
1061
- body = JSON.stringify(smithyClient._json(input));
1062
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1063
- };
1064
- const se_DescribeStateMachineCommand = async (input, context) => {
1065
- const headers = sharedHeaders("DescribeStateMachine");
1066
- let body;
1067
- body = JSON.stringify(smithyClient._json(input));
1068
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1069
- };
1070
- const se_DescribeStateMachineAliasCommand = async (input, context) => {
1071
- const headers = sharedHeaders("DescribeStateMachineAlias");
1072
- let body;
1073
- body = JSON.stringify(smithyClient._json(input));
1074
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1075
- };
1076
- const se_DescribeStateMachineForExecutionCommand = async (input, context) => {
1077
- const headers = sharedHeaders("DescribeStateMachineForExecution");
1078
- let body;
1079
- body = JSON.stringify(smithyClient._json(input));
1080
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1081
- };
1082
- const se_GetActivityTaskCommand = async (input, context) => {
1083
- const headers = sharedHeaders("GetActivityTask");
1084
- let body;
1085
- body = JSON.stringify(smithyClient._json(input));
1086
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1087
- };
1088
- const se_GetExecutionHistoryCommand = async (input, context) => {
1089
- const headers = sharedHeaders("GetExecutionHistory");
1090
- let body;
1091
- body = JSON.stringify(smithyClient._json(input));
1092
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1093
- };
1094
- const se_ListActivitiesCommand = async (input, context) => {
1095
- const headers = sharedHeaders("ListActivities");
1096
- let body;
1097
- body = JSON.stringify(smithyClient._json(input));
1098
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1099
- };
1100
- const se_ListExecutionsCommand = async (input, context) => {
1101
- const headers = sharedHeaders("ListExecutions");
1102
- let body;
1103
- body = JSON.stringify(smithyClient._json(input));
1104
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1105
- };
1106
- const se_ListMapRunsCommand = async (input, context) => {
1107
- const headers = sharedHeaders("ListMapRuns");
1108
- let body;
1109
- body = JSON.stringify(smithyClient._json(input));
1110
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1111
- };
1112
- const se_ListStateMachineAliasesCommand = async (input, context) => {
1113
- const headers = sharedHeaders("ListStateMachineAliases");
1114
- let body;
1115
- body = JSON.stringify(smithyClient._json(input));
1116
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1117
- };
1118
- const se_ListStateMachinesCommand = async (input, context) => {
1119
- const headers = sharedHeaders("ListStateMachines");
1120
- let body;
1121
- body = JSON.stringify(smithyClient._json(input));
1122
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1123
- };
1124
- const se_ListStateMachineVersionsCommand = async (input, context) => {
1125
- const headers = sharedHeaders("ListStateMachineVersions");
1126
- let body;
1127
- body = JSON.stringify(smithyClient._json(input));
1128
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1129
- };
1130
- const se_ListTagsForResourceCommand = async (input, context) => {
1131
- const headers = sharedHeaders("ListTagsForResource");
1132
- let body;
1133
- body = JSON.stringify(smithyClient._json(input));
1134
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1135
- };
1136
- const se_PublishStateMachineVersionCommand = async (input, context) => {
1137
- const headers = sharedHeaders("PublishStateMachineVersion");
1138
- let body;
1139
- body = JSON.stringify(smithyClient._json(input));
1140
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1141
- };
1142
- const se_RedriveExecutionCommand = async (input, context) => {
1143
- const headers = sharedHeaders("RedriveExecution");
1144
- let body;
1145
- body = JSON.stringify(se_RedriveExecutionInput(input));
1146
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1147
- };
1148
- const se_SendTaskFailureCommand = async (input, context) => {
1149
- const headers = sharedHeaders("SendTaskFailure");
1150
- let body;
1151
- body = JSON.stringify(smithyClient._json(input));
1152
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1153
- };
1154
- const se_SendTaskHeartbeatCommand = async (input, context) => {
1155
- const headers = sharedHeaders("SendTaskHeartbeat");
1156
- let body;
1157
- body = JSON.stringify(smithyClient._json(input));
1158
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1159
- };
1160
- const se_SendTaskSuccessCommand = async (input, context) => {
1161
- const headers = sharedHeaders("SendTaskSuccess");
1162
- let body;
1163
- body = JSON.stringify(smithyClient._json(input));
1164
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1165
- };
1166
- const se_StartExecutionCommand = async (input, context) => {
1167
- const headers = sharedHeaders("StartExecution");
1168
- let body;
1169
- body = JSON.stringify(smithyClient._json(input));
1170
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1171
- };
1172
- const se_StartSyncExecutionCommand = async (input, context) => {
1173
- const headers = sharedHeaders("StartSyncExecution");
1174
- let body;
1175
- body = JSON.stringify(smithyClient._json(input));
1176
- let { hostname: resolvedHostname } = await context.endpoint();
1177
- if (context.disableHostPrefix !== true) {
1178
- resolvedHostname = "sync-" + resolvedHostname;
1179
- if (!protocolHttp.isValidHostname(resolvedHostname)) {
1180
- throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
1181
- }
1182
- }
1183
- return buildHttpRpcRequest(context, headers, "/", resolvedHostname, body);
1184
- };
1185
- const se_StopExecutionCommand = async (input, context) => {
1186
- const headers = sharedHeaders("StopExecution");
1187
- let body;
1188
- body = JSON.stringify(smithyClient._json(input));
1189
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1190
- };
1191
- const se_TagResourceCommand = async (input, context) => {
1192
- const headers = sharedHeaders("TagResource");
1193
- let body;
1194
- body = JSON.stringify(smithyClient._json(input));
1195
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1196
- };
1197
- const se_TestStateCommand = async (input, context) => {
1198
- const headers = sharedHeaders("TestState");
1199
- let body;
1200
- body = JSON.stringify(smithyClient._json(input));
1201
- let { hostname: resolvedHostname } = await context.endpoint();
1202
- if (context.disableHostPrefix !== true) {
1203
- resolvedHostname = "sync-" + resolvedHostname;
1204
- if (!protocolHttp.isValidHostname(resolvedHostname)) {
1205
- throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
1206
- }
1207
- }
1208
- return buildHttpRpcRequest(context, headers, "/", resolvedHostname, body);
1209
- };
1210
- const se_UntagResourceCommand = async (input, context) => {
1211
- const headers = sharedHeaders("UntagResource");
1212
- let body;
1213
- body = JSON.stringify(smithyClient._json(input));
1214
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1215
- };
1216
- const se_UpdateMapRunCommand = async (input, context) => {
1217
- const headers = sharedHeaders("UpdateMapRun");
1218
- let body;
1219
- body = JSON.stringify(se_UpdateMapRunInput(input));
1220
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1221
- };
1222
- const se_UpdateStateMachineCommand = async (input, context) => {
1223
- const headers = sharedHeaders("UpdateStateMachine");
1224
- let body;
1225
- body = JSON.stringify(smithyClient._json(input));
1226
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1227
- };
1228
- const se_UpdateStateMachineAliasCommand = async (input, context) => {
1229
- const headers = sharedHeaders("UpdateStateMachineAlias");
1230
- let body;
1231
- body = JSON.stringify(smithyClient._json(input));
1232
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1233
- };
1234
- const se_ValidateStateMachineDefinitionCommand = async (input, context) => {
1235
- const headers = sharedHeaders("ValidateStateMachineDefinition");
1236
- let body;
1237
- body = JSON.stringify(smithyClient._json(input));
1238
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
1239
- };
1240
- const de_CreateActivityCommand = async (output, context) => {
1241
- if (output.statusCode >= 300) {
1242
- return de_CommandError(output, context);
1243
- }
1244
- const data = await core$1.parseJsonBody(output.body, context);
1245
- let contents = {};
1246
- contents = de_CreateActivityOutput(data);
1247
- const response = {
1248
- $metadata: deserializeMetadata(output),
1249
- ...contents,
1250
- };
1251
- return response;
1252
- };
1253
- const de_CreateStateMachineCommand = async (output, context) => {
1254
- if (output.statusCode >= 300) {
1255
- return de_CommandError(output, context);
1256
- }
1257
- const data = await core$1.parseJsonBody(output.body, context);
1258
- let contents = {};
1259
- contents = de_CreateStateMachineOutput(data);
1260
- const response = {
1261
- $metadata: deserializeMetadata(output),
1262
- ...contents,
1263
- };
1264
- return response;
1265
- };
1266
- const de_CreateStateMachineAliasCommand = async (output, context) => {
1267
- if (output.statusCode >= 300) {
1268
- return de_CommandError(output, context);
1269
- }
1270
- const data = await core$1.parseJsonBody(output.body, context);
1271
- let contents = {};
1272
- contents = de_CreateStateMachineAliasOutput(data);
1273
- const response = {
1274
- $metadata: deserializeMetadata(output),
1275
- ...contents,
1276
- };
1277
- return response;
1278
- };
1279
- const de_DeleteActivityCommand = async (output, context) => {
1280
- if (output.statusCode >= 300) {
1281
- return de_CommandError(output, context);
1282
- }
1283
- const data = await core$1.parseJsonBody(output.body, context);
1284
- let contents = {};
1285
- contents = smithyClient._json(data);
1286
- const response = {
1287
- $metadata: deserializeMetadata(output),
1288
- ...contents,
1289
- };
1290
- return response;
1291
- };
1292
- const de_DeleteStateMachineCommand = async (output, context) => {
1293
- if (output.statusCode >= 300) {
1294
- return de_CommandError(output, context);
1295
- }
1296
- const data = await core$1.parseJsonBody(output.body, context);
1297
- let contents = {};
1298
- contents = smithyClient._json(data);
1299
- const response = {
1300
- $metadata: deserializeMetadata(output),
1301
- ...contents,
1302
- };
1303
- return response;
1304
- };
1305
- const de_DeleteStateMachineAliasCommand = async (output, context) => {
1306
- if (output.statusCode >= 300) {
1307
- return de_CommandError(output, context);
1308
- }
1309
- const data = await core$1.parseJsonBody(output.body, context);
1310
- let contents = {};
1311
- contents = smithyClient._json(data);
1312
- const response = {
1313
- $metadata: deserializeMetadata(output),
1314
- ...contents,
1315
- };
1316
- return response;
1317
- };
1318
- const de_DeleteStateMachineVersionCommand = async (output, context) => {
1319
- if (output.statusCode >= 300) {
1320
- return de_CommandError(output, context);
1321
- }
1322
- const data = await core$1.parseJsonBody(output.body, context);
1323
- let contents = {};
1324
- contents = smithyClient._json(data);
1325
- const response = {
1326
- $metadata: deserializeMetadata(output),
1327
- ...contents,
1328
- };
1329
- return response;
1330
- };
1331
- const de_DescribeActivityCommand = async (output, context) => {
1332
- if (output.statusCode >= 300) {
1333
- return de_CommandError(output, context);
1334
- }
1335
- const data = await core$1.parseJsonBody(output.body, context);
1336
- let contents = {};
1337
- contents = de_DescribeActivityOutput(data);
1338
- const response = {
1339
- $metadata: deserializeMetadata(output),
1340
- ...contents,
1341
- };
1342
- return response;
1343
- };
1344
- const de_DescribeExecutionCommand = async (output, context) => {
1345
- if (output.statusCode >= 300) {
1346
- return de_CommandError(output, context);
1347
- }
1348
- const data = await core$1.parseJsonBody(output.body, context);
1349
- let contents = {};
1350
- contents = de_DescribeExecutionOutput(data);
1351
- const response = {
1352
- $metadata: deserializeMetadata(output),
1353
- ...contents,
1354
- };
1355
- return response;
1356
- };
1357
- const de_DescribeMapRunCommand = async (output, context) => {
1358
- if (output.statusCode >= 300) {
1359
- return de_CommandError(output, context);
1360
- }
1361
- const data = await core$1.parseJsonBody(output.body, context);
1362
- let contents = {};
1363
- contents = de_DescribeMapRunOutput(data);
1364
- const response = {
1365
- $metadata: deserializeMetadata(output),
1366
- ...contents,
1367
- };
1368
- return response;
1369
- };
1370
- const de_DescribeStateMachineCommand = async (output, context) => {
1371
- if (output.statusCode >= 300) {
1372
- return de_CommandError(output, context);
1373
- }
1374
- const data = await core$1.parseJsonBody(output.body, context);
1375
- let contents = {};
1376
- contents = de_DescribeStateMachineOutput(data);
1377
- const response = {
1378
- $metadata: deserializeMetadata(output),
1379
- ...contents,
1380
- };
1381
- return response;
1382
- };
1383
- const de_DescribeStateMachineAliasCommand = async (output, context) => {
1384
- if (output.statusCode >= 300) {
1385
- return de_CommandError(output, context);
1386
- }
1387
- const data = await core$1.parseJsonBody(output.body, context);
1388
- let contents = {};
1389
- contents = de_DescribeStateMachineAliasOutput(data);
1390
- const response = {
1391
- $metadata: deserializeMetadata(output),
1392
- ...contents,
1393
- };
1394
- return response;
1395
- };
1396
- const de_DescribeStateMachineForExecutionCommand = async (output, context) => {
1397
- if (output.statusCode >= 300) {
1398
- return de_CommandError(output, context);
1399
- }
1400
- const data = await core$1.parseJsonBody(output.body, context);
1401
- let contents = {};
1402
- contents = de_DescribeStateMachineForExecutionOutput(data);
1403
- const response = {
1404
- $metadata: deserializeMetadata(output),
1405
- ...contents,
1406
- };
1407
- return response;
1408
- };
1409
- const de_GetActivityTaskCommand = async (output, context) => {
1410
- if (output.statusCode >= 300) {
1411
- return de_CommandError(output, context);
1412
- }
1413
- const data = await core$1.parseJsonBody(output.body, context);
1414
- let contents = {};
1415
- contents = smithyClient._json(data);
1416
- const response = {
1417
- $metadata: deserializeMetadata(output),
1418
- ...contents,
1419
- };
1420
- return response;
1421
- };
1422
- const de_GetExecutionHistoryCommand = async (output, context) => {
1423
- if (output.statusCode >= 300) {
1424
- return de_CommandError(output, context);
1425
- }
1426
- const data = await core$1.parseJsonBody(output.body, context);
1427
- let contents = {};
1428
- contents = de_GetExecutionHistoryOutput(data);
1429
- const response = {
1430
- $metadata: deserializeMetadata(output),
1431
- ...contents,
1432
- };
1433
- return response;
1434
- };
1435
- const de_ListActivitiesCommand = async (output, context) => {
1436
- if (output.statusCode >= 300) {
1437
- return de_CommandError(output, context);
1438
- }
1439
- const data = await core$1.parseJsonBody(output.body, context);
1440
- let contents = {};
1441
- contents = de_ListActivitiesOutput(data);
1442
- const response = {
1443
- $metadata: deserializeMetadata(output),
1444
- ...contents,
1445
- };
1446
- return response;
1447
- };
1448
- const de_ListExecutionsCommand = async (output, context) => {
1449
- if (output.statusCode >= 300) {
1450
- return de_CommandError(output, context);
1451
- }
1452
- const data = await core$1.parseJsonBody(output.body, context);
1453
- let contents = {};
1454
- contents = de_ListExecutionsOutput(data);
1455
- const response = {
1456
- $metadata: deserializeMetadata(output),
1457
- ...contents,
1458
- };
1459
- return response;
1460
- };
1461
- const de_ListMapRunsCommand = async (output, context) => {
1462
- if (output.statusCode >= 300) {
1463
- return de_CommandError(output, context);
1464
- }
1465
- const data = await core$1.parseJsonBody(output.body, context);
1466
- let contents = {};
1467
- contents = de_ListMapRunsOutput(data);
1468
- const response = {
1469
- $metadata: deserializeMetadata(output),
1470
- ...contents,
1471
- };
1472
- return response;
1473
- };
1474
- const de_ListStateMachineAliasesCommand = async (output, context) => {
1475
- if (output.statusCode >= 300) {
1476
- return de_CommandError(output, context);
1477
- }
1478
- const data = await core$1.parseJsonBody(output.body, context);
1479
- let contents = {};
1480
- contents = de_ListStateMachineAliasesOutput(data);
1481
- const response = {
1482
- $metadata: deserializeMetadata(output),
1483
- ...contents,
1484
- };
1485
- return response;
1486
- };
1487
- const de_ListStateMachinesCommand = async (output, context) => {
1488
- if (output.statusCode >= 300) {
1489
- return de_CommandError(output, context);
1490
- }
1491
- const data = await core$1.parseJsonBody(output.body, context);
1492
- let contents = {};
1493
- contents = de_ListStateMachinesOutput(data);
1494
- const response = {
1495
- $metadata: deserializeMetadata(output),
1496
- ...contents,
1497
- };
1498
- return response;
1499
- };
1500
- const de_ListStateMachineVersionsCommand = async (output, context) => {
1501
- if (output.statusCode >= 300) {
1502
- return de_CommandError(output, context);
1503
- }
1504
- const data = await core$1.parseJsonBody(output.body, context);
1505
- let contents = {};
1506
- contents = de_ListStateMachineVersionsOutput(data);
1507
- const response = {
1508
- $metadata: deserializeMetadata(output),
1509
- ...contents,
1510
- };
1511
- return response;
1512
- };
1513
- const de_ListTagsForResourceCommand = async (output, context) => {
1514
- if (output.statusCode >= 300) {
1515
- return de_CommandError(output, context);
1516
- }
1517
- const data = await core$1.parseJsonBody(output.body, context);
1518
- let contents = {};
1519
- contents = smithyClient._json(data);
1520
- const response = {
1521
- $metadata: deserializeMetadata(output),
1522
- ...contents,
1523
- };
1524
- return response;
1525
- };
1526
- const de_PublishStateMachineVersionCommand = async (output, context) => {
1527
- if (output.statusCode >= 300) {
1528
- return de_CommandError(output, context);
1529
- }
1530
- const data = await core$1.parseJsonBody(output.body, context);
1531
- let contents = {};
1532
- contents = de_PublishStateMachineVersionOutput(data);
1533
- const response = {
1534
- $metadata: deserializeMetadata(output),
1535
- ...contents,
1536
- };
1537
- return response;
1538
- };
1539
- const de_RedriveExecutionCommand = async (output, context) => {
1540
- if (output.statusCode >= 300) {
1541
- return de_CommandError(output, context);
1542
- }
1543
- const data = await core$1.parseJsonBody(output.body, context);
1544
- let contents = {};
1545
- contents = de_RedriveExecutionOutput(data);
1546
- const response = {
1547
- $metadata: deserializeMetadata(output),
1548
- ...contents,
1549
- };
1550
- return response;
1551
- };
1552
- const de_SendTaskFailureCommand = async (output, context) => {
1553
- if (output.statusCode >= 300) {
1554
- return de_CommandError(output, context);
1555
- }
1556
- const data = await core$1.parseJsonBody(output.body, context);
1557
- let contents = {};
1558
- contents = smithyClient._json(data);
1559
- const response = {
1560
- $metadata: deserializeMetadata(output),
1561
- ...contents,
1562
- };
1563
- return response;
1564
- };
1565
- const de_SendTaskHeartbeatCommand = async (output, context) => {
1566
- if (output.statusCode >= 300) {
1567
- return de_CommandError(output, context);
1568
- }
1569
- const data = await core$1.parseJsonBody(output.body, context);
1570
- let contents = {};
1571
- contents = smithyClient._json(data);
1572
- const response = {
1573
- $metadata: deserializeMetadata(output),
1574
- ...contents,
1575
- };
1576
- return response;
1577
- };
1578
- const de_SendTaskSuccessCommand = async (output, context) => {
1579
- if (output.statusCode >= 300) {
1580
- return de_CommandError(output, context);
1581
- }
1582
- const data = await core$1.parseJsonBody(output.body, context);
1583
- let contents = {};
1584
- contents = smithyClient._json(data);
1585
- const response = {
1586
- $metadata: deserializeMetadata(output),
1587
- ...contents,
1588
- };
1589
- return response;
1590
- };
1591
- const de_StartExecutionCommand = async (output, context) => {
1592
- if (output.statusCode >= 300) {
1593
- return de_CommandError(output, context);
1594
- }
1595
- const data = await core$1.parseJsonBody(output.body, context);
1596
- let contents = {};
1597
- contents = de_StartExecutionOutput(data);
1598
- const response = {
1599
- $metadata: deserializeMetadata(output),
1600
- ...contents,
1601
- };
1602
- return response;
1603
- };
1604
- const de_StartSyncExecutionCommand = async (output, context) => {
1605
- if (output.statusCode >= 300) {
1606
- return de_CommandError(output, context);
1607
- }
1608
- const data = await core$1.parseJsonBody(output.body, context);
1609
- let contents = {};
1610
- contents = de_StartSyncExecutionOutput(data);
1611
- const response = {
1612
- $metadata: deserializeMetadata(output),
1613
- ...contents,
1614
- };
1615
- return response;
1616
- };
1617
- const de_StopExecutionCommand = async (output, context) => {
1618
- if (output.statusCode >= 300) {
1619
- return de_CommandError(output, context);
1620
- }
1621
- const data = await core$1.parseJsonBody(output.body, context);
1622
- let contents = {};
1623
- contents = de_StopExecutionOutput(data);
1624
- const response = {
1625
- $metadata: deserializeMetadata(output),
1626
- ...contents,
1627
- };
1628
- return response;
1629
- };
1630
- const de_TagResourceCommand = async (output, context) => {
1631
- if (output.statusCode >= 300) {
1632
- return de_CommandError(output, context);
1633
- }
1634
- const data = await core$1.parseJsonBody(output.body, context);
1635
- let contents = {};
1636
- contents = smithyClient._json(data);
1637
- const response = {
1638
- $metadata: deserializeMetadata(output),
1639
- ...contents,
1640
- };
1641
- return response;
1642
- };
1643
- const de_TestStateCommand = async (output, context) => {
1644
- if (output.statusCode >= 300) {
1645
- return de_CommandError(output, context);
1646
- }
1647
- const data = await core$1.parseJsonBody(output.body, context);
1648
- let contents = {};
1649
- contents = smithyClient._json(data);
1650
- const response = {
1651
- $metadata: deserializeMetadata(output),
1652
- ...contents,
1653
- };
1654
- return response;
1655
- };
1656
- const de_UntagResourceCommand = async (output, context) => {
1657
- if (output.statusCode >= 300) {
1658
- return de_CommandError(output, context);
1659
- }
1660
- const data = await core$1.parseJsonBody(output.body, context);
1661
- let contents = {};
1662
- contents = smithyClient._json(data);
1663
- const response = {
1664
- $metadata: deserializeMetadata(output),
1665
- ...contents,
1666
- };
1667
- return response;
1668
- };
1669
- const de_UpdateMapRunCommand = async (output, context) => {
1670
- if (output.statusCode >= 300) {
1671
- return de_CommandError(output, context);
1672
- }
1673
- const data = await core$1.parseJsonBody(output.body, context);
1674
- let contents = {};
1675
- contents = smithyClient._json(data);
1676
- const response = {
1677
- $metadata: deserializeMetadata(output),
1678
- ...contents,
1679
- };
1680
- return response;
1681
- };
1682
- const de_UpdateStateMachineCommand = async (output, context) => {
1683
- if (output.statusCode >= 300) {
1684
- return de_CommandError(output, context);
1685
- }
1686
- const data = await core$1.parseJsonBody(output.body, context);
1687
- let contents = {};
1688
- contents = de_UpdateStateMachineOutput(data);
1689
- const response = {
1690
- $metadata: deserializeMetadata(output),
1691
- ...contents,
1692
- };
1693
- return response;
1694
- };
1695
- const de_UpdateStateMachineAliasCommand = async (output, context) => {
1696
- if (output.statusCode >= 300) {
1697
- return de_CommandError(output, context);
1698
- }
1699
- const data = await core$1.parseJsonBody(output.body, context);
1700
- let contents = {};
1701
- contents = de_UpdateStateMachineAliasOutput(data);
1702
- const response = {
1703
- $metadata: deserializeMetadata(output),
1704
- ...contents,
1705
- };
1706
- return response;
1707
- };
1708
- const de_ValidateStateMachineDefinitionCommand = async (output, context) => {
1709
- if (output.statusCode >= 300) {
1710
- return de_CommandError(output, context);
1711
- }
1712
- const data = await core$1.parseJsonBody(output.body, context);
1713
- let contents = {};
1714
- contents = smithyClient._json(data);
1715
- const response = {
1716
- $metadata: deserializeMetadata(output),
1717
- ...contents,
1718
- };
1719
- return response;
1720
- };
1721
- const de_CommandError = async (output, context) => {
1722
- const parsedOutput = {
1723
- ...output,
1724
- body: await core$1.parseJsonErrorBody(output.body, context),
1725
- };
1726
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1727
- switch (errorCode) {
1728
- case "ActivityAlreadyExists":
1729
- case "com.amazonaws.sfn#ActivityAlreadyExists":
1730
- throw await de_ActivityAlreadyExistsRes(parsedOutput);
1731
- case "ActivityLimitExceeded":
1732
- case "com.amazonaws.sfn#ActivityLimitExceeded":
1733
- throw await de_ActivityLimitExceededRes(parsedOutput);
1734
- case "InvalidEncryptionConfiguration":
1735
- case "com.amazonaws.sfn#InvalidEncryptionConfiguration":
1736
- throw await de_InvalidEncryptionConfigurationRes(parsedOutput);
1737
- case "InvalidName":
1738
- case "com.amazonaws.sfn#InvalidName":
1739
- throw await de_InvalidNameRes(parsedOutput);
1740
- case "KmsAccessDeniedException":
1741
- case "com.amazonaws.sfn#KmsAccessDeniedException":
1742
- throw await de_KmsAccessDeniedExceptionRes(parsedOutput);
1743
- case "KmsThrottlingException":
1744
- case "com.amazonaws.sfn#KmsThrottlingException":
1745
- throw await de_KmsThrottlingExceptionRes(parsedOutput);
1746
- case "TooManyTags":
1747
- case "com.amazonaws.sfn#TooManyTags":
1748
- throw await de_TooManyTagsRes(parsedOutput);
1749
- case "ConflictException":
1750
- case "com.amazonaws.sfn#ConflictException":
1751
- throw await de_ConflictExceptionRes(parsedOutput);
1752
- case "InvalidArn":
1753
- case "com.amazonaws.sfn#InvalidArn":
1754
- throw await de_InvalidArnRes(parsedOutput);
1755
- case "InvalidDefinition":
1756
- case "com.amazonaws.sfn#InvalidDefinition":
1757
- throw await de_InvalidDefinitionRes(parsedOutput);
1758
- case "InvalidLoggingConfiguration":
1759
- case "com.amazonaws.sfn#InvalidLoggingConfiguration":
1760
- throw await de_InvalidLoggingConfigurationRes(parsedOutput);
1761
- case "InvalidTracingConfiguration":
1762
- case "com.amazonaws.sfn#InvalidTracingConfiguration":
1763
- throw await de_InvalidTracingConfigurationRes(parsedOutput);
1764
- case "StateMachineAlreadyExists":
1765
- case "com.amazonaws.sfn#StateMachineAlreadyExists":
1766
- throw await de_StateMachineAlreadyExistsRes(parsedOutput);
1767
- case "StateMachineDeleting":
1768
- case "com.amazonaws.sfn#StateMachineDeleting":
1769
- throw await de_StateMachineDeletingRes(parsedOutput);
1770
- case "StateMachineLimitExceeded":
1771
- case "com.amazonaws.sfn#StateMachineLimitExceeded":
1772
- throw await de_StateMachineLimitExceededRes(parsedOutput);
1773
- case "StateMachineTypeNotSupported":
1774
- case "com.amazonaws.sfn#StateMachineTypeNotSupported":
1775
- throw await de_StateMachineTypeNotSupportedRes(parsedOutput);
1776
- case "ValidationException":
1777
- case "com.amazonaws.sfn#ValidationException":
1778
- throw await de_ValidationExceptionRes(parsedOutput);
1779
- case "ResourceNotFound":
1780
- case "com.amazonaws.sfn#ResourceNotFound":
1781
- throw await de_ResourceNotFoundRes(parsedOutput);
1782
- case "ServiceQuotaExceededException":
1783
- case "com.amazonaws.sfn#ServiceQuotaExceededException":
1784
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
1785
- case "ActivityDoesNotExist":
1786
- case "com.amazonaws.sfn#ActivityDoesNotExist":
1787
- throw await de_ActivityDoesNotExistRes(parsedOutput);
1788
- case "ExecutionDoesNotExist":
1789
- case "com.amazonaws.sfn#ExecutionDoesNotExist":
1790
- throw await de_ExecutionDoesNotExistRes(parsedOutput);
1791
- case "KmsInvalidStateException":
1792
- case "com.amazonaws.sfn#KmsInvalidStateException":
1793
- throw await de_KmsInvalidStateExceptionRes(parsedOutput);
1794
- case "StateMachineDoesNotExist":
1795
- case "com.amazonaws.sfn#StateMachineDoesNotExist":
1796
- throw await de_StateMachineDoesNotExistRes(parsedOutput);
1797
- case "ActivityWorkerLimitExceeded":
1798
- case "com.amazonaws.sfn#ActivityWorkerLimitExceeded":
1799
- throw await de_ActivityWorkerLimitExceededRes(parsedOutput);
1800
- case "InvalidToken":
1801
- case "com.amazonaws.sfn#InvalidToken":
1802
- throw await de_InvalidTokenRes(parsedOutput);
1803
- case "ExecutionLimitExceeded":
1804
- case "com.amazonaws.sfn#ExecutionLimitExceeded":
1805
- throw await de_ExecutionLimitExceededRes(parsedOutput);
1806
- case "ExecutionNotRedrivable":
1807
- case "com.amazonaws.sfn#ExecutionNotRedrivable":
1808
- throw await de_ExecutionNotRedrivableRes(parsedOutput);
1809
- case "TaskDoesNotExist":
1810
- case "com.amazonaws.sfn#TaskDoesNotExist":
1811
- throw await de_TaskDoesNotExistRes(parsedOutput);
1812
- case "TaskTimedOut":
1813
- case "com.amazonaws.sfn#TaskTimedOut":
1814
- throw await de_TaskTimedOutRes(parsedOutput);
1815
- case "InvalidOutput":
1816
- case "com.amazonaws.sfn#InvalidOutput":
1817
- throw await de_InvalidOutputRes(parsedOutput);
1818
- case "ExecutionAlreadyExists":
1819
- case "com.amazonaws.sfn#ExecutionAlreadyExists":
1820
- throw await de_ExecutionAlreadyExistsRes(parsedOutput);
1821
- case "InvalidExecutionInput":
1822
- case "com.amazonaws.sfn#InvalidExecutionInput":
1823
- throw await de_InvalidExecutionInputRes(parsedOutput);
1824
- case "MissingRequiredParameter":
1825
- case "com.amazonaws.sfn#MissingRequiredParameter":
1826
- throw await de_MissingRequiredParameterRes(parsedOutput);
1827
- default:
1828
- const parsedBody = parsedOutput.body;
1829
- return throwDefaultError({
1830
- output,
1831
- parsedBody,
1832
- errorCode,
1833
- });
1834
- }
1835
- };
1836
- const de_ActivityAlreadyExistsRes = async (parsedOutput, context) => {
1837
- const body = parsedOutput.body;
1838
- const deserialized = smithyClient._json(body);
1839
- const exception = new ActivityAlreadyExists({
1840
- $metadata: deserializeMetadata(parsedOutput),
1841
- ...deserialized,
1842
- });
1843
- return smithyClient.decorateServiceException(exception, body);
1844
- };
1845
- const de_ActivityDoesNotExistRes = async (parsedOutput, context) => {
1846
- const body = parsedOutput.body;
1847
- const deserialized = smithyClient._json(body);
1848
- const exception = new ActivityDoesNotExist({
1849
- $metadata: deserializeMetadata(parsedOutput),
1850
- ...deserialized,
1851
- });
1852
- return smithyClient.decorateServiceException(exception, body);
1853
- };
1854
- const de_ActivityLimitExceededRes = async (parsedOutput, context) => {
1855
- const body = parsedOutput.body;
1856
- const deserialized = smithyClient._json(body);
1857
- const exception = new ActivityLimitExceeded({
1858
- $metadata: deserializeMetadata(parsedOutput),
1859
- ...deserialized,
1860
- });
1861
- return smithyClient.decorateServiceException(exception, body);
1862
- };
1863
- const de_ActivityWorkerLimitExceededRes = async (parsedOutput, context) => {
1864
- const body = parsedOutput.body;
1865
- const deserialized = smithyClient._json(body);
1866
- const exception = new ActivityWorkerLimitExceeded({
1867
- $metadata: deserializeMetadata(parsedOutput),
1868
- ...deserialized,
1869
- });
1870
- return smithyClient.decorateServiceException(exception, body);
1871
- };
1872
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
1873
- const body = parsedOutput.body;
1874
- const deserialized = smithyClient._json(body);
1875
- const exception = new ConflictException({
1876
- $metadata: deserializeMetadata(parsedOutput),
1877
- ...deserialized,
1878
- });
1879
- return smithyClient.decorateServiceException(exception, body);
1880
- };
1881
- const de_ExecutionAlreadyExistsRes = async (parsedOutput, context) => {
1882
- const body = parsedOutput.body;
1883
- const deserialized = smithyClient._json(body);
1884
- const exception = new ExecutionAlreadyExists({
1885
- $metadata: deserializeMetadata(parsedOutput),
1886
- ...deserialized,
1887
- });
1888
- return smithyClient.decorateServiceException(exception, body);
1889
- };
1890
- const de_ExecutionDoesNotExistRes = async (parsedOutput, context) => {
1891
- const body = parsedOutput.body;
1892
- const deserialized = smithyClient._json(body);
1893
- const exception = new ExecutionDoesNotExist({
1894
- $metadata: deserializeMetadata(parsedOutput),
1895
- ...deserialized,
1896
- });
1897
- return smithyClient.decorateServiceException(exception, body);
1898
- };
1899
- const de_ExecutionLimitExceededRes = async (parsedOutput, context) => {
1900
- const body = parsedOutput.body;
1901
- const deserialized = smithyClient._json(body);
1902
- const exception = new ExecutionLimitExceeded({
1903
- $metadata: deserializeMetadata(parsedOutput),
1904
- ...deserialized,
1905
- });
1906
- return smithyClient.decorateServiceException(exception, body);
1907
- };
1908
- const de_ExecutionNotRedrivableRes = async (parsedOutput, context) => {
1909
- const body = parsedOutput.body;
1910
- const deserialized = smithyClient._json(body);
1911
- const exception = new ExecutionNotRedrivable({
1912
- $metadata: deserializeMetadata(parsedOutput),
1913
- ...deserialized,
1914
- });
1915
- return smithyClient.decorateServiceException(exception, body);
1916
- };
1917
- const de_InvalidArnRes = async (parsedOutput, context) => {
1918
- const body = parsedOutput.body;
1919
- const deserialized = smithyClient._json(body);
1920
- const exception = new InvalidArn({
1921
- $metadata: deserializeMetadata(parsedOutput),
1922
- ...deserialized,
1923
- });
1924
- return smithyClient.decorateServiceException(exception, body);
1925
- };
1926
- const de_InvalidDefinitionRes = async (parsedOutput, context) => {
1927
- const body = parsedOutput.body;
1928
- const deserialized = smithyClient._json(body);
1929
- const exception = new InvalidDefinition({
1930
- $metadata: deserializeMetadata(parsedOutput),
1931
- ...deserialized,
1932
- });
1933
- return smithyClient.decorateServiceException(exception, body);
1934
- };
1935
- const de_InvalidEncryptionConfigurationRes = async (parsedOutput, context) => {
1936
- const body = parsedOutput.body;
1937
- const deserialized = smithyClient._json(body);
1938
- const exception = new InvalidEncryptionConfiguration({
1939
- $metadata: deserializeMetadata(parsedOutput),
1940
- ...deserialized,
1941
- });
1942
- return smithyClient.decorateServiceException(exception, body);
1943
- };
1944
- const de_InvalidExecutionInputRes = async (parsedOutput, context) => {
1945
- const body = parsedOutput.body;
1946
- const deserialized = smithyClient._json(body);
1947
- const exception = new InvalidExecutionInput({
1948
- $metadata: deserializeMetadata(parsedOutput),
1949
- ...deserialized,
1950
- });
1951
- return smithyClient.decorateServiceException(exception, body);
1952
- };
1953
- const de_InvalidLoggingConfigurationRes = async (parsedOutput, context) => {
1954
- const body = parsedOutput.body;
1955
- const deserialized = smithyClient._json(body);
1956
- const exception = new InvalidLoggingConfiguration({
1957
- $metadata: deserializeMetadata(parsedOutput),
1958
- ...deserialized,
1959
- });
1960
- return smithyClient.decorateServiceException(exception, body);
1961
- };
1962
- const de_InvalidNameRes = async (parsedOutput, context) => {
1963
- const body = parsedOutput.body;
1964
- const deserialized = smithyClient._json(body);
1965
- const exception = new InvalidName({
1966
- $metadata: deserializeMetadata(parsedOutput),
1967
- ...deserialized,
1968
- });
1969
- return smithyClient.decorateServiceException(exception, body);
1970
- };
1971
- const de_InvalidOutputRes = async (parsedOutput, context) => {
1972
- const body = parsedOutput.body;
1973
- const deserialized = smithyClient._json(body);
1974
- const exception = new InvalidOutput({
1975
- $metadata: deserializeMetadata(parsedOutput),
1976
- ...deserialized,
1977
- });
1978
- return smithyClient.decorateServiceException(exception, body);
1979
- };
1980
- const de_InvalidTokenRes = async (parsedOutput, context) => {
1981
- const body = parsedOutput.body;
1982
- const deserialized = smithyClient._json(body);
1983
- const exception = new InvalidToken({
1984
- $metadata: deserializeMetadata(parsedOutput),
1985
- ...deserialized,
1986
- });
1987
- return smithyClient.decorateServiceException(exception, body);
1988
- };
1989
- const de_InvalidTracingConfigurationRes = async (parsedOutput, context) => {
1990
- const body = parsedOutput.body;
1991
- const deserialized = smithyClient._json(body);
1992
- const exception = new InvalidTracingConfiguration({
1993
- $metadata: deserializeMetadata(parsedOutput),
1994
- ...deserialized,
1995
- });
1996
- return smithyClient.decorateServiceException(exception, body);
1997
- };
1998
- const de_KmsAccessDeniedExceptionRes = async (parsedOutput, context) => {
1999
- const body = parsedOutput.body;
2000
- const deserialized = smithyClient._json(body);
2001
- const exception = new KmsAccessDeniedException({
2002
- $metadata: deserializeMetadata(parsedOutput),
2003
- ...deserialized,
2004
- });
2005
- return smithyClient.decorateServiceException(exception, body);
2006
- };
2007
- const de_KmsInvalidStateExceptionRes = async (parsedOutput, context) => {
2008
- const body = parsedOutput.body;
2009
- const deserialized = smithyClient._json(body);
2010
- const exception = new KmsInvalidStateException({
2011
- $metadata: deserializeMetadata(parsedOutput),
2012
- ...deserialized,
2013
- });
2014
- return smithyClient.decorateServiceException(exception, body);
2015
- };
2016
- const de_KmsThrottlingExceptionRes = async (parsedOutput, context) => {
2017
- const body = parsedOutput.body;
2018
- const deserialized = smithyClient._json(body);
2019
- const exception = new KmsThrottlingException({
2020
- $metadata: deserializeMetadata(parsedOutput),
2021
- ...deserialized,
2022
- });
2023
- return smithyClient.decorateServiceException(exception, body);
2024
- };
2025
- const de_MissingRequiredParameterRes = async (parsedOutput, context) => {
2026
- const body = parsedOutput.body;
2027
- const deserialized = smithyClient._json(body);
2028
- const exception = new MissingRequiredParameter({
2029
- $metadata: deserializeMetadata(parsedOutput),
2030
- ...deserialized,
2031
- });
2032
- return smithyClient.decorateServiceException(exception, body);
2033
- };
2034
- const de_ResourceNotFoundRes = async (parsedOutput, context) => {
2035
- const body = parsedOutput.body;
2036
- const deserialized = smithyClient._json(body);
2037
- const exception = new ResourceNotFound({
2038
- $metadata: deserializeMetadata(parsedOutput),
2039
- ...deserialized,
2040
- });
2041
- return smithyClient.decorateServiceException(exception, body);
2042
- };
2043
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
2044
- const body = parsedOutput.body;
2045
- const deserialized = smithyClient._json(body);
2046
- const exception = new ServiceQuotaExceededException({
2047
- $metadata: deserializeMetadata(parsedOutput),
2048
- ...deserialized,
2049
- });
2050
- return smithyClient.decorateServiceException(exception, body);
2051
- };
2052
- const de_StateMachineAlreadyExistsRes = async (parsedOutput, context) => {
2053
- const body = parsedOutput.body;
2054
- const deserialized = smithyClient._json(body);
2055
- const exception = new StateMachineAlreadyExists({
2056
- $metadata: deserializeMetadata(parsedOutput),
2057
- ...deserialized,
2058
- });
2059
- return smithyClient.decorateServiceException(exception, body);
2060
- };
2061
- const de_StateMachineDeletingRes = async (parsedOutput, context) => {
2062
- const body = parsedOutput.body;
2063
- const deserialized = smithyClient._json(body);
2064
- const exception = new StateMachineDeleting({
2065
- $metadata: deserializeMetadata(parsedOutput),
2066
- ...deserialized,
2067
- });
2068
- return smithyClient.decorateServiceException(exception, body);
2069
- };
2070
- const de_StateMachineDoesNotExistRes = async (parsedOutput, context) => {
2071
- const body = parsedOutput.body;
2072
- const deserialized = smithyClient._json(body);
2073
- const exception = new StateMachineDoesNotExist({
2074
- $metadata: deserializeMetadata(parsedOutput),
2075
- ...deserialized,
2076
- });
2077
- return smithyClient.decorateServiceException(exception, body);
2078
- };
2079
- const de_StateMachineLimitExceededRes = async (parsedOutput, context) => {
2080
- const body = parsedOutput.body;
2081
- const deserialized = smithyClient._json(body);
2082
- const exception = new StateMachineLimitExceeded({
2083
- $metadata: deserializeMetadata(parsedOutput),
2084
- ...deserialized,
2085
- });
2086
- return smithyClient.decorateServiceException(exception, body);
2087
- };
2088
- const de_StateMachineTypeNotSupportedRes = async (parsedOutput, context) => {
2089
- const body = parsedOutput.body;
2090
- const deserialized = smithyClient._json(body);
2091
- const exception = new StateMachineTypeNotSupported({
2092
- $metadata: deserializeMetadata(parsedOutput),
2093
- ...deserialized,
2094
- });
2095
- return smithyClient.decorateServiceException(exception, body);
2096
- };
2097
- const de_TaskDoesNotExistRes = async (parsedOutput, context) => {
2098
- const body = parsedOutput.body;
2099
- const deserialized = smithyClient._json(body);
2100
- const exception = new TaskDoesNotExist({
2101
- $metadata: deserializeMetadata(parsedOutput),
2102
- ...deserialized,
2103
- });
2104
- return smithyClient.decorateServiceException(exception, body);
2105
- };
2106
- const de_TaskTimedOutRes = async (parsedOutput, context) => {
2107
- const body = parsedOutput.body;
2108
- const deserialized = smithyClient._json(body);
2109
- const exception = new TaskTimedOut({
2110
- $metadata: deserializeMetadata(parsedOutput),
2111
- ...deserialized,
2112
- });
2113
- return smithyClient.decorateServiceException(exception, body);
2114
- };
2115
- const de_TooManyTagsRes = async (parsedOutput, context) => {
2116
- const body = parsedOutput.body;
2117
- const deserialized = smithyClient._json(body);
2118
- const exception = new TooManyTags({
2119
- $metadata: deserializeMetadata(parsedOutput),
2120
- ...deserialized,
2121
- });
2122
- return smithyClient.decorateServiceException(exception, body);
2123
- };
2124
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
2125
- const body = parsedOutput.body;
2126
- const deserialized = smithyClient._json(body);
2127
- const exception = new ValidationException({
2128
- $metadata: deserializeMetadata(parsedOutput),
2129
- ...deserialized,
2130
- });
2131
- return smithyClient.decorateServiceException(exception, body);
2132
- };
2133
- const se_RedriveExecutionInput = (input, context) => {
2134
- return smithyClient.take(input, {
2135
- clientToken: [true, (_) => _ ?? uuid.v4()],
2136
- executionArn: [],
2137
- });
2138
- };
2139
- const se_UpdateMapRunInput = (input, context) => {
2140
- return smithyClient.take(input, {
2141
- mapRunArn: [],
2142
- maxConcurrency: [],
2143
- toleratedFailureCount: [],
2144
- toleratedFailurePercentage: smithyClient.serializeFloat,
2145
- });
2146
- };
2147
- const de_ActivityList = (output, context) => {
2148
- const retVal = (output || [])
2149
- .filter((e) => e != null)
2150
- .map((entry) => {
2151
- return de_ActivityListItem(entry);
2152
- });
2153
- return retVal;
2154
- };
2155
- const de_ActivityListItem = (output, context) => {
2156
- return smithyClient.take(output, {
2157
- activityArn: smithyClient.expectString,
2158
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2159
- name: smithyClient.expectString,
2160
- });
2161
- };
2162
- const de_CreateActivityOutput = (output, context) => {
2163
- return smithyClient.take(output, {
2164
- activityArn: smithyClient.expectString,
2165
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2166
- });
2167
- };
2168
- const de_CreateStateMachineAliasOutput = (output, context) => {
2169
- return smithyClient.take(output, {
2170
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2171
- stateMachineAliasArn: smithyClient.expectString,
2172
- });
2173
- };
2174
- const de_CreateStateMachineOutput = (output, context) => {
2175
- return smithyClient.take(output, {
2176
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2177
- stateMachineArn: smithyClient.expectString,
2178
- stateMachineVersionArn: smithyClient.expectString,
2179
- });
2180
- };
2181
- const de_DescribeActivityOutput = (output, context) => {
2182
- return smithyClient.take(output, {
2183
- activityArn: smithyClient.expectString,
2184
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2185
- encryptionConfiguration: smithyClient._json,
2186
- name: smithyClient.expectString,
2187
- });
2188
- };
2189
- const de_DescribeExecutionOutput = (output, context) => {
2190
- return smithyClient.take(output, {
2191
- cause: smithyClient.expectString,
2192
- error: smithyClient.expectString,
2193
- executionArn: smithyClient.expectString,
2194
- input: smithyClient.expectString,
2195
- inputDetails: smithyClient._json,
2196
- mapRunArn: smithyClient.expectString,
2197
- name: smithyClient.expectString,
2198
- output: smithyClient.expectString,
2199
- outputDetails: smithyClient._json,
2200
- redriveCount: smithyClient.expectInt32,
2201
- redriveDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2202
- redriveStatus: smithyClient.expectString,
2203
- redriveStatusReason: smithyClient.expectString,
2204
- startDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2205
- stateMachineAliasArn: smithyClient.expectString,
2206
- stateMachineArn: smithyClient.expectString,
2207
- stateMachineVersionArn: smithyClient.expectString,
2208
- status: smithyClient.expectString,
2209
- stopDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2210
- traceHeader: smithyClient.expectString,
2211
- });
2212
- };
2213
- const de_DescribeMapRunOutput = (output, context) => {
2214
- return smithyClient.take(output, {
2215
- executionArn: smithyClient.expectString,
2216
- executionCounts: smithyClient._json,
2217
- itemCounts: smithyClient._json,
2218
- mapRunArn: smithyClient.expectString,
2219
- maxConcurrency: smithyClient.expectInt32,
2220
- redriveCount: smithyClient.expectInt32,
2221
- redriveDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2222
- startDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2223
- status: smithyClient.expectString,
2224
- stopDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2225
- toleratedFailureCount: smithyClient.expectLong,
2226
- toleratedFailurePercentage: smithyClient.limitedParseFloat32,
2227
- });
2228
- };
2229
- const de_DescribeStateMachineAliasOutput = (output, context) => {
2230
- return smithyClient.take(output, {
2231
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2232
- description: smithyClient.expectString,
2233
- name: smithyClient.expectString,
2234
- routingConfiguration: smithyClient._json,
2235
- stateMachineAliasArn: smithyClient.expectString,
2236
- updateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2237
- });
2238
- };
2239
- const de_DescribeStateMachineForExecutionOutput = (output, context) => {
2240
- return smithyClient.take(output, {
2241
- definition: smithyClient.expectString,
2242
- encryptionConfiguration: smithyClient._json,
2243
- label: smithyClient.expectString,
2244
- loggingConfiguration: smithyClient._json,
2245
- mapRunArn: smithyClient.expectString,
2246
- name: smithyClient.expectString,
2247
- revisionId: smithyClient.expectString,
2248
- roleArn: smithyClient.expectString,
2249
- stateMachineArn: smithyClient.expectString,
2250
- tracingConfiguration: smithyClient._json,
2251
- updateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2252
- variableReferences: smithyClient._json,
2253
- });
2254
- };
2255
- const de_DescribeStateMachineOutput = (output, context) => {
2256
- return smithyClient.take(output, {
2257
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2258
- definition: smithyClient.expectString,
2259
- description: smithyClient.expectString,
2260
- encryptionConfiguration: smithyClient._json,
2261
- label: smithyClient.expectString,
2262
- loggingConfiguration: smithyClient._json,
2263
- name: smithyClient.expectString,
2264
- revisionId: smithyClient.expectString,
2265
- roleArn: smithyClient.expectString,
2266
- stateMachineArn: smithyClient.expectString,
2267
- status: smithyClient.expectString,
2268
- tracingConfiguration: smithyClient._json,
2269
- type: smithyClient.expectString,
2270
- variableReferences: smithyClient._json,
2271
- });
2272
- };
2273
- const de_ExecutionList = (output, context) => {
2274
- const retVal = (output || [])
2275
- .filter((e) => e != null)
2276
- .map((entry) => {
2277
- return de_ExecutionListItem(entry);
2278
- });
2279
- return retVal;
2280
- };
2281
- const de_ExecutionListItem = (output, context) => {
2282
- return smithyClient.take(output, {
2283
- executionArn: smithyClient.expectString,
2284
- itemCount: smithyClient.expectInt32,
2285
- mapRunArn: smithyClient.expectString,
2286
- name: smithyClient.expectString,
2287
- redriveCount: smithyClient.expectInt32,
2288
- redriveDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2289
- startDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2290
- stateMachineAliasArn: smithyClient.expectString,
2291
- stateMachineArn: smithyClient.expectString,
2292
- stateMachineVersionArn: smithyClient.expectString,
2293
- status: smithyClient.expectString,
2294
- stopDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2295
- });
2296
- };
2297
- const de_GetExecutionHistoryOutput = (output, context) => {
2298
- return smithyClient.take(output, {
2299
- events: (_) => de_HistoryEventList(_),
2300
- nextToken: smithyClient.expectString,
2301
- });
2302
- };
2303
- const de_HistoryEvent = (output, context) => {
2304
- return smithyClient.take(output, {
2305
- activityFailedEventDetails: smithyClient._json,
2306
- activityScheduleFailedEventDetails: smithyClient._json,
2307
- activityScheduledEventDetails: smithyClient._json,
2308
- activityStartedEventDetails: smithyClient._json,
2309
- activitySucceededEventDetails: smithyClient._json,
2310
- activityTimedOutEventDetails: smithyClient._json,
2311
- evaluationFailedEventDetails: smithyClient._json,
2312
- executionAbortedEventDetails: smithyClient._json,
2313
- executionFailedEventDetails: smithyClient._json,
2314
- executionRedrivenEventDetails: smithyClient._json,
2315
- executionStartedEventDetails: smithyClient._json,
2316
- executionSucceededEventDetails: smithyClient._json,
2317
- executionTimedOutEventDetails: smithyClient._json,
2318
- id: smithyClient.expectLong,
2319
- lambdaFunctionFailedEventDetails: smithyClient._json,
2320
- lambdaFunctionScheduleFailedEventDetails: smithyClient._json,
2321
- lambdaFunctionScheduledEventDetails: smithyClient._json,
2322
- lambdaFunctionStartFailedEventDetails: smithyClient._json,
2323
- lambdaFunctionSucceededEventDetails: smithyClient._json,
2324
- lambdaFunctionTimedOutEventDetails: smithyClient._json,
2325
- mapIterationAbortedEventDetails: smithyClient._json,
2326
- mapIterationFailedEventDetails: smithyClient._json,
2327
- mapIterationStartedEventDetails: smithyClient._json,
2328
- mapIterationSucceededEventDetails: smithyClient._json,
2329
- mapRunFailedEventDetails: smithyClient._json,
2330
- mapRunRedrivenEventDetails: smithyClient._json,
2331
- mapRunStartedEventDetails: smithyClient._json,
2332
- mapStateStartedEventDetails: smithyClient._json,
2333
- previousEventId: smithyClient.expectLong,
2334
- stateEnteredEventDetails: smithyClient._json,
2335
- stateExitedEventDetails: smithyClient._json,
2336
- taskFailedEventDetails: smithyClient._json,
2337
- taskScheduledEventDetails: smithyClient._json,
2338
- taskStartFailedEventDetails: smithyClient._json,
2339
- taskStartedEventDetails: smithyClient._json,
2340
- taskSubmitFailedEventDetails: smithyClient._json,
2341
- taskSubmittedEventDetails: smithyClient._json,
2342
- taskSucceededEventDetails: smithyClient._json,
2343
- taskTimedOutEventDetails: smithyClient._json,
2344
- timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2345
- type: smithyClient.expectString,
2346
- });
2347
- };
2348
- const de_HistoryEventList = (output, context) => {
2349
- const retVal = (output || [])
2350
- .filter((e) => e != null)
2351
- .map((entry) => {
2352
- return de_HistoryEvent(entry);
2353
- });
2354
- return retVal;
2355
- };
2356
- const de_ListActivitiesOutput = (output, context) => {
2357
- return smithyClient.take(output, {
2358
- activities: (_) => de_ActivityList(_),
2359
- nextToken: smithyClient.expectString,
2360
- });
2361
- };
2362
- const de_ListExecutionsOutput = (output, context) => {
2363
- return smithyClient.take(output, {
2364
- executions: (_) => de_ExecutionList(_),
2365
- nextToken: smithyClient.expectString,
2366
- });
2367
- };
2368
- const de_ListMapRunsOutput = (output, context) => {
2369
- return smithyClient.take(output, {
2370
- mapRuns: (_) => de_MapRunList(_),
2371
- nextToken: smithyClient.expectString,
2372
- });
2373
- };
2374
- const de_ListStateMachineAliasesOutput = (output, context) => {
2375
- return smithyClient.take(output, {
2376
- nextToken: smithyClient.expectString,
2377
- stateMachineAliases: (_) => de_StateMachineAliasList(_),
2378
- });
2379
- };
2380
- const de_ListStateMachinesOutput = (output, context) => {
2381
- return smithyClient.take(output, {
2382
- nextToken: smithyClient.expectString,
2383
- stateMachines: (_) => de_StateMachineList(_),
2384
- });
2385
- };
2386
- const de_ListStateMachineVersionsOutput = (output, context) => {
2387
- return smithyClient.take(output, {
2388
- nextToken: smithyClient.expectString,
2389
- stateMachineVersions: (_) => de_StateMachineVersionList(_),
2390
- });
2391
- };
2392
- const de_MapRunList = (output, context) => {
2393
- const retVal = (output || [])
2394
- .filter((e) => e != null)
2395
- .map((entry) => {
2396
- return de_MapRunListItem(entry);
2397
- });
2398
- return retVal;
2399
- };
2400
- const de_MapRunListItem = (output, context) => {
2401
- return smithyClient.take(output, {
2402
- executionArn: smithyClient.expectString,
2403
- mapRunArn: smithyClient.expectString,
2404
- startDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2405
- stateMachineArn: smithyClient.expectString,
2406
- stopDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2407
- });
2408
- };
2409
- const de_PublishStateMachineVersionOutput = (output, context) => {
2410
- return smithyClient.take(output, {
2411
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2412
- stateMachineVersionArn: smithyClient.expectString,
2413
- });
2414
- };
2415
- const de_RedriveExecutionOutput = (output, context) => {
2416
- return smithyClient.take(output, {
2417
- redriveDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2418
- });
2419
- };
2420
- const de_StartExecutionOutput = (output, context) => {
2421
- return smithyClient.take(output, {
2422
- executionArn: smithyClient.expectString,
2423
- startDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2424
- });
2425
- };
2426
- const de_StartSyncExecutionOutput = (output, context) => {
2427
- return smithyClient.take(output, {
2428
- billingDetails: smithyClient._json,
2429
- cause: smithyClient.expectString,
2430
- error: smithyClient.expectString,
2431
- executionArn: smithyClient.expectString,
2432
- input: smithyClient.expectString,
2433
- inputDetails: smithyClient._json,
2434
- name: smithyClient.expectString,
2435
- output: smithyClient.expectString,
2436
- outputDetails: smithyClient._json,
2437
- startDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2438
- stateMachineArn: smithyClient.expectString,
2439
- status: smithyClient.expectString,
2440
- stopDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2441
- traceHeader: smithyClient.expectString,
2442
- });
2443
- };
2444
- const de_StateMachineAliasList = (output, context) => {
2445
- const retVal = (output || [])
2446
- .filter((e) => e != null)
2447
- .map((entry) => {
2448
- return de_StateMachineAliasListItem(entry);
2449
- });
2450
- return retVal;
2451
- };
2452
- const de_StateMachineAliasListItem = (output, context) => {
2453
- return smithyClient.take(output, {
2454
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2455
- stateMachineAliasArn: smithyClient.expectString,
2456
- });
2457
- };
2458
- const de_StateMachineList = (output, context) => {
2459
- const retVal = (output || [])
2460
- .filter((e) => e != null)
2461
- .map((entry) => {
2462
- return de_StateMachineListItem(entry);
2463
- });
2464
- return retVal;
2465
- };
2466
- const de_StateMachineListItem = (output, context) => {
2467
- return smithyClient.take(output, {
2468
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2469
- name: smithyClient.expectString,
2470
- stateMachineArn: smithyClient.expectString,
2471
- type: smithyClient.expectString,
2472
- });
2473
- };
2474
- const de_StateMachineVersionList = (output, context) => {
2475
- const retVal = (output || [])
2476
- .filter((e) => e != null)
2477
- .map((entry) => {
2478
- return de_StateMachineVersionListItem(entry);
2479
- });
2480
- return retVal;
2481
- };
2482
- const de_StateMachineVersionListItem = (output, context) => {
2483
- return smithyClient.take(output, {
2484
- creationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2485
- stateMachineVersionArn: smithyClient.expectString,
2486
- });
2487
- };
2488
- const de_StopExecutionOutput = (output, context) => {
2489
- return smithyClient.take(output, {
2490
- stopDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2491
- });
2492
- };
2493
- const de_UpdateStateMachineAliasOutput = (output, context) => {
2494
- return smithyClient.take(output, {
2495
- updateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2496
- });
2497
- };
2498
- const de_UpdateStateMachineOutput = (output, context) => {
2499
- return smithyClient.take(output, {
2500
- revisionId: smithyClient.expectString,
2501
- stateMachineVersionArn: smithyClient.expectString,
2502
- updateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2503
- });
2504
- };
2505
- const deserializeMetadata = (output) => ({
2506
- httpStatusCode: output.statusCode,
2507
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
2508
- extendedRequestId: output.headers["x-amz-id-2"],
2509
- cfId: output.headers["x-amz-cf-id"],
2510
- });
2511
- const throwDefaultError = smithyClient.withBaseException(SFNServiceException);
2512
- const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
2513
- const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
2514
- const contents = {
2515
- protocol,
2516
- hostname,
2517
- port,
2518
- method: "POST",
2519
- path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
2520
- headers,
2521
- };
2522
- if (resolvedHostname !== undefined) {
2523
- contents.hostname = resolvedHostname;
2524
- }
2525
- if (body !== undefined) {
2526
- contents.body = body;
2527
- }
2528
- return new protocolHttp.HttpRequest(contents);
2529
- };
2530
- function sharedHeaders(operation) {
2531
- return {
2532
- "content-type": "application/x-amz-json-1.0",
2533
- "x-amz-target": `AWSStepFunctions.${operation}`,
2534
- };
2535
- }
671
+ const _AAE = "ActivityAlreadyExists";
672
+ const _AD = "AliasDescription";
673
+ const _ADNE = "ActivityDoesNotExist";
674
+ const _AFED = "ActivityFailedEventDetails";
675
+ const _AL = "ActivityList";
676
+ const _ALE = "ActivityLimitExceeded";
677
+ const _ALI = "ActivityListItem";
678
+ const _ASED = "ActivityScheduledEventDetails";
679
+ const _ASEDc = "ActivityStartedEventDetails";
680
+ const _ASEDct = "ActivitySucceededEventDetails";
681
+ const _ASFED = "ActivityScheduleFailedEventDetails";
682
+ const _ATOED = "ActivityTimedOutEventDetails";
683
+ const _AV = "AssignedVariables";
684
+ const _AVD = "AssignedVariablesDetails";
685
+ const _AWLE = "ActivityWorkerLimitExceeded";
686
+ const _BD = "BillingDetails";
687
+ const _CA = "CreateActivity";
688
+ const _CAI = "CreateActivityInput";
689
+ const _CAO = "CreateActivityOutput";
690
+ const _CE = "ConflictException";
691
+ const _CP = "ConnectorParameters";
692
+ const _CSM = "CreateStateMachine";
693
+ const _CSMA = "CreateStateMachineAlias";
694
+ const _CSMAI = "CreateStateMachineAliasInput";
695
+ const _CSMAO = "CreateStateMachineAliasOutput";
696
+ const _CSMI = "CreateStateMachineInput";
697
+ const _CSMO = "CreateStateMachineOutput";
698
+ const _CWEEDD = "CloudWatchEventsExecutionDataDetails";
699
+ const _CWLLG = "CloudWatchLogsLogGroup";
700
+ const _D = "Definition";
701
+ const _DA = "DeleteActivity";
702
+ const _DAI = "DeleteActivityInput";
703
+ const _DAIe = "DescribeActivityInput";
704
+ const _DAO = "DeleteActivityOutput";
705
+ const _DAOe = "DescribeActivityOutput";
706
+ const _DAe = "DescribeActivity";
707
+ const _DE = "DescribeExecution";
708
+ const _DEI = "DescribeExecutionInput";
709
+ const _DEO = "DescribeExecutionOutput";
710
+ const _DMR = "DescribeMapRun";
711
+ const _DMRI = "DescribeMapRunInput";
712
+ const _DMRO = "DescribeMapRunOutput";
713
+ const _DSM = "DeleteStateMachine";
714
+ const _DSMA = "DeleteStateMachineAlias";
715
+ const _DSMAI = "DeleteStateMachineAliasInput";
716
+ const _DSMAIe = "DescribeStateMachineAliasInput";
717
+ const _DSMAO = "DeleteStateMachineAliasOutput";
718
+ const _DSMAOe = "DescribeStateMachineAliasOutput";
719
+ const _DSMAe = "DescribeStateMachineAlias";
720
+ const _DSMFE = "DescribeStateMachineForExecution";
721
+ const _DSMFEI = "DescribeStateMachineForExecutionInput";
722
+ const _DSMFEO = "DescribeStateMachineForExecutionOutput";
723
+ const _DSMI = "DeleteStateMachineInput";
724
+ const _DSMIe = "DescribeStateMachineInput";
725
+ const _DSMO = "DeleteStateMachineOutput";
726
+ const _DSMOe = "DescribeStateMachineOutput";
727
+ const _DSMV = "DeleteStateMachineVersion";
728
+ const _DSMVI = "DeleteStateMachineVersionInput";
729
+ const _DSMVO = "DeleteStateMachineVersionOutput";
730
+ const _DSMe = "DescribeStateMachine";
731
+ const _EAE = "ExecutionAlreadyExists";
732
+ const _EAED = "ExecutionAbortedEventDetails";
733
+ const _EC = "EncryptionConfiguration";
734
+ const _EDNE = "ExecutionDoesNotExist";
735
+ const _EFED = "EvaluationFailedEventDetails";
736
+ const _EFEDx = "ExecutionFailedEventDetails";
737
+ const _EFL = "EvaluationFailureLocation";
738
+ const _EL = "ExecutionList";
739
+ const _ELE = "ExecutionLimitExceeded";
740
+ const _ELI = "ExecutionListItem";
741
+ const _ENR = "ExecutionNotRedrivable";
742
+ const _ERED = "ExecutionRedrivenEventDetails";
743
+ const _ESED = "ExecutionStartedEventDetails";
744
+ const _ESEDx = "ExecutionSucceededEventDetails";
745
+ const _ETOED = "ExecutionTimedOutEventDetails";
746
+ const _GAT = "GetActivityTask";
747
+ const _GATI = "GetActivityTaskInput";
748
+ const _GATO = "GetActivityTaskOutput";
749
+ const _GEH = "GetExecutionHistory";
750
+ const _GEHI = "GetExecutionHistoryInput";
751
+ const _GEHO = "GetExecutionHistoryOutput";
752
+ const _HE = "HistoryEvent";
753
+ const _HEEDD = "HistoryEventExecutionDataDetails";
754
+ const _HEL = "HistoryEventList";
755
+ const _IA = "InvalidArn";
756
+ const _ID = "InspectionData";
757
+ const _IDR = "InspectionDataRequest";
758
+ const _IDRn = "InspectionDataResponse";
759
+ const _IDn = "InvalidDefinition";
760
+ const _IEC = "InvalidEncryptionConfiguration";
761
+ const _IEI = "InvalidExecutionInput";
762
+ const _ILC = "InvalidLoggingConfiguration";
763
+ const _IN = "InvalidName";
764
+ const _IO = "InvalidOutput";
765
+ const _IT = "InvalidToken";
766
+ const _ITC = "InvalidTracingConfiguration";
767
+ const _KADE = "KmsAccessDeniedException";
768
+ const _KISE = "KmsInvalidStateException";
769
+ const _KTE = "KmsThrottlingException";
770
+ const _LA = "ListActivities";
771
+ const _LAI = "ListActivitiesInput";
772
+ const _LAO = "ListActivitiesOutput";
773
+ const _LC = "LoggingConfiguration";
774
+ const _LD = "LogDestination";
775
+ const _LDL = "LogDestinationList";
776
+ const _LE = "ListExecutions";
777
+ const _LEI = "ListExecutionsInput";
778
+ const _LEO = "ListExecutionsOutput";
779
+ const _LFFED = "LambdaFunctionFailedEventDetails";
780
+ const _LFSED = "LambdaFunctionScheduledEventDetails";
781
+ const _LFSEDa = "LambdaFunctionSucceededEventDetails";
782
+ const _LFSFED = "LambdaFunctionScheduleFailedEventDetails";
783
+ const _LFSFEDa = "LambdaFunctionStartFailedEventDetails";
784
+ const _LFTOED = "LambdaFunctionTimedOutEventDetails";
785
+ const _LMR = "ListMapRuns";
786
+ const _LMRI = "ListMapRunsInput";
787
+ const _LMRO = "ListMapRunsOutput";
788
+ const _LSM = "ListStateMachines";
789
+ const _LSMA = "ListStateMachineAliases";
790
+ const _LSMAI = "ListStateMachineAliasesInput";
791
+ const _LSMAO = "ListStateMachineAliasesOutput";
792
+ const _LSMI = "ListStateMachinesInput";
793
+ const _LSMO = "ListStateMachinesOutput";
794
+ const _LSMV = "ListStateMachineVersions";
795
+ const _LSMVI = "ListStateMachineVersionsInput";
796
+ const _LSMVO = "ListStateMachineVersionsOutput";
797
+ const _LTFR = "ListTagsForResource";
798
+ const _LTFRI = "ListTagsForResourceInput";
799
+ const _LTFRO = "ListTagsForResourceOutput";
800
+ const _MIED = "MapIterationEventDetails";
801
+ const _MREC = "MapRunExecutionCounts";
802
+ const _MRFED = "MapRunFailedEventDetails";
803
+ const _MRIC = "MapRunItemCounts";
804
+ const _MRL = "MapRunList";
805
+ const _MRLI = "MapRunListItem";
806
+ const _MRP = "MissingRequiredParameter";
807
+ const _MRRED = "MapRunRedrivenEventDetails";
808
+ const _MRSED = "MapRunStartedEventDetails";
809
+ const _MSSED = "MapStateStartedEventDetails";
810
+ const _PSMV = "PublishStateMachineVersion";
811
+ const _PSMVI = "PublishStateMachineVersionInput";
812
+ const _PSMVO = "PublishStateMachineVersionOutput";
813
+ const _RCL = "RoutingConfigurationList";
814
+ const _RCLI = "RoutingConfigurationListItem";
815
+ const _RE = "RedriveExecution";
816
+ const _REI = "RedriveExecutionInput";
817
+ const _REO = "RedriveExecutionOutput";
818
+ const _RNF = "ResourceNotFound";
819
+ const _SC = "SensitiveCause";
820
+ const _SD = "SensitiveData";
821
+ const _SDJI = "SensitiveDataJobInput";
822
+ const _SE = "SensitiveError";
823
+ const _SEED = "StateEnteredEventDetails";
824
+ const _SEEDt = "StateExitedEventDetails";
825
+ const _SEI = "StartExecutionInput";
826
+ const _SEIt = "StopExecutionInput";
827
+ const _SEO = "StartExecutionOutput";
828
+ const _SEOt = "StopExecutionOutput";
829
+ const _SEt = "StartExecution";
830
+ const _SEto = "StopExecution";
831
+ const _SMAE = "StateMachineAlreadyExists";
832
+ const _SMAL = "StateMachineAliasList";
833
+ const _SMALI = "StateMachineAliasListItem";
834
+ const _SMD = "StateMachineDeleting";
835
+ const _SMDNE = "StateMachineDoesNotExist";
836
+ const _SML = "StateMachineList";
837
+ const _SMLE = "StateMachineLimitExceeded";
838
+ const _SMLI = "StateMachineListItem";
839
+ const _SMTNS = "StateMachineTypeNotSupported";
840
+ const _SMVL = "StateMachineVersionList";
841
+ const _SMVLI = "StateMachineVersionListItem";
842
+ const _SQEE = "ServiceQuotaExceededException";
843
+ const _SSE = "StartSyncExecution";
844
+ const _SSEI = "StartSyncExecutionInput";
845
+ const _SSEO = "StartSyncExecutionOutput";
846
+ const _STF = "SendTaskFailure";
847
+ const _STFI = "SendTaskFailureInput";
848
+ const _STFO = "SendTaskFailureOutput";
849
+ const _STH = "SendTaskHeartbeat";
850
+ const _STHI = "SendTaskHeartbeatInput";
851
+ const _STHO = "SendTaskHeartbeatOutput";
852
+ const _STS = "SendTaskSuccess";
853
+ const _STSI = "SendTaskSuccessInput";
854
+ const _STSO = "SendTaskSuccessOutput";
855
+ const _T = "Tag";
856
+ const _TC = "TaskCredentials";
857
+ const _TCr = "TracingConfiguration";
858
+ const _TDNE = "TaskDoesNotExist";
859
+ const _TFED = "TaskFailedEventDetails";
860
+ const _TL = "TagList";
861
+ const _TMT = "TooManyTags";
862
+ const _TR = "TagResource";
863
+ const _TRI = "TagResourceInput";
864
+ const _TRO = "TagResourceOutput";
865
+ const _TS = "TestState";
866
+ const _TSED = "TaskScheduledEventDetails";
867
+ const _TSEDa = "TaskStartedEventDetails";
868
+ const _TSEDas = "TaskSubmittedEventDetails";
869
+ const _TSEDask = "TaskSucceededEventDetails";
870
+ const _TSFED = "TaskStartFailedEventDetails";
871
+ const _TSFEDa = "TaskSubmitFailedEventDetails";
872
+ const _TSI = "TestStateInput";
873
+ const _TSO = "TestStateOutput";
874
+ const _TTO = "TaskTimedOut";
875
+ const _TTOED = "TaskTimedOutEventDetails";
876
+ const _UMR = "UpdateMapRun";
877
+ const _UMRI = "UpdateMapRunInput";
878
+ const _UMRO = "UpdateMapRunOutput";
879
+ const _UR = "UntagResource";
880
+ const _URI = "UntagResourceInput";
881
+ const _URO = "UntagResourceOutput";
882
+ const _USM = "UpdateStateMachine";
883
+ const _USMA = "UpdateStateMachineAlias";
884
+ const _USMAI = "UpdateStateMachineAliasInput";
885
+ const _USMAO = "UpdateStateMachineAliasOutput";
886
+ const _USMI = "UpdateStateMachineInput";
887
+ const _USMO = "UpdateStateMachineOutput";
888
+ const _VD = "VersionDescription";
889
+ const _VE = "ValidationException";
890
+ const _VN = "VariableName";
891
+ const _VNL = "VariableNameList";
892
+ const _VR = "VariableReferences";
893
+ const _VSMD = "ValidateStateMachineDefinition";
894
+ const _VSMDC = "ValidateStateMachineDefinitionCode";
895
+ const _VSMDD = "ValidateStateMachineDefinitionDiagnostic";
896
+ const _VSMDDL = "ValidateStateMachineDefinitionDiagnosticList";
897
+ const _VSMDI = "ValidateStateMachineDefinitionInput";
898
+ const _VSMDL = "ValidateStateMachineDefinitionLocation";
899
+ const _VSMDM = "ValidateStateMachineDefinitionMessage";
900
+ const _VSMDO = "ValidateStateMachineDefinitionOutput";
901
+ const _VV = "VariableValue";
902
+ const _a = "activities";
903
+ const _aA = "activityArn";
904
+ const _aAf = "afterArguments";
905
+ const _aFED = "activityFailedEventDetails";
906
+ const _aIP = "afterInputPath";
907
+ const _aP = "afterParameters";
908
+ const _aRP = "afterResultPath";
909
+ const _aRS = "afterResultSelector";
910
+ const _aSED = "activityScheduledEventDetails";
911
+ const _aSEDc = "activityStartedEventDetails";
912
+ const _aSEDct = "activitySucceededEventDetails";
913
+ const _aSFED = "activityScheduleFailedEventDetails";
914
+ const _aTOED = "activityTimedOutEventDetails";
915
+ const _aV = "assignedVariables";
916
+ const _aVD = "assignedVariablesDetails";
917
+ const _ab = "aborted";
918
+ const _b = "body";
919
+ const _bD = "billingDetails";
920
+ const _bDIM = "billedDurationInMilliseconds";
921
+ const _bMUIMB = "billedMemoryUsedInMB";
922
+ const _c = "client";
923
+ const _cD = "creationDate";
924
+ const _cT = "clientToken";
925
+ const _cWLLG = "cloudWatchLogsLogGroup";
926
+ const _ca = "cause";
927
+ const _co = "code";
928
+ const _d = "description";
929
+ const _de = "definition";
930
+ const _des = "destinations";
931
+ const _di = "diagnostics";
932
+ const _e = "error";
933
+ const _eA = "executionArn";
934
+ const _eAED = "executionAbortedEventDetails";
935
+ const _eC = "encryptionConfiguration";
936
+ const _eCx = "executionCounts";
937
+ const _eFED = "executionFailedEventDetails";
938
+ const _eFEDv = "evaluationFailedEventDetails";
939
+ const _eRED = "executionRedrivenEventDetails";
940
+ const _eSED = "executionStartedEventDetails";
941
+ const _eSEDx = "executionSucceededEventDetails";
942
+ const _eTOED = "executionTimedOutEventDetails";
943
+ const _en = "enabled";
944
+ const _end = "endpoint";
945
+ const _ev = "events";
946
+ const _ex = "executions";
947
+ const _f = "failed";
948
+ const _fNR = "failuresNotRedrivable";
949
+ const _h = "headers";
950
+ const _hE = "httpError";
951
+ const _hIS = "heartbeatInSeconds";
952
+ const _i = "input";
953
+ const _iC = "itemCounts";
954
+ const _iCt = "itemCount";
955
+ const _iD = "inputDetails";
956
+ const _iDn = "includedData";
957
+ const _iDns = "inspectionData";
958
+ const _iED = "includeExecutionData";
959
+ const _iL = "inspectionLevel";
960
+ const _id = "id";
961
+ const _in = "included";
962
+ const _ind = "index";
963
+ const _k = "key";
964
+ const _kDKRPS = "kmsDataKeyReusePeriodSeconds";
965
+ const _kKI = "kmsKeyId";
966
+ const _kKS = "kmsKeyState";
967
+ const _l = "label";
968
+ const _lC = "loggingConfiguration";
969
+ const _lFFED = "lambdaFunctionFailedEventDetails";
970
+ const _lFSED = "lambdaFunctionScheduledEventDetails";
971
+ const _lFSEDa = "lambdaFunctionSucceededEventDetails";
972
+ const _lFSFED = "lambdaFunctionScheduleFailedEventDetails";
973
+ const _lFSFEDa = "lambdaFunctionStartFailedEventDetails";
974
+ const _lFTOED = "lambdaFunctionTimedOutEventDetails";
975
+ const _lGA = "logGroupArn";
976
+ const _le = "level";
977
+ const _len = "length";
978
+ const _lo = "location";
979
+ const _m = "message";
980
+ const _mC = "maxConcurrency";
981
+ const _mIAED = "mapIterationAbortedEventDetails";
982
+ const _mIFED = "mapIterationFailedEventDetails";
983
+ const _mISED = "mapIterationStartedEventDetails";
984
+ const _mISEDa = "mapIterationSucceededEventDetails";
985
+ const _mR = "maxResults";
986
+ const _mRA = "mapRunArn";
987
+ const _mRFED = "mapRunFailedEventDetails";
988
+ const _mRRED = "mapRunRedrivenEventDetails";
989
+ const _mRSED = "mapRunStartedEventDetails";
990
+ const _mRa = "mapRuns";
991
+ const _mSSED = "mapStateStartedEventDetails";
992
+ const _me = "method";
993
+ const _n = "name";
994
+ const _nS = "nextState";
995
+ const _nT = "nextToken";
996
+ const _o = "output";
997
+ const _oD = "outputDetails";
998
+ const _p = "publish";
999
+ const _pEI = "previousEventId";
1000
+ const _pR = "pendingRedrive";
1001
+ const _pa = "parameters";
1002
+ const _pe = "pending";
1003
+ const _pr = "protocol";
1004
+ const _r = "resource";
1005
+ const _rA = "roleArn";
1006
+ const _rAe = "resourceArn";
1007
+ const _rC = "routingConfiguration";
1008
+ const _rCe = "redriveCount";
1009
+ const _rD = "redriveDate";
1010
+ const _rF = "redriveFilter";
1011
+ const _rI = "revisionId";
1012
+ const _rN = "resourceName";
1013
+ const _rO = "reverseOrder";
1014
+ const _rS = "redriveStatus";
1015
+ const _rSR = "redriveStatusReason";
1016
+ const _rSe = "revealSecrets";
1017
+ const _rT = "resourceType";
1018
+ const _rW = "resultsWritten";
1019
+ const _re = "result";
1020
+ const _rea = "reason";
1021
+ const _reg = "region";
1022
+ const _req = "request";
1023
+ const _res = "response";
1024
+ const _ru = "running";
1025
+ const _s = "status";
1026
+ const _sC = "statusCode";
1027
+ const _sD = "startDate";
1028
+ const _sDt = "stopDate";
1029
+ const _sEED = "stateEnteredEventDetails";
1030
+ const _sEEDt = "stateExitedEventDetails";
1031
+ const _sF = "statusFilter";
1032
+ const _sM = "statusMessage";
1033
+ const _sMA = "stateMachineArn";
1034
+ const _sMAA = "stateMachineAliasArn";
1035
+ const _sMAt = "stateMachineAliases";
1036
+ const _sMV = "stateMachineVersions";
1037
+ const _sMVA = "stateMachineVersionArn";
1038
+ const _sMt = "stateMachines";
1039
+ const _se = "severity";
1040
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.sfn";
1041
+ const _st = "state";
1042
+ const _su = "succeeded";
1043
+ const _t = "truncated";
1044
+ const _tC = "tracingConfiguration";
1045
+ const _tCa = "taskCredentials";
1046
+ const _tFC = "toleratedFailureCount";
1047
+ const _tFED = "taskFailedEventDetails";
1048
+ const _tFP = "toleratedFailurePercentage";
1049
+ const _tH = "traceHeader";
1050
+ const _tIS = "timeoutInSeconds";
1051
+ const _tK = "tagKeys";
1052
+ const _tO = "timedOut";
1053
+ const _tSED = "taskScheduledEventDetails";
1054
+ const _tSEDa = "taskStartedEventDetails";
1055
+ const _tSEDas = "taskSubmittedEventDetails";
1056
+ const _tSEDask = "taskSucceededEventDetails";
1057
+ const _tSFED = "taskStartFailedEventDetails";
1058
+ const _tSFEDa = "taskSubmitFailedEventDetails";
1059
+ const _tT = "taskToken";
1060
+ const _tTOED = "taskTimedOutEventDetails";
1061
+ const _ta = "tags";
1062
+ const _ti = "timestamp";
1063
+ const _to = "total";
1064
+ const _ty = "type";
1065
+ const _u = "url";
1066
+ const _uD = "updateDate";
1067
+ const _v = "variables";
1068
+ const _vD = "versionDescription";
1069
+ const _vR = "variableReferences";
1070
+ const _va = "value";
1071
+ const _w = "weight";
1072
+ const _wN = "workerName";
1073
+ const n0 = "com.amazonaws.sfn";
1074
+ var AliasDescription = [0, n0, _AD, 8, 0];
1075
+ var ConnectorParameters = [0, n0, _CP, 8, 0];
1076
+ var Definition = [0, n0, _D, 8, 0];
1077
+ var EvaluationFailureLocation = [0, n0, _EFL, 8, 0];
1078
+ var SensitiveCause = [0, n0, _SC, 8, 0];
1079
+ var SensitiveData = [0, n0, _SD, 8, 0];
1080
+ var SensitiveDataJobInput = [0, n0, _SDJI, 8, 0];
1081
+ var SensitiveError = [0, n0, _SE, 8, 0];
1082
+ var ValidateStateMachineDefinitionCode = [0, n0, _VSMDC, 8, 0];
1083
+ var ValidateStateMachineDefinitionLocation = [0, n0, _VSMDL, 8, 0];
1084
+ var ValidateStateMachineDefinitionMessage = [0, n0, _VSMDM, 8, 0];
1085
+ var VariableName = [0, n0, _VN, 8, 0];
1086
+ var VariableValue = [0, n0, _VV, 8, 0];
1087
+ var VersionDescription = [0, n0, _VD, 8, 0];
1088
+ var ActivityAlreadyExists = [
1089
+ -3,
1090
+ n0,
1091
+ _AAE,
1092
+ {
1093
+ [_e]: _c,
1094
+ },
1095
+ [_m],
1096
+ [0],
1097
+ ];
1098
+ schema.TypeRegistry.for(n0).registerError(ActivityAlreadyExists, ActivityAlreadyExists$1);
1099
+ var ActivityDoesNotExist = [
1100
+ -3,
1101
+ n0,
1102
+ _ADNE,
1103
+ {
1104
+ [_e]: _c,
1105
+ },
1106
+ [_m],
1107
+ [0],
1108
+ ];
1109
+ schema.TypeRegistry.for(n0).registerError(ActivityDoesNotExist, ActivityDoesNotExist$1);
1110
+ var ActivityFailedEventDetails = [
1111
+ 3,
1112
+ n0,
1113
+ _AFED,
1114
+ 0,
1115
+ [_e, _ca],
1116
+ [
1117
+ [() => SensitiveError, 0],
1118
+ [() => SensitiveCause, 0],
1119
+ ],
1120
+ ];
1121
+ var ActivityLimitExceeded = [
1122
+ -3,
1123
+ n0,
1124
+ _ALE,
1125
+ {
1126
+ [_e]: _c,
1127
+ },
1128
+ [_m],
1129
+ [0],
1130
+ ];
1131
+ schema.TypeRegistry.for(n0).registerError(ActivityLimitExceeded, ActivityLimitExceeded$1);
1132
+ var ActivityListItem = [3, n0, _ALI, 0, [_aA, _n, _cD], [0, 0, 4]];
1133
+ var ActivityScheduledEventDetails = [
1134
+ 3,
1135
+ n0,
1136
+ _ASED,
1137
+ 0,
1138
+ [_r, _i, _iD, _tIS, _hIS],
1139
+ [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails, 1, 1],
1140
+ ];
1141
+ var ActivityScheduleFailedEventDetails = [
1142
+ 3,
1143
+ n0,
1144
+ _ASFED,
1145
+ 0,
1146
+ [_e, _ca],
1147
+ [
1148
+ [() => SensitiveError, 0],
1149
+ [() => SensitiveCause, 0],
1150
+ ],
1151
+ ];
1152
+ var ActivityStartedEventDetails = [3, n0, _ASEDc, 0, [_wN], [0]];
1153
+ var ActivitySucceededEventDetails = [
1154
+ 3,
1155
+ n0,
1156
+ _ASEDct,
1157
+ 0,
1158
+ [_o, _oD],
1159
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1160
+ ];
1161
+ var ActivityTimedOutEventDetails = [
1162
+ 3,
1163
+ n0,
1164
+ _ATOED,
1165
+ 0,
1166
+ [_e, _ca],
1167
+ [
1168
+ [() => SensitiveError, 0],
1169
+ [() => SensitiveCause, 0],
1170
+ ],
1171
+ ];
1172
+ var ActivityWorkerLimitExceeded = [
1173
+ -3,
1174
+ n0,
1175
+ _AWLE,
1176
+ {
1177
+ [_e]: _c,
1178
+ },
1179
+ [_m],
1180
+ [0],
1181
+ ];
1182
+ schema.TypeRegistry.for(n0).registerError(ActivityWorkerLimitExceeded, ActivityWorkerLimitExceeded$1);
1183
+ var AssignedVariablesDetails = [3, n0, _AVD, 0, [_t], [2]];
1184
+ var BillingDetails = [3, n0, _BD, 0, [_bMUIMB, _bDIM], [1, 1]];
1185
+ var CloudWatchEventsExecutionDataDetails = [3, n0, _CWEEDD, 0, [_in], [2]];
1186
+ var CloudWatchLogsLogGroup = [3, n0, _CWLLG, 0, [_lGA], [0]];
1187
+ var ConflictException = [
1188
+ -3,
1189
+ n0,
1190
+ _CE,
1191
+ {
1192
+ [_e]: _c,
1193
+ [_hE]: 409,
1194
+ },
1195
+ [_m],
1196
+ [0],
1197
+ ];
1198
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
1199
+ var CreateActivityInput = [
1200
+ 3,
1201
+ n0,
1202
+ _CAI,
1203
+ 0,
1204
+ [_n, _ta, _eC],
1205
+ [0, () => TagList, () => EncryptionConfiguration],
1206
+ ];
1207
+ var CreateActivityOutput = [3, n0, _CAO, 0, [_aA, _cD], [0, 4]];
1208
+ var CreateStateMachineAliasInput = [
1209
+ 3,
1210
+ n0,
1211
+ _CSMAI,
1212
+ 0,
1213
+ [_d, _n, _rC],
1214
+ [[() => AliasDescription, 0], 0, () => RoutingConfigurationList],
1215
+ ];
1216
+ var CreateStateMachineAliasOutput = [3, n0, _CSMAO, 0, [_sMAA, _cD], [0, 4]];
1217
+ var CreateStateMachineInput = [
1218
+ 3,
1219
+ n0,
1220
+ _CSMI,
1221
+ 0,
1222
+ [_n, _de, _rA, _ty, _lC, _ta, _tC, _p, _vD, _eC],
1223
+ [
1224
+ 0,
1225
+ [() => Definition, 0],
1226
+ 0,
1227
+ 0,
1228
+ () => LoggingConfiguration,
1229
+ () => TagList,
1230
+ () => TracingConfiguration,
1231
+ 2,
1232
+ [() => VersionDescription, 0],
1233
+ () => EncryptionConfiguration,
1234
+ ],
1235
+ ];
1236
+ var CreateStateMachineOutput = [3, n0, _CSMO, 0, [_sMA, _cD, _sMVA], [0, 4, 0]];
1237
+ var DeleteActivityInput = [3, n0, _DAI, 0, [_aA], [0]];
1238
+ var DeleteActivityOutput = [3, n0, _DAO, 0, [], []];
1239
+ var DeleteStateMachineAliasInput = [3, n0, _DSMAI, 0, [_sMAA], [0]];
1240
+ var DeleteStateMachineAliasOutput = [3, n0, _DSMAO, 0, [], []];
1241
+ var DeleteStateMachineInput = [3, n0, _DSMI, 0, [_sMA], [0]];
1242
+ var DeleteStateMachineOutput = [3, n0, _DSMO, 0, [], []];
1243
+ var DeleteStateMachineVersionInput = [3, n0, _DSMVI, 0, [_sMVA], [0]];
1244
+ var DeleteStateMachineVersionOutput = [3, n0, _DSMVO, 0, [], []];
1245
+ var DescribeActivityInput = [3, n0, _DAIe, 0, [_aA], [0]];
1246
+ var DescribeActivityOutput = [
1247
+ 3,
1248
+ n0,
1249
+ _DAOe,
1250
+ 0,
1251
+ [_aA, _n, _cD, _eC],
1252
+ [0, 0, 4, () => EncryptionConfiguration],
1253
+ ];
1254
+ var DescribeExecutionInput = [3, n0, _DEI, 0, [_eA, _iDn], [0, 0]];
1255
+ var DescribeExecutionOutput = [
1256
+ 3,
1257
+ n0,
1258
+ _DEO,
1259
+ 0,
1260
+ [_eA, _sMA, _n, _s, _sD, _sDt, _i, _iD, _o, _oD, _tH, _mRA, _e, _ca, _sMVA, _sMAA, _rCe, _rD, _rS, _rSR],
1261
+ [
1262
+ 0,
1263
+ 0,
1264
+ 0,
1265
+ 0,
1266
+ 4,
1267
+ 4,
1268
+ [() => SensitiveData, 0],
1269
+ () => CloudWatchEventsExecutionDataDetails,
1270
+ [() => SensitiveData, 0],
1271
+ () => CloudWatchEventsExecutionDataDetails,
1272
+ 0,
1273
+ 0,
1274
+ [() => SensitiveError, 0],
1275
+ [() => SensitiveCause, 0],
1276
+ 0,
1277
+ 0,
1278
+ 1,
1279
+ 4,
1280
+ 0,
1281
+ [() => SensitiveData, 0],
1282
+ ],
1283
+ ];
1284
+ var DescribeMapRunInput = [3, n0, _DMRI, 0, [_mRA], [0]];
1285
+ var DescribeMapRunOutput = [
1286
+ 3,
1287
+ n0,
1288
+ _DMRO,
1289
+ 0,
1290
+ [_mRA, _eA, _s, _sD, _sDt, _mC, _tFP, _tFC, _iC, _eCx, _rCe, _rD],
1291
+ [0, 0, 0, 4, 4, 1, 1, 1, () => MapRunItemCounts, () => MapRunExecutionCounts, 1, 4],
1292
+ ];
1293
+ var DescribeStateMachineAliasInput = [3, n0, _DSMAIe, 0, [_sMAA], [0]];
1294
+ var DescribeStateMachineAliasOutput = [
1295
+ 3,
1296
+ n0,
1297
+ _DSMAOe,
1298
+ 0,
1299
+ [_sMAA, _n, _d, _rC, _cD, _uD],
1300
+ [0, 0, [() => AliasDescription, 0], () => RoutingConfigurationList, 4, 4],
1301
+ ];
1302
+ var DescribeStateMachineForExecutionInput = [3, n0, _DSMFEI, 0, [_eA, _iDn], [0, 0]];
1303
+ var DescribeStateMachineForExecutionOutput = [
1304
+ 3,
1305
+ n0,
1306
+ _DSMFEO,
1307
+ 0,
1308
+ [_sMA, _n, _de, _rA, _uD, _lC, _tC, _mRA, _l, _rI, _eC, _vR],
1309
+ [
1310
+ 0,
1311
+ 0,
1312
+ [() => Definition, 0],
1313
+ 0,
1314
+ 4,
1315
+ () => LoggingConfiguration,
1316
+ () => TracingConfiguration,
1317
+ 0,
1318
+ 0,
1319
+ 0,
1320
+ () => EncryptionConfiguration,
1321
+ [() => VariableReferences, 0],
1322
+ ],
1323
+ ];
1324
+ var DescribeStateMachineInput = [3, n0, _DSMIe, 0, [_sMA, _iDn], [0, 0]];
1325
+ var DescribeStateMachineOutput = [
1326
+ 3,
1327
+ n0,
1328
+ _DSMOe,
1329
+ 0,
1330
+ [_sMA, _n, _s, _de, _rA, _ty, _cD, _lC, _tC, _l, _rI, _d, _eC, _vR],
1331
+ [
1332
+ 0,
1333
+ 0,
1334
+ 0,
1335
+ [() => Definition, 0],
1336
+ 0,
1337
+ 0,
1338
+ 4,
1339
+ () => LoggingConfiguration,
1340
+ () => TracingConfiguration,
1341
+ 0,
1342
+ 0,
1343
+ [() => VersionDescription, 0],
1344
+ () => EncryptionConfiguration,
1345
+ [() => VariableReferences, 0],
1346
+ ],
1347
+ ];
1348
+ var EncryptionConfiguration = [3, n0, _EC, 0, [_kKI, _kDKRPS, _ty], [0, 1, 0]];
1349
+ var EvaluationFailedEventDetails = [
1350
+ 3,
1351
+ n0,
1352
+ _EFED,
1353
+ 0,
1354
+ [_e, _ca, _lo, _st],
1355
+ [[() => SensitiveError, 0], [() => SensitiveCause, 0], [() => EvaluationFailureLocation, 0], 0],
1356
+ ];
1357
+ var ExecutionAbortedEventDetails = [
1358
+ 3,
1359
+ n0,
1360
+ _EAED,
1361
+ 0,
1362
+ [_e, _ca],
1363
+ [
1364
+ [() => SensitiveError, 0],
1365
+ [() => SensitiveCause, 0],
1366
+ ],
1367
+ ];
1368
+ var ExecutionAlreadyExists = [
1369
+ -3,
1370
+ n0,
1371
+ _EAE,
1372
+ {
1373
+ [_e]: _c,
1374
+ },
1375
+ [_m],
1376
+ [0],
1377
+ ];
1378
+ schema.TypeRegistry.for(n0).registerError(ExecutionAlreadyExists, ExecutionAlreadyExists$1);
1379
+ var ExecutionDoesNotExist = [
1380
+ -3,
1381
+ n0,
1382
+ _EDNE,
1383
+ {
1384
+ [_e]: _c,
1385
+ },
1386
+ [_m],
1387
+ [0],
1388
+ ];
1389
+ schema.TypeRegistry.for(n0).registerError(ExecutionDoesNotExist, ExecutionDoesNotExist$1);
1390
+ var ExecutionFailedEventDetails = [
1391
+ 3,
1392
+ n0,
1393
+ _EFEDx,
1394
+ 0,
1395
+ [_e, _ca],
1396
+ [
1397
+ [() => SensitiveError, 0],
1398
+ [() => SensitiveCause, 0],
1399
+ ],
1400
+ ];
1401
+ var ExecutionLimitExceeded = [
1402
+ -3,
1403
+ n0,
1404
+ _ELE,
1405
+ {
1406
+ [_e]: _c,
1407
+ },
1408
+ [_m],
1409
+ [0],
1410
+ ];
1411
+ schema.TypeRegistry.for(n0).registerError(ExecutionLimitExceeded, ExecutionLimitExceeded$1);
1412
+ var ExecutionListItem = [
1413
+ 3,
1414
+ n0,
1415
+ _ELI,
1416
+ 0,
1417
+ [_eA, _sMA, _n, _s, _sD, _sDt, _mRA, _iCt, _sMVA, _sMAA, _rCe, _rD],
1418
+ [0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 1, 4],
1419
+ ];
1420
+ var ExecutionNotRedrivable = [
1421
+ -3,
1422
+ n0,
1423
+ _ENR,
1424
+ {
1425
+ [_e]: _c,
1426
+ },
1427
+ [_m],
1428
+ [0],
1429
+ ];
1430
+ schema.TypeRegistry.for(n0).registerError(ExecutionNotRedrivable, ExecutionNotRedrivable$1);
1431
+ var ExecutionRedrivenEventDetails = [3, n0, _ERED, 0, [_rCe], [1]];
1432
+ var ExecutionStartedEventDetails = [
1433
+ 3,
1434
+ n0,
1435
+ _ESED,
1436
+ 0,
1437
+ [_i, _iD, _rA, _sMAA, _sMVA],
1438
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails, 0, 0, 0],
1439
+ ];
1440
+ var ExecutionSucceededEventDetails = [
1441
+ 3,
1442
+ n0,
1443
+ _ESEDx,
1444
+ 0,
1445
+ [_o, _oD],
1446
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1447
+ ];
1448
+ var ExecutionTimedOutEventDetails = [
1449
+ 3,
1450
+ n0,
1451
+ _ETOED,
1452
+ 0,
1453
+ [_e, _ca],
1454
+ [
1455
+ [() => SensitiveError, 0],
1456
+ [() => SensitiveCause, 0],
1457
+ ],
1458
+ ];
1459
+ var GetActivityTaskInput = [3, n0, _GATI, 0, [_aA, _wN], [0, 0]];
1460
+ var GetActivityTaskOutput = [
1461
+ 3,
1462
+ n0,
1463
+ _GATO,
1464
+ 0,
1465
+ [_tT, _i],
1466
+ [0, [() => SensitiveDataJobInput, 0]],
1467
+ ];
1468
+ var GetExecutionHistoryInput = [
1469
+ 3,
1470
+ n0,
1471
+ _GEHI,
1472
+ 0,
1473
+ [_eA, _mR, _rO, _nT, _iED],
1474
+ [0, 1, 2, 0, 2],
1475
+ ];
1476
+ var GetExecutionHistoryOutput = [
1477
+ 3,
1478
+ n0,
1479
+ _GEHO,
1480
+ 0,
1481
+ [_ev, _nT],
1482
+ [[() => HistoryEventList, 0], 0],
1483
+ ];
1484
+ var HistoryEvent = [
1485
+ 3,
1486
+ n0,
1487
+ _HE,
1488
+ 0,
1489
+ [
1490
+ _ti,
1491
+ _ty,
1492
+ _id,
1493
+ _pEI,
1494
+ _aFED,
1495
+ _aSFED,
1496
+ _aSED,
1497
+ _aSEDc,
1498
+ _aSEDct,
1499
+ _aTOED,
1500
+ _tFED,
1501
+ _tSED,
1502
+ _tSFED,
1503
+ _tSEDa,
1504
+ _tSFEDa,
1505
+ _tSEDas,
1506
+ _tSEDask,
1507
+ _tTOED,
1508
+ _eFED,
1509
+ _eSED,
1510
+ _eSEDx,
1511
+ _eAED,
1512
+ _eTOED,
1513
+ _eRED,
1514
+ _mSSED,
1515
+ _mISED,
1516
+ _mISEDa,
1517
+ _mIFED,
1518
+ _mIAED,
1519
+ _lFFED,
1520
+ _lFSFED,
1521
+ _lFSED,
1522
+ _lFSFEDa,
1523
+ _lFSEDa,
1524
+ _lFTOED,
1525
+ _sEED,
1526
+ _sEEDt,
1527
+ _mRSED,
1528
+ _mRFED,
1529
+ _mRRED,
1530
+ _eFEDv,
1531
+ ],
1532
+ [
1533
+ 4,
1534
+ 0,
1535
+ 1,
1536
+ 1,
1537
+ [() => ActivityFailedEventDetails, 0],
1538
+ [() => ActivityScheduleFailedEventDetails, 0],
1539
+ [() => ActivityScheduledEventDetails, 0],
1540
+ () => ActivityStartedEventDetails,
1541
+ [() => ActivitySucceededEventDetails, 0],
1542
+ [() => ActivityTimedOutEventDetails, 0],
1543
+ [() => TaskFailedEventDetails, 0],
1544
+ [() => TaskScheduledEventDetails, 0],
1545
+ [() => TaskStartFailedEventDetails, 0],
1546
+ () => TaskStartedEventDetails,
1547
+ [() => TaskSubmitFailedEventDetails, 0],
1548
+ [() => TaskSubmittedEventDetails, 0],
1549
+ [() => TaskSucceededEventDetails, 0],
1550
+ [() => TaskTimedOutEventDetails, 0],
1551
+ [() => ExecutionFailedEventDetails, 0],
1552
+ [() => ExecutionStartedEventDetails, 0],
1553
+ [() => ExecutionSucceededEventDetails, 0],
1554
+ [() => ExecutionAbortedEventDetails, 0],
1555
+ [() => ExecutionTimedOutEventDetails, 0],
1556
+ () => ExecutionRedrivenEventDetails,
1557
+ () => MapStateStartedEventDetails,
1558
+ () => MapIterationEventDetails,
1559
+ () => MapIterationEventDetails,
1560
+ () => MapIterationEventDetails,
1561
+ () => MapIterationEventDetails,
1562
+ [() => LambdaFunctionFailedEventDetails, 0],
1563
+ [() => LambdaFunctionScheduleFailedEventDetails, 0],
1564
+ [() => LambdaFunctionScheduledEventDetails, 0],
1565
+ [() => LambdaFunctionStartFailedEventDetails, 0],
1566
+ [() => LambdaFunctionSucceededEventDetails, 0],
1567
+ [() => LambdaFunctionTimedOutEventDetails, 0],
1568
+ [() => StateEnteredEventDetails, 0],
1569
+ [() => StateExitedEventDetails, 0],
1570
+ () => MapRunStartedEventDetails,
1571
+ [() => MapRunFailedEventDetails, 0],
1572
+ () => MapRunRedrivenEventDetails,
1573
+ [() => EvaluationFailedEventDetails, 0],
1574
+ ],
1575
+ ];
1576
+ var HistoryEventExecutionDataDetails = [3, n0, _HEEDD, 0, [_t], [2]];
1577
+ var InspectionData = [
1578
+ 3,
1579
+ n0,
1580
+ _ID,
1581
+ 8,
1582
+ [_i, _aAf, _aIP, _aP, _re, _aRS, _aRP, _req, _res, _v],
1583
+ [
1584
+ [() => SensitiveData, 0],
1585
+ [() => SensitiveData, 0],
1586
+ [() => SensitiveData, 0],
1587
+ [() => SensitiveData, 0],
1588
+ [() => SensitiveData, 0],
1589
+ [() => SensitiveData, 0],
1590
+ [() => SensitiveData, 0],
1591
+ () => InspectionDataRequest,
1592
+ () => InspectionDataResponse,
1593
+ [() => SensitiveData, 0],
1594
+ ],
1595
+ ];
1596
+ var InspectionDataRequest = [3, n0, _IDR, 0, [_pr, _me, _u, _h, _b], [0, 0, 0, 0, 0]];
1597
+ var InspectionDataResponse = [3, n0, _IDRn, 0, [_pr, _sC, _sM, _h, _b], [0, 0, 0, 0, 0]];
1598
+ var InvalidArn = [
1599
+ -3,
1600
+ n0,
1601
+ _IA,
1602
+ {
1603
+ [_e]: _c,
1604
+ },
1605
+ [_m],
1606
+ [0],
1607
+ ];
1608
+ schema.TypeRegistry.for(n0).registerError(InvalidArn, InvalidArn$1);
1609
+ var InvalidDefinition = [
1610
+ -3,
1611
+ n0,
1612
+ _IDn,
1613
+ {
1614
+ [_e]: _c,
1615
+ },
1616
+ [_m],
1617
+ [0],
1618
+ ];
1619
+ schema.TypeRegistry.for(n0).registerError(InvalidDefinition, InvalidDefinition$1);
1620
+ var InvalidEncryptionConfiguration = [
1621
+ -3,
1622
+ n0,
1623
+ _IEC,
1624
+ {
1625
+ [_e]: _c,
1626
+ },
1627
+ [_m],
1628
+ [0],
1629
+ ];
1630
+ schema.TypeRegistry.for(n0).registerError(InvalidEncryptionConfiguration, InvalidEncryptionConfiguration$1);
1631
+ var InvalidExecutionInput = [
1632
+ -3,
1633
+ n0,
1634
+ _IEI,
1635
+ {
1636
+ [_e]: _c,
1637
+ },
1638
+ [_m],
1639
+ [0],
1640
+ ];
1641
+ schema.TypeRegistry.for(n0).registerError(InvalidExecutionInput, InvalidExecutionInput$1);
1642
+ var InvalidLoggingConfiguration = [
1643
+ -3,
1644
+ n0,
1645
+ _ILC,
1646
+ {
1647
+ [_e]: _c,
1648
+ },
1649
+ [_m],
1650
+ [0],
1651
+ ];
1652
+ schema.TypeRegistry.for(n0).registerError(InvalidLoggingConfiguration, InvalidLoggingConfiguration$1);
1653
+ var InvalidName = [
1654
+ -3,
1655
+ n0,
1656
+ _IN,
1657
+ {
1658
+ [_e]: _c,
1659
+ },
1660
+ [_m],
1661
+ [0],
1662
+ ];
1663
+ schema.TypeRegistry.for(n0).registerError(InvalidName, InvalidName$1);
1664
+ var InvalidOutput = [
1665
+ -3,
1666
+ n0,
1667
+ _IO,
1668
+ {
1669
+ [_e]: _c,
1670
+ },
1671
+ [_m],
1672
+ [0],
1673
+ ];
1674
+ schema.TypeRegistry.for(n0).registerError(InvalidOutput, InvalidOutput$1);
1675
+ var InvalidToken = [
1676
+ -3,
1677
+ n0,
1678
+ _IT,
1679
+ {
1680
+ [_e]: _c,
1681
+ },
1682
+ [_m],
1683
+ [0],
1684
+ ];
1685
+ schema.TypeRegistry.for(n0).registerError(InvalidToken, InvalidToken$1);
1686
+ var InvalidTracingConfiguration = [
1687
+ -3,
1688
+ n0,
1689
+ _ITC,
1690
+ {
1691
+ [_e]: _c,
1692
+ },
1693
+ [_m],
1694
+ [0],
1695
+ ];
1696
+ schema.TypeRegistry.for(n0).registerError(InvalidTracingConfiguration, InvalidTracingConfiguration$1);
1697
+ var KmsAccessDeniedException = [
1698
+ -3,
1699
+ n0,
1700
+ _KADE,
1701
+ {
1702
+ [_e]: _c,
1703
+ },
1704
+ [_m],
1705
+ [0],
1706
+ ];
1707
+ schema.TypeRegistry.for(n0).registerError(KmsAccessDeniedException, KmsAccessDeniedException$1);
1708
+ var KmsInvalidStateException = [
1709
+ -3,
1710
+ n0,
1711
+ _KISE,
1712
+ {
1713
+ [_e]: _c,
1714
+ },
1715
+ [_kKS, _m],
1716
+ [0, 0],
1717
+ ];
1718
+ schema.TypeRegistry.for(n0).registerError(KmsInvalidStateException, KmsInvalidStateException$1);
1719
+ var KmsThrottlingException = [
1720
+ -3,
1721
+ n0,
1722
+ _KTE,
1723
+ {
1724
+ [_e]: _c,
1725
+ },
1726
+ [_m],
1727
+ [0],
1728
+ ];
1729
+ schema.TypeRegistry.for(n0).registerError(KmsThrottlingException, KmsThrottlingException$1);
1730
+ var LambdaFunctionFailedEventDetails = [
1731
+ 3,
1732
+ n0,
1733
+ _LFFED,
1734
+ 0,
1735
+ [_e, _ca],
1736
+ [
1737
+ [() => SensitiveError, 0],
1738
+ [() => SensitiveCause, 0],
1739
+ ],
1740
+ ];
1741
+ var LambdaFunctionScheduledEventDetails = [
1742
+ 3,
1743
+ n0,
1744
+ _LFSED,
1745
+ 0,
1746
+ [_r, _i, _iD, _tIS, _tCa],
1747
+ [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails, 1, () => TaskCredentials],
1748
+ ];
1749
+ var LambdaFunctionScheduleFailedEventDetails = [
1750
+ 3,
1751
+ n0,
1752
+ _LFSFED,
1753
+ 0,
1754
+ [_e, _ca],
1755
+ [
1756
+ [() => SensitiveError, 0],
1757
+ [() => SensitiveCause, 0],
1758
+ ],
1759
+ ];
1760
+ var LambdaFunctionStartFailedEventDetails = [
1761
+ 3,
1762
+ n0,
1763
+ _LFSFEDa,
1764
+ 0,
1765
+ [_e, _ca],
1766
+ [
1767
+ [() => SensitiveError, 0],
1768
+ [() => SensitiveCause, 0],
1769
+ ],
1770
+ ];
1771
+ var LambdaFunctionSucceededEventDetails = [
1772
+ 3,
1773
+ n0,
1774
+ _LFSEDa,
1775
+ 0,
1776
+ [_o, _oD],
1777
+ [[() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1778
+ ];
1779
+ var LambdaFunctionTimedOutEventDetails = [
1780
+ 3,
1781
+ n0,
1782
+ _LFTOED,
1783
+ 0,
1784
+ [_e, _ca],
1785
+ [
1786
+ [() => SensitiveError, 0],
1787
+ [() => SensitiveCause, 0],
1788
+ ],
1789
+ ];
1790
+ var ListActivitiesInput = [3, n0, _LAI, 0, [_mR, _nT], [1, 0]];
1791
+ var ListActivitiesOutput = [3, n0, _LAO, 0, [_a, _nT], [() => ActivityList, 0]];
1792
+ var ListExecutionsInput = [
1793
+ 3,
1794
+ n0,
1795
+ _LEI,
1796
+ 0,
1797
+ [_sMA, _sF, _mR, _nT, _mRA, _rF],
1798
+ [0, 0, 1, 0, 0, 0],
1799
+ ];
1800
+ var ListExecutionsOutput = [3, n0, _LEO, 0, [_ex, _nT], [() => ExecutionList, 0]];
1801
+ var ListMapRunsInput = [3, n0, _LMRI, 0, [_eA, _mR, _nT], [0, 1, 0]];
1802
+ var ListMapRunsOutput = [3, n0, _LMRO, 0, [_mRa, _nT], [() => MapRunList, 0]];
1803
+ var ListStateMachineAliasesInput = [3, n0, _LSMAI, 0, [_sMA, _nT, _mR], [0, 0, 1]];
1804
+ var ListStateMachineAliasesOutput = [
1805
+ 3,
1806
+ n0,
1807
+ _LSMAO,
1808
+ 0,
1809
+ [_sMAt, _nT],
1810
+ [() => StateMachineAliasList, 0],
1811
+ ];
1812
+ var ListStateMachinesInput = [3, n0, _LSMI, 0, [_mR, _nT], [1, 0]];
1813
+ var ListStateMachinesOutput = [3, n0, _LSMO, 0, [_sMt, _nT], [() => StateMachineList, 0]];
1814
+ var ListStateMachineVersionsInput = [3, n0, _LSMVI, 0, [_sMA, _nT, _mR], [0, 0, 1]];
1815
+ var ListStateMachineVersionsOutput = [
1816
+ 3,
1817
+ n0,
1818
+ _LSMVO,
1819
+ 0,
1820
+ [_sMV, _nT],
1821
+ [() => StateMachineVersionList, 0],
1822
+ ];
1823
+ var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rAe], [0]];
1824
+ var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_ta], [() => TagList]];
1825
+ var LogDestination = [3, n0, _LD, 0, [_cWLLG], [() => CloudWatchLogsLogGroup]];
1826
+ var LoggingConfiguration = [
1827
+ 3,
1828
+ n0,
1829
+ _LC,
1830
+ 0,
1831
+ [_le, _iED, _des],
1832
+ [0, 2, () => LogDestinationList],
1833
+ ];
1834
+ var MapIterationEventDetails = [3, n0, _MIED, 0, [_n, _ind], [0, 1]];
1835
+ var MapRunExecutionCounts = [
1836
+ 3,
1837
+ n0,
1838
+ _MREC,
1839
+ 0,
1840
+ [_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
1841
+ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
1842
+ ];
1843
+ var MapRunFailedEventDetails = [
1844
+ 3,
1845
+ n0,
1846
+ _MRFED,
1847
+ 0,
1848
+ [_e, _ca],
1849
+ [
1850
+ [() => SensitiveError, 0],
1851
+ [() => SensitiveCause, 0],
1852
+ ],
1853
+ ];
1854
+ var MapRunItemCounts = [
1855
+ 3,
1856
+ n0,
1857
+ _MRIC,
1858
+ 0,
1859
+ [_pe, _ru, _su, _f, _tO, _ab, _to, _rW, _fNR, _pR],
1860
+ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
1861
+ ];
1862
+ var MapRunListItem = [3, n0, _MRLI, 0, [_eA, _mRA, _sMA, _sD, _sDt], [0, 0, 0, 4, 4]];
1863
+ var MapRunRedrivenEventDetails = [3, n0, _MRRED, 0, [_mRA, _rCe], [0, 1]];
1864
+ var MapRunStartedEventDetails = [3, n0, _MRSED, 0, [_mRA], [0]];
1865
+ var MapStateStartedEventDetails = [3, n0, _MSSED, 0, [_len], [1]];
1866
+ var MissingRequiredParameter = [
1867
+ -3,
1868
+ n0,
1869
+ _MRP,
1870
+ {
1871
+ [_e]: _c,
1872
+ },
1873
+ [_m],
1874
+ [0],
1875
+ ];
1876
+ schema.TypeRegistry.for(n0).registerError(MissingRequiredParameter, MissingRequiredParameter$1);
1877
+ var PublishStateMachineVersionInput = [
1878
+ 3,
1879
+ n0,
1880
+ _PSMVI,
1881
+ 0,
1882
+ [_sMA, _rI, _d],
1883
+ [0, 0, [() => VersionDescription, 0]],
1884
+ ];
1885
+ var PublishStateMachineVersionOutput = [3, n0, _PSMVO, 0, [_cD, _sMVA], [4, 0]];
1886
+ var RedriveExecutionInput = [3, n0, _REI, 0, [_eA, _cT], [0, [0, 4]]];
1887
+ var RedriveExecutionOutput = [3, n0, _REO, 0, [_rD], [4]];
1888
+ var ResourceNotFound = [
1889
+ -3,
1890
+ n0,
1891
+ _RNF,
1892
+ {
1893
+ [_e]: _c,
1894
+ [_hE]: 404,
1895
+ },
1896
+ [_m, _rN],
1897
+ [0, 0],
1898
+ ];
1899
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFound, ResourceNotFound$1);
1900
+ var RoutingConfigurationListItem = [3, n0, _RCLI, 0, [_sMVA, _w], [0, 1]];
1901
+ var SendTaskFailureInput = [
1902
+ 3,
1903
+ n0,
1904
+ _STFI,
1905
+ 0,
1906
+ [_tT, _e, _ca],
1907
+ [0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
1908
+ ];
1909
+ var SendTaskFailureOutput = [3, n0, _STFO, 0, [], []];
1910
+ var SendTaskHeartbeatInput = [3, n0, _STHI, 0, [_tT], [0]];
1911
+ var SendTaskHeartbeatOutput = [3, n0, _STHO, 0, [], []];
1912
+ var SendTaskSuccessInput = [3, n0, _STSI, 0, [_tT, _o], [0, [() => SensitiveData, 0]]];
1913
+ var SendTaskSuccessOutput = [3, n0, _STSO, 0, [], []];
1914
+ var ServiceQuotaExceededException = [
1915
+ -3,
1916
+ n0,
1917
+ _SQEE,
1918
+ {
1919
+ [_e]: _c,
1920
+ [_hE]: 402,
1921
+ },
1922
+ [_m],
1923
+ [0],
1924
+ ];
1925
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1926
+ var StartExecutionInput = [
1927
+ 3,
1928
+ n0,
1929
+ _SEI,
1930
+ 0,
1931
+ [_sMA, _n, _i, _tH],
1932
+ [0, 0, [() => SensitiveData, 0], 0],
1933
+ ];
1934
+ var StartExecutionOutput = [3, n0, _SEO, 0, [_eA, _sD], [0, 4]];
1935
+ var StartSyncExecutionInput = [
1936
+ 3,
1937
+ n0,
1938
+ _SSEI,
1939
+ 0,
1940
+ [_sMA, _n, _i, _tH, _iDn],
1941
+ [0, 0, [() => SensitiveData, 0], 0, 0],
1942
+ ];
1943
+ var StartSyncExecutionOutput = [
1944
+ 3,
1945
+ n0,
1946
+ _SSEO,
1947
+ 0,
1948
+ [_eA, _sMA, _n, _sD, _sDt, _s, _e, _ca, _i, _iD, _o, _oD, _tH, _bD],
1949
+ [
1950
+ 0,
1951
+ 0,
1952
+ 0,
1953
+ 4,
1954
+ 4,
1955
+ 0,
1956
+ [() => SensitiveError, 0],
1957
+ [() => SensitiveCause, 0],
1958
+ [() => SensitiveData, 0],
1959
+ () => CloudWatchEventsExecutionDataDetails,
1960
+ [() => SensitiveData, 0],
1961
+ () => CloudWatchEventsExecutionDataDetails,
1962
+ 0,
1963
+ () => BillingDetails,
1964
+ ],
1965
+ ];
1966
+ var StateEnteredEventDetails = [
1967
+ 3,
1968
+ n0,
1969
+ _SEED,
1970
+ 0,
1971
+ [_n, _i, _iD],
1972
+ [0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
1973
+ ];
1974
+ var StateExitedEventDetails = [
1975
+ 3,
1976
+ n0,
1977
+ _SEEDt,
1978
+ 0,
1979
+ [_n, _o, _oD, _aV, _aVD],
1980
+ [
1981
+ 0,
1982
+ [() => SensitiveData, 0],
1983
+ () => HistoryEventExecutionDataDetails,
1984
+ [() => AssignedVariables, 0],
1985
+ () => AssignedVariablesDetails,
1986
+ ],
1987
+ ];
1988
+ var StateMachineAliasListItem = [3, n0, _SMALI, 0, [_sMAA, _cD], [0, 4]];
1989
+ var StateMachineAlreadyExists = [
1990
+ -3,
1991
+ n0,
1992
+ _SMAE,
1993
+ {
1994
+ [_e]: _c,
1995
+ },
1996
+ [_m],
1997
+ [0],
1998
+ ];
1999
+ schema.TypeRegistry.for(n0).registerError(StateMachineAlreadyExists, StateMachineAlreadyExists$1);
2000
+ var StateMachineDeleting = [
2001
+ -3,
2002
+ n0,
2003
+ _SMD,
2004
+ {
2005
+ [_e]: _c,
2006
+ },
2007
+ [_m],
2008
+ [0],
2009
+ ];
2010
+ schema.TypeRegistry.for(n0).registerError(StateMachineDeleting, StateMachineDeleting$1);
2011
+ var StateMachineDoesNotExist = [
2012
+ -3,
2013
+ n0,
2014
+ _SMDNE,
2015
+ {
2016
+ [_e]: _c,
2017
+ },
2018
+ [_m],
2019
+ [0],
2020
+ ];
2021
+ schema.TypeRegistry.for(n0).registerError(StateMachineDoesNotExist, StateMachineDoesNotExist$1);
2022
+ var StateMachineLimitExceeded = [
2023
+ -3,
2024
+ n0,
2025
+ _SMLE,
2026
+ {
2027
+ [_e]: _c,
2028
+ },
2029
+ [_m],
2030
+ [0],
2031
+ ];
2032
+ schema.TypeRegistry.for(n0).registerError(StateMachineLimitExceeded, StateMachineLimitExceeded$1);
2033
+ var StateMachineListItem = [3, n0, _SMLI, 0, [_sMA, _n, _ty, _cD], [0, 0, 0, 4]];
2034
+ var StateMachineTypeNotSupported = [
2035
+ -3,
2036
+ n0,
2037
+ _SMTNS,
2038
+ {
2039
+ [_e]: _c,
2040
+ },
2041
+ [_m],
2042
+ [0],
2043
+ ];
2044
+ schema.TypeRegistry.for(n0).registerError(StateMachineTypeNotSupported, StateMachineTypeNotSupported$1);
2045
+ var StateMachineVersionListItem = [3, n0, _SMVLI, 0, [_sMVA, _cD], [0, 4]];
2046
+ var StopExecutionInput = [
2047
+ 3,
2048
+ n0,
2049
+ _SEIt,
2050
+ 0,
2051
+ [_eA, _e, _ca],
2052
+ [0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
2053
+ ];
2054
+ var StopExecutionOutput = [3, n0, _SEOt, 0, [_sDt], [4]];
2055
+ var Tag = [3, n0, _T, 0, [_k, _va], [0, 0]];
2056
+ var TagResourceInput = [3, n0, _TRI, 0, [_rAe, _ta], [0, () => TagList]];
2057
+ var TagResourceOutput = [3, n0, _TRO, 0, [], []];
2058
+ var TaskCredentials = [3, n0, _TC, 0, [_rA], [0]];
2059
+ var TaskDoesNotExist = [
2060
+ -3,
2061
+ n0,
2062
+ _TDNE,
2063
+ {
2064
+ [_e]: _c,
2065
+ },
2066
+ [_m],
2067
+ [0],
2068
+ ];
2069
+ schema.TypeRegistry.for(n0).registerError(TaskDoesNotExist, TaskDoesNotExist$1);
2070
+ var TaskFailedEventDetails = [
2071
+ 3,
2072
+ n0,
2073
+ _TFED,
2074
+ 0,
2075
+ [_rT, _r, _e, _ca],
2076
+ [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
2077
+ ];
2078
+ var TaskScheduledEventDetails = [
2079
+ 3,
2080
+ n0,
2081
+ _TSED,
2082
+ 0,
2083
+ [_rT, _r, _reg, _pa, _tIS, _hIS, _tCa],
2084
+ [0, 0, 0, [() => ConnectorParameters, 0], 1, 1, () => TaskCredentials],
2085
+ ];
2086
+ var TaskStartedEventDetails = [3, n0, _TSEDa, 0, [_rT, _r], [0, 0]];
2087
+ var TaskStartFailedEventDetails = [
2088
+ 3,
2089
+ n0,
2090
+ _TSFED,
2091
+ 0,
2092
+ [_rT, _r, _e, _ca],
2093
+ [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
2094
+ ];
2095
+ var TaskSubmitFailedEventDetails = [
2096
+ 3,
2097
+ n0,
2098
+ _TSFEDa,
2099
+ 0,
2100
+ [_rT, _r, _e, _ca],
2101
+ [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
2102
+ ];
2103
+ var TaskSubmittedEventDetails = [
2104
+ 3,
2105
+ n0,
2106
+ _TSEDas,
2107
+ 0,
2108
+ [_rT, _r, _o, _oD],
2109
+ [0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
2110
+ ];
2111
+ var TaskSucceededEventDetails = [
2112
+ 3,
2113
+ n0,
2114
+ _TSEDask,
2115
+ 0,
2116
+ [_rT, _r, _o, _oD],
2117
+ [0, 0, [() => SensitiveData, 0], () => HistoryEventExecutionDataDetails],
2118
+ ];
2119
+ var TaskTimedOut = [
2120
+ -3,
2121
+ n0,
2122
+ _TTO,
2123
+ {
2124
+ [_e]: _c,
2125
+ },
2126
+ [_m],
2127
+ [0],
2128
+ ];
2129
+ schema.TypeRegistry.for(n0).registerError(TaskTimedOut, TaskTimedOut$1);
2130
+ var TaskTimedOutEventDetails = [
2131
+ 3,
2132
+ n0,
2133
+ _TTOED,
2134
+ 0,
2135
+ [_rT, _r, _e, _ca],
2136
+ [0, 0, [() => SensitiveError, 0], [() => SensitiveCause, 0]],
2137
+ ];
2138
+ var TestStateInput = [
2139
+ 3,
2140
+ n0,
2141
+ _TSI,
2142
+ 0,
2143
+ [_de, _rA, _i, _iL, _rSe, _v],
2144
+ [[() => Definition, 0], 0, [() => SensitiveData, 0], 0, 2, [() => SensitiveData, 0]],
2145
+ ];
2146
+ var TestStateOutput = [
2147
+ 3,
2148
+ n0,
2149
+ _TSO,
2150
+ 0,
2151
+ [_o, _e, _ca, _iDns, _nS, _s],
2152
+ [[() => SensitiveData, 0], [() => SensitiveError, 0], [() => SensitiveCause, 0], [() => InspectionData, 0], 0, 0],
2153
+ ];
2154
+ var TooManyTags = [
2155
+ -3,
2156
+ n0,
2157
+ _TMT,
2158
+ {
2159
+ [_e]: _c,
2160
+ [_hE]: 400,
2161
+ },
2162
+ [_m, _rN],
2163
+ [0, 0],
2164
+ ];
2165
+ schema.TypeRegistry.for(n0).registerError(TooManyTags, TooManyTags$1);
2166
+ var TracingConfiguration = [3, n0, _TCr, 0, [_en], [2]];
2167
+ var UntagResourceInput = [3, n0, _URI, 0, [_rAe, _tK], [0, 64 | 0]];
2168
+ var UntagResourceOutput = [3, n0, _URO, 0, [], []];
2169
+ var UpdateMapRunInput = [3, n0, _UMRI, 0, [_mRA, _mC, _tFP, _tFC], [0, 1, 1, 1]];
2170
+ var UpdateMapRunOutput = [3, n0, _UMRO, 0, [], []];
2171
+ var UpdateStateMachineAliasInput = [
2172
+ 3,
2173
+ n0,
2174
+ _USMAI,
2175
+ 0,
2176
+ [_sMAA, _d, _rC],
2177
+ [0, [() => AliasDescription, 0], () => RoutingConfigurationList],
2178
+ ];
2179
+ var UpdateStateMachineAliasOutput = [3, n0, _USMAO, 0, [_uD], [4]];
2180
+ var UpdateStateMachineInput = [
2181
+ 3,
2182
+ n0,
2183
+ _USMI,
2184
+ 0,
2185
+ [_sMA, _de, _rA, _lC, _tC, _p, _vD, _eC],
2186
+ [
2187
+ 0,
2188
+ [() => Definition, 0],
2189
+ 0,
2190
+ () => LoggingConfiguration,
2191
+ () => TracingConfiguration,
2192
+ 2,
2193
+ [() => VersionDescription, 0],
2194
+ () => EncryptionConfiguration,
2195
+ ],
2196
+ ];
2197
+ var UpdateStateMachineOutput = [3, n0, _USMO, 0, [_uD, _rI, _sMVA], [4, 0, 0]];
2198
+ var ValidateStateMachineDefinitionDiagnostic = [
2199
+ 3,
2200
+ n0,
2201
+ _VSMDD,
2202
+ 0,
2203
+ [_se, _co, _m, _lo],
2204
+ [
2205
+ 0,
2206
+ [() => ValidateStateMachineDefinitionCode, 0],
2207
+ [() => ValidateStateMachineDefinitionMessage, 0],
2208
+ [() => ValidateStateMachineDefinitionLocation, 0],
2209
+ ],
2210
+ ];
2211
+ var ValidateStateMachineDefinitionInput = [
2212
+ 3,
2213
+ n0,
2214
+ _VSMDI,
2215
+ 0,
2216
+ [_de, _ty, _se, _mR],
2217
+ [[() => Definition, 0], 0, 0, 1],
2218
+ ];
2219
+ var ValidateStateMachineDefinitionOutput = [
2220
+ 3,
2221
+ n0,
2222
+ _VSMDO,
2223
+ 0,
2224
+ [_re, _di, _t],
2225
+ [0, [() => ValidateStateMachineDefinitionDiagnosticList, 0], 2],
2226
+ ];
2227
+ var ValidationException = [
2228
+ -3,
2229
+ n0,
2230
+ _VE,
2231
+ {
2232
+ [_e]: _c,
2233
+ [_hE]: 400,
2234
+ },
2235
+ [_m, _rea],
2236
+ [0, 0],
2237
+ ];
2238
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
2239
+ var SFNServiceException = [-3, _sm, "SFNServiceException", 0, [], []];
2240
+ schema.TypeRegistry.for(_sm).registerError(SFNServiceException, SFNServiceException$1);
2241
+ var ActivityList = [1, n0, _AL, 0, () => ActivityListItem];
2242
+ var ExecutionList = [1, n0, _EL, 0, () => ExecutionListItem];
2243
+ var HistoryEventList = [1, n0, _HEL, 0, [() => HistoryEvent, 0]];
2244
+ var LogDestinationList = [1, n0, _LDL, 0, () => LogDestination];
2245
+ var MapRunList = [1, n0, _MRL, 0, () => MapRunListItem];
2246
+ var RoutingConfigurationList = [1, n0, _RCL, 0, () => RoutingConfigurationListItem];
2247
+ var StateMachineAliasList = [1, n0, _SMAL, 0, () => StateMachineAliasListItem];
2248
+ var StateMachineList = [1, n0, _SML, 0, () => StateMachineListItem];
2249
+ var StateMachineVersionList = [1, n0, _SMVL, 0, () => StateMachineVersionListItem];
2250
+ var TagList = [1, n0, _TL, 0, () => Tag];
2251
+ var ValidateStateMachineDefinitionDiagnosticList = [
2252
+ 1,
2253
+ n0,
2254
+ _VSMDDL,
2255
+ 0,
2256
+ [() => ValidateStateMachineDefinitionDiagnostic, 0],
2257
+ ];
2258
+ var VariableNameList = [1, n0, _VNL, 0, [() => VariableName, 0]];
2259
+ var AssignedVariables = [2, n0, _AV, 0, [() => VariableName, 0], [() => VariableValue, 0]];
2260
+ var VariableReferences = [2, n0, _VR, 8, [0, 0], [() => VariableNameList, 0]];
2261
+ var CreateActivity = [
2262
+ 9,
2263
+ n0,
2264
+ _CA,
2265
+ 2,
2266
+ () => CreateActivityInput,
2267
+ () => CreateActivityOutput,
2268
+ ];
2269
+ var CreateStateMachine = [
2270
+ 9,
2271
+ n0,
2272
+ _CSM,
2273
+ 2,
2274
+ () => CreateStateMachineInput,
2275
+ () => CreateStateMachineOutput,
2276
+ ];
2277
+ var CreateStateMachineAlias = [
2278
+ 9,
2279
+ n0,
2280
+ _CSMA,
2281
+ 0,
2282
+ () => CreateStateMachineAliasInput,
2283
+ () => CreateStateMachineAliasOutput,
2284
+ ];
2285
+ var DeleteActivity = [
2286
+ 9,
2287
+ n0,
2288
+ _DA,
2289
+ 0,
2290
+ () => DeleteActivityInput,
2291
+ () => DeleteActivityOutput,
2292
+ ];
2293
+ var DeleteStateMachine = [
2294
+ 9,
2295
+ n0,
2296
+ _DSM,
2297
+ 0,
2298
+ () => DeleteStateMachineInput,
2299
+ () => DeleteStateMachineOutput,
2300
+ ];
2301
+ var DeleteStateMachineAlias = [
2302
+ 9,
2303
+ n0,
2304
+ _DSMA,
2305
+ 0,
2306
+ () => DeleteStateMachineAliasInput,
2307
+ () => DeleteStateMachineAliasOutput,
2308
+ ];
2309
+ var DeleteStateMachineVersion = [
2310
+ 9,
2311
+ n0,
2312
+ _DSMV,
2313
+ 0,
2314
+ () => DeleteStateMachineVersionInput,
2315
+ () => DeleteStateMachineVersionOutput,
2316
+ ];
2317
+ var DescribeActivity = [
2318
+ 9,
2319
+ n0,
2320
+ _DAe,
2321
+ 0,
2322
+ () => DescribeActivityInput,
2323
+ () => DescribeActivityOutput,
2324
+ ];
2325
+ var DescribeExecution = [
2326
+ 9,
2327
+ n0,
2328
+ _DE,
2329
+ 0,
2330
+ () => DescribeExecutionInput,
2331
+ () => DescribeExecutionOutput,
2332
+ ];
2333
+ var DescribeMapRun = [
2334
+ 9,
2335
+ n0,
2336
+ _DMR,
2337
+ 0,
2338
+ () => DescribeMapRunInput,
2339
+ () => DescribeMapRunOutput,
2340
+ ];
2341
+ var DescribeStateMachine = [
2342
+ 9,
2343
+ n0,
2344
+ _DSMe,
2345
+ 0,
2346
+ () => DescribeStateMachineInput,
2347
+ () => DescribeStateMachineOutput,
2348
+ ];
2349
+ var DescribeStateMachineAlias = [
2350
+ 9,
2351
+ n0,
2352
+ _DSMAe,
2353
+ 0,
2354
+ () => DescribeStateMachineAliasInput,
2355
+ () => DescribeStateMachineAliasOutput,
2356
+ ];
2357
+ var DescribeStateMachineForExecution = [
2358
+ 9,
2359
+ n0,
2360
+ _DSMFE,
2361
+ 0,
2362
+ () => DescribeStateMachineForExecutionInput,
2363
+ () => DescribeStateMachineForExecutionOutput,
2364
+ ];
2365
+ var GetActivityTask = [
2366
+ 9,
2367
+ n0,
2368
+ _GAT,
2369
+ 0,
2370
+ () => GetActivityTaskInput,
2371
+ () => GetActivityTaskOutput,
2372
+ ];
2373
+ var GetExecutionHistory = [
2374
+ 9,
2375
+ n0,
2376
+ _GEH,
2377
+ 0,
2378
+ () => GetExecutionHistoryInput,
2379
+ () => GetExecutionHistoryOutput,
2380
+ ];
2381
+ var ListActivities = [
2382
+ 9,
2383
+ n0,
2384
+ _LA,
2385
+ 0,
2386
+ () => ListActivitiesInput,
2387
+ () => ListActivitiesOutput,
2388
+ ];
2389
+ var ListExecutions = [
2390
+ 9,
2391
+ n0,
2392
+ _LE,
2393
+ 0,
2394
+ () => ListExecutionsInput,
2395
+ () => ListExecutionsOutput,
2396
+ ];
2397
+ var ListMapRuns = [9, n0, _LMR, 0, () => ListMapRunsInput, () => ListMapRunsOutput];
2398
+ var ListStateMachineAliases = [
2399
+ 9,
2400
+ n0,
2401
+ _LSMA,
2402
+ 0,
2403
+ () => ListStateMachineAliasesInput,
2404
+ () => ListStateMachineAliasesOutput,
2405
+ ];
2406
+ var ListStateMachines = [
2407
+ 9,
2408
+ n0,
2409
+ _LSM,
2410
+ 0,
2411
+ () => ListStateMachinesInput,
2412
+ () => ListStateMachinesOutput,
2413
+ ];
2414
+ var ListStateMachineVersions = [
2415
+ 9,
2416
+ n0,
2417
+ _LSMV,
2418
+ 0,
2419
+ () => ListStateMachineVersionsInput,
2420
+ () => ListStateMachineVersionsOutput,
2421
+ ];
2422
+ var ListTagsForResource = [
2423
+ 9,
2424
+ n0,
2425
+ _LTFR,
2426
+ 0,
2427
+ () => ListTagsForResourceInput,
2428
+ () => ListTagsForResourceOutput,
2429
+ ];
2430
+ var PublishStateMachineVersion = [
2431
+ 9,
2432
+ n0,
2433
+ _PSMV,
2434
+ 2,
2435
+ () => PublishStateMachineVersionInput,
2436
+ () => PublishStateMachineVersionOutput,
2437
+ ];
2438
+ var RedriveExecution = [
2439
+ 9,
2440
+ n0,
2441
+ _RE,
2442
+ 2,
2443
+ () => RedriveExecutionInput,
2444
+ () => RedriveExecutionOutput,
2445
+ ];
2446
+ var SendTaskFailure = [
2447
+ 9,
2448
+ n0,
2449
+ _STF,
2450
+ 0,
2451
+ () => SendTaskFailureInput,
2452
+ () => SendTaskFailureOutput,
2453
+ ];
2454
+ var SendTaskHeartbeat = [
2455
+ 9,
2456
+ n0,
2457
+ _STH,
2458
+ 0,
2459
+ () => SendTaskHeartbeatInput,
2460
+ () => SendTaskHeartbeatOutput,
2461
+ ];
2462
+ var SendTaskSuccess = [
2463
+ 9,
2464
+ n0,
2465
+ _STS,
2466
+ 0,
2467
+ () => SendTaskSuccessInput,
2468
+ () => SendTaskSuccessOutput,
2469
+ ];
2470
+ var StartExecution = [
2471
+ 9,
2472
+ n0,
2473
+ _SEt,
2474
+ 2,
2475
+ () => StartExecutionInput,
2476
+ () => StartExecutionOutput,
2477
+ ];
2478
+ var StartSyncExecution = [
2479
+ 9,
2480
+ n0,
2481
+ _SSE,
2482
+ {
2483
+ [_end]: ["sync-"],
2484
+ },
2485
+ () => StartSyncExecutionInput,
2486
+ () => StartSyncExecutionOutput,
2487
+ ];
2488
+ var StopExecution = [
2489
+ 9,
2490
+ n0,
2491
+ _SEto,
2492
+ 0,
2493
+ () => StopExecutionInput,
2494
+ () => StopExecutionOutput,
2495
+ ];
2496
+ var TagResource = [9, n0, _TR, 0, () => TagResourceInput, () => TagResourceOutput];
2497
+ var TestState = [
2498
+ 9,
2499
+ n0,
2500
+ _TS,
2501
+ {
2502
+ [_end]: ["sync-"],
2503
+ },
2504
+ () => TestStateInput,
2505
+ () => TestStateOutput,
2506
+ ];
2507
+ var UntagResource = [9, n0, _UR, 0, () => UntagResourceInput, () => UntagResourceOutput];
2508
+ var UpdateMapRun = [9, n0, _UMR, 0, () => UpdateMapRunInput, () => UpdateMapRunOutput];
2509
+ var UpdateStateMachine = [
2510
+ 9,
2511
+ n0,
2512
+ _USM,
2513
+ 2,
2514
+ () => UpdateStateMachineInput,
2515
+ () => UpdateStateMachineOutput,
2516
+ ];
2517
+ var UpdateStateMachineAlias = [
2518
+ 9,
2519
+ n0,
2520
+ _USMA,
2521
+ 0,
2522
+ () => UpdateStateMachineAliasInput,
2523
+ () => UpdateStateMachineAliasOutput,
2524
+ ];
2525
+ var ValidateStateMachineDefinition = [
2526
+ 9,
2527
+ n0,
2528
+ _VSMD,
2529
+ 0,
2530
+ () => ValidateStateMachineDefinitionInput,
2531
+ () => ValidateStateMachineDefinitionOutput,
2532
+ ];
2536
2533
 
2537
2534
  class CreateActivityCommand extends smithyClient.Command
2538
2535
  .classBuilder()
2539
2536
  .ep(commonParams)
2540
2537
  .m(function (Command, cs, config, o) {
2541
- return [
2542
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2543
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2544
- ];
2538
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2545
2539
  })
2546
2540
  .s("AWSStepFunctions", "CreateActivity", {})
2547
2541
  .n("SFNClient", "CreateActivityCommand")
2548
- .f(void 0, void 0)
2549
- .ser(se_CreateActivityCommand)
2550
- .de(de_CreateActivityCommand)
2542
+ .sc(CreateActivity)
2551
2543
  .build() {
2552
2544
  }
2553
2545
 
@@ -2555,16 +2547,11 @@ class CreateStateMachineAliasCommand extends smithyClient.Command
2555
2547
  .classBuilder()
2556
2548
  .ep(commonParams)
2557
2549
  .m(function (Command, cs, config, o) {
2558
- return [
2559
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2560
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2561
- ];
2550
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2562
2551
  })
2563
2552
  .s("AWSStepFunctions", "CreateStateMachineAlias", {})
2564
2553
  .n("SFNClient", "CreateStateMachineAliasCommand")
2565
- .f(CreateStateMachineAliasInputFilterSensitiveLog, void 0)
2566
- .ser(se_CreateStateMachineAliasCommand)
2567
- .de(de_CreateStateMachineAliasCommand)
2554
+ .sc(CreateStateMachineAlias)
2568
2555
  .build() {
2569
2556
  }
2570
2557
 
@@ -2572,16 +2559,11 @@ class CreateStateMachineCommand extends smithyClient.Command
2572
2559
  .classBuilder()
2573
2560
  .ep(commonParams)
2574
2561
  .m(function (Command, cs, config, o) {
2575
- return [
2576
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2577
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2578
- ];
2562
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2579
2563
  })
2580
2564
  .s("AWSStepFunctions", "CreateStateMachine", {})
2581
2565
  .n("SFNClient", "CreateStateMachineCommand")
2582
- .f(CreateStateMachineInputFilterSensitiveLog, void 0)
2583
- .ser(se_CreateStateMachineCommand)
2584
- .de(de_CreateStateMachineCommand)
2566
+ .sc(CreateStateMachine)
2585
2567
  .build() {
2586
2568
  }
2587
2569
 
@@ -2589,16 +2571,11 @@ class DeleteActivityCommand extends smithyClient.Command
2589
2571
  .classBuilder()
2590
2572
  .ep(commonParams)
2591
2573
  .m(function (Command, cs, config, o) {
2592
- return [
2593
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2594
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2595
- ];
2574
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2596
2575
  })
2597
2576
  .s("AWSStepFunctions", "DeleteActivity", {})
2598
2577
  .n("SFNClient", "DeleteActivityCommand")
2599
- .f(void 0, void 0)
2600
- .ser(se_DeleteActivityCommand)
2601
- .de(de_DeleteActivityCommand)
2578
+ .sc(DeleteActivity)
2602
2579
  .build() {
2603
2580
  }
2604
2581
 
@@ -2606,16 +2583,11 @@ class DeleteStateMachineAliasCommand extends smithyClient.Command
2606
2583
  .classBuilder()
2607
2584
  .ep(commonParams)
2608
2585
  .m(function (Command, cs, config, o) {
2609
- return [
2610
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2611
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2612
- ];
2586
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2613
2587
  })
2614
2588
  .s("AWSStepFunctions", "DeleteStateMachineAlias", {})
2615
2589
  .n("SFNClient", "DeleteStateMachineAliasCommand")
2616
- .f(void 0, void 0)
2617
- .ser(se_DeleteStateMachineAliasCommand)
2618
- .de(de_DeleteStateMachineAliasCommand)
2590
+ .sc(DeleteStateMachineAlias)
2619
2591
  .build() {
2620
2592
  }
2621
2593
 
@@ -2623,16 +2595,11 @@ class DeleteStateMachineCommand extends smithyClient.Command
2623
2595
  .classBuilder()
2624
2596
  .ep(commonParams)
2625
2597
  .m(function (Command, cs, config, o) {
2626
- return [
2627
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2628
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2629
- ];
2598
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2630
2599
  })
2631
2600
  .s("AWSStepFunctions", "DeleteStateMachine", {})
2632
2601
  .n("SFNClient", "DeleteStateMachineCommand")
2633
- .f(void 0, void 0)
2634
- .ser(se_DeleteStateMachineCommand)
2635
- .de(de_DeleteStateMachineCommand)
2602
+ .sc(DeleteStateMachine)
2636
2603
  .build() {
2637
2604
  }
2638
2605
 
@@ -2640,16 +2607,11 @@ class DeleteStateMachineVersionCommand extends smithyClient.Command
2640
2607
  .classBuilder()
2641
2608
  .ep(commonParams)
2642
2609
  .m(function (Command, cs, config, o) {
2643
- return [
2644
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2645
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2646
- ];
2610
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2647
2611
  })
2648
2612
  .s("AWSStepFunctions", "DeleteStateMachineVersion", {})
2649
2613
  .n("SFNClient", "DeleteStateMachineVersionCommand")
2650
- .f(void 0, void 0)
2651
- .ser(se_DeleteStateMachineVersionCommand)
2652
- .de(de_DeleteStateMachineVersionCommand)
2614
+ .sc(DeleteStateMachineVersion)
2653
2615
  .build() {
2654
2616
  }
2655
2617
 
@@ -2657,16 +2619,11 @@ class DescribeActivityCommand extends smithyClient.Command
2657
2619
  .classBuilder()
2658
2620
  .ep(commonParams)
2659
2621
  .m(function (Command, cs, config, o) {
2660
- return [
2661
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2662
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2663
- ];
2622
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2664
2623
  })
2665
2624
  .s("AWSStepFunctions", "DescribeActivity", {})
2666
2625
  .n("SFNClient", "DescribeActivityCommand")
2667
- .f(void 0, void 0)
2668
- .ser(se_DescribeActivityCommand)
2669
- .de(de_DescribeActivityCommand)
2626
+ .sc(DescribeActivity)
2670
2627
  .build() {
2671
2628
  }
2672
2629
 
@@ -2674,16 +2631,11 @@ class DescribeExecutionCommand extends smithyClient.Command
2674
2631
  .classBuilder()
2675
2632
  .ep(commonParams)
2676
2633
  .m(function (Command, cs, config, o) {
2677
- return [
2678
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2679
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2680
- ];
2634
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2681
2635
  })
2682
2636
  .s("AWSStepFunctions", "DescribeExecution", {})
2683
2637
  .n("SFNClient", "DescribeExecutionCommand")
2684
- .f(void 0, DescribeExecutionOutputFilterSensitiveLog)
2685
- .ser(se_DescribeExecutionCommand)
2686
- .de(de_DescribeExecutionCommand)
2638
+ .sc(DescribeExecution)
2687
2639
  .build() {
2688
2640
  }
2689
2641
 
@@ -2691,16 +2643,11 @@ class DescribeMapRunCommand extends smithyClient.Command
2691
2643
  .classBuilder()
2692
2644
  .ep(commonParams)
2693
2645
  .m(function (Command, cs, config, o) {
2694
- return [
2695
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2696
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2697
- ];
2646
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2698
2647
  })
2699
2648
  .s("AWSStepFunctions", "DescribeMapRun", {})
2700
2649
  .n("SFNClient", "DescribeMapRunCommand")
2701
- .f(void 0, void 0)
2702
- .ser(se_DescribeMapRunCommand)
2703
- .de(de_DescribeMapRunCommand)
2650
+ .sc(DescribeMapRun)
2704
2651
  .build() {
2705
2652
  }
2706
2653
 
@@ -2708,16 +2655,11 @@ class DescribeStateMachineAliasCommand extends smithyClient.Command
2708
2655
  .classBuilder()
2709
2656
  .ep(commonParams)
2710
2657
  .m(function (Command, cs, config, o) {
2711
- return [
2712
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2713
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2714
- ];
2658
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2715
2659
  })
2716
2660
  .s("AWSStepFunctions", "DescribeStateMachineAlias", {})
2717
2661
  .n("SFNClient", "DescribeStateMachineAliasCommand")
2718
- .f(void 0, DescribeStateMachineAliasOutputFilterSensitiveLog)
2719
- .ser(se_DescribeStateMachineAliasCommand)
2720
- .de(de_DescribeStateMachineAliasCommand)
2662
+ .sc(DescribeStateMachineAlias)
2721
2663
  .build() {
2722
2664
  }
2723
2665
 
@@ -2725,16 +2667,11 @@ class DescribeStateMachineCommand extends smithyClient.Command
2725
2667
  .classBuilder()
2726
2668
  .ep(commonParams)
2727
2669
  .m(function (Command, cs, config, o) {
2728
- return [
2729
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2730
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2731
- ];
2670
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2732
2671
  })
2733
2672
  .s("AWSStepFunctions", "DescribeStateMachine", {})
2734
2673
  .n("SFNClient", "DescribeStateMachineCommand")
2735
- .f(void 0, DescribeStateMachineOutputFilterSensitiveLog)
2736
- .ser(se_DescribeStateMachineCommand)
2737
- .de(de_DescribeStateMachineCommand)
2674
+ .sc(DescribeStateMachine)
2738
2675
  .build() {
2739
2676
  }
2740
2677
 
@@ -2742,16 +2679,11 @@ class DescribeStateMachineForExecutionCommand extends smithyClient.Command
2742
2679
  .classBuilder()
2743
2680
  .ep(commonParams)
2744
2681
  .m(function (Command, cs, config, o) {
2745
- return [
2746
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2747
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2748
- ];
2682
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2749
2683
  })
2750
2684
  .s("AWSStepFunctions", "DescribeStateMachineForExecution", {})
2751
2685
  .n("SFNClient", "DescribeStateMachineForExecutionCommand")
2752
- .f(void 0, DescribeStateMachineForExecutionOutputFilterSensitiveLog)
2753
- .ser(se_DescribeStateMachineForExecutionCommand)
2754
- .de(de_DescribeStateMachineForExecutionCommand)
2686
+ .sc(DescribeStateMachineForExecution)
2755
2687
  .build() {
2756
2688
  }
2757
2689
 
@@ -2759,16 +2691,11 @@ class GetActivityTaskCommand extends smithyClient.Command
2759
2691
  .classBuilder()
2760
2692
  .ep(commonParams)
2761
2693
  .m(function (Command, cs, config, o) {
2762
- return [
2763
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2764
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2765
- ];
2694
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2766
2695
  })
2767
2696
  .s("AWSStepFunctions", "GetActivityTask", {})
2768
2697
  .n("SFNClient", "GetActivityTaskCommand")
2769
- .f(void 0, GetActivityTaskOutputFilterSensitiveLog)
2770
- .ser(se_GetActivityTaskCommand)
2771
- .de(de_GetActivityTaskCommand)
2698
+ .sc(GetActivityTask)
2772
2699
  .build() {
2773
2700
  }
2774
2701
 
@@ -2776,16 +2703,11 @@ class GetExecutionHistoryCommand extends smithyClient.Command
2776
2703
  .classBuilder()
2777
2704
  .ep(commonParams)
2778
2705
  .m(function (Command, cs, config, o) {
2779
- return [
2780
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2781
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2782
- ];
2706
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2783
2707
  })
2784
2708
  .s("AWSStepFunctions", "GetExecutionHistory", {})
2785
2709
  .n("SFNClient", "GetExecutionHistoryCommand")
2786
- .f(void 0, GetExecutionHistoryOutputFilterSensitiveLog)
2787
- .ser(se_GetExecutionHistoryCommand)
2788
- .de(de_GetExecutionHistoryCommand)
2710
+ .sc(GetExecutionHistory)
2789
2711
  .build() {
2790
2712
  }
2791
2713
 
@@ -2793,16 +2715,11 @@ class ListActivitiesCommand extends smithyClient.Command
2793
2715
  .classBuilder()
2794
2716
  .ep(commonParams)
2795
2717
  .m(function (Command, cs, config, o) {
2796
- return [
2797
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2798
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2799
- ];
2718
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2800
2719
  })
2801
2720
  .s("AWSStepFunctions", "ListActivities", {})
2802
2721
  .n("SFNClient", "ListActivitiesCommand")
2803
- .f(void 0, void 0)
2804
- .ser(se_ListActivitiesCommand)
2805
- .de(de_ListActivitiesCommand)
2722
+ .sc(ListActivities)
2806
2723
  .build() {
2807
2724
  }
2808
2725
 
@@ -2810,16 +2727,11 @@ class ListExecutionsCommand extends smithyClient.Command
2810
2727
  .classBuilder()
2811
2728
  .ep(commonParams)
2812
2729
  .m(function (Command, cs, config, o) {
2813
- return [
2814
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2815
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2816
- ];
2730
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2817
2731
  })
2818
2732
  .s("AWSStepFunctions", "ListExecutions", {})
2819
2733
  .n("SFNClient", "ListExecutionsCommand")
2820
- .f(void 0, void 0)
2821
- .ser(se_ListExecutionsCommand)
2822
- .de(de_ListExecutionsCommand)
2734
+ .sc(ListExecutions)
2823
2735
  .build() {
2824
2736
  }
2825
2737
 
@@ -2827,16 +2739,11 @@ class ListMapRunsCommand extends smithyClient.Command
2827
2739
  .classBuilder()
2828
2740
  .ep(commonParams)
2829
2741
  .m(function (Command, cs, config, o) {
2830
- return [
2831
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2832
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2833
- ];
2742
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2834
2743
  })
2835
2744
  .s("AWSStepFunctions", "ListMapRuns", {})
2836
2745
  .n("SFNClient", "ListMapRunsCommand")
2837
- .f(void 0, void 0)
2838
- .ser(se_ListMapRunsCommand)
2839
- .de(de_ListMapRunsCommand)
2746
+ .sc(ListMapRuns)
2840
2747
  .build() {
2841
2748
  }
2842
2749
 
@@ -2844,16 +2751,11 @@ class ListStateMachineAliasesCommand extends smithyClient.Command
2844
2751
  .classBuilder()
2845
2752
  .ep(commonParams)
2846
2753
  .m(function (Command, cs, config, o) {
2847
- return [
2848
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2849
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2850
- ];
2754
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2851
2755
  })
2852
2756
  .s("AWSStepFunctions", "ListStateMachineAliases", {})
2853
2757
  .n("SFNClient", "ListStateMachineAliasesCommand")
2854
- .f(void 0, void 0)
2855
- .ser(se_ListStateMachineAliasesCommand)
2856
- .de(de_ListStateMachineAliasesCommand)
2758
+ .sc(ListStateMachineAliases)
2857
2759
  .build() {
2858
2760
  }
2859
2761
 
@@ -2861,16 +2763,11 @@ class ListStateMachinesCommand extends smithyClient.Command
2861
2763
  .classBuilder()
2862
2764
  .ep(commonParams)
2863
2765
  .m(function (Command, cs, config, o) {
2864
- return [
2865
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2866
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2867
- ];
2766
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2868
2767
  })
2869
2768
  .s("AWSStepFunctions", "ListStateMachines", {})
2870
2769
  .n("SFNClient", "ListStateMachinesCommand")
2871
- .f(void 0, void 0)
2872
- .ser(se_ListStateMachinesCommand)
2873
- .de(de_ListStateMachinesCommand)
2770
+ .sc(ListStateMachines)
2874
2771
  .build() {
2875
2772
  }
2876
2773
 
@@ -2878,16 +2775,11 @@ class ListStateMachineVersionsCommand extends smithyClient.Command
2878
2775
  .classBuilder()
2879
2776
  .ep(commonParams)
2880
2777
  .m(function (Command, cs, config, o) {
2881
- return [
2882
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2883
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2884
- ];
2778
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2885
2779
  })
2886
2780
  .s("AWSStepFunctions", "ListStateMachineVersions", {})
2887
2781
  .n("SFNClient", "ListStateMachineVersionsCommand")
2888
- .f(void 0, void 0)
2889
- .ser(se_ListStateMachineVersionsCommand)
2890
- .de(de_ListStateMachineVersionsCommand)
2782
+ .sc(ListStateMachineVersions)
2891
2783
  .build() {
2892
2784
  }
2893
2785
 
@@ -2895,16 +2787,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
2895
2787
  .classBuilder()
2896
2788
  .ep(commonParams)
2897
2789
  .m(function (Command, cs, config, o) {
2898
- return [
2899
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2900
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2901
- ];
2790
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2902
2791
  })
2903
2792
  .s("AWSStepFunctions", "ListTagsForResource", {})
2904
2793
  .n("SFNClient", "ListTagsForResourceCommand")
2905
- .f(void 0, void 0)
2906
- .ser(se_ListTagsForResourceCommand)
2907
- .de(de_ListTagsForResourceCommand)
2794
+ .sc(ListTagsForResource)
2908
2795
  .build() {
2909
2796
  }
2910
2797
 
@@ -2912,16 +2799,11 @@ class PublishStateMachineVersionCommand extends smithyClient.Command
2912
2799
  .classBuilder()
2913
2800
  .ep(commonParams)
2914
2801
  .m(function (Command, cs, config, o) {
2915
- return [
2916
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2917
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2918
- ];
2802
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2919
2803
  })
2920
2804
  .s("AWSStepFunctions", "PublishStateMachineVersion", {})
2921
2805
  .n("SFNClient", "PublishStateMachineVersionCommand")
2922
- .f(PublishStateMachineVersionInputFilterSensitiveLog, void 0)
2923
- .ser(se_PublishStateMachineVersionCommand)
2924
- .de(de_PublishStateMachineVersionCommand)
2806
+ .sc(PublishStateMachineVersion)
2925
2807
  .build() {
2926
2808
  }
2927
2809
 
@@ -2929,16 +2811,11 @@ class RedriveExecutionCommand extends smithyClient.Command
2929
2811
  .classBuilder()
2930
2812
  .ep(commonParams)
2931
2813
  .m(function (Command, cs, config, o) {
2932
- return [
2933
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2934
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2935
- ];
2814
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2936
2815
  })
2937
2816
  .s("AWSStepFunctions", "RedriveExecution", {})
2938
2817
  .n("SFNClient", "RedriveExecutionCommand")
2939
- .f(void 0, void 0)
2940
- .ser(se_RedriveExecutionCommand)
2941
- .de(de_RedriveExecutionCommand)
2818
+ .sc(RedriveExecution)
2942
2819
  .build() {
2943
2820
  }
2944
2821
 
@@ -2946,16 +2823,11 @@ class SendTaskFailureCommand extends smithyClient.Command
2946
2823
  .classBuilder()
2947
2824
  .ep(commonParams)
2948
2825
  .m(function (Command, cs, config, o) {
2949
- return [
2950
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2951
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2952
- ];
2826
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2953
2827
  })
2954
2828
  .s("AWSStepFunctions", "SendTaskFailure", {})
2955
2829
  .n("SFNClient", "SendTaskFailureCommand")
2956
- .f(SendTaskFailureInputFilterSensitiveLog, void 0)
2957
- .ser(se_SendTaskFailureCommand)
2958
- .de(de_SendTaskFailureCommand)
2830
+ .sc(SendTaskFailure)
2959
2831
  .build() {
2960
2832
  }
2961
2833
 
@@ -2963,16 +2835,11 @@ class SendTaskHeartbeatCommand extends smithyClient.Command
2963
2835
  .classBuilder()
2964
2836
  .ep(commonParams)
2965
2837
  .m(function (Command, cs, config, o) {
2966
- return [
2967
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2968
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2969
- ];
2838
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2970
2839
  })
2971
2840
  .s("AWSStepFunctions", "SendTaskHeartbeat", {})
2972
2841
  .n("SFNClient", "SendTaskHeartbeatCommand")
2973
- .f(void 0, void 0)
2974
- .ser(se_SendTaskHeartbeatCommand)
2975
- .de(de_SendTaskHeartbeatCommand)
2842
+ .sc(SendTaskHeartbeat)
2976
2843
  .build() {
2977
2844
  }
2978
2845
 
@@ -2980,16 +2847,11 @@ class SendTaskSuccessCommand extends smithyClient.Command
2980
2847
  .classBuilder()
2981
2848
  .ep(commonParams)
2982
2849
  .m(function (Command, cs, config, o) {
2983
- return [
2984
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2985
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2986
- ];
2850
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2987
2851
  })
2988
2852
  .s("AWSStepFunctions", "SendTaskSuccess", {})
2989
2853
  .n("SFNClient", "SendTaskSuccessCommand")
2990
- .f(SendTaskSuccessInputFilterSensitiveLog, void 0)
2991
- .ser(se_SendTaskSuccessCommand)
2992
- .de(de_SendTaskSuccessCommand)
2854
+ .sc(SendTaskSuccess)
2993
2855
  .build() {
2994
2856
  }
2995
2857
 
@@ -2997,16 +2859,11 @@ class StartExecutionCommand extends smithyClient.Command
2997
2859
  .classBuilder()
2998
2860
  .ep(commonParams)
2999
2861
  .m(function (Command, cs, config, o) {
3000
- return [
3001
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3002
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3003
- ];
2862
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3004
2863
  })
3005
2864
  .s("AWSStepFunctions", "StartExecution", {})
3006
2865
  .n("SFNClient", "StartExecutionCommand")
3007
- .f(StartExecutionInputFilterSensitiveLog, void 0)
3008
- .ser(se_StartExecutionCommand)
3009
- .de(de_StartExecutionCommand)
2866
+ .sc(StartExecution)
3010
2867
  .build() {
3011
2868
  }
3012
2869
 
@@ -3014,16 +2871,11 @@ class StartSyncExecutionCommand extends smithyClient.Command
3014
2871
  .classBuilder()
3015
2872
  .ep(commonParams)
3016
2873
  .m(function (Command, cs, config, o) {
3017
- return [
3018
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3019
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3020
- ];
2874
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3021
2875
  })
3022
2876
  .s("AWSStepFunctions", "StartSyncExecution", {})
3023
2877
  .n("SFNClient", "StartSyncExecutionCommand")
3024
- .f(StartSyncExecutionInputFilterSensitiveLog, StartSyncExecutionOutputFilterSensitiveLog)
3025
- .ser(se_StartSyncExecutionCommand)
3026
- .de(de_StartSyncExecutionCommand)
2878
+ .sc(StartSyncExecution)
3027
2879
  .build() {
3028
2880
  }
3029
2881
 
@@ -3031,16 +2883,11 @@ class StopExecutionCommand extends smithyClient.Command
3031
2883
  .classBuilder()
3032
2884
  .ep(commonParams)
3033
2885
  .m(function (Command, cs, config, o) {
3034
- return [
3035
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3036
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3037
- ];
2886
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3038
2887
  })
3039
2888
  .s("AWSStepFunctions", "StopExecution", {})
3040
2889
  .n("SFNClient", "StopExecutionCommand")
3041
- .f(StopExecutionInputFilterSensitiveLog, void 0)
3042
- .ser(se_StopExecutionCommand)
3043
- .de(de_StopExecutionCommand)
2890
+ .sc(StopExecution)
3044
2891
  .build() {
3045
2892
  }
3046
2893
 
@@ -3048,16 +2895,11 @@ class TagResourceCommand extends smithyClient.Command
3048
2895
  .classBuilder()
3049
2896
  .ep(commonParams)
3050
2897
  .m(function (Command, cs, config, o) {
3051
- return [
3052
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3053
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3054
- ];
2898
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3055
2899
  })
3056
2900
  .s("AWSStepFunctions", "TagResource", {})
3057
2901
  .n("SFNClient", "TagResourceCommand")
3058
- .f(void 0, void 0)
3059
- .ser(se_TagResourceCommand)
3060
- .de(de_TagResourceCommand)
2902
+ .sc(TagResource)
3061
2903
  .build() {
3062
2904
  }
3063
2905
 
@@ -3065,16 +2907,11 @@ class TestStateCommand extends smithyClient.Command
3065
2907
  .classBuilder()
3066
2908
  .ep(commonParams)
3067
2909
  .m(function (Command, cs, config, o) {
3068
- return [
3069
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3070
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3071
- ];
2910
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3072
2911
  })
3073
2912
  .s("AWSStepFunctions", "TestState", {})
3074
2913
  .n("SFNClient", "TestStateCommand")
3075
- .f(TestStateInputFilterSensitiveLog, TestStateOutputFilterSensitiveLog)
3076
- .ser(se_TestStateCommand)
3077
- .de(de_TestStateCommand)
2914
+ .sc(TestState)
3078
2915
  .build() {
3079
2916
  }
3080
2917
 
@@ -3082,16 +2919,11 @@ class UntagResourceCommand extends smithyClient.Command
3082
2919
  .classBuilder()
3083
2920
  .ep(commonParams)
3084
2921
  .m(function (Command, cs, config, o) {
3085
- return [
3086
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3087
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3088
- ];
2922
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3089
2923
  })
3090
2924
  .s("AWSStepFunctions", "UntagResource", {})
3091
2925
  .n("SFNClient", "UntagResourceCommand")
3092
- .f(void 0, void 0)
3093
- .ser(se_UntagResourceCommand)
3094
- .de(de_UntagResourceCommand)
2926
+ .sc(UntagResource)
3095
2927
  .build() {
3096
2928
  }
3097
2929
 
@@ -3099,16 +2931,11 @@ class UpdateMapRunCommand extends smithyClient.Command
3099
2931
  .classBuilder()
3100
2932
  .ep(commonParams)
3101
2933
  .m(function (Command, cs, config, o) {
3102
- return [
3103
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3104
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3105
- ];
2934
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3106
2935
  })
3107
2936
  .s("AWSStepFunctions", "UpdateMapRun", {})
3108
2937
  .n("SFNClient", "UpdateMapRunCommand")
3109
- .f(void 0, void 0)
3110
- .ser(se_UpdateMapRunCommand)
3111
- .de(de_UpdateMapRunCommand)
2938
+ .sc(UpdateMapRun)
3112
2939
  .build() {
3113
2940
  }
3114
2941
 
@@ -3116,16 +2943,11 @@ class UpdateStateMachineAliasCommand extends smithyClient.Command
3116
2943
  .classBuilder()
3117
2944
  .ep(commonParams)
3118
2945
  .m(function (Command, cs, config, o) {
3119
- return [
3120
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3121
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3122
- ];
2946
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3123
2947
  })
3124
2948
  .s("AWSStepFunctions", "UpdateStateMachineAlias", {})
3125
2949
  .n("SFNClient", "UpdateStateMachineAliasCommand")
3126
- .f(UpdateStateMachineAliasInputFilterSensitiveLog, void 0)
3127
- .ser(se_UpdateStateMachineAliasCommand)
3128
- .de(de_UpdateStateMachineAliasCommand)
2950
+ .sc(UpdateStateMachineAlias)
3129
2951
  .build() {
3130
2952
  }
3131
2953
 
@@ -3133,16 +2955,11 @@ class UpdateStateMachineCommand extends smithyClient.Command
3133
2955
  .classBuilder()
3134
2956
  .ep(commonParams)
3135
2957
  .m(function (Command, cs, config, o) {
3136
- return [
3137
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3138
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3139
- ];
2958
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3140
2959
  })
3141
2960
  .s("AWSStepFunctions", "UpdateStateMachine", {})
3142
2961
  .n("SFNClient", "UpdateStateMachineCommand")
3143
- .f(UpdateStateMachineInputFilterSensitiveLog, void 0)
3144
- .ser(se_UpdateStateMachineCommand)
3145
- .de(de_UpdateStateMachineCommand)
2962
+ .sc(UpdateStateMachine)
3146
2963
  .build() {
3147
2964
  }
3148
2965
 
@@ -3150,16 +2967,11 @@ class ValidateStateMachineDefinitionCommand extends smithyClient.Command
3150
2967
  .classBuilder()
3151
2968
  .ep(commonParams)
3152
2969
  .m(function (Command, cs, config, o) {
3153
- return [
3154
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
3155
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
3156
- ];
2970
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3157
2971
  })
3158
2972
  .s("AWSStepFunctions", "ValidateStateMachineDefinition", {})
3159
2973
  .n("SFNClient", "ValidateStateMachineDefinitionCommand")
3160
- .f(ValidateStateMachineDefinitionInputFilterSensitiveLog, ValidateStateMachineDefinitionOutputFilterSensitiveLog)
3161
- .ser(se_ValidateStateMachineDefinitionCommand)
3162
- .de(de_ValidateStateMachineDefinitionCommand)
2974
+ .sc(ValidateStateMachineDefinition)
3163
2975
  .build() {
3164
2976
  }
3165
2977
 
@@ -3224,77 +3036,50 @@ Object.defineProperty(exports, "__Client", {
3224
3036
  enumerable: true,
3225
3037
  get: function () { return smithyClient.Client; }
3226
3038
  });
3227
- exports.ActivityAlreadyExists = ActivityAlreadyExists;
3228
- exports.ActivityDoesNotExist = ActivityDoesNotExist;
3229
- exports.ActivityFailedEventDetailsFilterSensitiveLog = ActivityFailedEventDetailsFilterSensitiveLog;
3230
- exports.ActivityLimitExceeded = ActivityLimitExceeded;
3231
- exports.ActivityScheduleFailedEventDetailsFilterSensitiveLog = ActivityScheduleFailedEventDetailsFilterSensitiveLog;
3232
- exports.ActivityScheduledEventDetailsFilterSensitiveLog = ActivityScheduledEventDetailsFilterSensitiveLog;
3233
- exports.ActivitySucceededEventDetailsFilterSensitiveLog = ActivitySucceededEventDetailsFilterSensitiveLog;
3234
- exports.ActivityTimedOutEventDetailsFilterSensitiveLog = ActivityTimedOutEventDetailsFilterSensitiveLog;
3235
- exports.ActivityWorkerLimitExceeded = ActivityWorkerLimitExceeded;
3236
- exports.ConflictException = ConflictException;
3039
+ exports.ActivityAlreadyExists = ActivityAlreadyExists$1;
3040
+ exports.ActivityDoesNotExist = ActivityDoesNotExist$1;
3041
+ exports.ActivityLimitExceeded = ActivityLimitExceeded$1;
3042
+ exports.ActivityWorkerLimitExceeded = ActivityWorkerLimitExceeded$1;
3043
+ exports.ConflictException = ConflictException$1;
3237
3044
  exports.CreateActivityCommand = CreateActivityCommand;
3238
3045
  exports.CreateStateMachineAliasCommand = CreateStateMachineAliasCommand;
3239
- exports.CreateStateMachineAliasInputFilterSensitiveLog = CreateStateMachineAliasInputFilterSensitiveLog;
3240
3046
  exports.CreateStateMachineCommand = CreateStateMachineCommand;
3241
- exports.CreateStateMachineInputFilterSensitiveLog = CreateStateMachineInputFilterSensitiveLog;
3242
3047
  exports.DeleteActivityCommand = DeleteActivityCommand;
3243
3048
  exports.DeleteStateMachineAliasCommand = DeleteStateMachineAliasCommand;
3244
3049
  exports.DeleteStateMachineCommand = DeleteStateMachineCommand;
3245
3050
  exports.DeleteStateMachineVersionCommand = DeleteStateMachineVersionCommand;
3246
3051
  exports.DescribeActivityCommand = DescribeActivityCommand;
3247
3052
  exports.DescribeExecutionCommand = DescribeExecutionCommand;
3248
- exports.DescribeExecutionOutputFilterSensitiveLog = DescribeExecutionOutputFilterSensitiveLog;
3249
3053
  exports.DescribeMapRunCommand = DescribeMapRunCommand;
3250
3054
  exports.DescribeStateMachineAliasCommand = DescribeStateMachineAliasCommand;
3251
- exports.DescribeStateMachineAliasOutputFilterSensitiveLog = DescribeStateMachineAliasOutputFilterSensitiveLog;
3252
3055
  exports.DescribeStateMachineCommand = DescribeStateMachineCommand;
3253
3056
  exports.DescribeStateMachineForExecutionCommand = DescribeStateMachineForExecutionCommand;
3254
- exports.DescribeStateMachineForExecutionOutputFilterSensitiveLog = DescribeStateMachineForExecutionOutputFilterSensitiveLog;
3255
- exports.DescribeStateMachineOutputFilterSensitiveLog = DescribeStateMachineOutputFilterSensitiveLog;
3256
3057
  exports.EncryptionType = EncryptionType;
3257
- exports.EvaluationFailedEventDetailsFilterSensitiveLog = EvaluationFailedEventDetailsFilterSensitiveLog;
3258
- exports.ExecutionAbortedEventDetailsFilterSensitiveLog = ExecutionAbortedEventDetailsFilterSensitiveLog;
3259
- exports.ExecutionAlreadyExists = ExecutionAlreadyExists;
3260
- exports.ExecutionDoesNotExist = ExecutionDoesNotExist;
3261
- exports.ExecutionFailedEventDetailsFilterSensitiveLog = ExecutionFailedEventDetailsFilterSensitiveLog;
3262
- exports.ExecutionLimitExceeded = ExecutionLimitExceeded;
3263
- exports.ExecutionNotRedrivable = ExecutionNotRedrivable;
3058
+ exports.ExecutionAlreadyExists = ExecutionAlreadyExists$1;
3059
+ exports.ExecutionDoesNotExist = ExecutionDoesNotExist$1;
3060
+ exports.ExecutionLimitExceeded = ExecutionLimitExceeded$1;
3061
+ exports.ExecutionNotRedrivable = ExecutionNotRedrivable$1;
3264
3062
  exports.ExecutionRedriveFilter = ExecutionRedriveFilter;
3265
3063
  exports.ExecutionRedriveStatus = ExecutionRedriveStatus;
3266
- exports.ExecutionStartedEventDetailsFilterSensitiveLog = ExecutionStartedEventDetailsFilterSensitiveLog;
3267
3064
  exports.ExecutionStatus = ExecutionStatus;
3268
- exports.ExecutionSucceededEventDetailsFilterSensitiveLog = ExecutionSucceededEventDetailsFilterSensitiveLog;
3269
- exports.ExecutionTimedOutEventDetailsFilterSensitiveLog = ExecutionTimedOutEventDetailsFilterSensitiveLog;
3270
3065
  exports.GetActivityTaskCommand = GetActivityTaskCommand;
3271
- exports.GetActivityTaskOutputFilterSensitiveLog = GetActivityTaskOutputFilterSensitiveLog;
3272
3066
  exports.GetExecutionHistoryCommand = GetExecutionHistoryCommand;
3273
- exports.GetExecutionHistoryOutputFilterSensitiveLog = GetExecutionHistoryOutputFilterSensitiveLog;
3274
- exports.HistoryEventFilterSensitiveLog = HistoryEventFilterSensitiveLog;
3275
3067
  exports.HistoryEventType = HistoryEventType;
3276
3068
  exports.IncludedData = IncludedData;
3277
- exports.InspectionDataFilterSensitiveLog = InspectionDataFilterSensitiveLog;
3278
3069
  exports.InspectionLevel = InspectionLevel;
3279
- exports.InvalidArn = InvalidArn;
3280
- exports.InvalidDefinition = InvalidDefinition;
3281
- exports.InvalidEncryptionConfiguration = InvalidEncryptionConfiguration;
3282
- exports.InvalidExecutionInput = InvalidExecutionInput;
3283
- exports.InvalidLoggingConfiguration = InvalidLoggingConfiguration;
3284
- exports.InvalidName = InvalidName;
3285
- exports.InvalidOutput = InvalidOutput;
3286
- exports.InvalidToken = InvalidToken;
3287
- exports.InvalidTracingConfiguration = InvalidTracingConfiguration;
3288
- exports.KmsAccessDeniedException = KmsAccessDeniedException;
3289
- exports.KmsInvalidStateException = KmsInvalidStateException;
3070
+ exports.InvalidArn = InvalidArn$1;
3071
+ exports.InvalidDefinition = InvalidDefinition$1;
3072
+ exports.InvalidEncryptionConfiguration = InvalidEncryptionConfiguration$1;
3073
+ exports.InvalidExecutionInput = InvalidExecutionInput$1;
3074
+ exports.InvalidLoggingConfiguration = InvalidLoggingConfiguration$1;
3075
+ exports.InvalidName = InvalidName$1;
3076
+ exports.InvalidOutput = InvalidOutput$1;
3077
+ exports.InvalidToken = InvalidToken$1;
3078
+ exports.InvalidTracingConfiguration = InvalidTracingConfiguration$1;
3079
+ exports.KmsAccessDeniedException = KmsAccessDeniedException$1;
3080
+ exports.KmsInvalidStateException = KmsInvalidStateException$1;
3290
3081
  exports.KmsKeyState = KmsKeyState;
3291
- exports.KmsThrottlingException = KmsThrottlingException;
3292
- exports.LambdaFunctionFailedEventDetailsFilterSensitiveLog = LambdaFunctionFailedEventDetailsFilterSensitiveLog;
3293
- exports.LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog = LambdaFunctionScheduleFailedEventDetailsFilterSensitiveLog;
3294
- exports.LambdaFunctionScheduledEventDetailsFilterSensitiveLog = LambdaFunctionScheduledEventDetailsFilterSensitiveLog;
3295
- exports.LambdaFunctionStartFailedEventDetailsFilterSensitiveLog = LambdaFunctionStartFailedEventDetailsFilterSensitiveLog;
3296
- exports.LambdaFunctionSucceededEventDetailsFilterSensitiveLog = LambdaFunctionSucceededEventDetailsFilterSensitiveLog;
3297
- exports.LambdaFunctionTimedOutEventDetailsFilterSensitiveLog = LambdaFunctionTimedOutEventDetailsFilterSensitiveLog;
3082
+ exports.KmsThrottlingException = KmsThrottlingException$1;
3298
3083
  exports.ListActivitiesCommand = ListActivitiesCommand;
3299
3084
  exports.ListExecutionsCommand = ListExecutionsCommand;
3300
3085
  exports.ListMapRunsCommand = ListMapRunsCommand;
@@ -3303,67 +3088,43 @@ exports.ListStateMachineVersionsCommand = ListStateMachineVersionsCommand;
3303
3088
  exports.ListStateMachinesCommand = ListStateMachinesCommand;
3304
3089
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3305
3090
  exports.LogLevel = LogLevel;
3306
- exports.MapRunFailedEventDetailsFilterSensitiveLog = MapRunFailedEventDetailsFilterSensitiveLog;
3307
3091
  exports.MapRunStatus = MapRunStatus;
3308
- exports.MissingRequiredParameter = MissingRequiredParameter;
3092
+ exports.MissingRequiredParameter = MissingRequiredParameter$1;
3309
3093
  exports.PublishStateMachineVersionCommand = PublishStateMachineVersionCommand;
3310
- exports.PublishStateMachineVersionInputFilterSensitiveLog = PublishStateMachineVersionInputFilterSensitiveLog;
3311
3094
  exports.RedriveExecutionCommand = RedriveExecutionCommand;
3312
- exports.ResourceNotFound = ResourceNotFound;
3095
+ exports.ResourceNotFound = ResourceNotFound$1;
3313
3096
  exports.SFN = SFN;
3314
3097
  exports.SFNClient = SFNClient;
3315
- exports.SFNServiceException = SFNServiceException;
3098
+ exports.SFNServiceException = SFNServiceException$1;
3316
3099
  exports.SendTaskFailureCommand = SendTaskFailureCommand;
3317
- exports.SendTaskFailureInputFilterSensitiveLog = SendTaskFailureInputFilterSensitiveLog;
3318
3100
  exports.SendTaskHeartbeatCommand = SendTaskHeartbeatCommand;
3319
3101
  exports.SendTaskSuccessCommand = SendTaskSuccessCommand;
3320
- exports.SendTaskSuccessInputFilterSensitiveLog = SendTaskSuccessInputFilterSensitiveLog;
3321
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3102
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
3322
3103
  exports.StartExecutionCommand = StartExecutionCommand;
3323
- exports.StartExecutionInputFilterSensitiveLog = StartExecutionInputFilterSensitiveLog;
3324
3104
  exports.StartSyncExecutionCommand = StartSyncExecutionCommand;
3325
- exports.StartSyncExecutionInputFilterSensitiveLog = StartSyncExecutionInputFilterSensitiveLog;
3326
- exports.StartSyncExecutionOutputFilterSensitiveLog = StartSyncExecutionOutputFilterSensitiveLog;
3327
- exports.StateEnteredEventDetailsFilterSensitiveLog = StateEnteredEventDetailsFilterSensitiveLog;
3328
- exports.StateExitedEventDetailsFilterSensitiveLog = StateExitedEventDetailsFilterSensitiveLog;
3329
- exports.StateMachineAlreadyExists = StateMachineAlreadyExists;
3330
- exports.StateMachineDeleting = StateMachineDeleting;
3331
- exports.StateMachineDoesNotExist = StateMachineDoesNotExist;
3332
- exports.StateMachineLimitExceeded = StateMachineLimitExceeded;
3105
+ exports.StateMachineAlreadyExists = StateMachineAlreadyExists$1;
3106
+ exports.StateMachineDeleting = StateMachineDeleting$1;
3107
+ exports.StateMachineDoesNotExist = StateMachineDoesNotExist$1;
3108
+ exports.StateMachineLimitExceeded = StateMachineLimitExceeded$1;
3333
3109
  exports.StateMachineStatus = StateMachineStatus;
3334
3110
  exports.StateMachineType = StateMachineType;
3335
- exports.StateMachineTypeNotSupported = StateMachineTypeNotSupported;
3111
+ exports.StateMachineTypeNotSupported = StateMachineTypeNotSupported$1;
3336
3112
  exports.StopExecutionCommand = StopExecutionCommand;
3337
- exports.StopExecutionInputFilterSensitiveLog = StopExecutionInputFilterSensitiveLog;
3338
3113
  exports.SyncExecutionStatus = SyncExecutionStatus;
3339
3114
  exports.TagResourceCommand = TagResourceCommand;
3340
- exports.TaskDoesNotExist = TaskDoesNotExist;
3341
- exports.TaskFailedEventDetailsFilterSensitiveLog = TaskFailedEventDetailsFilterSensitiveLog;
3342
- exports.TaskScheduledEventDetailsFilterSensitiveLog = TaskScheduledEventDetailsFilterSensitiveLog;
3343
- exports.TaskStartFailedEventDetailsFilterSensitiveLog = TaskStartFailedEventDetailsFilterSensitiveLog;
3344
- exports.TaskSubmitFailedEventDetailsFilterSensitiveLog = TaskSubmitFailedEventDetailsFilterSensitiveLog;
3345
- exports.TaskSubmittedEventDetailsFilterSensitiveLog = TaskSubmittedEventDetailsFilterSensitiveLog;
3346
- exports.TaskSucceededEventDetailsFilterSensitiveLog = TaskSucceededEventDetailsFilterSensitiveLog;
3347
- exports.TaskTimedOut = TaskTimedOut;
3348
- exports.TaskTimedOutEventDetailsFilterSensitiveLog = TaskTimedOutEventDetailsFilterSensitiveLog;
3115
+ exports.TaskDoesNotExist = TaskDoesNotExist$1;
3116
+ exports.TaskTimedOut = TaskTimedOut$1;
3349
3117
  exports.TestExecutionStatus = TestExecutionStatus;
3350
3118
  exports.TestStateCommand = TestStateCommand;
3351
- exports.TestStateInputFilterSensitiveLog = TestStateInputFilterSensitiveLog;
3352
- exports.TestStateOutputFilterSensitiveLog = TestStateOutputFilterSensitiveLog;
3353
- exports.TooManyTags = TooManyTags;
3119
+ exports.TooManyTags = TooManyTags$1;
3354
3120
  exports.UntagResourceCommand = UntagResourceCommand;
3355
3121
  exports.UpdateMapRunCommand = UpdateMapRunCommand;
3356
3122
  exports.UpdateStateMachineAliasCommand = UpdateStateMachineAliasCommand;
3357
- exports.UpdateStateMachineAliasInputFilterSensitiveLog = UpdateStateMachineAliasInputFilterSensitiveLog;
3358
3123
  exports.UpdateStateMachineCommand = UpdateStateMachineCommand;
3359
- exports.UpdateStateMachineInputFilterSensitiveLog = UpdateStateMachineInputFilterSensitiveLog;
3360
3124
  exports.ValidateStateMachineDefinitionCommand = ValidateStateMachineDefinitionCommand;
3361
- exports.ValidateStateMachineDefinitionDiagnosticFilterSensitiveLog = ValidateStateMachineDefinitionDiagnosticFilterSensitiveLog;
3362
- exports.ValidateStateMachineDefinitionInputFilterSensitiveLog = ValidateStateMachineDefinitionInputFilterSensitiveLog;
3363
- exports.ValidateStateMachineDefinitionOutputFilterSensitiveLog = ValidateStateMachineDefinitionOutputFilterSensitiveLog;
3364
3125
  exports.ValidateStateMachineDefinitionResultCode = ValidateStateMachineDefinitionResultCode;
3365
3126
  exports.ValidateStateMachineDefinitionSeverity = ValidateStateMachineDefinitionSeverity;
3366
- exports.ValidationException = ValidationException;
3127
+ exports.ValidationException = ValidationException$1;
3367
3128
  exports.ValidationExceptionReason = ValidationExceptionReason;
3368
3129
  exports.paginateGetExecutionHistory = paginateGetExecutionHistory;
3369
3130
  exports.paginateListActivities = paginateListActivities;