@aws-sdk/client-sfn 3.716.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +375 -286
- package/dist-es/SFNClient.js +1 -0
- package/dist-es/models/models_0.js +70 -66
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -267,7 +267,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
267
267
|
}, "resolveRuntimeExtensions");
|
|
268
268
|
|
|
269
269
|
// src/SFNClient.ts
|
|
270
|
-
var
|
|
270
|
+
var SFNClient = class extends import_smithy_client.Client {
|
|
271
|
+
static {
|
|
272
|
+
__name(this, "SFNClient");
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* The resolved configuration of SFNClient class. This is resolved and normalized from the {@link SFNClientConfig | constructor configuration interface}.
|
|
276
|
+
*/
|
|
277
|
+
config;
|
|
271
278
|
constructor(...[configuration]) {
|
|
272
279
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
273
280
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -277,7 +284,7 @@ var _SFNClient = class _SFNClient extends import_smithy_client.Client {
|
|
|
277
284
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
278
285
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
279
286
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
280
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
287
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
281
288
|
super(_config_8);
|
|
282
289
|
this.config = _config_8;
|
|
283
290
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -305,8 +312,6 @@ var _SFNClient = class _SFNClient extends import_smithy_client.Client {
|
|
|
305
312
|
super.destroy();
|
|
306
313
|
}
|
|
307
314
|
};
|
|
308
|
-
__name(_SFNClient, "SFNClient");
|
|
309
|
-
var SFNClient = _SFNClient;
|
|
310
315
|
|
|
311
316
|
// src/SFN.ts
|
|
312
317
|
|
|
@@ -327,7 +332,10 @@ var import_uuid = require("uuid");
|
|
|
327
332
|
|
|
328
333
|
// src/models/SFNServiceException.ts
|
|
329
334
|
|
|
330
|
-
var
|
|
335
|
+
var SFNServiceException = class _SFNServiceException extends import_smithy_client.ServiceException {
|
|
336
|
+
static {
|
|
337
|
+
__name(this, "SFNServiceException");
|
|
338
|
+
}
|
|
331
339
|
/**
|
|
332
340
|
* @internal
|
|
333
341
|
*/
|
|
@@ -336,11 +344,14 @@ var _SFNServiceException = class _SFNServiceException extends import_smithy_clie
|
|
|
336
344
|
Object.setPrototypeOf(this, _SFNServiceException.prototype);
|
|
337
345
|
}
|
|
338
346
|
};
|
|
339
|
-
__name(_SFNServiceException, "SFNServiceException");
|
|
340
|
-
var SFNServiceException = _SFNServiceException;
|
|
341
347
|
|
|
342
348
|
// src/models/models_0.ts
|
|
343
|
-
var
|
|
349
|
+
var ActivityAlreadyExists = class _ActivityAlreadyExists extends SFNServiceException {
|
|
350
|
+
static {
|
|
351
|
+
__name(this, "ActivityAlreadyExists");
|
|
352
|
+
}
|
|
353
|
+
name = "ActivityAlreadyExists";
|
|
354
|
+
$fault = "client";
|
|
344
355
|
/**
|
|
345
356
|
* @internal
|
|
346
357
|
*/
|
|
@@ -350,14 +361,15 @@ var _ActivityAlreadyExists = class _ActivityAlreadyExists extends SFNServiceExce
|
|
|
350
361
|
$fault: "client",
|
|
351
362
|
...opts
|
|
352
363
|
});
|
|
353
|
-
this.name = "ActivityAlreadyExists";
|
|
354
|
-
this.$fault = "client";
|
|
355
364
|
Object.setPrototypeOf(this, _ActivityAlreadyExists.prototype);
|
|
356
365
|
}
|
|
357
366
|
};
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
367
|
+
var ActivityDoesNotExist = class _ActivityDoesNotExist extends SFNServiceException {
|
|
368
|
+
static {
|
|
369
|
+
__name(this, "ActivityDoesNotExist");
|
|
370
|
+
}
|
|
371
|
+
name = "ActivityDoesNotExist";
|
|
372
|
+
$fault = "client";
|
|
361
373
|
/**
|
|
362
374
|
* @internal
|
|
363
375
|
*/
|
|
@@ -367,14 +379,15 @@ var _ActivityDoesNotExist = class _ActivityDoesNotExist extends SFNServiceExcept
|
|
|
367
379
|
$fault: "client",
|
|
368
380
|
...opts
|
|
369
381
|
});
|
|
370
|
-
this.name = "ActivityDoesNotExist";
|
|
371
|
-
this.$fault = "client";
|
|
372
382
|
Object.setPrototypeOf(this, _ActivityDoesNotExist.prototype);
|
|
373
383
|
}
|
|
374
384
|
};
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
385
|
+
var ActivityLimitExceeded = class _ActivityLimitExceeded extends SFNServiceException {
|
|
386
|
+
static {
|
|
387
|
+
__name(this, "ActivityLimitExceeded");
|
|
388
|
+
}
|
|
389
|
+
name = "ActivityLimitExceeded";
|
|
390
|
+
$fault = "client";
|
|
378
391
|
/**
|
|
379
392
|
* @internal
|
|
380
393
|
*/
|
|
@@ -384,14 +397,15 @@ var _ActivityLimitExceeded = class _ActivityLimitExceeded extends SFNServiceExce
|
|
|
384
397
|
$fault: "client",
|
|
385
398
|
...opts
|
|
386
399
|
});
|
|
387
|
-
this.name = "ActivityLimitExceeded";
|
|
388
|
-
this.$fault = "client";
|
|
389
400
|
Object.setPrototypeOf(this, _ActivityLimitExceeded.prototype);
|
|
390
401
|
}
|
|
391
402
|
};
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
403
|
+
var ActivityWorkerLimitExceeded = class _ActivityWorkerLimitExceeded extends SFNServiceException {
|
|
404
|
+
static {
|
|
405
|
+
__name(this, "ActivityWorkerLimitExceeded");
|
|
406
|
+
}
|
|
407
|
+
name = "ActivityWorkerLimitExceeded";
|
|
408
|
+
$fault = "client";
|
|
395
409
|
/**
|
|
396
410
|
* @internal
|
|
397
411
|
*/
|
|
@@ -401,18 +415,19 @@ var _ActivityWorkerLimitExceeded = class _ActivityWorkerLimitExceeded extends SF
|
|
|
401
415
|
$fault: "client",
|
|
402
416
|
...opts
|
|
403
417
|
});
|
|
404
|
-
this.name = "ActivityWorkerLimitExceeded";
|
|
405
|
-
this.$fault = "client";
|
|
406
418
|
Object.setPrototypeOf(this, _ActivityWorkerLimitExceeded.prototype);
|
|
407
419
|
}
|
|
408
420
|
};
|
|
409
|
-
__name(_ActivityWorkerLimitExceeded, "ActivityWorkerLimitExceeded");
|
|
410
|
-
var ActivityWorkerLimitExceeded = _ActivityWorkerLimitExceeded;
|
|
411
421
|
var EncryptionType = {
|
|
412
422
|
AWS_OWNED_KEY: "AWS_OWNED_KEY",
|
|
413
423
|
CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY"
|
|
414
424
|
};
|
|
415
|
-
var
|
|
425
|
+
var InvalidEncryptionConfiguration = class _InvalidEncryptionConfiguration extends SFNServiceException {
|
|
426
|
+
static {
|
|
427
|
+
__name(this, "InvalidEncryptionConfiguration");
|
|
428
|
+
}
|
|
429
|
+
name = "InvalidEncryptionConfiguration";
|
|
430
|
+
$fault = "client";
|
|
416
431
|
/**
|
|
417
432
|
* @internal
|
|
418
433
|
*/
|
|
@@ -422,14 +437,15 @@ var _InvalidEncryptionConfiguration = class _InvalidEncryptionConfiguration exte
|
|
|
422
437
|
$fault: "client",
|
|
423
438
|
...opts
|
|
424
439
|
});
|
|
425
|
-
this.name = "InvalidEncryptionConfiguration";
|
|
426
|
-
this.$fault = "client";
|
|
427
440
|
Object.setPrototypeOf(this, _InvalidEncryptionConfiguration.prototype);
|
|
428
441
|
}
|
|
429
442
|
};
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
443
|
+
var InvalidName = class _InvalidName extends SFNServiceException {
|
|
444
|
+
static {
|
|
445
|
+
__name(this, "InvalidName");
|
|
446
|
+
}
|
|
447
|
+
name = "InvalidName";
|
|
448
|
+
$fault = "client";
|
|
433
449
|
/**
|
|
434
450
|
* @internal
|
|
435
451
|
*/
|
|
@@ -439,14 +455,15 @@ var _InvalidName = class _InvalidName extends SFNServiceException {
|
|
|
439
455
|
$fault: "client",
|
|
440
456
|
...opts
|
|
441
457
|
});
|
|
442
|
-
this.name = "InvalidName";
|
|
443
|
-
this.$fault = "client";
|
|
444
458
|
Object.setPrototypeOf(this, _InvalidName.prototype);
|
|
445
459
|
}
|
|
446
460
|
};
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
461
|
+
var KmsAccessDeniedException = class _KmsAccessDeniedException extends SFNServiceException {
|
|
462
|
+
static {
|
|
463
|
+
__name(this, "KmsAccessDeniedException");
|
|
464
|
+
}
|
|
465
|
+
name = "KmsAccessDeniedException";
|
|
466
|
+
$fault = "client";
|
|
450
467
|
/**
|
|
451
468
|
* @internal
|
|
452
469
|
*/
|
|
@@ -456,14 +473,15 @@ var _KmsAccessDeniedException = class _KmsAccessDeniedException extends SFNServi
|
|
|
456
473
|
$fault: "client",
|
|
457
474
|
...opts
|
|
458
475
|
});
|
|
459
|
-
this.name = "KmsAccessDeniedException";
|
|
460
|
-
this.$fault = "client";
|
|
461
476
|
Object.setPrototypeOf(this, _KmsAccessDeniedException.prototype);
|
|
462
477
|
}
|
|
463
478
|
};
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
479
|
+
var KmsThrottlingException = class _KmsThrottlingException extends SFNServiceException {
|
|
480
|
+
static {
|
|
481
|
+
__name(this, "KmsThrottlingException");
|
|
482
|
+
}
|
|
483
|
+
name = "KmsThrottlingException";
|
|
484
|
+
$fault = "client";
|
|
467
485
|
/**
|
|
468
486
|
* @internal
|
|
469
487
|
*/
|
|
@@ -473,14 +491,16 @@ var _KmsThrottlingException = class _KmsThrottlingException extends SFNServiceEx
|
|
|
473
491
|
$fault: "client",
|
|
474
492
|
...opts
|
|
475
493
|
});
|
|
476
|
-
this.name = "KmsThrottlingException";
|
|
477
|
-
this.$fault = "client";
|
|
478
494
|
Object.setPrototypeOf(this, _KmsThrottlingException.prototype);
|
|
479
495
|
}
|
|
480
496
|
};
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
497
|
+
var TooManyTags = class _TooManyTags extends SFNServiceException {
|
|
498
|
+
static {
|
|
499
|
+
__name(this, "TooManyTags");
|
|
500
|
+
}
|
|
501
|
+
name = "TooManyTags";
|
|
502
|
+
$fault = "client";
|
|
503
|
+
resourceName;
|
|
484
504
|
/**
|
|
485
505
|
* @internal
|
|
486
506
|
*/
|
|
@@ -490,15 +510,16 @@ var _TooManyTags = class _TooManyTags extends SFNServiceException {
|
|
|
490
510
|
$fault: "client",
|
|
491
511
|
...opts
|
|
492
512
|
});
|
|
493
|
-
this.name = "TooManyTags";
|
|
494
|
-
this.$fault = "client";
|
|
495
513
|
Object.setPrototypeOf(this, _TooManyTags.prototype);
|
|
496
514
|
this.resourceName = opts.resourceName;
|
|
497
515
|
}
|
|
498
516
|
};
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
517
|
+
var ConflictException = class _ConflictException extends SFNServiceException {
|
|
518
|
+
static {
|
|
519
|
+
__name(this, "ConflictException");
|
|
520
|
+
}
|
|
521
|
+
name = "ConflictException";
|
|
522
|
+
$fault = "client";
|
|
502
523
|
/**
|
|
503
524
|
* @internal
|
|
504
525
|
*/
|
|
@@ -508,13 +529,9 @@ var _ConflictException = class _ConflictException extends SFNServiceException {
|
|
|
508
529
|
$fault: "client",
|
|
509
530
|
...opts
|
|
510
531
|
});
|
|
511
|
-
this.name = "ConflictException";
|
|
512
|
-
this.$fault = "client";
|
|
513
532
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
514
533
|
}
|
|
515
534
|
};
|
|
516
|
-
__name(_ConflictException, "ConflictException");
|
|
517
|
-
var ConflictException = _ConflictException;
|
|
518
535
|
var LogLevel = {
|
|
519
536
|
ALL: "ALL",
|
|
520
537
|
ERROR: "ERROR",
|
|
@@ -525,7 +542,12 @@ var StateMachineType = {
|
|
|
525
542
|
EXPRESS: "EXPRESS",
|
|
526
543
|
STANDARD: "STANDARD"
|
|
527
544
|
};
|
|
528
|
-
var
|
|
545
|
+
var InvalidArn = class _InvalidArn extends SFNServiceException {
|
|
546
|
+
static {
|
|
547
|
+
__name(this, "InvalidArn");
|
|
548
|
+
}
|
|
549
|
+
name = "InvalidArn";
|
|
550
|
+
$fault = "client";
|
|
529
551
|
/**
|
|
530
552
|
* @internal
|
|
531
553
|
*/
|
|
@@ -535,14 +557,15 @@ var _InvalidArn = class _InvalidArn extends SFNServiceException {
|
|
|
535
557
|
$fault: "client",
|
|
536
558
|
...opts
|
|
537
559
|
});
|
|
538
|
-
this.name = "InvalidArn";
|
|
539
|
-
this.$fault = "client";
|
|
540
560
|
Object.setPrototypeOf(this, _InvalidArn.prototype);
|
|
541
561
|
}
|
|
542
562
|
};
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
563
|
+
var InvalidDefinition = class _InvalidDefinition extends SFNServiceException {
|
|
564
|
+
static {
|
|
565
|
+
__name(this, "InvalidDefinition");
|
|
566
|
+
}
|
|
567
|
+
name = "InvalidDefinition";
|
|
568
|
+
$fault = "client";
|
|
546
569
|
/**
|
|
547
570
|
* @internal
|
|
548
571
|
*/
|
|
@@ -552,14 +575,15 @@ var _InvalidDefinition = class _InvalidDefinition extends SFNServiceException {
|
|
|
552
575
|
$fault: "client",
|
|
553
576
|
...opts
|
|
554
577
|
});
|
|
555
|
-
this.name = "InvalidDefinition";
|
|
556
|
-
this.$fault = "client";
|
|
557
578
|
Object.setPrototypeOf(this, _InvalidDefinition.prototype);
|
|
558
579
|
}
|
|
559
580
|
};
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
581
|
+
var InvalidLoggingConfiguration = class _InvalidLoggingConfiguration extends SFNServiceException {
|
|
582
|
+
static {
|
|
583
|
+
__name(this, "InvalidLoggingConfiguration");
|
|
584
|
+
}
|
|
585
|
+
name = "InvalidLoggingConfiguration";
|
|
586
|
+
$fault = "client";
|
|
563
587
|
/**
|
|
564
588
|
* @internal
|
|
565
589
|
*/
|
|
@@ -569,14 +593,15 @@ var _InvalidLoggingConfiguration = class _InvalidLoggingConfiguration extends SF
|
|
|
569
593
|
$fault: "client",
|
|
570
594
|
...opts
|
|
571
595
|
});
|
|
572
|
-
this.name = "InvalidLoggingConfiguration";
|
|
573
|
-
this.$fault = "client";
|
|
574
596
|
Object.setPrototypeOf(this, _InvalidLoggingConfiguration.prototype);
|
|
575
597
|
}
|
|
576
598
|
};
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
599
|
+
var InvalidTracingConfiguration = class _InvalidTracingConfiguration extends SFNServiceException {
|
|
600
|
+
static {
|
|
601
|
+
__name(this, "InvalidTracingConfiguration");
|
|
602
|
+
}
|
|
603
|
+
name = "InvalidTracingConfiguration";
|
|
604
|
+
$fault = "client";
|
|
580
605
|
/**
|
|
581
606
|
* @internal
|
|
582
607
|
*/
|
|
@@ -586,14 +611,15 @@ var _InvalidTracingConfiguration = class _InvalidTracingConfiguration extends SF
|
|
|
586
611
|
$fault: "client",
|
|
587
612
|
...opts
|
|
588
613
|
});
|
|
589
|
-
this.name = "InvalidTracingConfiguration";
|
|
590
|
-
this.$fault = "client";
|
|
591
614
|
Object.setPrototypeOf(this, _InvalidTracingConfiguration.prototype);
|
|
592
615
|
}
|
|
593
616
|
};
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
617
|
+
var StateMachineAlreadyExists = class _StateMachineAlreadyExists extends SFNServiceException {
|
|
618
|
+
static {
|
|
619
|
+
__name(this, "StateMachineAlreadyExists");
|
|
620
|
+
}
|
|
621
|
+
name = "StateMachineAlreadyExists";
|
|
622
|
+
$fault = "client";
|
|
597
623
|
/**
|
|
598
624
|
* @internal
|
|
599
625
|
*/
|
|
@@ -603,14 +629,15 @@ var _StateMachineAlreadyExists = class _StateMachineAlreadyExists extends SFNSer
|
|
|
603
629
|
$fault: "client",
|
|
604
630
|
...opts
|
|
605
631
|
});
|
|
606
|
-
this.name = "StateMachineAlreadyExists";
|
|
607
|
-
this.$fault = "client";
|
|
608
632
|
Object.setPrototypeOf(this, _StateMachineAlreadyExists.prototype);
|
|
609
633
|
}
|
|
610
634
|
};
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
635
|
+
var StateMachineDeleting = class _StateMachineDeleting extends SFNServiceException {
|
|
636
|
+
static {
|
|
637
|
+
__name(this, "StateMachineDeleting");
|
|
638
|
+
}
|
|
639
|
+
name = "StateMachineDeleting";
|
|
640
|
+
$fault = "client";
|
|
614
641
|
/**
|
|
615
642
|
* @internal
|
|
616
643
|
*/
|
|
@@ -620,14 +647,15 @@ var _StateMachineDeleting = class _StateMachineDeleting extends SFNServiceExcept
|
|
|
620
647
|
$fault: "client",
|
|
621
648
|
...opts
|
|
622
649
|
});
|
|
623
|
-
this.name = "StateMachineDeleting";
|
|
624
|
-
this.$fault = "client";
|
|
625
650
|
Object.setPrototypeOf(this, _StateMachineDeleting.prototype);
|
|
626
651
|
}
|
|
627
652
|
};
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
653
|
+
var StateMachineLimitExceeded = class _StateMachineLimitExceeded extends SFNServiceException {
|
|
654
|
+
static {
|
|
655
|
+
__name(this, "StateMachineLimitExceeded");
|
|
656
|
+
}
|
|
657
|
+
name = "StateMachineLimitExceeded";
|
|
658
|
+
$fault = "client";
|
|
631
659
|
/**
|
|
632
660
|
* @internal
|
|
633
661
|
*/
|
|
@@ -637,14 +665,15 @@ var _StateMachineLimitExceeded = class _StateMachineLimitExceeded extends SFNSer
|
|
|
637
665
|
$fault: "client",
|
|
638
666
|
...opts
|
|
639
667
|
});
|
|
640
|
-
this.name = "StateMachineLimitExceeded";
|
|
641
|
-
this.$fault = "client";
|
|
642
668
|
Object.setPrototypeOf(this, _StateMachineLimitExceeded.prototype);
|
|
643
669
|
}
|
|
644
670
|
};
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
671
|
+
var StateMachineTypeNotSupported = class _StateMachineTypeNotSupported extends SFNServiceException {
|
|
672
|
+
static {
|
|
673
|
+
__name(this, "StateMachineTypeNotSupported");
|
|
674
|
+
}
|
|
675
|
+
name = "StateMachineTypeNotSupported";
|
|
676
|
+
$fault = "client";
|
|
648
677
|
/**
|
|
649
678
|
* @internal
|
|
650
679
|
*/
|
|
@@ -654,20 +683,26 @@ var _StateMachineTypeNotSupported = class _StateMachineTypeNotSupported extends
|
|
|
654
683
|
$fault: "client",
|
|
655
684
|
...opts
|
|
656
685
|
});
|
|
657
|
-
this.name = "StateMachineTypeNotSupported";
|
|
658
|
-
this.$fault = "client";
|
|
659
686
|
Object.setPrototypeOf(this, _StateMachineTypeNotSupported.prototype);
|
|
660
687
|
}
|
|
661
688
|
};
|
|
662
|
-
__name(_StateMachineTypeNotSupported, "StateMachineTypeNotSupported");
|
|
663
|
-
var StateMachineTypeNotSupported = _StateMachineTypeNotSupported;
|
|
664
689
|
var ValidationExceptionReason = {
|
|
665
690
|
API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS",
|
|
666
691
|
CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN",
|
|
667
692
|
INVALID_ROUTING_CONFIGURATION: "INVALID_ROUTING_CONFIGURATION",
|
|
668
693
|
MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER"
|
|
669
694
|
};
|
|
670
|
-
var
|
|
695
|
+
var ValidationException = class _ValidationException extends SFNServiceException {
|
|
696
|
+
static {
|
|
697
|
+
__name(this, "ValidationException");
|
|
698
|
+
}
|
|
699
|
+
name = "ValidationException";
|
|
700
|
+
$fault = "client";
|
|
701
|
+
/**
|
|
702
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
703
|
+
* @public
|
|
704
|
+
*/
|
|
705
|
+
reason;
|
|
671
706
|
/**
|
|
672
707
|
* @internal
|
|
673
708
|
*/
|
|
@@ -677,15 +712,17 @@ var _ValidationException = class _ValidationException extends SFNServiceExceptio
|
|
|
677
712
|
$fault: "client",
|
|
678
713
|
...opts
|
|
679
714
|
});
|
|
680
|
-
this.name = "ValidationException";
|
|
681
|
-
this.$fault = "client";
|
|
682
715
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
683
716
|
this.reason = opts.reason;
|
|
684
717
|
}
|
|
685
718
|
};
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
719
|
+
var ResourceNotFound = class _ResourceNotFound extends SFNServiceException {
|
|
720
|
+
static {
|
|
721
|
+
__name(this, "ResourceNotFound");
|
|
722
|
+
}
|
|
723
|
+
name = "ResourceNotFound";
|
|
724
|
+
$fault = "client";
|
|
725
|
+
resourceName;
|
|
689
726
|
/**
|
|
690
727
|
* @internal
|
|
691
728
|
*/
|
|
@@ -695,15 +732,16 @@ var _ResourceNotFound = class _ResourceNotFound extends SFNServiceException {
|
|
|
695
732
|
$fault: "client",
|
|
696
733
|
...opts
|
|
697
734
|
});
|
|
698
|
-
this.name = "ResourceNotFound";
|
|
699
|
-
this.$fault = "client";
|
|
700
735
|
Object.setPrototypeOf(this, _ResourceNotFound.prototype);
|
|
701
736
|
this.resourceName = opts.resourceName;
|
|
702
737
|
}
|
|
703
738
|
};
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
739
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends SFNServiceException {
|
|
740
|
+
static {
|
|
741
|
+
__name(this, "ServiceQuotaExceededException");
|
|
742
|
+
}
|
|
743
|
+
name = "ServiceQuotaExceededException";
|
|
744
|
+
$fault = "client";
|
|
707
745
|
/**
|
|
708
746
|
* @internal
|
|
709
747
|
*/
|
|
@@ -713,13 +751,9 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
713
751
|
$fault: "client",
|
|
714
752
|
...opts
|
|
715
753
|
});
|
|
716
|
-
this.name = "ServiceQuotaExceededException";
|
|
717
|
-
this.$fault = "client";
|
|
718
754
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
719
755
|
}
|
|
720
756
|
};
|
|
721
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
722
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
723
757
|
var IncludedData = {
|
|
724
758
|
ALL_DATA: "ALL_DATA",
|
|
725
759
|
METADATA_ONLY: "METADATA_ONLY"
|
|
@@ -737,7 +771,12 @@ var ExecutionStatus = {
|
|
|
737
771
|
SUCCEEDED: "SUCCEEDED",
|
|
738
772
|
TIMED_OUT: "TIMED_OUT"
|
|
739
773
|
};
|
|
740
|
-
var
|
|
774
|
+
var ExecutionDoesNotExist = class _ExecutionDoesNotExist extends SFNServiceException {
|
|
775
|
+
static {
|
|
776
|
+
__name(this, "ExecutionDoesNotExist");
|
|
777
|
+
}
|
|
778
|
+
name = "ExecutionDoesNotExist";
|
|
779
|
+
$fault = "client";
|
|
741
780
|
/**
|
|
742
781
|
* @internal
|
|
743
782
|
*/
|
|
@@ -747,13 +786,9 @@ var _ExecutionDoesNotExist = class _ExecutionDoesNotExist extends SFNServiceExce
|
|
|
747
786
|
$fault: "client",
|
|
748
787
|
...opts
|
|
749
788
|
});
|
|
750
|
-
this.name = "ExecutionDoesNotExist";
|
|
751
|
-
this.$fault = "client";
|
|
752
789
|
Object.setPrototypeOf(this, _ExecutionDoesNotExist.prototype);
|
|
753
790
|
}
|
|
754
791
|
};
|
|
755
|
-
__name(_ExecutionDoesNotExist, "ExecutionDoesNotExist");
|
|
756
|
-
var ExecutionDoesNotExist = _ExecutionDoesNotExist;
|
|
757
792
|
var KmsKeyState = {
|
|
758
793
|
CREATING: "CREATING",
|
|
759
794
|
DISABLED: "DISABLED",
|
|
@@ -761,7 +796,17 @@ var KmsKeyState = {
|
|
|
761
796
|
PENDING_IMPORT: "PENDING_IMPORT",
|
|
762
797
|
UNAVAILABLE: "UNAVAILABLE"
|
|
763
798
|
};
|
|
764
|
-
var
|
|
799
|
+
var KmsInvalidStateException = class _KmsInvalidStateException extends SFNServiceException {
|
|
800
|
+
static {
|
|
801
|
+
__name(this, "KmsInvalidStateException");
|
|
802
|
+
}
|
|
803
|
+
name = "KmsInvalidStateException";
|
|
804
|
+
$fault = "client";
|
|
805
|
+
/**
|
|
806
|
+
* <p>Current status of the KMS; key. For example: <code>DISABLED</code>, <code>PENDING_DELETION</code>, <code>PENDING_IMPORT</code>, <code>UNAVAILABLE</code>, <code>CREATING</code>.</p>
|
|
807
|
+
* @public
|
|
808
|
+
*/
|
|
809
|
+
kmsKeyState;
|
|
765
810
|
/**
|
|
766
811
|
* @internal
|
|
767
812
|
*/
|
|
@@ -771,14 +816,10 @@ var _KmsInvalidStateException = class _KmsInvalidStateException extends SFNServi
|
|
|
771
816
|
$fault: "client",
|
|
772
817
|
...opts
|
|
773
818
|
});
|
|
774
|
-
this.name = "KmsInvalidStateException";
|
|
775
|
-
this.$fault = "client";
|
|
776
819
|
Object.setPrototypeOf(this, _KmsInvalidStateException.prototype);
|
|
777
820
|
this.kmsKeyState = opts.kmsKeyState;
|
|
778
821
|
}
|
|
779
822
|
};
|
|
780
|
-
__name(_KmsInvalidStateException, "KmsInvalidStateException");
|
|
781
|
-
var KmsInvalidStateException = _KmsInvalidStateException;
|
|
782
823
|
var MapRunStatus = {
|
|
783
824
|
ABORTED: "ABORTED",
|
|
784
825
|
FAILED: "FAILED",
|
|
@@ -789,7 +830,12 @@ var StateMachineStatus = {
|
|
|
789
830
|
ACTIVE: "ACTIVE",
|
|
790
831
|
DELETING: "DELETING"
|
|
791
832
|
};
|
|
792
|
-
var
|
|
833
|
+
var StateMachineDoesNotExist = class _StateMachineDoesNotExist extends SFNServiceException {
|
|
834
|
+
static {
|
|
835
|
+
__name(this, "StateMachineDoesNotExist");
|
|
836
|
+
}
|
|
837
|
+
name = "StateMachineDoesNotExist";
|
|
838
|
+
$fault = "client";
|
|
793
839
|
/**
|
|
794
840
|
* @internal
|
|
795
841
|
*/
|
|
@@ -799,13 +845,9 @@ var _StateMachineDoesNotExist = class _StateMachineDoesNotExist extends SFNServi
|
|
|
799
845
|
$fault: "client",
|
|
800
846
|
...opts
|
|
801
847
|
});
|
|
802
|
-
this.name = "StateMachineDoesNotExist";
|
|
803
|
-
this.$fault = "client";
|
|
804
848
|
Object.setPrototypeOf(this, _StateMachineDoesNotExist.prototype);
|
|
805
849
|
}
|
|
806
850
|
};
|
|
807
|
-
__name(_StateMachineDoesNotExist, "StateMachineDoesNotExist");
|
|
808
|
-
var StateMachineDoesNotExist = _StateMachineDoesNotExist;
|
|
809
851
|
var HistoryEventType = {
|
|
810
852
|
ActivityFailed: "ActivityFailed",
|
|
811
853
|
ActivityScheduleFailed: "ActivityScheduleFailed",
|
|
@@ -870,7 +912,12 @@ var HistoryEventType = {
|
|
|
870
912
|
WaitStateEntered: "WaitStateEntered",
|
|
871
913
|
WaitStateExited: "WaitStateExited"
|
|
872
914
|
};
|
|
873
|
-
var
|
|
915
|
+
var InvalidToken = class _InvalidToken extends SFNServiceException {
|
|
916
|
+
static {
|
|
917
|
+
__name(this, "InvalidToken");
|
|
918
|
+
}
|
|
919
|
+
name = "InvalidToken";
|
|
920
|
+
$fault = "client";
|
|
874
921
|
/**
|
|
875
922
|
* @internal
|
|
876
923
|
*/
|
|
@@ -880,18 +927,19 @@ var _InvalidToken = class _InvalidToken extends SFNServiceException {
|
|
|
880
927
|
$fault: "client",
|
|
881
928
|
...opts
|
|
882
929
|
});
|
|
883
|
-
this.name = "InvalidToken";
|
|
884
|
-
this.$fault = "client";
|
|
885
930
|
Object.setPrototypeOf(this, _InvalidToken.prototype);
|
|
886
931
|
}
|
|
887
932
|
};
|
|
888
|
-
__name(_InvalidToken, "InvalidToken");
|
|
889
|
-
var InvalidToken = _InvalidToken;
|
|
890
933
|
var ExecutionRedriveFilter = {
|
|
891
934
|
NOT_REDRIVEN: "NOT_REDRIVEN",
|
|
892
935
|
REDRIVEN: "REDRIVEN"
|
|
893
936
|
};
|
|
894
|
-
var
|
|
937
|
+
var ExecutionLimitExceeded = class _ExecutionLimitExceeded extends SFNServiceException {
|
|
938
|
+
static {
|
|
939
|
+
__name(this, "ExecutionLimitExceeded");
|
|
940
|
+
}
|
|
941
|
+
name = "ExecutionLimitExceeded";
|
|
942
|
+
$fault = "client";
|
|
895
943
|
/**
|
|
896
944
|
* @internal
|
|
897
945
|
*/
|
|
@@ -901,14 +949,15 @@ var _ExecutionLimitExceeded = class _ExecutionLimitExceeded extends SFNServiceEx
|
|
|
901
949
|
$fault: "client",
|
|
902
950
|
...opts
|
|
903
951
|
});
|
|
904
|
-
this.name = "ExecutionLimitExceeded";
|
|
905
|
-
this.$fault = "client";
|
|
906
952
|
Object.setPrototypeOf(this, _ExecutionLimitExceeded.prototype);
|
|
907
953
|
}
|
|
908
954
|
};
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
955
|
+
var ExecutionNotRedrivable = class _ExecutionNotRedrivable extends SFNServiceException {
|
|
956
|
+
static {
|
|
957
|
+
__name(this, "ExecutionNotRedrivable");
|
|
958
|
+
}
|
|
959
|
+
name = "ExecutionNotRedrivable";
|
|
960
|
+
$fault = "client";
|
|
912
961
|
/**
|
|
913
962
|
* @internal
|
|
914
963
|
*/
|
|
@@ -918,14 +967,15 @@ var _ExecutionNotRedrivable = class _ExecutionNotRedrivable extends SFNServiceEx
|
|
|
918
967
|
$fault: "client",
|
|
919
968
|
...opts
|
|
920
969
|
});
|
|
921
|
-
this.name = "ExecutionNotRedrivable";
|
|
922
|
-
this.$fault = "client";
|
|
923
970
|
Object.setPrototypeOf(this, _ExecutionNotRedrivable.prototype);
|
|
924
971
|
}
|
|
925
972
|
};
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
973
|
+
var TaskDoesNotExist = class _TaskDoesNotExist extends SFNServiceException {
|
|
974
|
+
static {
|
|
975
|
+
__name(this, "TaskDoesNotExist");
|
|
976
|
+
}
|
|
977
|
+
name = "TaskDoesNotExist";
|
|
978
|
+
$fault = "client";
|
|
929
979
|
/**
|
|
930
980
|
* @internal
|
|
931
981
|
*/
|
|
@@ -935,14 +985,15 @@ var _TaskDoesNotExist = class _TaskDoesNotExist extends SFNServiceException {
|
|
|
935
985
|
$fault: "client",
|
|
936
986
|
...opts
|
|
937
987
|
});
|
|
938
|
-
this.name = "TaskDoesNotExist";
|
|
939
|
-
this.$fault = "client";
|
|
940
988
|
Object.setPrototypeOf(this, _TaskDoesNotExist.prototype);
|
|
941
989
|
}
|
|
942
990
|
};
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
991
|
+
var TaskTimedOut = class _TaskTimedOut extends SFNServiceException {
|
|
992
|
+
static {
|
|
993
|
+
__name(this, "TaskTimedOut");
|
|
994
|
+
}
|
|
995
|
+
name = "TaskTimedOut";
|
|
996
|
+
$fault = "client";
|
|
946
997
|
/**
|
|
947
998
|
* @internal
|
|
948
999
|
*/
|
|
@@ -952,14 +1003,15 @@ var _TaskTimedOut = class _TaskTimedOut extends SFNServiceException {
|
|
|
952
1003
|
$fault: "client",
|
|
953
1004
|
...opts
|
|
954
1005
|
});
|
|
955
|
-
this.name = "TaskTimedOut";
|
|
956
|
-
this.$fault = "client";
|
|
957
1006
|
Object.setPrototypeOf(this, _TaskTimedOut.prototype);
|
|
958
1007
|
}
|
|
959
1008
|
};
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
1009
|
+
var InvalidOutput = class _InvalidOutput extends SFNServiceException {
|
|
1010
|
+
static {
|
|
1011
|
+
__name(this, "InvalidOutput");
|
|
1012
|
+
}
|
|
1013
|
+
name = "InvalidOutput";
|
|
1014
|
+
$fault = "client";
|
|
963
1015
|
/**
|
|
964
1016
|
* @internal
|
|
965
1017
|
*/
|
|
@@ -969,14 +1021,15 @@ var _InvalidOutput = class _InvalidOutput extends SFNServiceException {
|
|
|
969
1021
|
$fault: "client",
|
|
970
1022
|
...opts
|
|
971
1023
|
});
|
|
972
|
-
this.name = "InvalidOutput";
|
|
973
|
-
this.$fault = "client";
|
|
974
1024
|
Object.setPrototypeOf(this, _InvalidOutput.prototype);
|
|
975
1025
|
}
|
|
976
1026
|
};
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
1027
|
+
var ExecutionAlreadyExists = class _ExecutionAlreadyExists extends SFNServiceException {
|
|
1028
|
+
static {
|
|
1029
|
+
__name(this, "ExecutionAlreadyExists");
|
|
1030
|
+
}
|
|
1031
|
+
name = "ExecutionAlreadyExists";
|
|
1032
|
+
$fault = "client";
|
|
980
1033
|
/**
|
|
981
1034
|
* @internal
|
|
982
1035
|
*/
|
|
@@ -986,14 +1039,15 @@ var _ExecutionAlreadyExists = class _ExecutionAlreadyExists extends SFNServiceEx
|
|
|
986
1039
|
$fault: "client",
|
|
987
1040
|
...opts
|
|
988
1041
|
});
|
|
989
|
-
this.name = "ExecutionAlreadyExists";
|
|
990
|
-
this.$fault = "client";
|
|
991
1042
|
Object.setPrototypeOf(this, _ExecutionAlreadyExists.prototype);
|
|
992
1043
|
}
|
|
993
1044
|
};
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
1045
|
+
var InvalidExecutionInput = class _InvalidExecutionInput extends SFNServiceException {
|
|
1046
|
+
static {
|
|
1047
|
+
__name(this, "InvalidExecutionInput");
|
|
1048
|
+
}
|
|
1049
|
+
name = "InvalidExecutionInput";
|
|
1050
|
+
$fault = "client";
|
|
997
1051
|
/**
|
|
998
1052
|
* @internal
|
|
999
1053
|
*/
|
|
@@ -1003,13 +1057,9 @@ var _InvalidExecutionInput = class _InvalidExecutionInput extends SFNServiceExce
|
|
|
1003
1057
|
$fault: "client",
|
|
1004
1058
|
...opts
|
|
1005
1059
|
});
|
|
1006
|
-
this.name = "InvalidExecutionInput";
|
|
1007
|
-
this.$fault = "client";
|
|
1008
1060
|
Object.setPrototypeOf(this, _InvalidExecutionInput.prototype);
|
|
1009
1061
|
}
|
|
1010
1062
|
};
|
|
1011
|
-
__name(_InvalidExecutionInput, "InvalidExecutionInput");
|
|
1012
|
-
var InvalidExecutionInput = _InvalidExecutionInput;
|
|
1013
1063
|
var SyncExecutionStatus = {
|
|
1014
1064
|
FAILED: "FAILED",
|
|
1015
1065
|
SUCCEEDED: "SUCCEEDED",
|
|
@@ -1026,7 +1076,12 @@ var TestExecutionStatus = {
|
|
|
1026
1076
|
RETRIABLE: "RETRIABLE",
|
|
1027
1077
|
SUCCEEDED: "SUCCEEDED"
|
|
1028
1078
|
};
|
|
1029
|
-
var
|
|
1079
|
+
var MissingRequiredParameter = class _MissingRequiredParameter extends SFNServiceException {
|
|
1080
|
+
static {
|
|
1081
|
+
__name(this, "MissingRequiredParameter");
|
|
1082
|
+
}
|
|
1083
|
+
name = "MissingRequiredParameter";
|
|
1084
|
+
$fault = "client";
|
|
1030
1085
|
/**
|
|
1031
1086
|
* @internal
|
|
1032
1087
|
*/
|
|
@@ -1036,13 +1091,9 @@ var _MissingRequiredParameter = class _MissingRequiredParameter extends SFNServi
|
|
|
1036
1091
|
$fault: "client",
|
|
1037
1092
|
...opts
|
|
1038
1093
|
});
|
|
1039
|
-
this.name = "MissingRequiredParameter";
|
|
1040
|
-
this.$fault = "client";
|
|
1041
1094
|
Object.setPrototypeOf(this, _MissingRequiredParameter.prototype);
|
|
1042
1095
|
}
|
|
1043
1096
|
};
|
|
1044
|
-
__name(_MissingRequiredParameter, "MissingRequiredParameter");
|
|
1045
|
-
var MissingRequiredParameter = _MissingRequiredParameter;
|
|
1046
1097
|
var ValidateStateMachineDefinitionSeverity = {
|
|
1047
1098
|
ERROR: "ERROR",
|
|
1048
1099
|
WARNING: "WARNING"
|
|
@@ -2922,519 +2973,556 @@ function sharedHeaders(operation) {
|
|
|
2922
2973
|
__name(sharedHeaders, "sharedHeaders");
|
|
2923
2974
|
|
|
2924
2975
|
// src/commands/CreateActivityCommand.ts
|
|
2925
|
-
var
|
|
2976
|
+
var CreateActivityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2926
2977
|
return [
|
|
2927
2978
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2928
2979
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2929
2980
|
];
|
|
2930
2981
|
}).s("AWSStepFunctions", "CreateActivity", {}).n("SFNClient", "CreateActivityCommand").f(void 0, void 0).ser(se_CreateActivityCommand).de(de_CreateActivityCommand).build() {
|
|
2982
|
+
static {
|
|
2983
|
+
__name(this, "CreateActivityCommand");
|
|
2984
|
+
}
|
|
2931
2985
|
};
|
|
2932
|
-
__name(_CreateActivityCommand, "CreateActivityCommand");
|
|
2933
|
-
var CreateActivityCommand = _CreateActivityCommand;
|
|
2934
2986
|
|
|
2935
2987
|
// src/commands/CreateStateMachineAliasCommand.ts
|
|
2936
2988
|
|
|
2937
2989
|
|
|
2938
2990
|
|
|
2939
|
-
var
|
|
2991
|
+
var CreateStateMachineAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2940
2992
|
return [
|
|
2941
2993
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2942
2994
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2943
2995
|
];
|
|
2944
2996
|
}).s("AWSStepFunctions", "CreateStateMachineAlias", {}).n("SFNClient", "CreateStateMachineAliasCommand").f(CreateStateMachineAliasInputFilterSensitiveLog, void 0).ser(se_CreateStateMachineAliasCommand).de(de_CreateStateMachineAliasCommand).build() {
|
|
2997
|
+
static {
|
|
2998
|
+
__name(this, "CreateStateMachineAliasCommand");
|
|
2999
|
+
}
|
|
2945
3000
|
};
|
|
2946
|
-
__name(_CreateStateMachineAliasCommand, "CreateStateMachineAliasCommand");
|
|
2947
|
-
var CreateStateMachineAliasCommand = _CreateStateMachineAliasCommand;
|
|
2948
3001
|
|
|
2949
3002
|
// src/commands/CreateStateMachineCommand.ts
|
|
2950
3003
|
|
|
2951
3004
|
|
|
2952
3005
|
|
|
2953
|
-
var
|
|
3006
|
+
var CreateStateMachineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2954
3007
|
return [
|
|
2955
3008
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2956
3009
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2957
3010
|
];
|
|
2958
3011
|
}).s("AWSStepFunctions", "CreateStateMachine", {}).n("SFNClient", "CreateStateMachineCommand").f(CreateStateMachineInputFilterSensitiveLog, void 0).ser(se_CreateStateMachineCommand).de(de_CreateStateMachineCommand).build() {
|
|
3012
|
+
static {
|
|
3013
|
+
__name(this, "CreateStateMachineCommand");
|
|
3014
|
+
}
|
|
2959
3015
|
};
|
|
2960
|
-
__name(_CreateStateMachineCommand, "CreateStateMachineCommand");
|
|
2961
|
-
var CreateStateMachineCommand = _CreateStateMachineCommand;
|
|
2962
3016
|
|
|
2963
3017
|
// src/commands/DeleteActivityCommand.ts
|
|
2964
3018
|
|
|
2965
3019
|
|
|
2966
3020
|
|
|
2967
|
-
var
|
|
3021
|
+
var DeleteActivityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2968
3022
|
return [
|
|
2969
3023
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2970
3024
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2971
3025
|
];
|
|
2972
3026
|
}).s("AWSStepFunctions", "DeleteActivity", {}).n("SFNClient", "DeleteActivityCommand").f(void 0, void 0).ser(se_DeleteActivityCommand).de(de_DeleteActivityCommand).build() {
|
|
3027
|
+
static {
|
|
3028
|
+
__name(this, "DeleteActivityCommand");
|
|
3029
|
+
}
|
|
2973
3030
|
};
|
|
2974
|
-
__name(_DeleteActivityCommand, "DeleteActivityCommand");
|
|
2975
|
-
var DeleteActivityCommand = _DeleteActivityCommand;
|
|
2976
3031
|
|
|
2977
3032
|
// src/commands/DeleteStateMachineAliasCommand.ts
|
|
2978
3033
|
|
|
2979
3034
|
|
|
2980
3035
|
|
|
2981
|
-
var
|
|
3036
|
+
var DeleteStateMachineAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2982
3037
|
return [
|
|
2983
3038
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2984
3039
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2985
3040
|
];
|
|
2986
3041
|
}).s("AWSStepFunctions", "DeleteStateMachineAlias", {}).n("SFNClient", "DeleteStateMachineAliasCommand").f(void 0, void 0).ser(se_DeleteStateMachineAliasCommand).de(de_DeleteStateMachineAliasCommand).build() {
|
|
3042
|
+
static {
|
|
3043
|
+
__name(this, "DeleteStateMachineAliasCommand");
|
|
3044
|
+
}
|
|
2987
3045
|
};
|
|
2988
|
-
__name(_DeleteStateMachineAliasCommand, "DeleteStateMachineAliasCommand");
|
|
2989
|
-
var DeleteStateMachineAliasCommand = _DeleteStateMachineAliasCommand;
|
|
2990
3046
|
|
|
2991
3047
|
// src/commands/DeleteStateMachineCommand.ts
|
|
2992
3048
|
|
|
2993
3049
|
|
|
2994
3050
|
|
|
2995
|
-
var
|
|
3051
|
+
var DeleteStateMachineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2996
3052
|
return [
|
|
2997
3053
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2998
3054
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2999
3055
|
];
|
|
3000
3056
|
}).s("AWSStepFunctions", "DeleteStateMachine", {}).n("SFNClient", "DeleteStateMachineCommand").f(void 0, void 0).ser(se_DeleteStateMachineCommand).de(de_DeleteStateMachineCommand).build() {
|
|
3057
|
+
static {
|
|
3058
|
+
__name(this, "DeleteStateMachineCommand");
|
|
3059
|
+
}
|
|
3001
3060
|
};
|
|
3002
|
-
__name(_DeleteStateMachineCommand, "DeleteStateMachineCommand");
|
|
3003
|
-
var DeleteStateMachineCommand = _DeleteStateMachineCommand;
|
|
3004
3061
|
|
|
3005
3062
|
// src/commands/DeleteStateMachineVersionCommand.ts
|
|
3006
3063
|
|
|
3007
3064
|
|
|
3008
3065
|
|
|
3009
|
-
var
|
|
3066
|
+
var DeleteStateMachineVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3010
3067
|
return [
|
|
3011
3068
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3012
3069
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3013
3070
|
];
|
|
3014
3071
|
}).s("AWSStepFunctions", "DeleteStateMachineVersion", {}).n("SFNClient", "DeleteStateMachineVersionCommand").f(void 0, void 0).ser(se_DeleteStateMachineVersionCommand).de(de_DeleteStateMachineVersionCommand).build() {
|
|
3072
|
+
static {
|
|
3073
|
+
__name(this, "DeleteStateMachineVersionCommand");
|
|
3074
|
+
}
|
|
3015
3075
|
};
|
|
3016
|
-
__name(_DeleteStateMachineVersionCommand, "DeleteStateMachineVersionCommand");
|
|
3017
|
-
var DeleteStateMachineVersionCommand = _DeleteStateMachineVersionCommand;
|
|
3018
3076
|
|
|
3019
3077
|
// src/commands/DescribeActivityCommand.ts
|
|
3020
3078
|
|
|
3021
3079
|
|
|
3022
3080
|
|
|
3023
|
-
var
|
|
3081
|
+
var DescribeActivityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3024
3082
|
return [
|
|
3025
3083
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3026
3084
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3027
3085
|
];
|
|
3028
3086
|
}).s("AWSStepFunctions", "DescribeActivity", {}).n("SFNClient", "DescribeActivityCommand").f(void 0, void 0).ser(se_DescribeActivityCommand).de(de_DescribeActivityCommand).build() {
|
|
3087
|
+
static {
|
|
3088
|
+
__name(this, "DescribeActivityCommand");
|
|
3089
|
+
}
|
|
3029
3090
|
};
|
|
3030
|
-
__name(_DescribeActivityCommand, "DescribeActivityCommand");
|
|
3031
|
-
var DescribeActivityCommand = _DescribeActivityCommand;
|
|
3032
3091
|
|
|
3033
3092
|
// src/commands/DescribeExecutionCommand.ts
|
|
3034
3093
|
|
|
3035
3094
|
|
|
3036
3095
|
|
|
3037
|
-
var
|
|
3096
|
+
var DescribeExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3038
3097
|
return [
|
|
3039
3098
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3040
3099
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3041
3100
|
];
|
|
3042
3101
|
}).s("AWSStepFunctions", "DescribeExecution", {}).n("SFNClient", "DescribeExecutionCommand").f(void 0, DescribeExecutionOutputFilterSensitiveLog).ser(se_DescribeExecutionCommand).de(de_DescribeExecutionCommand).build() {
|
|
3102
|
+
static {
|
|
3103
|
+
__name(this, "DescribeExecutionCommand");
|
|
3104
|
+
}
|
|
3043
3105
|
};
|
|
3044
|
-
__name(_DescribeExecutionCommand, "DescribeExecutionCommand");
|
|
3045
|
-
var DescribeExecutionCommand = _DescribeExecutionCommand;
|
|
3046
3106
|
|
|
3047
3107
|
// src/commands/DescribeMapRunCommand.ts
|
|
3048
3108
|
|
|
3049
3109
|
|
|
3050
3110
|
|
|
3051
|
-
var
|
|
3111
|
+
var DescribeMapRunCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3052
3112
|
return [
|
|
3053
3113
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3054
3114
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3055
3115
|
];
|
|
3056
3116
|
}).s("AWSStepFunctions", "DescribeMapRun", {}).n("SFNClient", "DescribeMapRunCommand").f(void 0, void 0).ser(se_DescribeMapRunCommand).de(de_DescribeMapRunCommand).build() {
|
|
3117
|
+
static {
|
|
3118
|
+
__name(this, "DescribeMapRunCommand");
|
|
3119
|
+
}
|
|
3057
3120
|
};
|
|
3058
|
-
__name(_DescribeMapRunCommand, "DescribeMapRunCommand");
|
|
3059
|
-
var DescribeMapRunCommand = _DescribeMapRunCommand;
|
|
3060
3121
|
|
|
3061
3122
|
// src/commands/DescribeStateMachineAliasCommand.ts
|
|
3062
3123
|
|
|
3063
3124
|
|
|
3064
3125
|
|
|
3065
|
-
var
|
|
3126
|
+
var DescribeStateMachineAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3066
3127
|
return [
|
|
3067
3128
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3068
3129
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3069
3130
|
];
|
|
3070
3131
|
}).s("AWSStepFunctions", "DescribeStateMachineAlias", {}).n("SFNClient", "DescribeStateMachineAliasCommand").f(void 0, DescribeStateMachineAliasOutputFilterSensitiveLog).ser(se_DescribeStateMachineAliasCommand).de(de_DescribeStateMachineAliasCommand).build() {
|
|
3132
|
+
static {
|
|
3133
|
+
__name(this, "DescribeStateMachineAliasCommand");
|
|
3134
|
+
}
|
|
3071
3135
|
};
|
|
3072
|
-
__name(_DescribeStateMachineAliasCommand, "DescribeStateMachineAliasCommand");
|
|
3073
|
-
var DescribeStateMachineAliasCommand = _DescribeStateMachineAliasCommand;
|
|
3074
3136
|
|
|
3075
3137
|
// src/commands/DescribeStateMachineCommand.ts
|
|
3076
3138
|
|
|
3077
3139
|
|
|
3078
3140
|
|
|
3079
|
-
var
|
|
3141
|
+
var DescribeStateMachineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3080
3142
|
return [
|
|
3081
3143
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3082
3144
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3083
3145
|
];
|
|
3084
3146
|
}).s("AWSStepFunctions", "DescribeStateMachine", {}).n("SFNClient", "DescribeStateMachineCommand").f(void 0, DescribeStateMachineOutputFilterSensitiveLog).ser(se_DescribeStateMachineCommand).de(de_DescribeStateMachineCommand).build() {
|
|
3147
|
+
static {
|
|
3148
|
+
__name(this, "DescribeStateMachineCommand");
|
|
3149
|
+
}
|
|
3085
3150
|
};
|
|
3086
|
-
__name(_DescribeStateMachineCommand, "DescribeStateMachineCommand");
|
|
3087
|
-
var DescribeStateMachineCommand = _DescribeStateMachineCommand;
|
|
3088
3151
|
|
|
3089
3152
|
// src/commands/DescribeStateMachineForExecutionCommand.ts
|
|
3090
3153
|
|
|
3091
3154
|
|
|
3092
3155
|
|
|
3093
|
-
var
|
|
3156
|
+
var DescribeStateMachineForExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3094
3157
|
return [
|
|
3095
3158
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3096
3159
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3097
3160
|
];
|
|
3098
3161
|
}).s("AWSStepFunctions", "DescribeStateMachineForExecution", {}).n("SFNClient", "DescribeStateMachineForExecutionCommand").f(void 0, DescribeStateMachineForExecutionOutputFilterSensitiveLog).ser(se_DescribeStateMachineForExecutionCommand).de(de_DescribeStateMachineForExecutionCommand).build() {
|
|
3162
|
+
static {
|
|
3163
|
+
__name(this, "DescribeStateMachineForExecutionCommand");
|
|
3164
|
+
}
|
|
3099
3165
|
};
|
|
3100
|
-
__name(_DescribeStateMachineForExecutionCommand, "DescribeStateMachineForExecutionCommand");
|
|
3101
|
-
var DescribeStateMachineForExecutionCommand = _DescribeStateMachineForExecutionCommand;
|
|
3102
3166
|
|
|
3103
3167
|
// src/commands/GetActivityTaskCommand.ts
|
|
3104
3168
|
|
|
3105
3169
|
|
|
3106
3170
|
|
|
3107
|
-
var
|
|
3171
|
+
var GetActivityTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3108
3172
|
return [
|
|
3109
3173
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3110
3174
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3111
3175
|
];
|
|
3112
3176
|
}).s("AWSStepFunctions", "GetActivityTask", {}).n("SFNClient", "GetActivityTaskCommand").f(void 0, GetActivityTaskOutputFilterSensitiveLog).ser(se_GetActivityTaskCommand).de(de_GetActivityTaskCommand).build() {
|
|
3177
|
+
static {
|
|
3178
|
+
__name(this, "GetActivityTaskCommand");
|
|
3179
|
+
}
|
|
3113
3180
|
};
|
|
3114
|
-
__name(_GetActivityTaskCommand, "GetActivityTaskCommand");
|
|
3115
|
-
var GetActivityTaskCommand = _GetActivityTaskCommand;
|
|
3116
3181
|
|
|
3117
3182
|
// src/commands/GetExecutionHistoryCommand.ts
|
|
3118
3183
|
|
|
3119
3184
|
|
|
3120
3185
|
|
|
3121
|
-
var
|
|
3186
|
+
var GetExecutionHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3122
3187
|
return [
|
|
3123
3188
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3124
3189
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3125
3190
|
];
|
|
3126
3191
|
}).s("AWSStepFunctions", "GetExecutionHistory", {}).n("SFNClient", "GetExecutionHistoryCommand").f(void 0, GetExecutionHistoryOutputFilterSensitiveLog).ser(se_GetExecutionHistoryCommand).de(de_GetExecutionHistoryCommand).build() {
|
|
3192
|
+
static {
|
|
3193
|
+
__name(this, "GetExecutionHistoryCommand");
|
|
3194
|
+
}
|
|
3127
3195
|
};
|
|
3128
|
-
__name(_GetExecutionHistoryCommand, "GetExecutionHistoryCommand");
|
|
3129
|
-
var GetExecutionHistoryCommand = _GetExecutionHistoryCommand;
|
|
3130
3196
|
|
|
3131
3197
|
// src/commands/ListActivitiesCommand.ts
|
|
3132
3198
|
|
|
3133
3199
|
|
|
3134
3200
|
|
|
3135
|
-
var
|
|
3201
|
+
var ListActivitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3136
3202
|
return [
|
|
3137
3203
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3138
3204
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3139
3205
|
];
|
|
3140
3206
|
}).s("AWSStepFunctions", "ListActivities", {}).n("SFNClient", "ListActivitiesCommand").f(void 0, void 0).ser(se_ListActivitiesCommand).de(de_ListActivitiesCommand).build() {
|
|
3207
|
+
static {
|
|
3208
|
+
__name(this, "ListActivitiesCommand");
|
|
3209
|
+
}
|
|
3141
3210
|
};
|
|
3142
|
-
__name(_ListActivitiesCommand, "ListActivitiesCommand");
|
|
3143
|
-
var ListActivitiesCommand = _ListActivitiesCommand;
|
|
3144
3211
|
|
|
3145
3212
|
// src/commands/ListExecutionsCommand.ts
|
|
3146
3213
|
|
|
3147
3214
|
|
|
3148
3215
|
|
|
3149
|
-
var
|
|
3216
|
+
var ListExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3150
3217
|
return [
|
|
3151
3218
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3152
3219
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3153
3220
|
];
|
|
3154
3221
|
}).s("AWSStepFunctions", "ListExecutions", {}).n("SFNClient", "ListExecutionsCommand").f(void 0, void 0).ser(se_ListExecutionsCommand).de(de_ListExecutionsCommand).build() {
|
|
3222
|
+
static {
|
|
3223
|
+
__name(this, "ListExecutionsCommand");
|
|
3224
|
+
}
|
|
3155
3225
|
};
|
|
3156
|
-
__name(_ListExecutionsCommand, "ListExecutionsCommand");
|
|
3157
|
-
var ListExecutionsCommand = _ListExecutionsCommand;
|
|
3158
3226
|
|
|
3159
3227
|
// src/commands/ListMapRunsCommand.ts
|
|
3160
3228
|
|
|
3161
3229
|
|
|
3162
3230
|
|
|
3163
|
-
var
|
|
3231
|
+
var ListMapRunsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3164
3232
|
return [
|
|
3165
3233
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3166
3234
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3167
3235
|
];
|
|
3168
3236
|
}).s("AWSStepFunctions", "ListMapRuns", {}).n("SFNClient", "ListMapRunsCommand").f(void 0, void 0).ser(se_ListMapRunsCommand).de(de_ListMapRunsCommand).build() {
|
|
3237
|
+
static {
|
|
3238
|
+
__name(this, "ListMapRunsCommand");
|
|
3239
|
+
}
|
|
3169
3240
|
};
|
|
3170
|
-
__name(_ListMapRunsCommand, "ListMapRunsCommand");
|
|
3171
|
-
var ListMapRunsCommand = _ListMapRunsCommand;
|
|
3172
3241
|
|
|
3173
3242
|
// src/commands/ListStateMachineAliasesCommand.ts
|
|
3174
3243
|
|
|
3175
3244
|
|
|
3176
3245
|
|
|
3177
|
-
var
|
|
3246
|
+
var ListStateMachineAliasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3178
3247
|
return [
|
|
3179
3248
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3180
3249
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3181
3250
|
];
|
|
3182
3251
|
}).s("AWSStepFunctions", "ListStateMachineAliases", {}).n("SFNClient", "ListStateMachineAliasesCommand").f(void 0, void 0).ser(se_ListStateMachineAliasesCommand).de(de_ListStateMachineAliasesCommand).build() {
|
|
3252
|
+
static {
|
|
3253
|
+
__name(this, "ListStateMachineAliasesCommand");
|
|
3254
|
+
}
|
|
3183
3255
|
};
|
|
3184
|
-
__name(_ListStateMachineAliasesCommand, "ListStateMachineAliasesCommand");
|
|
3185
|
-
var ListStateMachineAliasesCommand = _ListStateMachineAliasesCommand;
|
|
3186
3256
|
|
|
3187
3257
|
// src/commands/ListStateMachinesCommand.ts
|
|
3188
3258
|
|
|
3189
3259
|
|
|
3190
3260
|
|
|
3191
|
-
var
|
|
3261
|
+
var ListStateMachinesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3192
3262
|
return [
|
|
3193
3263
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3194
3264
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3195
3265
|
];
|
|
3196
3266
|
}).s("AWSStepFunctions", "ListStateMachines", {}).n("SFNClient", "ListStateMachinesCommand").f(void 0, void 0).ser(se_ListStateMachinesCommand).de(de_ListStateMachinesCommand).build() {
|
|
3267
|
+
static {
|
|
3268
|
+
__name(this, "ListStateMachinesCommand");
|
|
3269
|
+
}
|
|
3197
3270
|
};
|
|
3198
|
-
__name(_ListStateMachinesCommand, "ListStateMachinesCommand");
|
|
3199
|
-
var ListStateMachinesCommand = _ListStateMachinesCommand;
|
|
3200
3271
|
|
|
3201
3272
|
// src/commands/ListStateMachineVersionsCommand.ts
|
|
3202
3273
|
|
|
3203
3274
|
|
|
3204
3275
|
|
|
3205
|
-
var
|
|
3276
|
+
var ListStateMachineVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3206
3277
|
return [
|
|
3207
3278
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3208
3279
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3209
3280
|
];
|
|
3210
3281
|
}).s("AWSStepFunctions", "ListStateMachineVersions", {}).n("SFNClient", "ListStateMachineVersionsCommand").f(void 0, void 0).ser(se_ListStateMachineVersionsCommand).de(de_ListStateMachineVersionsCommand).build() {
|
|
3282
|
+
static {
|
|
3283
|
+
__name(this, "ListStateMachineVersionsCommand");
|
|
3284
|
+
}
|
|
3211
3285
|
};
|
|
3212
|
-
__name(_ListStateMachineVersionsCommand, "ListStateMachineVersionsCommand");
|
|
3213
|
-
var ListStateMachineVersionsCommand = _ListStateMachineVersionsCommand;
|
|
3214
3286
|
|
|
3215
3287
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3216
3288
|
|
|
3217
3289
|
|
|
3218
3290
|
|
|
3219
|
-
var
|
|
3291
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3220
3292
|
return [
|
|
3221
3293
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3222
3294
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3223
3295
|
];
|
|
3224
3296
|
}).s("AWSStepFunctions", "ListTagsForResource", {}).n("SFNClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3297
|
+
static {
|
|
3298
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3299
|
+
}
|
|
3225
3300
|
};
|
|
3226
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3227
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3228
3301
|
|
|
3229
3302
|
// src/commands/PublishStateMachineVersionCommand.ts
|
|
3230
3303
|
|
|
3231
3304
|
|
|
3232
3305
|
|
|
3233
|
-
var
|
|
3306
|
+
var PublishStateMachineVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3234
3307
|
return [
|
|
3235
3308
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3236
3309
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3237
3310
|
];
|
|
3238
3311
|
}).s("AWSStepFunctions", "PublishStateMachineVersion", {}).n("SFNClient", "PublishStateMachineVersionCommand").f(PublishStateMachineVersionInputFilterSensitiveLog, void 0).ser(se_PublishStateMachineVersionCommand).de(de_PublishStateMachineVersionCommand).build() {
|
|
3312
|
+
static {
|
|
3313
|
+
__name(this, "PublishStateMachineVersionCommand");
|
|
3314
|
+
}
|
|
3239
3315
|
};
|
|
3240
|
-
__name(_PublishStateMachineVersionCommand, "PublishStateMachineVersionCommand");
|
|
3241
|
-
var PublishStateMachineVersionCommand = _PublishStateMachineVersionCommand;
|
|
3242
3316
|
|
|
3243
3317
|
// src/commands/RedriveExecutionCommand.ts
|
|
3244
3318
|
|
|
3245
3319
|
|
|
3246
3320
|
|
|
3247
|
-
var
|
|
3321
|
+
var RedriveExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3248
3322
|
return [
|
|
3249
3323
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3250
3324
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3251
3325
|
];
|
|
3252
3326
|
}).s("AWSStepFunctions", "RedriveExecution", {}).n("SFNClient", "RedriveExecutionCommand").f(void 0, void 0).ser(se_RedriveExecutionCommand).de(de_RedriveExecutionCommand).build() {
|
|
3327
|
+
static {
|
|
3328
|
+
__name(this, "RedriveExecutionCommand");
|
|
3329
|
+
}
|
|
3253
3330
|
};
|
|
3254
|
-
__name(_RedriveExecutionCommand, "RedriveExecutionCommand");
|
|
3255
|
-
var RedriveExecutionCommand = _RedriveExecutionCommand;
|
|
3256
3331
|
|
|
3257
3332
|
// src/commands/SendTaskFailureCommand.ts
|
|
3258
3333
|
|
|
3259
3334
|
|
|
3260
3335
|
|
|
3261
|
-
var
|
|
3336
|
+
var SendTaskFailureCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3262
3337
|
return [
|
|
3263
3338
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3264
3339
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3265
3340
|
];
|
|
3266
3341
|
}).s("AWSStepFunctions", "SendTaskFailure", {}).n("SFNClient", "SendTaskFailureCommand").f(SendTaskFailureInputFilterSensitiveLog, void 0).ser(se_SendTaskFailureCommand).de(de_SendTaskFailureCommand).build() {
|
|
3342
|
+
static {
|
|
3343
|
+
__name(this, "SendTaskFailureCommand");
|
|
3344
|
+
}
|
|
3267
3345
|
};
|
|
3268
|
-
__name(_SendTaskFailureCommand, "SendTaskFailureCommand");
|
|
3269
|
-
var SendTaskFailureCommand = _SendTaskFailureCommand;
|
|
3270
3346
|
|
|
3271
3347
|
// src/commands/SendTaskHeartbeatCommand.ts
|
|
3272
3348
|
|
|
3273
3349
|
|
|
3274
3350
|
|
|
3275
|
-
var
|
|
3351
|
+
var SendTaskHeartbeatCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3276
3352
|
return [
|
|
3277
3353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3278
3354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3279
3355
|
];
|
|
3280
3356
|
}).s("AWSStepFunctions", "SendTaskHeartbeat", {}).n("SFNClient", "SendTaskHeartbeatCommand").f(void 0, void 0).ser(se_SendTaskHeartbeatCommand).de(de_SendTaskHeartbeatCommand).build() {
|
|
3357
|
+
static {
|
|
3358
|
+
__name(this, "SendTaskHeartbeatCommand");
|
|
3359
|
+
}
|
|
3281
3360
|
};
|
|
3282
|
-
__name(_SendTaskHeartbeatCommand, "SendTaskHeartbeatCommand");
|
|
3283
|
-
var SendTaskHeartbeatCommand = _SendTaskHeartbeatCommand;
|
|
3284
3361
|
|
|
3285
3362
|
// src/commands/SendTaskSuccessCommand.ts
|
|
3286
3363
|
|
|
3287
3364
|
|
|
3288
3365
|
|
|
3289
|
-
var
|
|
3366
|
+
var SendTaskSuccessCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3290
3367
|
return [
|
|
3291
3368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3292
3369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3293
3370
|
];
|
|
3294
3371
|
}).s("AWSStepFunctions", "SendTaskSuccess", {}).n("SFNClient", "SendTaskSuccessCommand").f(SendTaskSuccessInputFilterSensitiveLog, void 0).ser(se_SendTaskSuccessCommand).de(de_SendTaskSuccessCommand).build() {
|
|
3372
|
+
static {
|
|
3373
|
+
__name(this, "SendTaskSuccessCommand");
|
|
3374
|
+
}
|
|
3295
3375
|
};
|
|
3296
|
-
__name(_SendTaskSuccessCommand, "SendTaskSuccessCommand");
|
|
3297
|
-
var SendTaskSuccessCommand = _SendTaskSuccessCommand;
|
|
3298
3376
|
|
|
3299
3377
|
// src/commands/StartExecutionCommand.ts
|
|
3300
3378
|
|
|
3301
3379
|
|
|
3302
3380
|
|
|
3303
|
-
var
|
|
3381
|
+
var StartExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3304
3382
|
return [
|
|
3305
3383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3306
3384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3307
3385
|
];
|
|
3308
3386
|
}).s("AWSStepFunctions", "StartExecution", {}).n("SFNClient", "StartExecutionCommand").f(StartExecutionInputFilterSensitiveLog, void 0).ser(se_StartExecutionCommand).de(de_StartExecutionCommand).build() {
|
|
3387
|
+
static {
|
|
3388
|
+
__name(this, "StartExecutionCommand");
|
|
3389
|
+
}
|
|
3309
3390
|
};
|
|
3310
|
-
__name(_StartExecutionCommand, "StartExecutionCommand");
|
|
3311
|
-
var StartExecutionCommand = _StartExecutionCommand;
|
|
3312
3391
|
|
|
3313
3392
|
// src/commands/StartSyncExecutionCommand.ts
|
|
3314
3393
|
|
|
3315
3394
|
|
|
3316
3395
|
|
|
3317
|
-
var
|
|
3396
|
+
var StartSyncExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3318
3397
|
return [
|
|
3319
3398
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3320
3399
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3321
3400
|
];
|
|
3322
3401
|
}).s("AWSStepFunctions", "StartSyncExecution", {}).n("SFNClient", "StartSyncExecutionCommand").f(StartSyncExecutionInputFilterSensitiveLog, StartSyncExecutionOutputFilterSensitiveLog).ser(se_StartSyncExecutionCommand).de(de_StartSyncExecutionCommand).build() {
|
|
3402
|
+
static {
|
|
3403
|
+
__name(this, "StartSyncExecutionCommand");
|
|
3404
|
+
}
|
|
3323
3405
|
};
|
|
3324
|
-
__name(_StartSyncExecutionCommand, "StartSyncExecutionCommand");
|
|
3325
|
-
var StartSyncExecutionCommand = _StartSyncExecutionCommand;
|
|
3326
3406
|
|
|
3327
3407
|
// src/commands/StopExecutionCommand.ts
|
|
3328
3408
|
|
|
3329
3409
|
|
|
3330
3410
|
|
|
3331
|
-
var
|
|
3411
|
+
var StopExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3332
3412
|
return [
|
|
3333
3413
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3334
3414
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3335
3415
|
];
|
|
3336
3416
|
}).s("AWSStepFunctions", "StopExecution", {}).n("SFNClient", "StopExecutionCommand").f(StopExecutionInputFilterSensitiveLog, void 0).ser(se_StopExecutionCommand).de(de_StopExecutionCommand).build() {
|
|
3417
|
+
static {
|
|
3418
|
+
__name(this, "StopExecutionCommand");
|
|
3419
|
+
}
|
|
3337
3420
|
};
|
|
3338
|
-
__name(_StopExecutionCommand, "StopExecutionCommand");
|
|
3339
|
-
var StopExecutionCommand = _StopExecutionCommand;
|
|
3340
3421
|
|
|
3341
3422
|
// src/commands/TagResourceCommand.ts
|
|
3342
3423
|
|
|
3343
3424
|
|
|
3344
3425
|
|
|
3345
|
-
var
|
|
3426
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3346
3427
|
return [
|
|
3347
3428
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3348
3429
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3349
3430
|
];
|
|
3350
3431
|
}).s("AWSStepFunctions", "TagResource", {}).n("SFNClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3432
|
+
static {
|
|
3433
|
+
__name(this, "TagResourceCommand");
|
|
3434
|
+
}
|
|
3351
3435
|
};
|
|
3352
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3353
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3354
3436
|
|
|
3355
3437
|
// src/commands/TestStateCommand.ts
|
|
3356
3438
|
|
|
3357
3439
|
|
|
3358
3440
|
|
|
3359
|
-
var
|
|
3441
|
+
var TestStateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3360
3442
|
return [
|
|
3361
3443
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3362
3444
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3363
3445
|
];
|
|
3364
3446
|
}).s("AWSStepFunctions", "TestState", {}).n("SFNClient", "TestStateCommand").f(TestStateInputFilterSensitiveLog, TestStateOutputFilterSensitiveLog).ser(se_TestStateCommand).de(de_TestStateCommand).build() {
|
|
3447
|
+
static {
|
|
3448
|
+
__name(this, "TestStateCommand");
|
|
3449
|
+
}
|
|
3365
3450
|
};
|
|
3366
|
-
__name(_TestStateCommand, "TestStateCommand");
|
|
3367
|
-
var TestStateCommand = _TestStateCommand;
|
|
3368
3451
|
|
|
3369
3452
|
// src/commands/UntagResourceCommand.ts
|
|
3370
3453
|
|
|
3371
3454
|
|
|
3372
3455
|
|
|
3373
|
-
var
|
|
3456
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3374
3457
|
return [
|
|
3375
3458
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3376
3459
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3377
3460
|
];
|
|
3378
3461
|
}).s("AWSStepFunctions", "UntagResource", {}).n("SFNClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3462
|
+
static {
|
|
3463
|
+
__name(this, "UntagResourceCommand");
|
|
3464
|
+
}
|
|
3379
3465
|
};
|
|
3380
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3381
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3382
3466
|
|
|
3383
3467
|
// src/commands/UpdateMapRunCommand.ts
|
|
3384
3468
|
|
|
3385
3469
|
|
|
3386
3470
|
|
|
3387
|
-
var
|
|
3471
|
+
var UpdateMapRunCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3388
3472
|
return [
|
|
3389
3473
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3390
3474
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3391
3475
|
];
|
|
3392
3476
|
}).s("AWSStepFunctions", "UpdateMapRun", {}).n("SFNClient", "UpdateMapRunCommand").f(void 0, void 0).ser(se_UpdateMapRunCommand).de(de_UpdateMapRunCommand).build() {
|
|
3477
|
+
static {
|
|
3478
|
+
__name(this, "UpdateMapRunCommand");
|
|
3479
|
+
}
|
|
3393
3480
|
};
|
|
3394
|
-
__name(_UpdateMapRunCommand, "UpdateMapRunCommand");
|
|
3395
|
-
var UpdateMapRunCommand = _UpdateMapRunCommand;
|
|
3396
3481
|
|
|
3397
3482
|
// src/commands/UpdateStateMachineAliasCommand.ts
|
|
3398
3483
|
|
|
3399
3484
|
|
|
3400
3485
|
|
|
3401
|
-
var
|
|
3486
|
+
var UpdateStateMachineAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3402
3487
|
return [
|
|
3403
3488
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3404
3489
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3405
3490
|
];
|
|
3406
3491
|
}).s("AWSStepFunctions", "UpdateStateMachineAlias", {}).n("SFNClient", "UpdateStateMachineAliasCommand").f(UpdateStateMachineAliasInputFilterSensitiveLog, void 0).ser(se_UpdateStateMachineAliasCommand).de(de_UpdateStateMachineAliasCommand).build() {
|
|
3492
|
+
static {
|
|
3493
|
+
__name(this, "UpdateStateMachineAliasCommand");
|
|
3494
|
+
}
|
|
3407
3495
|
};
|
|
3408
|
-
__name(_UpdateStateMachineAliasCommand, "UpdateStateMachineAliasCommand");
|
|
3409
|
-
var UpdateStateMachineAliasCommand = _UpdateStateMachineAliasCommand;
|
|
3410
3496
|
|
|
3411
3497
|
// src/commands/UpdateStateMachineCommand.ts
|
|
3412
3498
|
|
|
3413
3499
|
|
|
3414
3500
|
|
|
3415
|
-
var
|
|
3501
|
+
var UpdateStateMachineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3416
3502
|
return [
|
|
3417
3503
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3418
3504
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3419
3505
|
];
|
|
3420
3506
|
}).s("AWSStepFunctions", "UpdateStateMachine", {}).n("SFNClient", "UpdateStateMachineCommand").f(UpdateStateMachineInputFilterSensitiveLog, void 0).ser(se_UpdateStateMachineCommand).de(de_UpdateStateMachineCommand).build() {
|
|
3507
|
+
static {
|
|
3508
|
+
__name(this, "UpdateStateMachineCommand");
|
|
3509
|
+
}
|
|
3421
3510
|
};
|
|
3422
|
-
__name(_UpdateStateMachineCommand, "UpdateStateMachineCommand");
|
|
3423
|
-
var UpdateStateMachineCommand = _UpdateStateMachineCommand;
|
|
3424
3511
|
|
|
3425
3512
|
// src/commands/ValidateStateMachineDefinitionCommand.ts
|
|
3426
3513
|
|
|
3427
3514
|
|
|
3428
3515
|
|
|
3429
|
-
var
|
|
3516
|
+
var ValidateStateMachineDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3430
3517
|
return [
|
|
3431
3518
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3432
3519
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3433
3520
|
];
|
|
3434
3521
|
}).s("AWSStepFunctions", "ValidateStateMachineDefinition", {}).n("SFNClient", "ValidateStateMachineDefinitionCommand").f(ValidateStateMachineDefinitionInputFilterSensitiveLog, ValidateStateMachineDefinitionOutputFilterSensitiveLog).ser(se_ValidateStateMachineDefinitionCommand).de(de_ValidateStateMachineDefinitionCommand).build() {
|
|
3522
|
+
static {
|
|
3523
|
+
__name(this, "ValidateStateMachineDefinitionCommand");
|
|
3524
|
+
}
|
|
3435
3525
|
};
|
|
3436
|
-
__name(_ValidateStateMachineDefinitionCommand, "ValidateStateMachineDefinitionCommand");
|
|
3437
|
-
var ValidateStateMachineDefinitionCommand = _ValidateStateMachineDefinitionCommand;
|
|
3438
3526
|
|
|
3439
3527
|
// src/SFN.ts
|
|
3440
3528
|
var commands = {
|
|
@@ -3476,10 +3564,11 @@ var commands = {
|
|
|
3476
3564
|
UpdateStateMachineAliasCommand,
|
|
3477
3565
|
ValidateStateMachineDefinitionCommand
|
|
3478
3566
|
};
|
|
3479
|
-
var
|
|
3567
|
+
var SFN = class extends SFNClient {
|
|
3568
|
+
static {
|
|
3569
|
+
__name(this, "SFN");
|
|
3570
|
+
}
|
|
3480
3571
|
};
|
|
3481
|
-
__name(_SFN, "SFN");
|
|
3482
|
-
var SFN = _SFN;
|
|
3483
3572
|
(0, import_smithy_client.createAggregatedClient)(commands, SFN);
|
|
3484
3573
|
|
|
3485
3574
|
// src/pagination/GetExecutionHistoryPaginator.ts
|