@aws-sdk/client-swf 3.721.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 +239 -182
- package/dist-es/SWFClient.js +1 -0
- package/dist-es/models/models_0.js +22 -22
- 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
|
@@ -207,7 +207,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
207
207
|
}, "resolveRuntimeExtensions");
|
|
208
208
|
|
|
209
209
|
// src/SWFClient.ts
|
|
210
|
-
var
|
|
210
|
+
var SWFClient = class extends import_smithy_client.Client {
|
|
211
|
+
static {
|
|
212
|
+
__name(this, "SWFClient");
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* The resolved configuration of SWFClient class. This is resolved and normalized from the {@link SWFClientConfig | constructor configuration interface}.
|
|
216
|
+
*/
|
|
217
|
+
config;
|
|
211
218
|
constructor(...[configuration]) {
|
|
212
219
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
213
220
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -217,7 +224,7 @@ var _SWFClient = class _SWFClient extends import_smithy_client.Client {
|
|
|
217
224
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
218
225
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
219
226
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
220
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
227
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
221
228
|
super(_config_8);
|
|
222
229
|
this.config = _config_8;
|
|
223
230
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -245,8 +252,6 @@ var _SWFClient = class _SWFClient extends import_smithy_client.Client {
|
|
|
245
252
|
super.destroy();
|
|
246
253
|
}
|
|
247
254
|
};
|
|
248
|
-
__name(_SWFClient, "SWFClient");
|
|
249
|
-
var SWFClient = _SWFClient;
|
|
250
255
|
|
|
251
256
|
// src/SWF.ts
|
|
252
257
|
|
|
@@ -263,7 +268,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
263
268
|
|
|
264
269
|
// src/models/SWFServiceException.ts
|
|
265
270
|
|
|
266
|
-
var
|
|
271
|
+
var SWFServiceException = class _SWFServiceException extends import_smithy_client.ServiceException {
|
|
272
|
+
static {
|
|
273
|
+
__name(this, "SWFServiceException");
|
|
274
|
+
}
|
|
267
275
|
/**
|
|
268
276
|
* @internal
|
|
269
277
|
*/
|
|
@@ -272,8 +280,6 @@ var _SWFServiceException = class _SWFServiceException extends import_smithy_clie
|
|
|
272
280
|
Object.setPrototypeOf(this, _SWFServiceException.prototype);
|
|
273
281
|
}
|
|
274
282
|
};
|
|
275
|
-
__name(_SWFServiceException, "SWFServiceException");
|
|
276
|
-
var SWFServiceException = _SWFServiceException;
|
|
277
283
|
|
|
278
284
|
// src/models/models_0.ts
|
|
279
285
|
var ActivityTaskTimeoutType = {
|
|
@@ -325,7 +331,12 @@ var ContinueAsNewWorkflowExecutionFailedCause = {
|
|
|
325
331
|
WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED",
|
|
326
332
|
WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST"
|
|
327
333
|
};
|
|
328
|
-
var
|
|
334
|
+
var OperationNotPermittedFault = class _OperationNotPermittedFault extends SWFServiceException {
|
|
335
|
+
static {
|
|
336
|
+
__name(this, "OperationNotPermittedFault");
|
|
337
|
+
}
|
|
338
|
+
name = "OperationNotPermittedFault";
|
|
339
|
+
$fault = "client";
|
|
329
340
|
/**
|
|
330
341
|
* @internal
|
|
331
342
|
*/
|
|
@@ -335,14 +346,15 @@ var _OperationNotPermittedFault = class _OperationNotPermittedFault extends SWFS
|
|
|
335
346
|
$fault: "client",
|
|
336
347
|
...opts
|
|
337
348
|
});
|
|
338
|
-
this.name = "OperationNotPermittedFault";
|
|
339
|
-
this.$fault = "client";
|
|
340
349
|
Object.setPrototypeOf(this, _OperationNotPermittedFault.prototype);
|
|
341
350
|
}
|
|
342
351
|
};
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
352
|
+
var UnknownResourceFault = class _UnknownResourceFault extends SWFServiceException {
|
|
353
|
+
static {
|
|
354
|
+
__name(this, "UnknownResourceFault");
|
|
355
|
+
}
|
|
356
|
+
name = "UnknownResourceFault";
|
|
357
|
+
$fault = "client";
|
|
346
358
|
/**
|
|
347
359
|
* @internal
|
|
348
360
|
*/
|
|
@@ -352,13 +364,9 @@ var _UnknownResourceFault = class _UnknownResourceFault extends SWFServiceExcept
|
|
|
352
364
|
$fault: "client",
|
|
353
365
|
...opts
|
|
354
366
|
});
|
|
355
|
-
this.name = "UnknownResourceFault";
|
|
356
|
-
this.$fault = "client";
|
|
357
367
|
Object.setPrototypeOf(this, _UnknownResourceFault.prototype);
|
|
358
368
|
}
|
|
359
369
|
};
|
|
360
|
-
__name(_UnknownResourceFault, "UnknownResourceFault");
|
|
361
|
-
var UnknownResourceFault = _UnknownResourceFault;
|
|
362
370
|
var DecisionType = {
|
|
363
371
|
CancelTimer: "CancelTimer",
|
|
364
372
|
CancelWorkflowExecution: "CancelWorkflowExecution",
|
|
@@ -507,7 +515,12 @@ var WorkflowExecutionTerminatedCause = {
|
|
|
507
515
|
EVENT_LIMIT_EXCEEDED: "EVENT_LIMIT_EXCEEDED",
|
|
508
516
|
OPERATOR_INITIATED: "OPERATOR_INITIATED"
|
|
509
517
|
};
|
|
510
|
-
var
|
|
518
|
+
var DefaultUndefinedFault = class _DefaultUndefinedFault extends SWFServiceException {
|
|
519
|
+
static {
|
|
520
|
+
__name(this, "DefaultUndefinedFault");
|
|
521
|
+
}
|
|
522
|
+
name = "DefaultUndefinedFault";
|
|
523
|
+
$fault = "client";
|
|
511
524
|
/**
|
|
512
525
|
* @internal
|
|
513
526
|
*/
|
|
@@ -517,14 +530,15 @@ var _DefaultUndefinedFault = class _DefaultUndefinedFault extends SWFServiceExce
|
|
|
517
530
|
$fault: "client",
|
|
518
531
|
...opts
|
|
519
532
|
});
|
|
520
|
-
this.name = "DefaultUndefinedFault";
|
|
521
|
-
this.$fault = "client";
|
|
522
533
|
Object.setPrototypeOf(this, _DefaultUndefinedFault.prototype);
|
|
523
534
|
}
|
|
524
535
|
};
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
536
|
+
var TypeNotDeprecatedFault = class _TypeNotDeprecatedFault extends SWFServiceException {
|
|
537
|
+
static {
|
|
538
|
+
__name(this, "TypeNotDeprecatedFault");
|
|
539
|
+
}
|
|
540
|
+
name = "TypeNotDeprecatedFault";
|
|
541
|
+
$fault = "client";
|
|
528
542
|
/**
|
|
529
543
|
* @internal
|
|
530
544
|
*/
|
|
@@ -534,14 +548,15 @@ var _TypeNotDeprecatedFault = class _TypeNotDeprecatedFault extends SWFServiceEx
|
|
|
534
548
|
$fault: "client",
|
|
535
549
|
...opts
|
|
536
550
|
});
|
|
537
|
-
this.name = "TypeNotDeprecatedFault";
|
|
538
|
-
this.$fault = "client";
|
|
539
551
|
Object.setPrototypeOf(this, _TypeNotDeprecatedFault.prototype);
|
|
540
552
|
}
|
|
541
553
|
};
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
554
|
+
var TypeDeprecatedFault = class _TypeDeprecatedFault extends SWFServiceException {
|
|
555
|
+
static {
|
|
556
|
+
__name(this, "TypeDeprecatedFault");
|
|
557
|
+
}
|
|
558
|
+
name = "TypeDeprecatedFault";
|
|
559
|
+
$fault = "client";
|
|
545
560
|
/**
|
|
546
561
|
* @internal
|
|
547
562
|
*/
|
|
@@ -551,14 +566,15 @@ var _TypeDeprecatedFault = class _TypeDeprecatedFault extends SWFServiceExceptio
|
|
|
551
566
|
$fault: "client",
|
|
552
567
|
...opts
|
|
553
568
|
});
|
|
554
|
-
this.name = "TypeDeprecatedFault";
|
|
555
|
-
this.$fault = "client";
|
|
556
569
|
Object.setPrototypeOf(this, _TypeDeprecatedFault.prototype);
|
|
557
570
|
}
|
|
558
571
|
};
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
572
|
+
var DomainDeprecatedFault = class _DomainDeprecatedFault extends SWFServiceException {
|
|
573
|
+
static {
|
|
574
|
+
__name(this, "DomainDeprecatedFault");
|
|
575
|
+
}
|
|
576
|
+
name = "DomainDeprecatedFault";
|
|
577
|
+
$fault = "client";
|
|
562
578
|
/**
|
|
563
579
|
* @internal
|
|
564
580
|
*/
|
|
@@ -568,18 +584,19 @@ var _DomainDeprecatedFault = class _DomainDeprecatedFault extends SWFServiceExce
|
|
|
568
584
|
$fault: "client",
|
|
569
585
|
...opts
|
|
570
586
|
});
|
|
571
|
-
this.name = "DomainDeprecatedFault";
|
|
572
|
-
this.$fault = "client";
|
|
573
587
|
Object.setPrototypeOf(this, _DomainDeprecatedFault.prototype);
|
|
574
588
|
}
|
|
575
589
|
};
|
|
576
|
-
__name(_DomainDeprecatedFault, "DomainDeprecatedFault");
|
|
577
|
-
var DomainDeprecatedFault = _DomainDeprecatedFault;
|
|
578
590
|
var ExecutionStatus = {
|
|
579
591
|
CLOSED: "CLOSED",
|
|
580
592
|
OPEN: "OPEN"
|
|
581
593
|
};
|
|
582
|
-
var
|
|
594
|
+
var DomainAlreadyExistsFault = class _DomainAlreadyExistsFault extends SWFServiceException {
|
|
595
|
+
static {
|
|
596
|
+
__name(this, "DomainAlreadyExistsFault");
|
|
597
|
+
}
|
|
598
|
+
name = "DomainAlreadyExistsFault";
|
|
599
|
+
$fault = "client";
|
|
583
600
|
/**
|
|
584
601
|
* @internal
|
|
585
602
|
*/
|
|
@@ -589,14 +606,15 @@ var _DomainAlreadyExistsFault = class _DomainAlreadyExistsFault extends SWFServi
|
|
|
589
606
|
$fault: "client",
|
|
590
607
|
...opts
|
|
591
608
|
});
|
|
592
|
-
this.name = "DomainAlreadyExistsFault";
|
|
593
|
-
this.$fault = "client";
|
|
594
609
|
Object.setPrototypeOf(this, _DomainAlreadyExistsFault.prototype);
|
|
595
610
|
}
|
|
596
611
|
};
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
612
|
+
var LimitExceededFault = class _LimitExceededFault extends SWFServiceException {
|
|
613
|
+
static {
|
|
614
|
+
__name(this, "LimitExceededFault");
|
|
615
|
+
}
|
|
616
|
+
name = "LimitExceededFault";
|
|
617
|
+
$fault = "client";
|
|
600
618
|
/**
|
|
601
619
|
* @internal
|
|
602
620
|
*/
|
|
@@ -606,14 +624,15 @@ var _LimitExceededFault = class _LimitExceededFault extends SWFServiceException
|
|
|
606
624
|
$fault: "client",
|
|
607
625
|
...opts
|
|
608
626
|
});
|
|
609
|
-
this.name = "LimitExceededFault";
|
|
610
|
-
this.$fault = "client";
|
|
611
627
|
Object.setPrototypeOf(this, _LimitExceededFault.prototype);
|
|
612
628
|
}
|
|
613
629
|
};
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
630
|
+
var TypeAlreadyExistsFault = class _TypeAlreadyExistsFault extends SWFServiceException {
|
|
631
|
+
static {
|
|
632
|
+
__name(this, "TypeAlreadyExistsFault");
|
|
633
|
+
}
|
|
634
|
+
name = "TypeAlreadyExistsFault";
|
|
635
|
+
$fault = "client";
|
|
617
636
|
/**
|
|
618
637
|
* @internal
|
|
619
638
|
*/
|
|
@@ -623,14 +642,15 @@ var _TypeAlreadyExistsFault = class _TypeAlreadyExistsFault extends SWFServiceEx
|
|
|
623
642
|
$fault: "client",
|
|
624
643
|
...opts
|
|
625
644
|
});
|
|
626
|
-
this.name = "TypeAlreadyExistsFault";
|
|
627
|
-
this.$fault = "client";
|
|
628
645
|
Object.setPrototypeOf(this, _TypeAlreadyExistsFault.prototype);
|
|
629
646
|
}
|
|
630
647
|
};
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
648
|
+
var TooManyTagsFault = class _TooManyTagsFault extends SWFServiceException {
|
|
649
|
+
static {
|
|
650
|
+
__name(this, "TooManyTagsFault");
|
|
651
|
+
}
|
|
652
|
+
name = "TooManyTagsFault";
|
|
653
|
+
$fault = "client";
|
|
634
654
|
/**
|
|
635
655
|
* @internal
|
|
636
656
|
*/
|
|
@@ -640,14 +660,15 @@ var _TooManyTagsFault = class _TooManyTagsFault extends SWFServiceException {
|
|
|
640
660
|
$fault: "client",
|
|
641
661
|
...opts
|
|
642
662
|
});
|
|
643
|
-
this.name = "TooManyTagsFault";
|
|
644
|
-
this.$fault = "client";
|
|
645
663
|
Object.setPrototypeOf(this, _TooManyTagsFault.prototype);
|
|
646
664
|
}
|
|
647
665
|
};
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
666
|
+
var WorkflowExecutionAlreadyStartedFault = class _WorkflowExecutionAlreadyStartedFault extends SWFServiceException {
|
|
667
|
+
static {
|
|
668
|
+
__name(this, "WorkflowExecutionAlreadyStartedFault");
|
|
669
|
+
}
|
|
670
|
+
name = "WorkflowExecutionAlreadyStartedFault";
|
|
671
|
+
$fault = "client";
|
|
651
672
|
/**
|
|
652
673
|
* @internal
|
|
653
674
|
*/
|
|
@@ -657,13 +678,9 @@ var _WorkflowExecutionAlreadyStartedFault = class _WorkflowExecutionAlreadyStart
|
|
|
657
678
|
$fault: "client",
|
|
658
679
|
...opts
|
|
659
680
|
});
|
|
660
|
-
this.name = "WorkflowExecutionAlreadyStartedFault";
|
|
661
|
-
this.$fault = "client";
|
|
662
681
|
Object.setPrototypeOf(this, _WorkflowExecutionAlreadyStartedFault.prototype);
|
|
663
682
|
}
|
|
664
683
|
};
|
|
665
|
-
__name(_WorkflowExecutionAlreadyStartedFault, "WorkflowExecutionAlreadyStartedFault");
|
|
666
|
-
var WorkflowExecutionAlreadyStartedFault = _WorkflowExecutionAlreadyStartedFault;
|
|
667
684
|
|
|
668
685
|
// src/protocols/Aws_json1_0.ts
|
|
669
686
|
var se_CountClosedWorkflowExecutionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1753,547 +1770,586 @@ function sharedHeaders(operation) {
|
|
|
1753
1770
|
__name(sharedHeaders, "sharedHeaders");
|
|
1754
1771
|
|
|
1755
1772
|
// src/commands/CountClosedWorkflowExecutionsCommand.ts
|
|
1756
|
-
var
|
|
1773
|
+
var CountClosedWorkflowExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1757
1774
|
return [
|
|
1758
1775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1759
1776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1760
1777
|
];
|
|
1761
1778
|
}).s("SimpleWorkflowService", "CountClosedWorkflowExecutions", {}).n("SWFClient", "CountClosedWorkflowExecutionsCommand").f(void 0, void 0).ser(se_CountClosedWorkflowExecutionsCommand).de(de_CountClosedWorkflowExecutionsCommand).build() {
|
|
1779
|
+
static {
|
|
1780
|
+
__name(this, "CountClosedWorkflowExecutionsCommand");
|
|
1781
|
+
}
|
|
1762
1782
|
};
|
|
1763
|
-
__name(_CountClosedWorkflowExecutionsCommand, "CountClosedWorkflowExecutionsCommand");
|
|
1764
|
-
var CountClosedWorkflowExecutionsCommand = _CountClosedWorkflowExecutionsCommand;
|
|
1765
1783
|
|
|
1766
1784
|
// src/commands/CountOpenWorkflowExecutionsCommand.ts
|
|
1767
1785
|
|
|
1768
1786
|
|
|
1769
1787
|
|
|
1770
|
-
var
|
|
1788
|
+
var CountOpenWorkflowExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1771
1789
|
return [
|
|
1772
1790
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1773
1791
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1774
1792
|
];
|
|
1775
1793
|
}).s("SimpleWorkflowService", "CountOpenWorkflowExecutions", {}).n("SWFClient", "CountOpenWorkflowExecutionsCommand").f(void 0, void 0).ser(se_CountOpenWorkflowExecutionsCommand).de(de_CountOpenWorkflowExecutionsCommand).build() {
|
|
1794
|
+
static {
|
|
1795
|
+
__name(this, "CountOpenWorkflowExecutionsCommand");
|
|
1796
|
+
}
|
|
1776
1797
|
};
|
|
1777
|
-
__name(_CountOpenWorkflowExecutionsCommand, "CountOpenWorkflowExecutionsCommand");
|
|
1778
|
-
var CountOpenWorkflowExecutionsCommand = _CountOpenWorkflowExecutionsCommand;
|
|
1779
1798
|
|
|
1780
1799
|
// src/commands/CountPendingActivityTasksCommand.ts
|
|
1781
1800
|
|
|
1782
1801
|
|
|
1783
1802
|
|
|
1784
|
-
var
|
|
1803
|
+
var CountPendingActivityTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1785
1804
|
return [
|
|
1786
1805
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1787
1806
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1788
1807
|
];
|
|
1789
1808
|
}).s("SimpleWorkflowService", "CountPendingActivityTasks", {}).n("SWFClient", "CountPendingActivityTasksCommand").f(void 0, void 0).ser(se_CountPendingActivityTasksCommand).de(de_CountPendingActivityTasksCommand).build() {
|
|
1809
|
+
static {
|
|
1810
|
+
__name(this, "CountPendingActivityTasksCommand");
|
|
1811
|
+
}
|
|
1790
1812
|
};
|
|
1791
|
-
__name(_CountPendingActivityTasksCommand, "CountPendingActivityTasksCommand");
|
|
1792
|
-
var CountPendingActivityTasksCommand = _CountPendingActivityTasksCommand;
|
|
1793
1813
|
|
|
1794
1814
|
// src/commands/CountPendingDecisionTasksCommand.ts
|
|
1795
1815
|
|
|
1796
1816
|
|
|
1797
1817
|
|
|
1798
|
-
var
|
|
1818
|
+
var CountPendingDecisionTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1799
1819
|
return [
|
|
1800
1820
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1801
1821
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1802
1822
|
];
|
|
1803
1823
|
}).s("SimpleWorkflowService", "CountPendingDecisionTasks", {}).n("SWFClient", "CountPendingDecisionTasksCommand").f(void 0, void 0).ser(se_CountPendingDecisionTasksCommand).de(de_CountPendingDecisionTasksCommand).build() {
|
|
1824
|
+
static {
|
|
1825
|
+
__name(this, "CountPendingDecisionTasksCommand");
|
|
1826
|
+
}
|
|
1804
1827
|
};
|
|
1805
|
-
__name(_CountPendingDecisionTasksCommand, "CountPendingDecisionTasksCommand");
|
|
1806
|
-
var CountPendingDecisionTasksCommand = _CountPendingDecisionTasksCommand;
|
|
1807
1828
|
|
|
1808
1829
|
// src/commands/DeleteActivityTypeCommand.ts
|
|
1809
1830
|
|
|
1810
1831
|
|
|
1811
1832
|
|
|
1812
|
-
var
|
|
1833
|
+
var DeleteActivityTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1813
1834
|
return [
|
|
1814
1835
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1815
1836
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1816
1837
|
];
|
|
1817
1838
|
}).s("SimpleWorkflowService", "DeleteActivityType", {}).n("SWFClient", "DeleteActivityTypeCommand").f(void 0, void 0).ser(se_DeleteActivityTypeCommand).de(de_DeleteActivityTypeCommand).build() {
|
|
1839
|
+
static {
|
|
1840
|
+
__name(this, "DeleteActivityTypeCommand");
|
|
1841
|
+
}
|
|
1818
1842
|
};
|
|
1819
|
-
__name(_DeleteActivityTypeCommand, "DeleteActivityTypeCommand");
|
|
1820
|
-
var DeleteActivityTypeCommand = _DeleteActivityTypeCommand;
|
|
1821
1843
|
|
|
1822
1844
|
// src/commands/DeleteWorkflowTypeCommand.ts
|
|
1823
1845
|
|
|
1824
1846
|
|
|
1825
1847
|
|
|
1826
|
-
var
|
|
1848
|
+
var DeleteWorkflowTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1827
1849
|
return [
|
|
1828
1850
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1829
1851
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1830
1852
|
];
|
|
1831
1853
|
}).s("SimpleWorkflowService", "DeleteWorkflowType", {}).n("SWFClient", "DeleteWorkflowTypeCommand").f(void 0, void 0).ser(se_DeleteWorkflowTypeCommand).de(de_DeleteWorkflowTypeCommand).build() {
|
|
1854
|
+
static {
|
|
1855
|
+
__name(this, "DeleteWorkflowTypeCommand");
|
|
1856
|
+
}
|
|
1832
1857
|
};
|
|
1833
|
-
__name(_DeleteWorkflowTypeCommand, "DeleteWorkflowTypeCommand");
|
|
1834
|
-
var DeleteWorkflowTypeCommand = _DeleteWorkflowTypeCommand;
|
|
1835
1858
|
|
|
1836
1859
|
// src/commands/DeprecateActivityTypeCommand.ts
|
|
1837
1860
|
|
|
1838
1861
|
|
|
1839
1862
|
|
|
1840
|
-
var
|
|
1863
|
+
var DeprecateActivityTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1841
1864
|
return [
|
|
1842
1865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1843
1866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1844
1867
|
];
|
|
1845
1868
|
}).s("SimpleWorkflowService", "DeprecateActivityType", {}).n("SWFClient", "DeprecateActivityTypeCommand").f(void 0, void 0).ser(se_DeprecateActivityTypeCommand).de(de_DeprecateActivityTypeCommand).build() {
|
|
1869
|
+
static {
|
|
1870
|
+
__name(this, "DeprecateActivityTypeCommand");
|
|
1871
|
+
}
|
|
1846
1872
|
};
|
|
1847
|
-
__name(_DeprecateActivityTypeCommand, "DeprecateActivityTypeCommand");
|
|
1848
|
-
var DeprecateActivityTypeCommand = _DeprecateActivityTypeCommand;
|
|
1849
1873
|
|
|
1850
1874
|
// src/commands/DeprecateDomainCommand.ts
|
|
1851
1875
|
|
|
1852
1876
|
|
|
1853
1877
|
|
|
1854
|
-
var
|
|
1878
|
+
var DeprecateDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1855
1879
|
return [
|
|
1856
1880
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1857
1881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1858
1882
|
];
|
|
1859
1883
|
}).s("SimpleWorkflowService", "DeprecateDomain", {}).n("SWFClient", "DeprecateDomainCommand").f(void 0, void 0).ser(se_DeprecateDomainCommand).de(de_DeprecateDomainCommand).build() {
|
|
1884
|
+
static {
|
|
1885
|
+
__name(this, "DeprecateDomainCommand");
|
|
1886
|
+
}
|
|
1860
1887
|
};
|
|
1861
|
-
__name(_DeprecateDomainCommand, "DeprecateDomainCommand");
|
|
1862
|
-
var DeprecateDomainCommand = _DeprecateDomainCommand;
|
|
1863
1888
|
|
|
1864
1889
|
// src/commands/DeprecateWorkflowTypeCommand.ts
|
|
1865
1890
|
|
|
1866
1891
|
|
|
1867
1892
|
|
|
1868
|
-
var
|
|
1893
|
+
var DeprecateWorkflowTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1869
1894
|
return [
|
|
1870
1895
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1871
1896
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1872
1897
|
];
|
|
1873
1898
|
}).s("SimpleWorkflowService", "DeprecateWorkflowType", {}).n("SWFClient", "DeprecateWorkflowTypeCommand").f(void 0, void 0).ser(se_DeprecateWorkflowTypeCommand).de(de_DeprecateWorkflowTypeCommand).build() {
|
|
1899
|
+
static {
|
|
1900
|
+
__name(this, "DeprecateWorkflowTypeCommand");
|
|
1901
|
+
}
|
|
1874
1902
|
};
|
|
1875
|
-
__name(_DeprecateWorkflowTypeCommand, "DeprecateWorkflowTypeCommand");
|
|
1876
|
-
var DeprecateWorkflowTypeCommand = _DeprecateWorkflowTypeCommand;
|
|
1877
1903
|
|
|
1878
1904
|
// src/commands/DescribeActivityTypeCommand.ts
|
|
1879
1905
|
|
|
1880
1906
|
|
|
1881
1907
|
|
|
1882
|
-
var
|
|
1908
|
+
var DescribeActivityTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1883
1909
|
return [
|
|
1884
1910
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1885
1911
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1886
1912
|
];
|
|
1887
1913
|
}).s("SimpleWorkflowService", "DescribeActivityType", {}).n("SWFClient", "DescribeActivityTypeCommand").f(void 0, void 0).ser(se_DescribeActivityTypeCommand).de(de_DescribeActivityTypeCommand).build() {
|
|
1914
|
+
static {
|
|
1915
|
+
__name(this, "DescribeActivityTypeCommand");
|
|
1916
|
+
}
|
|
1888
1917
|
};
|
|
1889
|
-
__name(_DescribeActivityTypeCommand, "DescribeActivityTypeCommand");
|
|
1890
|
-
var DescribeActivityTypeCommand = _DescribeActivityTypeCommand;
|
|
1891
1918
|
|
|
1892
1919
|
// src/commands/DescribeDomainCommand.ts
|
|
1893
1920
|
|
|
1894
1921
|
|
|
1895
1922
|
|
|
1896
|
-
var
|
|
1923
|
+
var DescribeDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1897
1924
|
return [
|
|
1898
1925
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1899
1926
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1900
1927
|
];
|
|
1901
1928
|
}).s("SimpleWorkflowService", "DescribeDomain", {}).n("SWFClient", "DescribeDomainCommand").f(void 0, void 0).ser(se_DescribeDomainCommand).de(de_DescribeDomainCommand).build() {
|
|
1929
|
+
static {
|
|
1930
|
+
__name(this, "DescribeDomainCommand");
|
|
1931
|
+
}
|
|
1902
1932
|
};
|
|
1903
|
-
__name(_DescribeDomainCommand, "DescribeDomainCommand");
|
|
1904
|
-
var DescribeDomainCommand = _DescribeDomainCommand;
|
|
1905
1933
|
|
|
1906
1934
|
// src/commands/DescribeWorkflowExecutionCommand.ts
|
|
1907
1935
|
|
|
1908
1936
|
|
|
1909
1937
|
|
|
1910
|
-
var
|
|
1938
|
+
var DescribeWorkflowExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1911
1939
|
return [
|
|
1912
1940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1913
1941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1914
1942
|
];
|
|
1915
1943
|
}).s("SimpleWorkflowService", "DescribeWorkflowExecution", {}).n("SWFClient", "DescribeWorkflowExecutionCommand").f(void 0, void 0).ser(se_DescribeWorkflowExecutionCommand).de(de_DescribeWorkflowExecutionCommand).build() {
|
|
1944
|
+
static {
|
|
1945
|
+
__name(this, "DescribeWorkflowExecutionCommand");
|
|
1946
|
+
}
|
|
1916
1947
|
};
|
|
1917
|
-
__name(_DescribeWorkflowExecutionCommand, "DescribeWorkflowExecutionCommand");
|
|
1918
|
-
var DescribeWorkflowExecutionCommand = _DescribeWorkflowExecutionCommand;
|
|
1919
1948
|
|
|
1920
1949
|
// src/commands/DescribeWorkflowTypeCommand.ts
|
|
1921
1950
|
|
|
1922
1951
|
|
|
1923
1952
|
|
|
1924
|
-
var
|
|
1953
|
+
var DescribeWorkflowTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1925
1954
|
return [
|
|
1926
1955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1927
1956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1928
1957
|
];
|
|
1929
1958
|
}).s("SimpleWorkflowService", "DescribeWorkflowType", {}).n("SWFClient", "DescribeWorkflowTypeCommand").f(void 0, void 0).ser(se_DescribeWorkflowTypeCommand).de(de_DescribeWorkflowTypeCommand).build() {
|
|
1959
|
+
static {
|
|
1960
|
+
__name(this, "DescribeWorkflowTypeCommand");
|
|
1961
|
+
}
|
|
1930
1962
|
};
|
|
1931
|
-
__name(_DescribeWorkflowTypeCommand, "DescribeWorkflowTypeCommand");
|
|
1932
|
-
var DescribeWorkflowTypeCommand = _DescribeWorkflowTypeCommand;
|
|
1933
1963
|
|
|
1934
1964
|
// src/commands/GetWorkflowExecutionHistoryCommand.ts
|
|
1935
1965
|
|
|
1936
1966
|
|
|
1937
1967
|
|
|
1938
|
-
var
|
|
1968
|
+
var GetWorkflowExecutionHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1939
1969
|
return [
|
|
1940
1970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1941
1971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1942
1972
|
];
|
|
1943
1973
|
}).s("SimpleWorkflowService", "GetWorkflowExecutionHistory", {}).n("SWFClient", "GetWorkflowExecutionHistoryCommand").f(void 0, void 0).ser(se_GetWorkflowExecutionHistoryCommand).de(de_GetWorkflowExecutionHistoryCommand).build() {
|
|
1974
|
+
static {
|
|
1975
|
+
__name(this, "GetWorkflowExecutionHistoryCommand");
|
|
1976
|
+
}
|
|
1944
1977
|
};
|
|
1945
|
-
__name(_GetWorkflowExecutionHistoryCommand, "GetWorkflowExecutionHistoryCommand");
|
|
1946
|
-
var GetWorkflowExecutionHistoryCommand = _GetWorkflowExecutionHistoryCommand;
|
|
1947
1978
|
|
|
1948
1979
|
// src/commands/ListActivityTypesCommand.ts
|
|
1949
1980
|
|
|
1950
1981
|
|
|
1951
1982
|
|
|
1952
|
-
var
|
|
1983
|
+
var ListActivityTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1953
1984
|
return [
|
|
1954
1985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1955
1986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1956
1987
|
];
|
|
1957
1988
|
}).s("SimpleWorkflowService", "ListActivityTypes", {}).n("SWFClient", "ListActivityTypesCommand").f(void 0, void 0).ser(se_ListActivityTypesCommand).de(de_ListActivityTypesCommand).build() {
|
|
1989
|
+
static {
|
|
1990
|
+
__name(this, "ListActivityTypesCommand");
|
|
1991
|
+
}
|
|
1958
1992
|
};
|
|
1959
|
-
__name(_ListActivityTypesCommand, "ListActivityTypesCommand");
|
|
1960
|
-
var ListActivityTypesCommand = _ListActivityTypesCommand;
|
|
1961
1993
|
|
|
1962
1994
|
// src/commands/ListClosedWorkflowExecutionsCommand.ts
|
|
1963
1995
|
|
|
1964
1996
|
|
|
1965
1997
|
|
|
1966
|
-
var
|
|
1998
|
+
var ListClosedWorkflowExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1967
1999
|
return [
|
|
1968
2000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1969
2001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1970
2002
|
];
|
|
1971
2003
|
}).s("SimpleWorkflowService", "ListClosedWorkflowExecutions", {}).n("SWFClient", "ListClosedWorkflowExecutionsCommand").f(void 0, void 0).ser(se_ListClosedWorkflowExecutionsCommand).de(de_ListClosedWorkflowExecutionsCommand).build() {
|
|
2004
|
+
static {
|
|
2005
|
+
__name(this, "ListClosedWorkflowExecutionsCommand");
|
|
2006
|
+
}
|
|
1972
2007
|
};
|
|
1973
|
-
__name(_ListClosedWorkflowExecutionsCommand, "ListClosedWorkflowExecutionsCommand");
|
|
1974
|
-
var ListClosedWorkflowExecutionsCommand = _ListClosedWorkflowExecutionsCommand;
|
|
1975
2008
|
|
|
1976
2009
|
// src/commands/ListDomainsCommand.ts
|
|
1977
2010
|
|
|
1978
2011
|
|
|
1979
2012
|
|
|
1980
|
-
var
|
|
2013
|
+
var ListDomainsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1981
2014
|
return [
|
|
1982
2015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1983
2016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1984
2017
|
];
|
|
1985
2018
|
}).s("SimpleWorkflowService", "ListDomains", {}).n("SWFClient", "ListDomainsCommand").f(void 0, void 0).ser(se_ListDomainsCommand).de(de_ListDomainsCommand).build() {
|
|
2019
|
+
static {
|
|
2020
|
+
__name(this, "ListDomainsCommand");
|
|
2021
|
+
}
|
|
1986
2022
|
};
|
|
1987
|
-
__name(_ListDomainsCommand, "ListDomainsCommand");
|
|
1988
|
-
var ListDomainsCommand = _ListDomainsCommand;
|
|
1989
2023
|
|
|
1990
2024
|
// src/commands/ListOpenWorkflowExecutionsCommand.ts
|
|
1991
2025
|
|
|
1992
2026
|
|
|
1993
2027
|
|
|
1994
|
-
var
|
|
2028
|
+
var ListOpenWorkflowExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1995
2029
|
return [
|
|
1996
2030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1997
2031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1998
2032
|
];
|
|
1999
2033
|
}).s("SimpleWorkflowService", "ListOpenWorkflowExecutions", {}).n("SWFClient", "ListOpenWorkflowExecutionsCommand").f(void 0, void 0).ser(se_ListOpenWorkflowExecutionsCommand).de(de_ListOpenWorkflowExecutionsCommand).build() {
|
|
2034
|
+
static {
|
|
2035
|
+
__name(this, "ListOpenWorkflowExecutionsCommand");
|
|
2036
|
+
}
|
|
2000
2037
|
};
|
|
2001
|
-
__name(_ListOpenWorkflowExecutionsCommand, "ListOpenWorkflowExecutionsCommand");
|
|
2002
|
-
var ListOpenWorkflowExecutionsCommand = _ListOpenWorkflowExecutionsCommand;
|
|
2003
2038
|
|
|
2004
2039
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2005
2040
|
|
|
2006
2041
|
|
|
2007
2042
|
|
|
2008
|
-
var
|
|
2043
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2009
2044
|
return [
|
|
2010
2045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2011
2046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2012
2047
|
];
|
|
2013
2048
|
}).s("SimpleWorkflowService", "ListTagsForResource", {}).n("SWFClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2049
|
+
static {
|
|
2050
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2051
|
+
}
|
|
2014
2052
|
};
|
|
2015
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2016
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2017
2053
|
|
|
2018
2054
|
// src/commands/ListWorkflowTypesCommand.ts
|
|
2019
2055
|
|
|
2020
2056
|
|
|
2021
2057
|
|
|
2022
|
-
var
|
|
2058
|
+
var ListWorkflowTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2023
2059
|
return [
|
|
2024
2060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2025
2061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2026
2062
|
];
|
|
2027
2063
|
}).s("SimpleWorkflowService", "ListWorkflowTypes", {}).n("SWFClient", "ListWorkflowTypesCommand").f(void 0, void 0).ser(se_ListWorkflowTypesCommand).de(de_ListWorkflowTypesCommand).build() {
|
|
2064
|
+
static {
|
|
2065
|
+
__name(this, "ListWorkflowTypesCommand");
|
|
2066
|
+
}
|
|
2028
2067
|
};
|
|
2029
|
-
__name(_ListWorkflowTypesCommand, "ListWorkflowTypesCommand");
|
|
2030
|
-
var ListWorkflowTypesCommand = _ListWorkflowTypesCommand;
|
|
2031
2068
|
|
|
2032
2069
|
// src/commands/PollForActivityTaskCommand.ts
|
|
2033
2070
|
|
|
2034
2071
|
|
|
2035
2072
|
|
|
2036
|
-
var
|
|
2073
|
+
var PollForActivityTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2037
2074
|
return [
|
|
2038
2075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2039
2076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2040
2077
|
];
|
|
2041
2078
|
}).s("SimpleWorkflowService", "PollForActivityTask", {}).n("SWFClient", "PollForActivityTaskCommand").f(void 0, void 0).ser(se_PollForActivityTaskCommand).de(de_PollForActivityTaskCommand).build() {
|
|
2079
|
+
static {
|
|
2080
|
+
__name(this, "PollForActivityTaskCommand");
|
|
2081
|
+
}
|
|
2042
2082
|
};
|
|
2043
|
-
__name(_PollForActivityTaskCommand, "PollForActivityTaskCommand");
|
|
2044
|
-
var PollForActivityTaskCommand = _PollForActivityTaskCommand;
|
|
2045
2083
|
|
|
2046
2084
|
// src/commands/PollForDecisionTaskCommand.ts
|
|
2047
2085
|
|
|
2048
2086
|
|
|
2049
2087
|
|
|
2050
|
-
var
|
|
2088
|
+
var PollForDecisionTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2051
2089
|
return [
|
|
2052
2090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2053
2091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2054
2092
|
];
|
|
2055
2093
|
}).s("SimpleWorkflowService", "PollForDecisionTask", {}).n("SWFClient", "PollForDecisionTaskCommand").f(void 0, void 0).ser(se_PollForDecisionTaskCommand).de(de_PollForDecisionTaskCommand).build() {
|
|
2094
|
+
static {
|
|
2095
|
+
__name(this, "PollForDecisionTaskCommand");
|
|
2096
|
+
}
|
|
2056
2097
|
};
|
|
2057
|
-
__name(_PollForDecisionTaskCommand, "PollForDecisionTaskCommand");
|
|
2058
|
-
var PollForDecisionTaskCommand = _PollForDecisionTaskCommand;
|
|
2059
2098
|
|
|
2060
2099
|
// src/commands/RecordActivityTaskHeartbeatCommand.ts
|
|
2061
2100
|
|
|
2062
2101
|
|
|
2063
2102
|
|
|
2064
|
-
var
|
|
2103
|
+
var RecordActivityTaskHeartbeatCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2065
2104
|
return [
|
|
2066
2105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2067
2106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2068
2107
|
];
|
|
2069
2108
|
}).s("SimpleWorkflowService", "RecordActivityTaskHeartbeat", {}).n("SWFClient", "RecordActivityTaskHeartbeatCommand").f(void 0, void 0).ser(se_RecordActivityTaskHeartbeatCommand).de(de_RecordActivityTaskHeartbeatCommand).build() {
|
|
2109
|
+
static {
|
|
2110
|
+
__name(this, "RecordActivityTaskHeartbeatCommand");
|
|
2111
|
+
}
|
|
2070
2112
|
};
|
|
2071
|
-
__name(_RecordActivityTaskHeartbeatCommand, "RecordActivityTaskHeartbeatCommand");
|
|
2072
|
-
var RecordActivityTaskHeartbeatCommand = _RecordActivityTaskHeartbeatCommand;
|
|
2073
2113
|
|
|
2074
2114
|
// src/commands/RegisterActivityTypeCommand.ts
|
|
2075
2115
|
|
|
2076
2116
|
|
|
2077
2117
|
|
|
2078
|
-
var
|
|
2118
|
+
var RegisterActivityTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2079
2119
|
return [
|
|
2080
2120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2081
2121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2082
2122
|
];
|
|
2083
2123
|
}).s("SimpleWorkflowService", "RegisterActivityType", {}).n("SWFClient", "RegisterActivityTypeCommand").f(void 0, void 0).ser(se_RegisterActivityTypeCommand).de(de_RegisterActivityTypeCommand).build() {
|
|
2124
|
+
static {
|
|
2125
|
+
__name(this, "RegisterActivityTypeCommand");
|
|
2126
|
+
}
|
|
2084
2127
|
};
|
|
2085
|
-
__name(_RegisterActivityTypeCommand, "RegisterActivityTypeCommand");
|
|
2086
|
-
var RegisterActivityTypeCommand = _RegisterActivityTypeCommand;
|
|
2087
2128
|
|
|
2088
2129
|
// src/commands/RegisterDomainCommand.ts
|
|
2089
2130
|
|
|
2090
2131
|
|
|
2091
2132
|
|
|
2092
|
-
var
|
|
2133
|
+
var RegisterDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2093
2134
|
return [
|
|
2094
2135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2095
2136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2096
2137
|
];
|
|
2097
2138
|
}).s("SimpleWorkflowService", "RegisterDomain", {}).n("SWFClient", "RegisterDomainCommand").f(void 0, void 0).ser(se_RegisterDomainCommand).de(de_RegisterDomainCommand).build() {
|
|
2139
|
+
static {
|
|
2140
|
+
__name(this, "RegisterDomainCommand");
|
|
2141
|
+
}
|
|
2098
2142
|
};
|
|
2099
|
-
__name(_RegisterDomainCommand, "RegisterDomainCommand");
|
|
2100
|
-
var RegisterDomainCommand = _RegisterDomainCommand;
|
|
2101
2143
|
|
|
2102
2144
|
// src/commands/RegisterWorkflowTypeCommand.ts
|
|
2103
2145
|
|
|
2104
2146
|
|
|
2105
2147
|
|
|
2106
|
-
var
|
|
2148
|
+
var RegisterWorkflowTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2107
2149
|
return [
|
|
2108
2150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2109
2151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2110
2152
|
];
|
|
2111
2153
|
}).s("SimpleWorkflowService", "RegisterWorkflowType", {}).n("SWFClient", "RegisterWorkflowTypeCommand").f(void 0, void 0).ser(se_RegisterWorkflowTypeCommand).de(de_RegisterWorkflowTypeCommand).build() {
|
|
2154
|
+
static {
|
|
2155
|
+
__name(this, "RegisterWorkflowTypeCommand");
|
|
2156
|
+
}
|
|
2112
2157
|
};
|
|
2113
|
-
__name(_RegisterWorkflowTypeCommand, "RegisterWorkflowTypeCommand");
|
|
2114
|
-
var RegisterWorkflowTypeCommand = _RegisterWorkflowTypeCommand;
|
|
2115
2158
|
|
|
2116
2159
|
// src/commands/RequestCancelWorkflowExecutionCommand.ts
|
|
2117
2160
|
|
|
2118
2161
|
|
|
2119
2162
|
|
|
2120
|
-
var
|
|
2163
|
+
var RequestCancelWorkflowExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2121
2164
|
return [
|
|
2122
2165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2123
2166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2124
2167
|
];
|
|
2125
2168
|
}).s("SimpleWorkflowService", "RequestCancelWorkflowExecution", {}).n("SWFClient", "RequestCancelWorkflowExecutionCommand").f(void 0, void 0).ser(se_RequestCancelWorkflowExecutionCommand).de(de_RequestCancelWorkflowExecutionCommand).build() {
|
|
2169
|
+
static {
|
|
2170
|
+
__name(this, "RequestCancelWorkflowExecutionCommand");
|
|
2171
|
+
}
|
|
2126
2172
|
};
|
|
2127
|
-
__name(_RequestCancelWorkflowExecutionCommand, "RequestCancelWorkflowExecutionCommand");
|
|
2128
|
-
var RequestCancelWorkflowExecutionCommand = _RequestCancelWorkflowExecutionCommand;
|
|
2129
2173
|
|
|
2130
2174
|
// src/commands/RespondActivityTaskCanceledCommand.ts
|
|
2131
2175
|
|
|
2132
2176
|
|
|
2133
2177
|
|
|
2134
|
-
var
|
|
2178
|
+
var RespondActivityTaskCanceledCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2135
2179
|
return [
|
|
2136
2180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2137
2181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2138
2182
|
];
|
|
2139
2183
|
}).s("SimpleWorkflowService", "RespondActivityTaskCanceled", {}).n("SWFClient", "RespondActivityTaskCanceledCommand").f(void 0, void 0).ser(se_RespondActivityTaskCanceledCommand).de(de_RespondActivityTaskCanceledCommand).build() {
|
|
2184
|
+
static {
|
|
2185
|
+
__name(this, "RespondActivityTaskCanceledCommand");
|
|
2186
|
+
}
|
|
2140
2187
|
};
|
|
2141
|
-
__name(_RespondActivityTaskCanceledCommand, "RespondActivityTaskCanceledCommand");
|
|
2142
|
-
var RespondActivityTaskCanceledCommand = _RespondActivityTaskCanceledCommand;
|
|
2143
2188
|
|
|
2144
2189
|
// src/commands/RespondActivityTaskCompletedCommand.ts
|
|
2145
2190
|
|
|
2146
2191
|
|
|
2147
2192
|
|
|
2148
|
-
var
|
|
2193
|
+
var RespondActivityTaskCompletedCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2149
2194
|
return [
|
|
2150
2195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2151
2196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2152
2197
|
];
|
|
2153
2198
|
}).s("SimpleWorkflowService", "RespondActivityTaskCompleted", {}).n("SWFClient", "RespondActivityTaskCompletedCommand").f(void 0, void 0).ser(se_RespondActivityTaskCompletedCommand).de(de_RespondActivityTaskCompletedCommand).build() {
|
|
2199
|
+
static {
|
|
2200
|
+
__name(this, "RespondActivityTaskCompletedCommand");
|
|
2201
|
+
}
|
|
2154
2202
|
};
|
|
2155
|
-
__name(_RespondActivityTaskCompletedCommand, "RespondActivityTaskCompletedCommand");
|
|
2156
|
-
var RespondActivityTaskCompletedCommand = _RespondActivityTaskCompletedCommand;
|
|
2157
2203
|
|
|
2158
2204
|
// src/commands/RespondActivityTaskFailedCommand.ts
|
|
2159
2205
|
|
|
2160
2206
|
|
|
2161
2207
|
|
|
2162
|
-
var
|
|
2208
|
+
var RespondActivityTaskFailedCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2163
2209
|
return [
|
|
2164
2210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2165
2211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2166
2212
|
];
|
|
2167
2213
|
}).s("SimpleWorkflowService", "RespondActivityTaskFailed", {}).n("SWFClient", "RespondActivityTaskFailedCommand").f(void 0, void 0).ser(se_RespondActivityTaskFailedCommand).de(de_RespondActivityTaskFailedCommand).build() {
|
|
2214
|
+
static {
|
|
2215
|
+
__name(this, "RespondActivityTaskFailedCommand");
|
|
2216
|
+
}
|
|
2168
2217
|
};
|
|
2169
|
-
__name(_RespondActivityTaskFailedCommand, "RespondActivityTaskFailedCommand");
|
|
2170
|
-
var RespondActivityTaskFailedCommand = _RespondActivityTaskFailedCommand;
|
|
2171
2218
|
|
|
2172
2219
|
// src/commands/RespondDecisionTaskCompletedCommand.ts
|
|
2173
2220
|
|
|
2174
2221
|
|
|
2175
2222
|
|
|
2176
|
-
var
|
|
2223
|
+
var RespondDecisionTaskCompletedCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2177
2224
|
return [
|
|
2178
2225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2179
2226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2180
2227
|
];
|
|
2181
2228
|
}).s("SimpleWorkflowService", "RespondDecisionTaskCompleted", {}).n("SWFClient", "RespondDecisionTaskCompletedCommand").f(void 0, void 0).ser(se_RespondDecisionTaskCompletedCommand).de(de_RespondDecisionTaskCompletedCommand).build() {
|
|
2229
|
+
static {
|
|
2230
|
+
__name(this, "RespondDecisionTaskCompletedCommand");
|
|
2231
|
+
}
|
|
2182
2232
|
};
|
|
2183
|
-
__name(_RespondDecisionTaskCompletedCommand, "RespondDecisionTaskCompletedCommand");
|
|
2184
|
-
var RespondDecisionTaskCompletedCommand = _RespondDecisionTaskCompletedCommand;
|
|
2185
2233
|
|
|
2186
2234
|
// src/commands/SignalWorkflowExecutionCommand.ts
|
|
2187
2235
|
|
|
2188
2236
|
|
|
2189
2237
|
|
|
2190
|
-
var
|
|
2238
|
+
var SignalWorkflowExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2191
2239
|
return [
|
|
2192
2240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2193
2241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2194
2242
|
];
|
|
2195
2243
|
}).s("SimpleWorkflowService", "SignalWorkflowExecution", {}).n("SWFClient", "SignalWorkflowExecutionCommand").f(void 0, void 0).ser(se_SignalWorkflowExecutionCommand).de(de_SignalWorkflowExecutionCommand).build() {
|
|
2244
|
+
static {
|
|
2245
|
+
__name(this, "SignalWorkflowExecutionCommand");
|
|
2246
|
+
}
|
|
2196
2247
|
};
|
|
2197
|
-
__name(_SignalWorkflowExecutionCommand, "SignalWorkflowExecutionCommand");
|
|
2198
|
-
var SignalWorkflowExecutionCommand = _SignalWorkflowExecutionCommand;
|
|
2199
2248
|
|
|
2200
2249
|
// src/commands/StartWorkflowExecutionCommand.ts
|
|
2201
2250
|
|
|
2202
2251
|
|
|
2203
2252
|
|
|
2204
|
-
var
|
|
2253
|
+
var StartWorkflowExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2205
2254
|
return [
|
|
2206
2255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2207
2256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2208
2257
|
];
|
|
2209
2258
|
}).s("SimpleWorkflowService", "StartWorkflowExecution", {}).n("SWFClient", "StartWorkflowExecutionCommand").f(void 0, void 0).ser(se_StartWorkflowExecutionCommand).de(de_StartWorkflowExecutionCommand).build() {
|
|
2259
|
+
static {
|
|
2260
|
+
__name(this, "StartWorkflowExecutionCommand");
|
|
2261
|
+
}
|
|
2210
2262
|
};
|
|
2211
|
-
__name(_StartWorkflowExecutionCommand, "StartWorkflowExecutionCommand");
|
|
2212
|
-
var StartWorkflowExecutionCommand = _StartWorkflowExecutionCommand;
|
|
2213
2263
|
|
|
2214
2264
|
// src/commands/TagResourceCommand.ts
|
|
2215
2265
|
|
|
2216
2266
|
|
|
2217
2267
|
|
|
2218
|
-
var
|
|
2268
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2219
2269
|
return [
|
|
2220
2270
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2221
2271
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2222
2272
|
];
|
|
2223
2273
|
}).s("SimpleWorkflowService", "TagResource", {}).n("SWFClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2274
|
+
static {
|
|
2275
|
+
__name(this, "TagResourceCommand");
|
|
2276
|
+
}
|
|
2224
2277
|
};
|
|
2225
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2226
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2227
2278
|
|
|
2228
2279
|
// src/commands/TerminateWorkflowExecutionCommand.ts
|
|
2229
2280
|
|
|
2230
2281
|
|
|
2231
2282
|
|
|
2232
|
-
var
|
|
2283
|
+
var TerminateWorkflowExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2233
2284
|
return [
|
|
2234
2285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2235
2286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2236
2287
|
];
|
|
2237
2288
|
}).s("SimpleWorkflowService", "TerminateWorkflowExecution", {}).n("SWFClient", "TerminateWorkflowExecutionCommand").f(void 0, void 0).ser(se_TerminateWorkflowExecutionCommand).de(de_TerminateWorkflowExecutionCommand).build() {
|
|
2289
|
+
static {
|
|
2290
|
+
__name(this, "TerminateWorkflowExecutionCommand");
|
|
2291
|
+
}
|
|
2238
2292
|
};
|
|
2239
|
-
__name(_TerminateWorkflowExecutionCommand, "TerminateWorkflowExecutionCommand");
|
|
2240
|
-
var TerminateWorkflowExecutionCommand = _TerminateWorkflowExecutionCommand;
|
|
2241
2293
|
|
|
2242
2294
|
// src/commands/UndeprecateActivityTypeCommand.ts
|
|
2243
2295
|
|
|
2244
2296
|
|
|
2245
2297
|
|
|
2246
|
-
var
|
|
2298
|
+
var UndeprecateActivityTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2247
2299
|
return [
|
|
2248
2300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2249
2301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2250
2302
|
];
|
|
2251
2303
|
}).s("SimpleWorkflowService", "UndeprecateActivityType", {}).n("SWFClient", "UndeprecateActivityTypeCommand").f(void 0, void 0).ser(se_UndeprecateActivityTypeCommand).de(de_UndeprecateActivityTypeCommand).build() {
|
|
2304
|
+
static {
|
|
2305
|
+
__name(this, "UndeprecateActivityTypeCommand");
|
|
2306
|
+
}
|
|
2252
2307
|
};
|
|
2253
|
-
__name(_UndeprecateActivityTypeCommand, "UndeprecateActivityTypeCommand");
|
|
2254
|
-
var UndeprecateActivityTypeCommand = _UndeprecateActivityTypeCommand;
|
|
2255
2308
|
|
|
2256
2309
|
// src/commands/UndeprecateDomainCommand.ts
|
|
2257
2310
|
|
|
2258
2311
|
|
|
2259
2312
|
|
|
2260
|
-
var
|
|
2313
|
+
var UndeprecateDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2261
2314
|
return [
|
|
2262
2315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2263
2316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2264
2317
|
];
|
|
2265
2318
|
}).s("SimpleWorkflowService", "UndeprecateDomain", {}).n("SWFClient", "UndeprecateDomainCommand").f(void 0, void 0).ser(se_UndeprecateDomainCommand).de(de_UndeprecateDomainCommand).build() {
|
|
2319
|
+
static {
|
|
2320
|
+
__name(this, "UndeprecateDomainCommand");
|
|
2321
|
+
}
|
|
2266
2322
|
};
|
|
2267
|
-
__name(_UndeprecateDomainCommand, "UndeprecateDomainCommand");
|
|
2268
|
-
var UndeprecateDomainCommand = _UndeprecateDomainCommand;
|
|
2269
2323
|
|
|
2270
2324
|
// src/commands/UndeprecateWorkflowTypeCommand.ts
|
|
2271
2325
|
|
|
2272
2326
|
|
|
2273
2327
|
|
|
2274
|
-
var
|
|
2328
|
+
var UndeprecateWorkflowTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2275
2329
|
return [
|
|
2276
2330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2277
2331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2278
2332
|
];
|
|
2279
2333
|
}).s("SimpleWorkflowService", "UndeprecateWorkflowType", {}).n("SWFClient", "UndeprecateWorkflowTypeCommand").f(void 0, void 0).ser(se_UndeprecateWorkflowTypeCommand).de(de_UndeprecateWorkflowTypeCommand).build() {
|
|
2334
|
+
static {
|
|
2335
|
+
__name(this, "UndeprecateWorkflowTypeCommand");
|
|
2336
|
+
}
|
|
2280
2337
|
};
|
|
2281
|
-
__name(_UndeprecateWorkflowTypeCommand, "UndeprecateWorkflowTypeCommand");
|
|
2282
|
-
var UndeprecateWorkflowTypeCommand = _UndeprecateWorkflowTypeCommand;
|
|
2283
2338
|
|
|
2284
2339
|
// src/commands/UntagResourceCommand.ts
|
|
2285
2340
|
|
|
2286
2341
|
|
|
2287
2342
|
|
|
2288
|
-
var
|
|
2343
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2289
2344
|
return [
|
|
2290
2345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2291
2346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2292
2347
|
];
|
|
2293
2348
|
}).s("SimpleWorkflowService", "UntagResource", {}).n("SWFClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2349
|
+
static {
|
|
2350
|
+
__name(this, "UntagResourceCommand");
|
|
2351
|
+
}
|
|
2294
2352
|
};
|
|
2295
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2296
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2297
2353
|
|
|
2298
2354
|
// src/SWF.ts
|
|
2299
2355
|
var commands = {
|
|
@@ -2337,10 +2393,11 @@ var commands = {
|
|
|
2337
2393
|
UndeprecateWorkflowTypeCommand,
|
|
2338
2394
|
UntagResourceCommand
|
|
2339
2395
|
};
|
|
2340
|
-
var
|
|
2396
|
+
var SWF = class extends SWFClient {
|
|
2397
|
+
static {
|
|
2398
|
+
__name(this, "SWF");
|
|
2399
|
+
}
|
|
2341
2400
|
};
|
|
2342
|
-
__name(_SWF, "SWF");
|
|
2343
|
-
var SWF = _SWF;
|
|
2344
2401
|
(0, import_smithy_client.createAggregatedClient)(commands, SWF);
|
|
2345
2402
|
|
|
2346
2403
|
// src/pagination/GetWorkflowExecutionHistoryPaginator.ts
|