@aws-sdk/client-swf 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1744 -1400
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/SWFClient.js +2 -0
- package/dist-es/commands/CountClosedWorkflowExecutionsCommand.js +3 -9
- package/dist-es/commands/CountOpenWorkflowExecutionsCommand.js +3 -9
- package/dist-es/commands/CountPendingActivityTasksCommand.js +3 -9
- package/dist-es/commands/CountPendingDecisionTasksCommand.js +3 -9
- package/dist-es/commands/DeleteActivityTypeCommand.js +3 -9
- package/dist-es/commands/DeleteWorkflowTypeCommand.js +3 -9
- package/dist-es/commands/DeprecateActivityTypeCommand.js +3 -9
- package/dist-es/commands/DeprecateDomainCommand.js +3 -9
- package/dist-es/commands/DeprecateWorkflowTypeCommand.js +3 -9
- package/dist-es/commands/DescribeActivityTypeCommand.js +3 -9
- package/dist-es/commands/DescribeDomainCommand.js +3 -9
- package/dist-es/commands/DescribeWorkflowExecutionCommand.js +3 -9
- package/dist-es/commands/DescribeWorkflowTypeCommand.js +3 -9
- package/dist-es/commands/GetWorkflowExecutionHistoryCommand.js +3 -9
- package/dist-es/commands/ListActivityTypesCommand.js +3 -9
- package/dist-es/commands/ListClosedWorkflowExecutionsCommand.js +3 -9
- package/dist-es/commands/ListDomainsCommand.js +3 -9
- package/dist-es/commands/ListOpenWorkflowExecutionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListWorkflowTypesCommand.js +3 -9
- package/dist-es/commands/PollForActivityTaskCommand.js +3 -9
- package/dist-es/commands/PollForDecisionTaskCommand.js +3 -9
- package/dist-es/commands/RecordActivityTaskHeartbeatCommand.js +3 -9
- package/dist-es/commands/RegisterActivityTypeCommand.js +3 -9
- package/dist-es/commands/RegisterDomainCommand.js +3 -9
- package/dist-es/commands/RegisterWorkflowTypeCommand.js +3 -9
- package/dist-es/commands/RequestCancelWorkflowExecutionCommand.js +3 -9
- package/dist-es/commands/RespondActivityTaskCanceledCommand.js +3 -9
- package/dist-es/commands/RespondActivityTaskCompletedCommand.js +3 -9
- package/dist-es/commands/RespondActivityTaskFailedCommand.js +3 -9
- package/dist-es/commands/RespondDecisionTaskCompletedCommand.js +3 -9
- package/dist-es/commands/SignalWorkflowExecutionCommand.js +3 -9
- package/dist-es/commands/StartWorkflowExecutionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/TerminateWorkflowExecutionCommand.js +3 -9
- package/dist-es/commands/UndeprecateActivityTypeCommand.js +3 -9
- package/dist-es/commands/UndeprecateDomainCommand.js +3 -9
- package/dist-es/commands/UndeprecateWorkflowTypeCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1633 -0
- package/dist-types/SWFClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +205 -0
- package/dist-types/ts3.4/SWFClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +210 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -1098
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -353
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -473
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class SWFClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,12 +110,12 @@ class SWFClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class SWFServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let SWFServiceException$1 = class SWFServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, SWFServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
120
|
const ActivityTaskTimeoutType = {
|
|
121
121
|
HEARTBEAT: "HEARTBEAT",
|
|
@@ -166,7 +166,7 @@ const ContinueAsNewWorkflowExecutionFailedCause = {
|
|
|
166
166
|
WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED",
|
|
167
167
|
WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST",
|
|
168
168
|
};
|
|
169
|
-
class OperationNotPermittedFault extends SWFServiceException {
|
|
169
|
+
let OperationNotPermittedFault$1 = class OperationNotPermittedFault extends SWFServiceException$1 {
|
|
170
170
|
name = "OperationNotPermittedFault";
|
|
171
171
|
$fault = "client";
|
|
172
172
|
constructor(opts) {
|
|
@@ -177,8 +177,8 @@ class OperationNotPermittedFault extends SWFServiceException {
|
|
|
177
177
|
});
|
|
178
178
|
Object.setPrototypeOf(this, OperationNotPermittedFault.prototype);
|
|
179
179
|
}
|
|
180
|
-
}
|
|
181
|
-
class UnknownResourceFault extends SWFServiceException {
|
|
180
|
+
};
|
|
181
|
+
let UnknownResourceFault$1 = class UnknownResourceFault extends SWFServiceException$1 {
|
|
182
182
|
name = "UnknownResourceFault";
|
|
183
183
|
$fault = "client";
|
|
184
184
|
constructor(opts) {
|
|
@@ -189,7 +189,7 @@ class UnknownResourceFault extends SWFServiceException {
|
|
|
189
189
|
});
|
|
190
190
|
Object.setPrototypeOf(this, UnknownResourceFault.prototype);
|
|
191
191
|
}
|
|
192
|
-
}
|
|
192
|
+
};
|
|
193
193
|
const DecisionType = {
|
|
194
194
|
CancelTimer: "CancelTimer",
|
|
195
195
|
CancelWorkflowExecution: "CancelWorkflowExecution",
|
|
@@ -338,7 +338,7 @@ const WorkflowExecutionTerminatedCause = {
|
|
|
338
338
|
EVENT_LIMIT_EXCEEDED: "EVENT_LIMIT_EXCEEDED",
|
|
339
339
|
OPERATOR_INITIATED: "OPERATOR_INITIATED",
|
|
340
340
|
};
|
|
341
|
-
class DefaultUndefinedFault extends SWFServiceException {
|
|
341
|
+
let DefaultUndefinedFault$1 = class DefaultUndefinedFault extends SWFServiceException$1 {
|
|
342
342
|
name = "DefaultUndefinedFault";
|
|
343
343
|
$fault = "client";
|
|
344
344
|
constructor(opts) {
|
|
@@ -349,8 +349,8 @@ class DefaultUndefinedFault extends SWFServiceException {
|
|
|
349
349
|
});
|
|
350
350
|
Object.setPrototypeOf(this, DefaultUndefinedFault.prototype);
|
|
351
351
|
}
|
|
352
|
-
}
|
|
353
|
-
class TypeNotDeprecatedFault extends SWFServiceException {
|
|
352
|
+
};
|
|
353
|
+
let TypeNotDeprecatedFault$1 = class TypeNotDeprecatedFault extends SWFServiceException$1 {
|
|
354
354
|
name = "TypeNotDeprecatedFault";
|
|
355
355
|
$fault = "client";
|
|
356
356
|
constructor(opts) {
|
|
@@ -361,8 +361,8 @@ class TypeNotDeprecatedFault extends SWFServiceException {
|
|
|
361
361
|
});
|
|
362
362
|
Object.setPrototypeOf(this, TypeNotDeprecatedFault.prototype);
|
|
363
363
|
}
|
|
364
|
-
}
|
|
365
|
-
class TypeDeprecatedFault extends SWFServiceException {
|
|
364
|
+
};
|
|
365
|
+
let TypeDeprecatedFault$1 = class TypeDeprecatedFault extends SWFServiceException$1 {
|
|
366
366
|
name = "TypeDeprecatedFault";
|
|
367
367
|
$fault = "client";
|
|
368
368
|
constructor(opts) {
|
|
@@ -373,8 +373,8 @@ class TypeDeprecatedFault extends SWFServiceException {
|
|
|
373
373
|
});
|
|
374
374
|
Object.setPrototypeOf(this, TypeDeprecatedFault.prototype);
|
|
375
375
|
}
|
|
376
|
-
}
|
|
377
|
-
class DomainDeprecatedFault extends SWFServiceException {
|
|
376
|
+
};
|
|
377
|
+
let DomainDeprecatedFault$1 = class DomainDeprecatedFault extends SWFServiceException$1 {
|
|
378
378
|
name = "DomainDeprecatedFault";
|
|
379
379
|
$fault = "client";
|
|
380
380
|
constructor(opts) {
|
|
@@ -385,12 +385,12 @@ class DomainDeprecatedFault extends SWFServiceException {
|
|
|
385
385
|
});
|
|
386
386
|
Object.setPrototypeOf(this, DomainDeprecatedFault.prototype);
|
|
387
387
|
}
|
|
388
|
-
}
|
|
388
|
+
};
|
|
389
389
|
const ExecutionStatus = {
|
|
390
390
|
CLOSED: "CLOSED",
|
|
391
391
|
OPEN: "OPEN",
|
|
392
392
|
};
|
|
393
|
-
class DomainAlreadyExistsFault extends SWFServiceException {
|
|
393
|
+
let DomainAlreadyExistsFault$1 = class DomainAlreadyExistsFault extends SWFServiceException$1 {
|
|
394
394
|
name = "DomainAlreadyExistsFault";
|
|
395
395
|
$fault = "client";
|
|
396
396
|
constructor(opts) {
|
|
@@ -401,8 +401,8 @@ class DomainAlreadyExistsFault extends SWFServiceException {
|
|
|
401
401
|
});
|
|
402
402
|
Object.setPrototypeOf(this, DomainAlreadyExistsFault.prototype);
|
|
403
403
|
}
|
|
404
|
-
}
|
|
405
|
-
class LimitExceededFault extends SWFServiceException {
|
|
404
|
+
};
|
|
405
|
+
let LimitExceededFault$1 = class LimitExceededFault extends SWFServiceException$1 {
|
|
406
406
|
name = "LimitExceededFault";
|
|
407
407
|
$fault = "client";
|
|
408
408
|
constructor(opts) {
|
|
@@ -413,8 +413,8 @@ class LimitExceededFault extends SWFServiceException {
|
|
|
413
413
|
});
|
|
414
414
|
Object.setPrototypeOf(this, LimitExceededFault.prototype);
|
|
415
415
|
}
|
|
416
|
-
}
|
|
417
|
-
class TypeAlreadyExistsFault extends SWFServiceException {
|
|
416
|
+
};
|
|
417
|
+
let TypeAlreadyExistsFault$1 = class TypeAlreadyExistsFault extends SWFServiceException$1 {
|
|
418
418
|
name = "TypeAlreadyExistsFault";
|
|
419
419
|
$fault = "client";
|
|
420
420
|
constructor(opts) {
|
|
@@ -425,8 +425,8 @@ class TypeAlreadyExistsFault extends SWFServiceException {
|
|
|
425
425
|
});
|
|
426
426
|
Object.setPrototypeOf(this, TypeAlreadyExistsFault.prototype);
|
|
427
427
|
}
|
|
428
|
-
}
|
|
429
|
-
class TooManyTagsFault extends SWFServiceException {
|
|
428
|
+
};
|
|
429
|
+
let TooManyTagsFault$1 = class TooManyTagsFault extends SWFServiceException$1 {
|
|
430
430
|
name = "TooManyTagsFault";
|
|
431
431
|
$fault = "client";
|
|
432
432
|
constructor(opts) {
|
|
@@ -437,8 +437,8 @@ class TooManyTagsFault extends SWFServiceException {
|
|
|
437
437
|
});
|
|
438
438
|
Object.setPrototypeOf(this, TooManyTagsFault.prototype);
|
|
439
439
|
}
|
|
440
|
-
}
|
|
441
|
-
class WorkflowExecutionAlreadyStartedFault extends SWFServiceException {
|
|
440
|
+
};
|
|
441
|
+
let WorkflowExecutionAlreadyStartedFault$1 = class WorkflowExecutionAlreadyStartedFault extends SWFServiceException$1 {
|
|
442
442
|
name = "WorkflowExecutionAlreadyStartedFault";
|
|
443
443
|
$fault = "client";
|
|
444
444
|
constructor(opts) {
|
|
@@ -449,1112 +449,1646 @@ class WorkflowExecutionAlreadyStartedFault extends SWFServiceException {
|
|
|
449
449
|
});
|
|
450
450
|
Object.setPrototypeOf(this, WorkflowExecutionAlreadyStartedFault.prototype);
|
|
451
451
|
}
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
const se_CountClosedWorkflowExecutionsCommand = async (input, context) => {
|
|
455
|
-
const headers = sharedHeaders("CountClosedWorkflowExecutions");
|
|
456
|
-
let body;
|
|
457
|
-
body = JSON.stringify(se_CountClosedWorkflowExecutionsInput(input));
|
|
458
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
459
|
-
};
|
|
460
|
-
const se_CountOpenWorkflowExecutionsCommand = async (input, context) => {
|
|
461
|
-
const headers = sharedHeaders("CountOpenWorkflowExecutions");
|
|
462
|
-
let body;
|
|
463
|
-
body = JSON.stringify(se_CountOpenWorkflowExecutionsInput(input));
|
|
464
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
465
|
-
};
|
|
466
|
-
const se_CountPendingActivityTasksCommand = async (input, context) => {
|
|
467
|
-
const headers = sharedHeaders("CountPendingActivityTasks");
|
|
468
|
-
let body;
|
|
469
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
470
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
471
|
-
};
|
|
472
|
-
const se_CountPendingDecisionTasksCommand = async (input, context) => {
|
|
473
|
-
const headers = sharedHeaders("CountPendingDecisionTasks");
|
|
474
|
-
let body;
|
|
475
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
476
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
477
|
-
};
|
|
478
|
-
const se_DeleteActivityTypeCommand = async (input, context) => {
|
|
479
|
-
const headers = sharedHeaders("DeleteActivityType");
|
|
480
|
-
let body;
|
|
481
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
482
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
483
|
-
};
|
|
484
|
-
const se_DeleteWorkflowTypeCommand = async (input, context) => {
|
|
485
|
-
const headers = sharedHeaders("DeleteWorkflowType");
|
|
486
|
-
let body;
|
|
487
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
488
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
489
|
-
};
|
|
490
|
-
const se_DeprecateActivityTypeCommand = async (input, context) => {
|
|
491
|
-
const headers = sharedHeaders("DeprecateActivityType");
|
|
492
|
-
let body;
|
|
493
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
494
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
495
|
-
};
|
|
496
|
-
const se_DeprecateDomainCommand = async (input, context) => {
|
|
497
|
-
const headers = sharedHeaders("DeprecateDomain");
|
|
498
|
-
let body;
|
|
499
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
500
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
501
|
-
};
|
|
502
|
-
const se_DeprecateWorkflowTypeCommand = async (input, context) => {
|
|
503
|
-
const headers = sharedHeaders("DeprecateWorkflowType");
|
|
504
|
-
let body;
|
|
505
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
506
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
507
|
-
};
|
|
508
|
-
const se_DescribeActivityTypeCommand = async (input, context) => {
|
|
509
|
-
const headers = sharedHeaders("DescribeActivityType");
|
|
510
|
-
let body;
|
|
511
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
512
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
513
|
-
};
|
|
514
|
-
const se_DescribeDomainCommand = async (input, context) => {
|
|
515
|
-
const headers = sharedHeaders("DescribeDomain");
|
|
516
|
-
let body;
|
|
517
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
518
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
519
|
-
};
|
|
520
|
-
const se_DescribeWorkflowExecutionCommand = async (input, context) => {
|
|
521
|
-
const headers = sharedHeaders("DescribeWorkflowExecution");
|
|
522
|
-
let body;
|
|
523
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
524
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
525
|
-
};
|
|
526
|
-
const se_DescribeWorkflowTypeCommand = async (input, context) => {
|
|
527
|
-
const headers = sharedHeaders("DescribeWorkflowType");
|
|
528
|
-
let body;
|
|
529
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
530
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
531
|
-
};
|
|
532
|
-
const se_GetWorkflowExecutionHistoryCommand = async (input, context) => {
|
|
533
|
-
const headers = sharedHeaders("GetWorkflowExecutionHistory");
|
|
534
|
-
let body;
|
|
535
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
536
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
537
|
-
};
|
|
538
|
-
const se_ListActivityTypesCommand = async (input, context) => {
|
|
539
|
-
const headers = sharedHeaders("ListActivityTypes");
|
|
540
|
-
let body;
|
|
541
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
542
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
543
|
-
};
|
|
544
|
-
const se_ListClosedWorkflowExecutionsCommand = async (input, context) => {
|
|
545
|
-
const headers = sharedHeaders("ListClosedWorkflowExecutions");
|
|
546
|
-
let body;
|
|
547
|
-
body = JSON.stringify(se_ListClosedWorkflowExecutionsInput(input));
|
|
548
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
549
|
-
};
|
|
550
|
-
const se_ListDomainsCommand = async (input, context) => {
|
|
551
|
-
const headers = sharedHeaders("ListDomains");
|
|
552
|
-
let body;
|
|
553
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
554
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
555
|
-
};
|
|
556
|
-
const se_ListOpenWorkflowExecutionsCommand = async (input, context) => {
|
|
557
|
-
const headers = sharedHeaders("ListOpenWorkflowExecutions");
|
|
558
|
-
let body;
|
|
559
|
-
body = JSON.stringify(se_ListOpenWorkflowExecutionsInput(input));
|
|
560
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
561
|
-
};
|
|
562
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
563
|
-
const headers = sharedHeaders("ListTagsForResource");
|
|
564
|
-
let body;
|
|
565
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
566
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
567
|
-
};
|
|
568
|
-
const se_ListWorkflowTypesCommand = async (input, context) => {
|
|
569
|
-
const headers = sharedHeaders("ListWorkflowTypes");
|
|
570
|
-
let body;
|
|
571
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
572
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
573
|
-
};
|
|
574
|
-
const se_PollForActivityTaskCommand = async (input, context) => {
|
|
575
|
-
const headers = sharedHeaders("PollForActivityTask");
|
|
576
|
-
let body;
|
|
577
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
578
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
579
|
-
};
|
|
580
|
-
const se_PollForDecisionTaskCommand = async (input, context) => {
|
|
581
|
-
const headers = sharedHeaders("PollForDecisionTask");
|
|
582
|
-
let body;
|
|
583
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
584
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
585
|
-
};
|
|
586
|
-
const se_RecordActivityTaskHeartbeatCommand = async (input, context) => {
|
|
587
|
-
const headers = sharedHeaders("RecordActivityTaskHeartbeat");
|
|
588
|
-
let body;
|
|
589
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
590
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
591
|
-
};
|
|
592
|
-
const se_RegisterActivityTypeCommand = async (input, context) => {
|
|
593
|
-
const headers = sharedHeaders("RegisterActivityType");
|
|
594
|
-
let body;
|
|
595
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
596
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
597
|
-
};
|
|
598
|
-
const se_RegisterDomainCommand = async (input, context) => {
|
|
599
|
-
const headers = sharedHeaders("RegisterDomain");
|
|
600
|
-
let body;
|
|
601
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
602
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
603
|
-
};
|
|
604
|
-
const se_RegisterWorkflowTypeCommand = async (input, context) => {
|
|
605
|
-
const headers = sharedHeaders("RegisterWorkflowType");
|
|
606
|
-
let body;
|
|
607
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
608
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
609
|
-
};
|
|
610
|
-
const se_RequestCancelWorkflowExecutionCommand = async (input, context) => {
|
|
611
|
-
const headers = sharedHeaders("RequestCancelWorkflowExecution");
|
|
612
|
-
let body;
|
|
613
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
614
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
615
|
-
};
|
|
616
|
-
const se_RespondActivityTaskCanceledCommand = async (input, context) => {
|
|
617
|
-
const headers = sharedHeaders("RespondActivityTaskCanceled");
|
|
618
|
-
let body;
|
|
619
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
620
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
621
|
-
};
|
|
622
|
-
const se_RespondActivityTaskCompletedCommand = async (input, context) => {
|
|
623
|
-
const headers = sharedHeaders("RespondActivityTaskCompleted");
|
|
624
|
-
let body;
|
|
625
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
626
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
627
|
-
};
|
|
628
|
-
const se_RespondActivityTaskFailedCommand = async (input, context) => {
|
|
629
|
-
const headers = sharedHeaders("RespondActivityTaskFailed");
|
|
630
|
-
let body;
|
|
631
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
632
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
633
|
-
};
|
|
634
|
-
const se_RespondDecisionTaskCompletedCommand = async (input, context) => {
|
|
635
|
-
const headers = sharedHeaders("RespondDecisionTaskCompleted");
|
|
636
|
-
let body;
|
|
637
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
638
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
639
|
-
};
|
|
640
|
-
const se_SignalWorkflowExecutionCommand = async (input, context) => {
|
|
641
|
-
const headers = sharedHeaders("SignalWorkflowExecution");
|
|
642
|
-
let body;
|
|
643
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
644
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
645
|
-
};
|
|
646
|
-
const se_StartWorkflowExecutionCommand = async (input, context) => {
|
|
647
|
-
const headers = sharedHeaders("StartWorkflowExecution");
|
|
648
|
-
let body;
|
|
649
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
650
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
651
|
-
};
|
|
652
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
653
|
-
const headers = sharedHeaders("TagResource");
|
|
654
|
-
let body;
|
|
655
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
656
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
657
|
-
};
|
|
658
|
-
const se_TerminateWorkflowExecutionCommand = async (input, context) => {
|
|
659
|
-
const headers = sharedHeaders("TerminateWorkflowExecution");
|
|
660
|
-
let body;
|
|
661
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
662
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
663
|
-
};
|
|
664
|
-
const se_UndeprecateActivityTypeCommand = async (input, context) => {
|
|
665
|
-
const headers = sharedHeaders("UndeprecateActivityType");
|
|
666
|
-
let body;
|
|
667
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
668
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
669
|
-
};
|
|
670
|
-
const se_UndeprecateDomainCommand = async (input, context) => {
|
|
671
|
-
const headers = sharedHeaders("UndeprecateDomain");
|
|
672
|
-
let body;
|
|
673
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
674
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
675
|
-
};
|
|
676
|
-
const se_UndeprecateWorkflowTypeCommand = async (input, context) => {
|
|
677
|
-
const headers = sharedHeaders("UndeprecateWorkflowType");
|
|
678
|
-
let body;
|
|
679
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
680
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
681
|
-
};
|
|
682
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
683
|
-
const headers = sharedHeaders("UntagResource");
|
|
684
|
-
let body;
|
|
685
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
686
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
687
|
-
};
|
|
688
|
-
const de_CountClosedWorkflowExecutionsCommand = async (output, context) => {
|
|
689
|
-
if (output.statusCode >= 300) {
|
|
690
|
-
return de_CommandError(output, context);
|
|
691
|
-
}
|
|
692
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
693
|
-
let contents = {};
|
|
694
|
-
contents = smithyClient._json(data);
|
|
695
|
-
const response = {
|
|
696
|
-
$metadata: deserializeMetadata(output),
|
|
697
|
-
...contents,
|
|
698
|
-
};
|
|
699
|
-
return response;
|
|
700
|
-
};
|
|
701
|
-
const de_CountOpenWorkflowExecutionsCommand = async (output, context) => {
|
|
702
|
-
if (output.statusCode >= 300) {
|
|
703
|
-
return de_CommandError(output, context);
|
|
704
|
-
}
|
|
705
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
706
|
-
let contents = {};
|
|
707
|
-
contents = smithyClient._json(data);
|
|
708
|
-
const response = {
|
|
709
|
-
$metadata: deserializeMetadata(output),
|
|
710
|
-
...contents,
|
|
711
|
-
};
|
|
712
|
-
return response;
|
|
713
|
-
};
|
|
714
|
-
const de_CountPendingActivityTasksCommand = async (output, context) => {
|
|
715
|
-
if (output.statusCode >= 300) {
|
|
716
|
-
return de_CommandError(output, context);
|
|
717
|
-
}
|
|
718
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
719
|
-
let contents = {};
|
|
720
|
-
contents = smithyClient._json(data);
|
|
721
|
-
const response = {
|
|
722
|
-
$metadata: deserializeMetadata(output),
|
|
723
|
-
...contents,
|
|
724
|
-
};
|
|
725
|
-
return response;
|
|
726
|
-
};
|
|
727
|
-
const de_CountPendingDecisionTasksCommand = async (output, context) => {
|
|
728
|
-
if (output.statusCode >= 300) {
|
|
729
|
-
return de_CommandError(output, context);
|
|
730
|
-
}
|
|
731
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
732
|
-
let contents = {};
|
|
733
|
-
contents = smithyClient._json(data);
|
|
734
|
-
const response = {
|
|
735
|
-
$metadata: deserializeMetadata(output),
|
|
736
|
-
...contents,
|
|
737
|
-
};
|
|
738
|
-
return response;
|
|
739
|
-
};
|
|
740
|
-
const de_DeleteActivityTypeCommand = async (output, context) => {
|
|
741
|
-
if (output.statusCode >= 300) {
|
|
742
|
-
return de_CommandError(output, context);
|
|
743
|
-
}
|
|
744
|
-
await smithyClient.collectBody(output.body, context);
|
|
745
|
-
const response = {
|
|
746
|
-
$metadata: deserializeMetadata(output),
|
|
747
|
-
};
|
|
748
|
-
return response;
|
|
749
|
-
};
|
|
750
|
-
const de_DeleteWorkflowTypeCommand = async (output, context) => {
|
|
751
|
-
if (output.statusCode >= 300) {
|
|
752
|
-
return de_CommandError(output, context);
|
|
753
|
-
}
|
|
754
|
-
await smithyClient.collectBody(output.body, context);
|
|
755
|
-
const response = {
|
|
756
|
-
$metadata: deserializeMetadata(output),
|
|
757
|
-
};
|
|
758
|
-
return response;
|
|
759
|
-
};
|
|
760
|
-
const de_DeprecateActivityTypeCommand = async (output, context) => {
|
|
761
|
-
if (output.statusCode >= 300) {
|
|
762
|
-
return de_CommandError(output, context);
|
|
763
|
-
}
|
|
764
|
-
await smithyClient.collectBody(output.body, context);
|
|
765
|
-
const response = {
|
|
766
|
-
$metadata: deserializeMetadata(output),
|
|
767
|
-
};
|
|
768
|
-
return response;
|
|
769
|
-
};
|
|
770
|
-
const de_DeprecateDomainCommand = async (output, context) => {
|
|
771
|
-
if (output.statusCode >= 300) {
|
|
772
|
-
return de_CommandError(output, context);
|
|
773
|
-
}
|
|
774
|
-
await smithyClient.collectBody(output.body, context);
|
|
775
|
-
const response = {
|
|
776
|
-
$metadata: deserializeMetadata(output),
|
|
777
|
-
};
|
|
778
|
-
return response;
|
|
779
|
-
};
|
|
780
|
-
const de_DeprecateWorkflowTypeCommand = async (output, context) => {
|
|
781
|
-
if (output.statusCode >= 300) {
|
|
782
|
-
return de_CommandError(output, context);
|
|
783
|
-
}
|
|
784
|
-
await smithyClient.collectBody(output.body, context);
|
|
785
|
-
const response = {
|
|
786
|
-
$metadata: deserializeMetadata(output),
|
|
787
|
-
};
|
|
788
|
-
return response;
|
|
789
|
-
};
|
|
790
|
-
const de_DescribeActivityTypeCommand = async (output, context) => {
|
|
791
|
-
if (output.statusCode >= 300) {
|
|
792
|
-
return de_CommandError(output, context);
|
|
793
|
-
}
|
|
794
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
795
|
-
let contents = {};
|
|
796
|
-
contents = de_ActivityTypeDetail(data);
|
|
797
|
-
const response = {
|
|
798
|
-
$metadata: deserializeMetadata(output),
|
|
799
|
-
...contents,
|
|
800
|
-
};
|
|
801
|
-
return response;
|
|
802
|
-
};
|
|
803
|
-
const de_DescribeDomainCommand = async (output, context) => {
|
|
804
|
-
if (output.statusCode >= 300) {
|
|
805
|
-
return de_CommandError(output, context);
|
|
806
|
-
}
|
|
807
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
808
|
-
let contents = {};
|
|
809
|
-
contents = smithyClient._json(data);
|
|
810
|
-
const response = {
|
|
811
|
-
$metadata: deserializeMetadata(output),
|
|
812
|
-
...contents,
|
|
813
|
-
};
|
|
814
|
-
return response;
|
|
815
|
-
};
|
|
816
|
-
const de_DescribeWorkflowExecutionCommand = async (output, context) => {
|
|
817
|
-
if (output.statusCode >= 300) {
|
|
818
|
-
return de_CommandError(output, context);
|
|
819
|
-
}
|
|
820
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
821
|
-
let contents = {};
|
|
822
|
-
contents = de_WorkflowExecutionDetail(data);
|
|
823
|
-
const response = {
|
|
824
|
-
$metadata: deserializeMetadata(output),
|
|
825
|
-
...contents,
|
|
826
|
-
};
|
|
827
|
-
return response;
|
|
828
|
-
};
|
|
829
|
-
const de_DescribeWorkflowTypeCommand = async (output, context) => {
|
|
830
|
-
if (output.statusCode >= 300) {
|
|
831
|
-
return de_CommandError(output, context);
|
|
832
|
-
}
|
|
833
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
834
|
-
let contents = {};
|
|
835
|
-
contents = de_WorkflowTypeDetail(data);
|
|
836
|
-
const response = {
|
|
837
|
-
$metadata: deserializeMetadata(output),
|
|
838
|
-
...contents,
|
|
839
|
-
};
|
|
840
|
-
return response;
|
|
841
|
-
};
|
|
842
|
-
const de_GetWorkflowExecutionHistoryCommand = async (output, context) => {
|
|
843
|
-
if (output.statusCode >= 300) {
|
|
844
|
-
return de_CommandError(output, context);
|
|
845
|
-
}
|
|
846
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
847
|
-
let contents = {};
|
|
848
|
-
contents = de_History(data);
|
|
849
|
-
const response = {
|
|
850
|
-
$metadata: deserializeMetadata(output),
|
|
851
|
-
...contents,
|
|
852
|
-
};
|
|
853
|
-
return response;
|
|
854
|
-
};
|
|
855
|
-
const de_ListActivityTypesCommand = async (output, context) => {
|
|
856
|
-
if (output.statusCode >= 300) {
|
|
857
|
-
return de_CommandError(output, context);
|
|
858
|
-
}
|
|
859
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
860
|
-
let contents = {};
|
|
861
|
-
contents = de_ActivityTypeInfos(data);
|
|
862
|
-
const response = {
|
|
863
|
-
$metadata: deserializeMetadata(output),
|
|
864
|
-
...contents,
|
|
865
|
-
};
|
|
866
|
-
return response;
|
|
867
|
-
};
|
|
868
|
-
const de_ListClosedWorkflowExecutionsCommand = async (output, context) => {
|
|
869
|
-
if (output.statusCode >= 300) {
|
|
870
|
-
return de_CommandError(output, context);
|
|
871
|
-
}
|
|
872
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
873
|
-
let contents = {};
|
|
874
|
-
contents = de_WorkflowExecutionInfos(data);
|
|
875
|
-
const response = {
|
|
876
|
-
$metadata: deserializeMetadata(output),
|
|
877
|
-
...contents,
|
|
878
|
-
};
|
|
879
|
-
return response;
|
|
880
|
-
};
|
|
881
|
-
const de_ListDomainsCommand = async (output, context) => {
|
|
882
|
-
if (output.statusCode >= 300) {
|
|
883
|
-
return de_CommandError(output, context);
|
|
884
|
-
}
|
|
885
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
886
|
-
let contents = {};
|
|
887
|
-
contents = smithyClient._json(data);
|
|
888
|
-
const response = {
|
|
889
|
-
$metadata: deserializeMetadata(output),
|
|
890
|
-
...contents,
|
|
891
|
-
};
|
|
892
|
-
return response;
|
|
893
|
-
};
|
|
894
|
-
const de_ListOpenWorkflowExecutionsCommand = async (output, context) => {
|
|
895
|
-
if (output.statusCode >= 300) {
|
|
896
|
-
return de_CommandError(output, context);
|
|
897
|
-
}
|
|
898
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
899
|
-
let contents = {};
|
|
900
|
-
contents = de_WorkflowExecutionInfos(data);
|
|
901
|
-
const response = {
|
|
902
|
-
$metadata: deserializeMetadata(output),
|
|
903
|
-
...contents,
|
|
904
|
-
};
|
|
905
|
-
return response;
|
|
906
|
-
};
|
|
907
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
908
|
-
if (output.statusCode >= 300) {
|
|
909
|
-
return de_CommandError(output, context);
|
|
910
|
-
}
|
|
911
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
912
|
-
let contents = {};
|
|
913
|
-
contents = smithyClient._json(data);
|
|
914
|
-
const response = {
|
|
915
|
-
$metadata: deserializeMetadata(output),
|
|
916
|
-
...contents,
|
|
917
|
-
};
|
|
918
|
-
return response;
|
|
919
|
-
};
|
|
920
|
-
const de_ListWorkflowTypesCommand = async (output, context) => {
|
|
921
|
-
if (output.statusCode >= 300) {
|
|
922
|
-
return de_CommandError(output, context);
|
|
923
|
-
}
|
|
924
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
925
|
-
let contents = {};
|
|
926
|
-
contents = de_WorkflowTypeInfos(data);
|
|
927
|
-
const response = {
|
|
928
|
-
$metadata: deserializeMetadata(output),
|
|
929
|
-
...contents,
|
|
930
|
-
};
|
|
931
|
-
return response;
|
|
932
|
-
};
|
|
933
|
-
const de_PollForActivityTaskCommand = async (output, context) => {
|
|
934
|
-
if (output.statusCode >= 300) {
|
|
935
|
-
return de_CommandError(output, context);
|
|
936
|
-
}
|
|
937
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
938
|
-
let contents = {};
|
|
939
|
-
contents = smithyClient._json(data);
|
|
940
|
-
const response = {
|
|
941
|
-
$metadata: deserializeMetadata(output),
|
|
942
|
-
...contents,
|
|
943
|
-
};
|
|
944
|
-
return response;
|
|
945
|
-
};
|
|
946
|
-
const de_PollForDecisionTaskCommand = async (output, context) => {
|
|
947
|
-
if (output.statusCode >= 300) {
|
|
948
|
-
return de_CommandError(output, context);
|
|
949
|
-
}
|
|
950
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
951
|
-
let contents = {};
|
|
952
|
-
contents = de_DecisionTask(data);
|
|
953
|
-
const response = {
|
|
954
|
-
$metadata: deserializeMetadata(output),
|
|
955
|
-
...contents,
|
|
956
|
-
};
|
|
957
|
-
return response;
|
|
958
|
-
};
|
|
959
|
-
const de_RecordActivityTaskHeartbeatCommand = async (output, context) => {
|
|
960
|
-
if (output.statusCode >= 300) {
|
|
961
|
-
return de_CommandError(output, context);
|
|
962
|
-
}
|
|
963
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
964
|
-
let contents = {};
|
|
965
|
-
contents = smithyClient._json(data);
|
|
966
|
-
const response = {
|
|
967
|
-
$metadata: deserializeMetadata(output),
|
|
968
|
-
...contents,
|
|
969
|
-
};
|
|
970
|
-
return response;
|
|
971
|
-
};
|
|
972
|
-
const de_RegisterActivityTypeCommand = async (output, context) => {
|
|
973
|
-
if (output.statusCode >= 300) {
|
|
974
|
-
return de_CommandError(output, context);
|
|
975
|
-
}
|
|
976
|
-
await smithyClient.collectBody(output.body, context);
|
|
977
|
-
const response = {
|
|
978
|
-
$metadata: deserializeMetadata(output),
|
|
979
|
-
};
|
|
980
|
-
return response;
|
|
981
|
-
};
|
|
982
|
-
const de_RegisterDomainCommand = async (output, context) => {
|
|
983
|
-
if (output.statusCode >= 300) {
|
|
984
|
-
return de_CommandError(output, context);
|
|
985
|
-
}
|
|
986
|
-
await smithyClient.collectBody(output.body, context);
|
|
987
|
-
const response = {
|
|
988
|
-
$metadata: deserializeMetadata(output),
|
|
989
|
-
};
|
|
990
|
-
return response;
|
|
991
|
-
};
|
|
992
|
-
const de_RegisterWorkflowTypeCommand = async (output, context) => {
|
|
993
|
-
if (output.statusCode >= 300) {
|
|
994
|
-
return de_CommandError(output, context);
|
|
995
|
-
}
|
|
996
|
-
await smithyClient.collectBody(output.body, context);
|
|
997
|
-
const response = {
|
|
998
|
-
$metadata: deserializeMetadata(output),
|
|
999
|
-
};
|
|
1000
|
-
return response;
|
|
1001
|
-
};
|
|
1002
|
-
const de_RequestCancelWorkflowExecutionCommand = async (output, context) => {
|
|
1003
|
-
if (output.statusCode >= 300) {
|
|
1004
|
-
return de_CommandError(output, context);
|
|
1005
|
-
}
|
|
1006
|
-
await smithyClient.collectBody(output.body, context);
|
|
1007
|
-
const response = {
|
|
1008
|
-
$metadata: deserializeMetadata(output),
|
|
1009
|
-
};
|
|
1010
|
-
return response;
|
|
1011
|
-
};
|
|
1012
|
-
const de_RespondActivityTaskCanceledCommand = async (output, context) => {
|
|
1013
|
-
if (output.statusCode >= 300) {
|
|
1014
|
-
return de_CommandError(output, context);
|
|
1015
|
-
}
|
|
1016
|
-
await smithyClient.collectBody(output.body, context);
|
|
1017
|
-
const response = {
|
|
1018
|
-
$metadata: deserializeMetadata(output),
|
|
1019
|
-
};
|
|
1020
|
-
return response;
|
|
1021
|
-
};
|
|
1022
|
-
const de_RespondActivityTaskCompletedCommand = async (output, context) => {
|
|
1023
|
-
if (output.statusCode >= 300) {
|
|
1024
|
-
return de_CommandError(output, context);
|
|
1025
|
-
}
|
|
1026
|
-
await smithyClient.collectBody(output.body, context);
|
|
1027
|
-
const response = {
|
|
1028
|
-
$metadata: deserializeMetadata(output),
|
|
1029
|
-
};
|
|
1030
|
-
return response;
|
|
1031
|
-
};
|
|
1032
|
-
const de_RespondActivityTaskFailedCommand = async (output, context) => {
|
|
1033
|
-
if (output.statusCode >= 300) {
|
|
1034
|
-
return de_CommandError(output, context);
|
|
1035
|
-
}
|
|
1036
|
-
await smithyClient.collectBody(output.body, context);
|
|
1037
|
-
const response = {
|
|
1038
|
-
$metadata: deserializeMetadata(output),
|
|
1039
|
-
};
|
|
1040
|
-
return response;
|
|
1041
|
-
};
|
|
1042
|
-
const de_RespondDecisionTaskCompletedCommand = async (output, context) => {
|
|
1043
|
-
if (output.statusCode >= 300) {
|
|
1044
|
-
return de_CommandError(output, context);
|
|
1045
|
-
}
|
|
1046
|
-
await smithyClient.collectBody(output.body, context);
|
|
1047
|
-
const response = {
|
|
1048
|
-
$metadata: deserializeMetadata(output),
|
|
1049
|
-
};
|
|
1050
|
-
return response;
|
|
1051
|
-
};
|
|
1052
|
-
const de_SignalWorkflowExecutionCommand = async (output, context) => {
|
|
1053
|
-
if (output.statusCode >= 300) {
|
|
1054
|
-
return de_CommandError(output, context);
|
|
1055
|
-
}
|
|
1056
|
-
await smithyClient.collectBody(output.body, context);
|
|
1057
|
-
const response = {
|
|
1058
|
-
$metadata: deserializeMetadata(output),
|
|
1059
|
-
};
|
|
1060
|
-
return response;
|
|
1061
|
-
};
|
|
1062
|
-
const de_StartWorkflowExecutionCommand = async (output, context) => {
|
|
1063
|
-
if (output.statusCode >= 300) {
|
|
1064
|
-
return de_CommandError(output, context);
|
|
1065
|
-
}
|
|
1066
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
1067
|
-
let contents = {};
|
|
1068
|
-
contents = smithyClient._json(data);
|
|
1069
|
-
const response = {
|
|
1070
|
-
$metadata: deserializeMetadata(output),
|
|
1071
|
-
...contents,
|
|
1072
|
-
};
|
|
1073
|
-
return response;
|
|
1074
|
-
};
|
|
1075
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1076
|
-
if (output.statusCode >= 300) {
|
|
1077
|
-
return de_CommandError(output, context);
|
|
1078
|
-
}
|
|
1079
|
-
await smithyClient.collectBody(output.body, context);
|
|
1080
|
-
const response = {
|
|
1081
|
-
$metadata: deserializeMetadata(output),
|
|
1082
|
-
};
|
|
1083
|
-
return response;
|
|
1084
|
-
};
|
|
1085
|
-
const de_TerminateWorkflowExecutionCommand = async (output, context) => {
|
|
1086
|
-
if (output.statusCode >= 300) {
|
|
1087
|
-
return de_CommandError(output, context);
|
|
1088
|
-
}
|
|
1089
|
-
await smithyClient.collectBody(output.body, context);
|
|
1090
|
-
const response = {
|
|
1091
|
-
$metadata: deserializeMetadata(output),
|
|
1092
|
-
};
|
|
1093
|
-
return response;
|
|
1094
|
-
};
|
|
1095
|
-
const de_UndeprecateActivityTypeCommand = async (output, context) => {
|
|
1096
|
-
if (output.statusCode >= 300) {
|
|
1097
|
-
return de_CommandError(output, context);
|
|
1098
|
-
}
|
|
1099
|
-
await smithyClient.collectBody(output.body, context);
|
|
1100
|
-
const response = {
|
|
1101
|
-
$metadata: deserializeMetadata(output),
|
|
1102
|
-
};
|
|
1103
|
-
return response;
|
|
1104
|
-
};
|
|
1105
|
-
const de_UndeprecateDomainCommand = async (output, context) => {
|
|
1106
|
-
if (output.statusCode >= 300) {
|
|
1107
|
-
return de_CommandError(output, context);
|
|
1108
|
-
}
|
|
1109
|
-
await smithyClient.collectBody(output.body, context);
|
|
1110
|
-
const response = {
|
|
1111
|
-
$metadata: deserializeMetadata(output),
|
|
1112
|
-
};
|
|
1113
|
-
return response;
|
|
1114
|
-
};
|
|
1115
|
-
const de_UndeprecateWorkflowTypeCommand = async (output, context) => {
|
|
1116
|
-
if (output.statusCode >= 300) {
|
|
1117
|
-
return de_CommandError(output, context);
|
|
1118
|
-
}
|
|
1119
|
-
await smithyClient.collectBody(output.body, context);
|
|
1120
|
-
const response = {
|
|
1121
|
-
$metadata: deserializeMetadata(output),
|
|
1122
|
-
};
|
|
1123
|
-
return response;
|
|
1124
|
-
};
|
|
1125
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1126
|
-
if (output.statusCode >= 300) {
|
|
1127
|
-
return de_CommandError(output, context);
|
|
1128
|
-
}
|
|
1129
|
-
await smithyClient.collectBody(output.body, context);
|
|
1130
|
-
const response = {
|
|
1131
|
-
$metadata: deserializeMetadata(output),
|
|
1132
|
-
};
|
|
1133
|
-
return response;
|
|
1134
|
-
};
|
|
1135
|
-
const de_CommandError = async (output, context) => {
|
|
1136
|
-
const parsedOutput = {
|
|
1137
|
-
...output,
|
|
1138
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1139
|
-
};
|
|
1140
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1141
|
-
switch (errorCode) {
|
|
1142
|
-
case "OperationNotPermittedFault":
|
|
1143
|
-
case "com.amazonaws.swf#OperationNotPermittedFault":
|
|
1144
|
-
throw await de_OperationNotPermittedFaultRes(parsedOutput);
|
|
1145
|
-
case "UnknownResourceFault":
|
|
1146
|
-
case "com.amazonaws.swf#UnknownResourceFault":
|
|
1147
|
-
throw await de_UnknownResourceFaultRes(parsedOutput);
|
|
1148
|
-
case "TypeNotDeprecatedFault":
|
|
1149
|
-
case "com.amazonaws.swf#TypeNotDeprecatedFault":
|
|
1150
|
-
throw await de_TypeNotDeprecatedFaultRes(parsedOutput);
|
|
1151
|
-
case "TypeDeprecatedFault":
|
|
1152
|
-
case "com.amazonaws.swf#TypeDeprecatedFault":
|
|
1153
|
-
throw await de_TypeDeprecatedFaultRes(parsedOutput);
|
|
1154
|
-
case "DomainDeprecatedFault":
|
|
1155
|
-
case "com.amazonaws.swf#DomainDeprecatedFault":
|
|
1156
|
-
throw await de_DomainDeprecatedFaultRes(parsedOutput);
|
|
1157
|
-
case "LimitExceededFault":
|
|
1158
|
-
case "com.amazonaws.swf#LimitExceededFault":
|
|
1159
|
-
throw await de_LimitExceededFaultRes(parsedOutput);
|
|
1160
|
-
case "TypeAlreadyExistsFault":
|
|
1161
|
-
case "com.amazonaws.swf#TypeAlreadyExistsFault":
|
|
1162
|
-
throw await de_TypeAlreadyExistsFaultRes(parsedOutput);
|
|
1163
|
-
case "DomainAlreadyExistsFault":
|
|
1164
|
-
case "com.amazonaws.swf#DomainAlreadyExistsFault":
|
|
1165
|
-
throw await de_DomainAlreadyExistsFaultRes(parsedOutput);
|
|
1166
|
-
case "TooManyTagsFault":
|
|
1167
|
-
case "com.amazonaws.swf#TooManyTagsFault":
|
|
1168
|
-
throw await de_TooManyTagsFaultRes(parsedOutput);
|
|
1169
|
-
case "DefaultUndefinedFault":
|
|
1170
|
-
case "com.amazonaws.swf#DefaultUndefinedFault":
|
|
1171
|
-
throw await de_DefaultUndefinedFaultRes(parsedOutput);
|
|
1172
|
-
case "WorkflowExecutionAlreadyStartedFault":
|
|
1173
|
-
case "com.amazonaws.swf#WorkflowExecutionAlreadyStartedFault":
|
|
1174
|
-
throw await de_WorkflowExecutionAlreadyStartedFaultRes(parsedOutput);
|
|
1175
|
-
default:
|
|
1176
|
-
const parsedBody = parsedOutput.body;
|
|
1177
|
-
return throwDefaultError({
|
|
1178
|
-
output,
|
|
1179
|
-
parsedBody,
|
|
1180
|
-
errorCode,
|
|
1181
|
-
});
|
|
1182
|
-
}
|
|
1183
|
-
};
|
|
1184
|
-
const de_DefaultUndefinedFaultRes = async (parsedOutput, context) => {
|
|
1185
|
-
const body = parsedOutput.body;
|
|
1186
|
-
const deserialized = smithyClient._json(body);
|
|
1187
|
-
const exception = new DefaultUndefinedFault({
|
|
1188
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1189
|
-
...deserialized,
|
|
1190
|
-
});
|
|
1191
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1192
|
-
};
|
|
1193
|
-
const de_DomainAlreadyExistsFaultRes = async (parsedOutput, context) => {
|
|
1194
|
-
const body = parsedOutput.body;
|
|
1195
|
-
const deserialized = smithyClient._json(body);
|
|
1196
|
-
const exception = new DomainAlreadyExistsFault({
|
|
1197
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1198
|
-
...deserialized,
|
|
1199
|
-
});
|
|
1200
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1201
|
-
};
|
|
1202
|
-
const de_DomainDeprecatedFaultRes = async (parsedOutput, context) => {
|
|
1203
|
-
const body = parsedOutput.body;
|
|
1204
|
-
const deserialized = smithyClient._json(body);
|
|
1205
|
-
const exception = new DomainDeprecatedFault({
|
|
1206
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1207
|
-
...deserialized,
|
|
1208
|
-
});
|
|
1209
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1210
|
-
};
|
|
1211
|
-
const de_LimitExceededFaultRes = async (parsedOutput, context) => {
|
|
1212
|
-
const body = parsedOutput.body;
|
|
1213
|
-
const deserialized = smithyClient._json(body);
|
|
1214
|
-
const exception = new LimitExceededFault({
|
|
1215
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1216
|
-
...deserialized,
|
|
1217
|
-
});
|
|
1218
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
1219
452
|
};
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
const
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
const
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
const
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
const
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
const
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
const
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
const
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
const
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
const
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
const
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
const
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
const
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
const
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
const
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
const
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
const
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
const
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
const
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
const
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
const
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
const
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
const
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
const
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
const
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
const
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
const
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
const
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
const
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
const
|
|
1522
|
-
const
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
453
|
+
|
|
454
|
+
const _AT = "ActivityTask";
|
|
455
|
+
const _ATC = "ActivityTypeConfiguration";
|
|
456
|
+
const _ATCEA = "ActivityTaskCanceledEventAttributes";
|
|
457
|
+
const _ATCEAc = "ActivityTaskCompletedEventAttributes";
|
|
458
|
+
const _ATCREA = "ActivityTaskCancelRequestedEventAttributes";
|
|
459
|
+
const _ATD = "ActivityTypeDetail";
|
|
460
|
+
const _ATFEA = "ActivityTaskFailedEventAttributes";
|
|
461
|
+
const _ATI = "ActivityTypeInfo";
|
|
462
|
+
const _ATIL = "ActivityTypeInfoList";
|
|
463
|
+
const _ATIc = "ActivityTypeInfos";
|
|
464
|
+
const _ATS = "ActivityTaskStatus";
|
|
465
|
+
const _ATSEA = "ActivityTaskScheduledEventAttributes";
|
|
466
|
+
const _ATSEAc = "ActivityTaskStartedEventAttributes";
|
|
467
|
+
const _ATTOEA = "ActivityTaskTimedOutEventAttributes";
|
|
468
|
+
const _ATc = "ActivityType";
|
|
469
|
+
const _CANWEDA = "ContinueAsNewWorkflowExecutionDecisionAttributes";
|
|
470
|
+
const _CANWEFEA = "ContinueAsNewWorkflowExecutionFailedEventAttributes";
|
|
471
|
+
const _CCWE = "CountClosedWorkflowExecutions";
|
|
472
|
+
const _CCWEI = "CountClosedWorkflowExecutionsInput";
|
|
473
|
+
const _COWE = "CountOpenWorkflowExecutions";
|
|
474
|
+
const _COWEI = "CountOpenWorkflowExecutionsInput";
|
|
475
|
+
const _CPAT = "CountPendingActivityTasks";
|
|
476
|
+
const _CPATI = "CountPendingActivityTasksInput";
|
|
477
|
+
const _CPDT = "CountPendingDecisionTasks";
|
|
478
|
+
const _CPDTI = "CountPendingDecisionTasksInput";
|
|
479
|
+
const _CSF = "CloseStatusFilter";
|
|
480
|
+
const _CTDA = "CancelTimerDecisionAttributes";
|
|
481
|
+
const _CTFEA = "CancelTimerFailedEventAttributes";
|
|
482
|
+
const _CWECEA = "ChildWorkflowExecutionCanceledEventAttributes";
|
|
483
|
+
const _CWECEAh = "ChildWorkflowExecutionCompletedEventAttributes";
|
|
484
|
+
const _CWEDA = "CancelWorkflowExecutionDecisionAttributes";
|
|
485
|
+
const _CWEDAo = "CompleteWorkflowExecutionDecisionAttributes";
|
|
486
|
+
const _CWEFEA = "CancelWorkflowExecutionFailedEventAttributes";
|
|
487
|
+
const _CWEFEAh = "ChildWorkflowExecutionFailedEventAttributes";
|
|
488
|
+
const _CWEFEAo = "CompleteWorkflowExecutionFailedEventAttributes";
|
|
489
|
+
const _CWESEA = "ChildWorkflowExecutionStartedEventAttributes";
|
|
490
|
+
const _CWETEA = "ChildWorkflowExecutionTerminatedEventAttributes";
|
|
491
|
+
const _CWETOEA = "ChildWorkflowExecutionTimedOutEventAttributes";
|
|
492
|
+
const _D = "Decision";
|
|
493
|
+
const _DAEF = "DomainAlreadyExistsFault";
|
|
494
|
+
const _DAT = "DeleteActivityType";
|
|
495
|
+
const _DATI = "DeleteActivityTypeInput";
|
|
496
|
+
const _DATIe = "DeprecateActivityTypeInput";
|
|
497
|
+
const _DATIes = "DescribeActivityTypeInput";
|
|
498
|
+
const _DATe = "DeprecateActivityType";
|
|
499
|
+
const _DATes = "DescribeActivityType";
|
|
500
|
+
const _DC = "DomainConfiguration";
|
|
501
|
+
const _DD = "DomainDetail";
|
|
502
|
+
const _DDF = "DomainDeprecatedFault";
|
|
503
|
+
const _DDI = "DeprecateDomainInput";
|
|
504
|
+
const _DDIe = "DescribeDomainInput";
|
|
505
|
+
const _DDe = "DeprecateDomain";
|
|
506
|
+
const _DDes = "DescribeDomain";
|
|
507
|
+
const _DI = "DomainInfo";
|
|
508
|
+
const _DIL = "DomainInfoList";
|
|
509
|
+
const _DIo = "DomainInfos";
|
|
510
|
+
const _DL = "DecisionList";
|
|
511
|
+
const _DT = "DecisionTask";
|
|
512
|
+
const _DTCEA = "DecisionTaskCompletedEventAttributes";
|
|
513
|
+
const _DTSEA = "DecisionTaskScheduledEventAttributes";
|
|
514
|
+
const _DTSEAe = "DecisionTaskStartedEventAttributes";
|
|
515
|
+
const _DTTOEA = "DecisionTaskTimedOutEventAttributes";
|
|
516
|
+
const _DUF = "DefaultUndefinedFault";
|
|
517
|
+
const _DWE = "DescribeWorkflowExecution";
|
|
518
|
+
const _DWEI = "DescribeWorkflowExecutionInput";
|
|
519
|
+
const _DWT = "DeleteWorkflowType";
|
|
520
|
+
const _DWTI = "DeleteWorkflowTypeInput";
|
|
521
|
+
const _DWTIe = "DeprecateWorkflowTypeInput";
|
|
522
|
+
const _DWTIes = "DescribeWorkflowTypeInput";
|
|
523
|
+
const _DWTe = "DeprecateWorkflowType";
|
|
524
|
+
const _DWTes = "DescribeWorkflowType";
|
|
525
|
+
const _ETF = "ExecutionTimeFilter";
|
|
526
|
+
const _EWECREA = "ExternalWorkflowExecutionCancelRequestedEventAttributes";
|
|
527
|
+
const _EWESEA = "ExternalWorkflowExecutionSignaledEventAttributes";
|
|
528
|
+
const _FWEDA = "FailWorkflowExecutionDecisionAttributes";
|
|
529
|
+
const _FWEFEA = "FailWorkflowExecutionFailedEventAttributes";
|
|
530
|
+
const _GWEH = "GetWorkflowExecutionHistory";
|
|
531
|
+
const _GWEHI = "GetWorkflowExecutionHistoryInput";
|
|
532
|
+
const _H = "History";
|
|
533
|
+
const _HE = "HistoryEvent";
|
|
534
|
+
const _HEL = "HistoryEventList";
|
|
535
|
+
const _LAT = "ListActivityTypes";
|
|
536
|
+
const _LATI = "ListActivityTypesInput";
|
|
537
|
+
const _LCWE = "ListClosedWorkflowExecutions";
|
|
538
|
+
const _LCWEI = "ListClosedWorkflowExecutionsInput";
|
|
539
|
+
const _LD = "ListDomains";
|
|
540
|
+
const _LDI = "ListDomainsInput";
|
|
541
|
+
const _LEF = "LimitExceededFault";
|
|
542
|
+
const _LFCEA = "LambdaFunctionCompletedEventAttributes";
|
|
543
|
+
const _LFFEA = "LambdaFunctionFailedEventAttributes";
|
|
544
|
+
const _LFSEA = "LambdaFunctionScheduledEventAttributes";
|
|
545
|
+
const _LFSEAa = "LambdaFunctionStartedEventAttributes";
|
|
546
|
+
const _LFTOEA = "LambdaFunctionTimedOutEventAttributes";
|
|
547
|
+
const _LOWE = "ListOpenWorkflowExecutions";
|
|
548
|
+
const _LOWEI = "ListOpenWorkflowExecutionsInput";
|
|
549
|
+
const _LTFR = "ListTagsForResource";
|
|
550
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
551
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
552
|
+
const _LWT = "ListWorkflowTypes";
|
|
553
|
+
const _LWTI = "ListWorkflowTypesInput";
|
|
554
|
+
const _MREA = "MarkerRecordedEventAttributes";
|
|
555
|
+
const _ONPF = "OperationNotPermittedFault";
|
|
556
|
+
const _PFAT = "PollForActivityTask";
|
|
557
|
+
const _PFATI = "PollForActivityTaskInput";
|
|
558
|
+
const _PFDT = "PollForDecisionTask";
|
|
559
|
+
const _PFDTI = "PollForDecisionTaskInput";
|
|
560
|
+
const _PTC = "PendingTaskCount";
|
|
561
|
+
const _R = "Run";
|
|
562
|
+
const _RAT = "RegisterActivityType";
|
|
563
|
+
const _RATC = "RespondActivityTaskCanceled";
|
|
564
|
+
const _RATCI = "RespondActivityTaskCanceledInput";
|
|
565
|
+
const _RATCIe = "RespondActivityTaskCompletedInput";
|
|
566
|
+
const _RATCe = "RespondActivityTaskCompleted";
|
|
567
|
+
const _RATF = "RespondActivityTaskFailed";
|
|
568
|
+
const _RATFI = "RespondActivityTaskFailedInput";
|
|
569
|
+
const _RATH = "RecordActivityTaskHeartbeat";
|
|
570
|
+
const _RATHI = "RecordActivityTaskHeartbeatInput";
|
|
571
|
+
const _RATI = "RegisterActivityTypeInput";
|
|
572
|
+
const _RCATDA = "RequestCancelActivityTaskDecisionAttributes";
|
|
573
|
+
const _RCATFEA = "RequestCancelActivityTaskFailedEventAttributes";
|
|
574
|
+
const _RCEWEDA = "RequestCancelExternalWorkflowExecutionDecisionAttributes";
|
|
575
|
+
const _RCEWEFEA = "RequestCancelExternalWorkflowExecutionFailedEventAttributes";
|
|
576
|
+
const _RCEWEIEA = "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes";
|
|
577
|
+
const _RCWE = "RequestCancelWorkflowExecution";
|
|
578
|
+
const _RCWEI = "RequestCancelWorkflowExecutionInput";
|
|
579
|
+
const _RD = "RegisterDomain";
|
|
580
|
+
const _RDI = "RegisterDomainInput";
|
|
581
|
+
const _RDTC = "RespondDecisionTaskCompleted";
|
|
582
|
+
const _RDTCI = "RespondDecisionTaskCompletedInput";
|
|
583
|
+
const _RMDA = "RecordMarkerDecisionAttributes";
|
|
584
|
+
const _RMFEA = "RecordMarkerFailedEventAttributes";
|
|
585
|
+
const _RT = "ResourceTag";
|
|
586
|
+
const _RTL = "ResourceTagList";
|
|
587
|
+
const _RWT = "RegisterWorkflowType";
|
|
588
|
+
const _RWTI = "RegisterWorkflowTypeInput";
|
|
589
|
+
const _SATDA = "ScheduleActivityTaskDecisionAttributes";
|
|
590
|
+
const _SATFEA = "ScheduleActivityTaskFailedEventAttributes";
|
|
591
|
+
const _SCWEDA = "StartChildWorkflowExecutionDecisionAttributes";
|
|
592
|
+
const _SCWEFEA = "StartChildWorkflowExecutionFailedEventAttributes";
|
|
593
|
+
const _SCWEIEA = "StartChildWorkflowExecutionInitiatedEventAttributes";
|
|
594
|
+
const _SEWEDA = "SignalExternalWorkflowExecutionDecisionAttributes";
|
|
595
|
+
const _SEWEFEA = "SignalExternalWorkflowExecutionFailedEventAttributes";
|
|
596
|
+
const _SEWEIEA = "SignalExternalWorkflowExecutionInitiatedEventAttributes";
|
|
597
|
+
const _SLFDA = "ScheduleLambdaFunctionDecisionAttributes";
|
|
598
|
+
const _SLFFEA = "ScheduleLambdaFunctionFailedEventAttributes";
|
|
599
|
+
const _SLFFEAt = "StartLambdaFunctionFailedEventAttributes";
|
|
600
|
+
const _STDA = "StartTimerDecisionAttributes";
|
|
601
|
+
const _STFEA = "StartTimerFailedEventAttributes";
|
|
602
|
+
const _SWE = "SignalWorkflowExecution";
|
|
603
|
+
const _SWEI = "SignalWorkflowExecutionInput";
|
|
604
|
+
const _SWEIt = "StartWorkflowExecutionInput";
|
|
605
|
+
const _SWEt = "StartWorkflowExecution";
|
|
606
|
+
const _TAEF = "TypeAlreadyExistsFault";
|
|
607
|
+
const _TCEA = "TimerCanceledEventAttributes";
|
|
608
|
+
const _TDF = "TypeDeprecatedFault";
|
|
609
|
+
const _TF = "TagFilter";
|
|
610
|
+
const _TFEA = "TimerFiredEventAttributes";
|
|
611
|
+
const _TL = "TaskList";
|
|
612
|
+
const _TMTF = "TooManyTagsFault";
|
|
613
|
+
const _TNDF = "TypeNotDeprecatedFault";
|
|
614
|
+
const _TR = "TagResource";
|
|
615
|
+
const _TRI = "TagResourceInput";
|
|
616
|
+
const _TSEA = "TimerStartedEventAttributes";
|
|
617
|
+
const _TWE = "TerminateWorkflowExecution";
|
|
618
|
+
const _TWEI = "TerminateWorkflowExecutionInput";
|
|
619
|
+
const _UAT = "UndeprecateActivityType";
|
|
620
|
+
const _UATI = "UndeprecateActivityTypeInput";
|
|
621
|
+
const _UD = "UndeprecateDomain";
|
|
622
|
+
const _UDI = "UndeprecateDomainInput";
|
|
623
|
+
const _UR = "UntagResource";
|
|
624
|
+
const _URF = "UnknownResourceFault";
|
|
625
|
+
const _URI = "UntagResourceInput";
|
|
626
|
+
const _UWT = "UndeprecateWorkflowType";
|
|
627
|
+
const _UWTI = "UndeprecateWorkflowTypeInput";
|
|
628
|
+
const _WE = "WorkflowExecution";
|
|
629
|
+
const _WEASF = "WorkflowExecutionAlreadyStartedFault";
|
|
630
|
+
const _WEC = "WorkflowExecutionConfiguration";
|
|
631
|
+
const _WECANEA = "WorkflowExecutionContinuedAsNewEventAttributes";
|
|
632
|
+
const _WECEA = "WorkflowExecutionCanceledEventAttributes";
|
|
633
|
+
const _WECEAo = "WorkflowExecutionCompletedEventAttributes";
|
|
634
|
+
const _WECREA = "WorkflowExecutionCancelRequestedEventAttributes";
|
|
635
|
+
const _WECo = "WorkflowExecutionCount";
|
|
636
|
+
const _WED = "WorkflowExecutionDetail";
|
|
637
|
+
const _WEF = "WorkflowExecutionFilter";
|
|
638
|
+
const _WEFEA = "WorkflowExecutionFailedEventAttributes";
|
|
639
|
+
const _WEI = "WorkflowExecutionInfo";
|
|
640
|
+
const _WEIL = "WorkflowExecutionInfoList";
|
|
641
|
+
const _WEIo = "WorkflowExecutionInfos";
|
|
642
|
+
const _WEOC = "WorkflowExecutionOpenCounts";
|
|
643
|
+
const _WESEA = "WorkflowExecutionSignaledEventAttributes";
|
|
644
|
+
const _WESEAo = "WorkflowExecutionStartedEventAttributes";
|
|
645
|
+
const _WETEA = "WorkflowExecutionTerminatedEventAttributes";
|
|
646
|
+
const _WETOEA = "WorkflowExecutionTimedOutEventAttributes";
|
|
647
|
+
const _WT = "WorkflowType";
|
|
648
|
+
const _WTC = "WorkflowTypeConfiguration";
|
|
649
|
+
const _WTD = "WorkflowTypeDetail";
|
|
650
|
+
const _WTF = "WorkflowTypeFilter";
|
|
651
|
+
const _WTI = "WorkflowTypeInfo";
|
|
652
|
+
const _WTIL = "WorkflowTypeInfoList";
|
|
653
|
+
const _WTIo = "WorkflowTypeInfos";
|
|
654
|
+
const _a = "arn";
|
|
655
|
+
const _aI = "activityId";
|
|
656
|
+
const _aT = "activityType";
|
|
657
|
+
const _aTCEA = "activityTaskCompletedEventAttributes";
|
|
658
|
+
const _aTCEAc = "activityTaskCanceledEventAttributes";
|
|
659
|
+
const _aTCREA = "activityTaskCancelRequestedEventAttributes";
|
|
660
|
+
const _aTFEA = "activityTaskFailedEventAttributes";
|
|
661
|
+
const _aTSEA = "activityTaskScheduledEventAttributes";
|
|
662
|
+
const _aTSEAc = "activityTaskStartedEventAttributes";
|
|
663
|
+
const _aTTOEA = "activityTaskTimedOutEventAttributes";
|
|
664
|
+
const _c = "control";
|
|
665
|
+
const _cANWEDA = "continueAsNewWorkflowExecutionDecisionAttributes";
|
|
666
|
+
const _cANWEFEA = "continueAsNewWorkflowExecutionFailedEventAttributes";
|
|
667
|
+
const _cD = "creationDate";
|
|
668
|
+
const _cERI = "continuedExecutionRunId";
|
|
669
|
+
const _cP = "childPolicy";
|
|
670
|
+
const _cR = "cancelRequested";
|
|
671
|
+
const _cS = "closeStatus";
|
|
672
|
+
const _cSF = "closeStatusFilter";
|
|
673
|
+
const _cT = "closeTimestamp";
|
|
674
|
+
const _cTDA = "cancelTimerDecisionAttributes";
|
|
675
|
+
const _cTF = "closeTimeFilter";
|
|
676
|
+
const _cTFEA = "cancelTimerFailedEventAttributes";
|
|
677
|
+
const _cWECEA = "childWorkflowExecutionCompletedEventAttributes";
|
|
678
|
+
const _cWECEAh = "childWorkflowExecutionCanceledEventAttributes";
|
|
679
|
+
const _cWEDA = "completeWorkflowExecutionDecisionAttributes";
|
|
680
|
+
const _cWEDAa = "cancelWorkflowExecutionDecisionAttributes";
|
|
681
|
+
const _cWEFEA = "completeWorkflowExecutionFailedEventAttributes";
|
|
682
|
+
const _cWEFEAa = "cancelWorkflowExecutionFailedEventAttributes";
|
|
683
|
+
const _cWEFEAh = "childWorkflowExecutionFailedEventAttributes";
|
|
684
|
+
const _cWESEA = "childWorkflowExecutionStartedEventAttributes";
|
|
685
|
+
const _cWETEA = "childWorkflowExecutionTerminatedEventAttributes";
|
|
686
|
+
const _cWETOEA = "childWorkflowExecutionTimedOutEventAttributes";
|
|
687
|
+
const _ca = "cause";
|
|
688
|
+
const _cl = "client";
|
|
689
|
+
const _co = "configuration";
|
|
690
|
+
const _cou = "count";
|
|
691
|
+
const _d = "details";
|
|
692
|
+
const _dCP = "defaultChildPolicy";
|
|
693
|
+
const _dD = "deprecationDate";
|
|
694
|
+
const _dESTCT = "defaultExecutionStartToCloseTimeout";
|
|
695
|
+
const _dI = "domainInfo";
|
|
696
|
+
const _dIo = "domainInfos";
|
|
697
|
+
const _dLR = "defaultLambdaRole";
|
|
698
|
+
const _dT = "decisionType";
|
|
699
|
+
const _dTCEA = "decisionTaskCompletedEventAttributes";
|
|
700
|
+
const _dTCEI = "decisionTaskCompletedEventId";
|
|
701
|
+
const _dTHT = "defaultTaskHeartbeatTimeout";
|
|
702
|
+
const _dTL = "defaultTaskList";
|
|
703
|
+
const _dTP = "defaultTaskPriority";
|
|
704
|
+
const _dTSEA = "decisionTaskScheduledEventAttributes";
|
|
705
|
+
const _dTSEAe = "decisionTaskStartedEventAttributes";
|
|
706
|
+
const _dTSTCT = "defaultTaskStartToCloseTimeout";
|
|
707
|
+
const _dTSTCTe = "defaultTaskScheduleToCloseTimeout";
|
|
708
|
+
const _dTSTST = "defaultTaskScheduleToStartTimeout";
|
|
709
|
+
const _dTTOEA = "decisionTaskTimedOutEventAttributes";
|
|
710
|
+
const _de = "description";
|
|
711
|
+
const _dec = "decisions";
|
|
712
|
+
const _do = "domain";
|
|
713
|
+
const _e = "events";
|
|
714
|
+
const _eC = "executionContext";
|
|
715
|
+
const _eCx = "executionConfiguration";
|
|
716
|
+
const _eF = "executionFilter";
|
|
717
|
+
const _eI = "eventId";
|
|
718
|
+
const _eIEI = "externalInitiatedEventId";
|
|
719
|
+
const _eIx = "executionInfo";
|
|
720
|
+
const _eIxe = "executionInfos";
|
|
721
|
+
const _eS = "executionStatus";
|
|
722
|
+
const _eSTCT = "executionStartToCloseTimeout";
|
|
723
|
+
const _eT = "eventTimestamp";
|
|
724
|
+
const _eTv = "eventType";
|
|
725
|
+
const _eWE = "externalWorkflowExecution";
|
|
726
|
+
const _eWECREA = "externalWorkflowExecutionCancelRequestedEventAttributes";
|
|
727
|
+
const _eWESEA = "externalWorkflowExecutionSignaledEventAttributes";
|
|
728
|
+
const _er = "error";
|
|
729
|
+
const _ex = "execution";
|
|
730
|
+
const _fWEDA = "failWorkflowExecutionDecisionAttributes";
|
|
731
|
+
const _fWEFEA = "failWorkflowExecutionFailedEventAttributes";
|
|
732
|
+
const _hE = "httpError";
|
|
733
|
+
const _hT = "heartbeatTimeout";
|
|
734
|
+
const _i = "input";
|
|
735
|
+
const _iEI = "initiatedEventId";
|
|
736
|
+
const _id = "identity";
|
|
737
|
+
const _id_ = "id";
|
|
738
|
+
const _k = "key";
|
|
739
|
+
const _lATT = "latestActivityTaskTimestamp";
|
|
740
|
+
const _lCREI = "latestCancelRequestedEventId";
|
|
741
|
+
const _lD = "latestDate";
|
|
742
|
+
const _lEC = "latestExecutionContext";
|
|
743
|
+
const _lFCEA = "lambdaFunctionCompletedEventAttributes";
|
|
744
|
+
const _lFFEA = "lambdaFunctionFailedEventAttributes";
|
|
745
|
+
const _lFSEA = "lambdaFunctionScheduledEventAttributes";
|
|
746
|
+
const _lFSEAa = "lambdaFunctionStartedEventAttributes";
|
|
747
|
+
const _lFTOEA = "lambdaFunctionTimedOutEventAttributes";
|
|
748
|
+
const _lR = "lambdaRole";
|
|
749
|
+
const _m = "message";
|
|
750
|
+
const _mN = "markerName";
|
|
751
|
+
const _mPS = "maximumPageSize";
|
|
752
|
+
const _mREA = "markerRecordedEventAttributes";
|
|
753
|
+
const _n = "name";
|
|
754
|
+
const _nERI = "newExecutionRunId";
|
|
755
|
+
const _nPT = "nextPageToken";
|
|
756
|
+
const _oAT = "openActivityTasks";
|
|
757
|
+
const _oC = "openCounts";
|
|
758
|
+
const _oCWE = "openChildWorkflowExecutions";
|
|
759
|
+
const _oD = "oldestDate";
|
|
760
|
+
const _oDT = "openDecisionTasks";
|
|
761
|
+
const _oLF = "openLambdaFunctions";
|
|
762
|
+
const _oT = "openTimers";
|
|
763
|
+
const _p = "parent";
|
|
764
|
+
const _pIEI = "parentInitiatedEventId";
|
|
765
|
+
const _pSEI = "previousStartedEventId";
|
|
766
|
+
const _pWE = "parentWorkflowExecution";
|
|
767
|
+
const _r = "result";
|
|
768
|
+
const _rA = "resourceArn";
|
|
769
|
+
const _rCATDA = "requestCancelActivityTaskDecisionAttributes";
|
|
770
|
+
const _rCATFEA = "requestCancelActivityTaskFailedEventAttributes";
|
|
771
|
+
const _rCEWEDA = "requestCancelExternalWorkflowExecutionDecisionAttributes";
|
|
772
|
+
const _rCEWEFEA = "requestCancelExternalWorkflowExecutionFailedEventAttributes";
|
|
773
|
+
const _rCEWEIEA = "requestCancelExternalWorkflowExecutionInitiatedEventAttributes";
|
|
774
|
+
const _rI = "runId";
|
|
775
|
+
const _rMDA = "recordMarkerDecisionAttributes";
|
|
776
|
+
const _rMFEA = "recordMarkerFailedEventAttributes";
|
|
777
|
+
const _rO = "reverseOrder";
|
|
778
|
+
const _rS = "registrationStatus";
|
|
779
|
+
const _re = "reason";
|
|
780
|
+
const _s = "status";
|
|
781
|
+
const _sAPSE = "startAtPreviousStartedEvent";
|
|
782
|
+
const _sATDA = "scheduleActivityTaskDecisionAttributes";
|
|
783
|
+
const _sATFEA = "scheduleActivityTaskFailedEventAttributes";
|
|
784
|
+
const _sCWEDA = "startChildWorkflowExecutionDecisionAttributes";
|
|
785
|
+
const _sCWEFEA = "startChildWorkflowExecutionFailedEventAttributes";
|
|
786
|
+
const _sCWEIEA = "startChildWorkflowExecutionInitiatedEventAttributes";
|
|
787
|
+
const _sEI = "startedEventId";
|
|
788
|
+
const _sEIc = "scheduledEventId";
|
|
789
|
+
const _sEWEDA = "signalExternalWorkflowExecutionDecisionAttributes";
|
|
790
|
+
const _sEWEFEA = "signalExternalWorkflowExecutionFailedEventAttributes";
|
|
791
|
+
const _sEWEIEA = "signalExternalWorkflowExecutionInitiatedEventAttributes";
|
|
792
|
+
const _sLFDA = "scheduleLambdaFunctionDecisionAttributes";
|
|
793
|
+
const _sLFFEA = "scheduleLambdaFunctionFailedEventAttributes";
|
|
794
|
+
const _sLFFEAt = "startLambdaFunctionFailedEventAttributes";
|
|
795
|
+
const _sN = "signalName";
|
|
796
|
+
const _sT = "startTimestamp";
|
|
797
|
+
const _sTCT = "scheduleToCloseTimeout";
|
|
798
|
+
const _sTCTt = "startToCloseTimeout";
|
|
799
|
+
const _sTDA = "startTimerDecisionAttributes";
|
|
800
|
+
const _sTF = "startTimeFilter";
|
|
801
|
+
const _sTFEA = "startTimerFailedEventAttributes";
|
|
802
|
+
const _sTFT = "startToFireTimeout";
|
|
803
|
+
const _sTST = "scheduleToStartTimeout";
|
|
804
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.swf";
|
|
805
|
+
const _t = "tags";
|
|
806
|
+
const _tCEA = "timerCanceledEventAttributes";
|
|
807
|
+
const _tF = "typeFilter";
|
|
808
|
+
const _tFEA = "timerFiredEventAttributes";
|
|
809
|
+
const _tFa = "tagFilter";
|
|
810
|
+
const _tI = "typeInfo";
|
|
811
|
+
const _tIi = "timerId";
|
|
812
|
+
const _tIy = "typeInfos";
|
|
813
|
+
const _tK = "tagKeys";
|
|
814
|
+
const _tL = "taskList";
|
|
815
|
+
const _tLSTST = "taskListScheduleToStartTimeout";
|
|
816
|
+
const _tLa = "tagList";
|
|
817
|
+
const _tP = "taskPriority";
|
|
818
|
+
const _tSEA = "timerStartedEventAttributes";
|
|
819
|
+
const _tSTCT = "taskStartToCloseTimeout";
|
|
820
|
+
const _tT = "taskToken";
|
|
821
|
+
const _tTi = "timeoutType";
|
|
822
|
+
const _ta = "tag";
|
|
823
|
+
const _tr = "truncated";
|
|
824
|
+
const _v = "version";
|
|
825
|
+
const _va = "value";
|
|
826
|
+
const _wE = "workflowExecution";
|
|
827
|
+
const _wECANEA = "workflowExecutionContinuedAsNewEventAttributes";
|
|
828
|
+
const _wECEA = "workflowExecutionCompletedEventAttributes";
|
|
829
|
+
const _wECEAo = "workflowExecutionCanceledEventAttributes";
|
|
830
|
+
const _wECREA = "workflowExecutionCancelRequestedEventAttributes";
|
|
831
|
+
const _wEFEA = "workflowExecutionFailedEventAttributes";
|
|
832
|
+
const _wERPID = "workflowExecutionRetentionPeriodInDays";
|
|
833
|
+
const _wESEA = "workflowExecutionStartedEventAttributes";
|
|
834
|
+
const _wESEAo = "workflowExecutionSignaledEventAttributes";
|
|
835
|
+
const _wETEA = "workflowExecutionTerminatedEventAttributes";
|
|
836
|
+
const _wETOEA = "workflowExecutionTimedOutEventAttributes";
|
|
837
|
+
const _wI = "workflowId";
|
|
838
|
+
const _wT = "workflowType";
|
|
839
|
+
const _wTV = "workflowTypeVersion";
|
|
840
|
+
const n0 = "com.amazonaws.swf";
|
|
841
|
+
var ActivityTask = [
|
|
842
|
+
3,
|
|
843
|
+
n0,
|
|
844
|
+
_AT,
|
|
845
|
+
0,
|
|
846
|
+
[_tT, _aI, _sEI, _wE, _aT, _i],
|
|
847
|
+
[0, 0, 1, () => WorkflowExecution, () => ActivityType, 0],
|
|
848
|
+
];
|
|
849
|
+
var ActivityTaskCanceledEventAttributes = [
|
|
850
|
+
3,
|
|
851
|
+
n0,
|
|
852
|
+
_ATCEA,
|
|
853
|
+
0,
|
|
854
|
+
[_d, _sEIc, _sEI, _lCREI],
|
|
855
|
+
[0, 1, 1, 1],
|
|
856
|
+
];
|
|
857
|
+
var ActivityTaskCancelRequestedEventAttributes = [
|
|
858
|
+
3,
|
|
859
|
+
n0,
|
|
860
|
+
_ATCREA,
|
|
861
|
+
0,
|
|
862
|
+
[_dTCEI, _aI],
|
|
863
|
+
[1, 0],
|
|
864
|
+
];
|
|
865
|
+
var ActivityTaskCompletedEventAttributes = [
|
|
866
|
+
3,
|
|
867
|
+
n0,
|
|
868
|
+
_ATCEAc,
|
|
869
|
+
0,
|
|
870
|
+
[_r, _sEIc, _sEI],
|
|
871
|
+
[0, 1, 1],
|
|
872
|
+
];
|
|
873
|
+
var ActivityTaskFailedEventAttributes = [
|
|
874
|
+
3,
|
|
875
|
+
n0,
|
|
876
|
+
_ATFEA,
|
|
877
|
+
0,
|
|
878
|
+
[_re, _d, _sEIc, _sEI],
|
|
879
|
+
[0, 0, 1, 1],
|
|
880
|
+
];
|
|
881
|
+
var ActivityTaskScheduledEventAttributes = [
|
|
882
|
+
3,
|
|
883
|
+
n0,
|
|
884
|
+
_ATSEA,
|
|
885
|
+
0,
|
|
886
|
+
[_aT, _aI, _i, _c, _sTST, _sTCT, _sTCTt, _tL, _tP, _dTCEI, _hT],
|
|
887
|
+
[() => ActivityType, 0, 0, 0, 0, 0, 0, () => TaskList, 0, 1, 0],
|
|
888
|
+
];
|
|
889
|
+
var ActivityTaskStartedEventAttributes = [3, n0, _ATSEAc, 0, [_id, _sEIc], [0, 1]];
|
|
890
|
+
var ActivityTaskStatus = [3, n0, _ATS, 0, [_cR], [2]];
|
|
891
|
+
var ActivityTaskTimedOutEventAttributes = [
|
|
892
|
+
3,
|
|
893
|
+
n0,
|
|
894
|
+
_ATTOEA,
|
|
895
|
+
0,
|
|
896
|
+
[_tTi, _sEIc, _sEI, _d],
|
|
897
|
+
[0, 1, 1, 0],
|
|
898
|
+
];
|
|
899
|
+
var ActivityType = [3, n0, _ATc, 0, [_n, _v], [0, 0]];
|
|
900
|
+
var ActivityTypeConfiguration = [
|
|
901
|
+
3,
|
|
902
|
+
n0,
|
|
903
|
+
_ATC,
|
|
904
|
+
0,
|
|
905
|
+
[_dTSTCT, _dTHT, _dTL, _dTP, _dTSTST, _dTSTCTe],
|
|
906
|
+
[0, 0, () => TaskList, 0, 0, 0],
|
|
907
|
+
];
|
|
908
|
+
var ActivityTypeDetail = [
|
|
909
|
+
3,
|
|
910
|
+
n0,
|
|
911
|
+
_ATD,
|
|
912
|
+
0,
|
|
913
|
+
[_tI, _co],
|
|
914
|
+
[() => ActivityTypeInfo, () => ActivityTypeConfiguration],
|
|
915
|
+
];
|
|
916
|
+
var ActivityTypeInfo = [
|
|
917
|
+
3,
|
|
918
|
+
n0,
|
|
919
|
+
_ATI,
|
|
920
|
+
0,
|
|
921
|
+
[_aT, _s, _de, _cD, _dD],
|
|
922
|
+
[() => ActivityType, 0, 0, 4, 4],
|
|
923
|
+
];
|
|
924
|
+
var ActivityTypeInfos = [3, n0, _ATIc, 0, [_tIy, _nPT], [() => ActivityTypeInfoList, 0]];
|
|
925
|
+
var CancelTimerDecisionAttributes = [3, n0, _CTDA, 0, [_tIi], [0]];
|
|
926
|
+
var CancelTimerFailedEventAttributes = [3, n0, _CTFEA, 0, [_tIi, _ca, _dTCEI], [0, 0, 1]];
|
|
927
|
+
var CancelWorkflowExecutionDecisionAttributes = [3, n0, _CWEDA, 0, [_d], [0]];
|
|
928
|
+
var CancelWorkflowExecutionFailedEventAttributes = [
|
|
929
|
+
3,
|
|
930
|
+
n0,
|
|
931
|
+
_CWEFEA,
|
|
932
|
+
0,
|
|
933
|
+
[_ca, _dTCEI],
|
|
934
|
+
[0, 1],
|
|
935
|
+
];
|
|
936
|
+
var ChildWorkflowExecutionCanceledEventAttributes = [
|
|
937
|
+
3,
|
|
938
|
+
n0,
|
|
939
|
+
_CWECEA,
|
|
940
|
+
0,
|
|
941
|
+
[_wE, _wT, _d, _iEI, _sEI],
|
|
942
|
+
[() => WorkflowExecution, () => WorkflowType, 0, 1, 1],
|
|
943
|
+
];
|
|
944
|
+
var ChildWorkflowExecutionCompletedEventAttributes = [
|
|
945
|
+
3,
|
|
946
|
+
n0,
|
|
947
|
+
_CWECEAh,
|
|
948
|
+
0,
|
|
949
|
+
[_wE, _wT, _r, _iEI, _sEI],
|
|
950
|
+
[() => WorkflowExecution, () => WorkflowType, 0, 1, 1],
|
|
951
|
+
];
|
|
952
|
+
var ChildWorkflowExecutionFailedEventAttributes = [
|
|
953
|
+
3,
|
|
954
|
+
n0,
|
|
955
|
+
_CWEFEAh,
|
|
956
|
+
0,
|
|
957
|
+
[_wE, _wT, _re, _d, _iEI, _sEI],
|
|
958
|
+
[() => WorkflowExecution, () => WorkflowType, 0, 0, 1, 1],
|
|
959
|
+
];
|
|
960
|
+
var ChildWorkflowExecutionStartedEventAttributes = [
|
|
961
|
+
3,
|
|
962
|
+
n0,
|
|
963
|
+
_CWESEA,
|
|
964
|
+
0,
|
|
965
|
+
[_wE, _wT, _iEI],
|
|
966
|
+
[() => WorkflowExecution, () => WorkflowType, 1],
|
|
967
|
+
];
|
|
968
|
+
var ChildWorkflowExecutionTerminatedEventAttributes = [
|
|
969
|
+
3,
|
|
970
|
+
n0,
|
|
971
|
+
_CWETEA,
|
|
972
|
+
0,
|
|
973
|
+
[_wE, _wT, _iEI, _sEI],
|
|
974
|
+
[() => WorkflowExecution, () => WorkflowType, 1, 1],
|
|
975
|
+
];
|
|
976
|
+
var ChildWorkflowExecutionTimedOutEventAttributes = [
|
|
977
|
+
3,
|
|
978
|
+
n0,
|
|
979
|
+
_CWETOEA,
|
|
980
|
+
0,
|
|
981
|
+
[_wE, _wT, _tTi, _iEI, _sEI],
|
|
982
|
+
[() => WorkflowExecution, () => WorkflowType, 0, 1, 1],
|
|
983
|
+
];
|
|
984
|
+
var CloseStatusFilter = [3, n0, _CSF, 0, [_s], [0]];
|
|
985
|
+
var CompleteWorkflowExecutionDecisionAttributes = [3, n0, _CWEDAo, 0, [_r], [0]];
|
|
986
|
+
var CompleteWorkflowExecutionFailedEventAttributes = [
|
|
987
|
+
3,
|
|
988
|
+
n0,
|
|
989
|
+
_CWEFEAo,
|
|
990
|
+
0,
|
|
991
|
+
[_ca, _dTCEI],
|
|
992
|
+
[0, 1],
|
|
993
|
+
];
|
|
994
|
+
var ContinueAsNewWorkflowExecutionDecisionAttributes = [
|
|
995
|
+
3,
|
|
996
|
+
n0,
|
|
997
|
+
_CANWEDA,
|
|
998
|
+
0,
|
|
999
|
+
[_i, _eSTCT, _tL, _tP, _tSTCT, _cP, _tLa, _wTV, _lR],
|
|
1000
|
+
[0, 0, () => TaskList, 0, 0, 0, 64 | 0, 0, 0],
|
|
1001
|
+
];
|
|
1002
|
+
var ContinueAsNewWorkflowExecutionFailedEventAttributes = [
|
|
1003
|
+
3,
|
|
1004
|
+
n0,
|
|
1005
|
+
_CANWEFEA,
|
|
1006
|
+
0,
|
|
1007
|
+
[_ca, _dTCEI],
|
|
1008
|
+
[0, 1],
|
|
1009
|
+
];
|
|
1010
|
+
var CountClosedWorkflowExecutionsInput = [
|
|
1011
|
+
3,
|
|
1012
|
+
n0,
|
|
1013
|
+
_CCWEI,
|
|
1014
|
+
0,
|
|
1015
|
+
[_do, _sTF, _cTF, _eF, _tF, _tFa, _cSF],
|
|
1016
|
+
[
|
|
1017
|
+
0,
|
|
1018
|
+
() => ExecutionTimeFilter,
|
|
1019
|
+
() => ExecutionTimeFilter,
|
|
1020
|
+
() => WorkflowExecutionFilter,
|
|
1021
|
+
() => WorkflowTypeFilter,
|
|
1022
|
+
() => TagFilter,
|
|
1023
|
+
() => CloseStatusFilter,
|
|
1024
|
+
],
|
|
1025
|
+
];
|
|
1026
|
+
var CountOpenWorkflowExecutionsInput = [
|
|
1027
|
+
3,
|
|
1028
|
+
n0,
|
|
1029
|
+
_COWEI,
|
|
1030
|
+
0,
|
|
1031
|
+
[_do, _sTF, _tF, _tFa, _eF],
|
|
1032
|
+
[0, () => ExecutionTimeFilter, () => WorkflowTypeFilter, () => TagFilter, () => WorkflowExecutionFilter],
|
|
1033
|
+
];
|
|
1034
|
+
var CountPendingActivityTasksInput = [3, n0, _CPATI, 0, [_do, _tL], [0, () => TaskList]];
|
|
1035
|
+
var CountPendingDecisionTasksInput = [3, n0, _CPDTI, 0, [_do, _tL], [0, () => TaskList]];
|
|
1036
|
+
var Decision = [
|
|
1037
|
+
3,
|
|
1038
|
+
n0,
|
|
1039
|
+
_D,
|
|
1040
|
+
0,
|
|
1041
|
+
[_dT, _sATDA, _rCATDA, _cWEDA, _fWEDA, _cWEDAa, _cANWEDA, _rMDA, _sTDA, _cTDA, _sEWEDA, _rCEWEDA, _sCWEDA, _sLFDA],
|
|
1042
|
+
[
|
|
1043
|
+
0,
|
|
1044
|
+
() => ScheduleActivityTaskDecisionAttributes,
|
|
1045
|
+
() => RequestCancelActivityTaskDecisionAttributes,
|
|
1046
|
+
() => CompleteWorkflowExecutionDecisionAttributes,
|
|
1047
|
+
() => FailWorkflowExecutionDecisionAttributes,
|
|
1048
|
+
() => CancelWorkflowExecutionDecisionAttributes,
|
|
1049
|
+
() => ContinueAsNewWorkflowExecutionDecisionAttributes,
|
|
1050
|
+
() => RecordMarkerDecisionAttributes,
|
|
1051
|
+
() => StartTimerDecisionAttributes,
|
|
1052
|
+
() => CancelTimerDecisionAttributes,
|
|
1053
|
+
() => SignalExternalWorkflowExecutionDecisionAttributes,
|
|
1054
|
+
() => RequestCancelExternalWorkflowExecutionDecisionAttributes,
|
|
1055
|
+
() => StartChildWorkflowExecutionDecisionAttributes,
|
|
1056
|
+
() => ScheduleLambdaFunctionDecisionAttributes,
|
|
1057
|
+
],
|
|
1058
|
+
];
|
|
1059
|
+
var DecisionTask = [
|
|
1060
|
+
3,
|
|
1061
|
+
n0,
|
|
1062
|
+
_DT,
|
|
1063
|
+
0,
|
|
1064
|
+
[_tT, _sEI, _wE, _wT, _e, _nPT, _pSEI],
|
|
1065
|
+
[0, 1, () => WorkflowExecution, () => WorkflowType, () => HistoryEventList, 0, 1],
|
|
1066
|
+
];
|
|
1067
|
+
var DecisionTaskCompletedEventAttributes = [
|
|
1068
|
+
3,
|
|
1069
|
+
n0,
|
|
1070
|
+
_DTCEA,
|
|
1071
|
+
0,
|
|
1072
|
+
[_eC, _sEIc, _sEI, _tL, _tLSTST],
|
|
1073
|
+
[0, 1, 1, () => TaskList, 0],
|
|
1074
|
+
];
|
|
1075
|
+
var DecisionTaskScheduledEventAttributes = [
|
|
1076
|
+
3,
|
|
1077
|
+
n0,
|
|
1078
|
+
_DTSEA,
|
|
1079
|
+
0,
|
|
1080
|
+
[_tL, _tP, _sTCTt, _sTST],
|
|
1081
|
+
[() => TaskList, 0, 0, 0],
|
|
1082
|
+
];
|
|
1083
|
+
var DecisionTaskStartedEventAttributes = [3, n0, _DTSEAe, 0, [_id, _sEIc], [0, 1]];
|
|
1084
|
+
var DecisionTaskTimedOutEventAttributes = [
|
|
1085
|
+
3,
|
|
1086
|
+
n0,
|
|
1087
|
+
_DTTOEA,
|
|
1088
|
+
0,
|
|
1089
|
+
[_tTi, _sEIc, _sEI],
|
|
1090
|
+
[0, 1, 1],
|
|
1091
|
+
];
|
|
1092
|
+
var DefaultUndefinedFault = [
|
|
1093
|
+
-3,
|
|
1094
|
+
n0,
|
|
1095
|
+
_DUF,
|
|
1096
|
+
{
|
|
1097
|
+
[_er]: _cl,
|
|
1098
|
+
},
|
|
1099
|
+
[_m],
|
|
1100
|
+
[0],
|
|
1101
|
+
];
|
|
1102
|
+
schema.TypeRegistry.for(n0).registerError(DefaultUndefinedFault, DefaultUndefinedFault$1);
|
|
1103
|
+
var DeleteActivityTypeInput = [3, n0, _DATI, 0, [_do, _aT], [0, () => ActivityType]];
|
|
1104
|
+
var DeleteWorkflowTypeInput = [3, n0, _DWTI, 0, [_do, _wT], [0, () => WorkflowType]];
|
|
1105
|
+
var DeprecateActivityTypeInput = [3, n0, _DATIe, 0, [_do, _aT], [0, () => ActivityType]];
|
|
1106
|
+
var DeprecateDomainInput = [3, n0, _DDI, 0, [_n], [0]];
|
|
1107
|
+
var DeprecateWorkflowTypeInput = [3, n0, _DWTIe, 0, [_do, _wT], [0, () => WorkflowType]];
|
|
1108
|
+
var DescribeActivityTypeInput = [3, n0, _DATIes, 0, [_do, _aT], [0, () => ActivityType]];
|
|
1109
|
+
var DescribeDomainInput = [3, n0, _DDIe, 0, [_n], [0]];
|
|
1110
|
+
var DescribeWorkflowExecutionInput = [
|
|
1111
|
+
3,
|
|
1112
|
+
n0,
|
|
1113
|
+
_DWEI,
|
|
1114
|
+
0,
|
|
1115
|
+
[_do, _ex],
|
|
1116
|
+
[0, () => WorkflowExecution],
|
|
1117
|
+
];
|
|
1118
|
+
var DescribeWorkflowTypeInput = [3, n0, _DWTIes, 0, [_do, _wT], [0, () => WorkflowType]];
|
|
1119
|
+
var DomainAlreadyExistsFault = [
|
|
1120
|
+
-3,
|
|
1121
|
+
n0,
|
|
1122
|
+
_DAEF,
|
|
1123
|
+
{
|
|
1124
|
+
[_er]: _cl,
|
|
1125
|
+
},
|
|
1126
|
+
[_m],
|
|
1127
|
+
[0],
|
|
1128
|
+
];
|
|
1129
|
+
schema.TypeRegistry.for(n0).registerError(DomainAlreadyExistsFault, DomainAlreadyExistsFault$1);
|
|
1130
|
+
var DomainConfiguration = [3, n0, _DC, 0, [_wERPID], [0]];
|
|
1131
|
+
var DomainDeprecatedFault = [
|
|
1132
|
+
-3,
|
|
1133
|
+
n0,
|
|
1134
|
+
_DDF,
|
|
1135
|
+
{
|
|
1136
|
+
[_er]: _cl,
|
|
1137
|
+
},
|
|
1138
|
+
[_m],
|
|
1139
|
+
[0],
|
|
1140
|
+
];
|
|
1141
|
+
schema.TypeRegistry.for(n0).registerError(DomainDeprecatedFault, DomainDeprecatedFault$1);
|
|
1142
|
+
var DomainDetail = [
|
|
1143
|
+
3,
|
|
1144
|
+
n0,
|
|
1145
|
+
_DD,
|
|
1146
|
+
0,
|
|
1147
|
+
[_dI, _co],
|
|
1148
|
+
[() => DomainInfo, () => DomainConfiguration],
|
|
1149
|
+
];
|
|
1150
|
+
var DomainInfo = [3, n0, _DI, 0, [_n, _s, _de, _a], [0, 0, 0, 0]];
|
|
1151
|
+
var DomainInfos = [3, n0, _DIo, 0, [_dIo, _nPT], [() => DomainInfoList, 0]];
|
|
1152
|
+
var ExecutionTimeFilter = [3, n0, _ETF, 0, [_oD, _lD], [4, 4]];
|
|
1153
|
+
var ExternalWorkflowExecutionCancelRequestedEventAttributes = [
|
|
1154
|
+
3,
|
|
1155
|
+
n0,
|
|
1156
|
+
_EWECREA,
|
|
1157
|
+
0,
|
|
1158
|
+
[_wE, _iEI],
|
|
1159
|
+
[() => WorkflowExecution, 1],
|
|
1160
|
+
];
|
|
1161
|
+
var ExternalWorkflowExecutionSignaledEventAttributes = [
|
|
1162
|
+
3,
|
|
1163
|
+
n0,
|
|
1164
|
+
_EWESEA,
|
|
1165
|
+
0,
|
|
1166
|
+
[_wE, _iEI],
|
|
1167
|
+
[() => WorkflowExecution, 1],
|
|
1168
|
+
];
|
|
1169
|
+
var FailWorkflowExecutionDecisionAttributes = [3, n0, _FWEDA, 0, [_re, _d], [0, 0]];
|
|
1170
|
+
var FailWorkflowExecutionFailedEventAttributes = [
|
|
1171
|
+
3,
|
|
1172
|
+
n0,
|
|
1173
|
+
_FWEFEA,
|
|
1174
|
+
0,
|
|
1175
|
+
[_ca, _dTCEI],
|
|
1176
|
+
[0, 1],
|
|
1177
|
+
];
|
|
1178
|
+
var GetWorkflowExecutionHistoryInput = [
|
|
1179
|
+
3,
|
|
1180
|
+
n0,
|
|
1181
|
+
_GWEHI,
|
|
1182
|
+
0,
|
|
1183
|
+
[_do, _ex, _nPT, _mPS, _rO],
|
|
1184
|
+
[0, () => WorkflowExecution, 0, 1, 2],
|
|
1185
|
+
];
|
|
1186
|
+
var History = [3, n0, _H, 0, [_e, _nPT], [() => HistoryEventList, 0]];
|
|
1187
|
+
var HistoryEvent = [
|
|
1188
|
+
3,
|
|
1189
|
+
n0,
|
|
1190
|
+
_HE,
|
|
1191
|
+
0,
|
|
1192
|
+
[
|
|
1193
|
+
_eT,
|
|
1194
|
+
_eTv,
|
|
1195
|
+
_eI,
|
|
1196
|
+
_wESEA,
|
|
1197
|
+
_wECEA,
|
|
1198
|
+
_cWEFEA,
|
|
1199
|
+
_wEFEA,
|
|
1200
|
+
_fWEFEA,
|
|
1201
|
+
_wETOEA,
|
|
1202
|
+
_wECEAo,
|
|
1203
|
+
_cWEFEAa,
|
|
1204
|
+
_wECANEA,
|
|
1205
|
+
_cANWEFEA,
|
|
1206
|
+
_wETEA,
|
|
1207
|
+
_wECREA,
|
|
1208
|
+
_dTSEA,
|
|
1209
|
+
_dTSEAe,
|
|
1210
|
+
_dTCEA,
|
|
1211
|
+
_dTTOEA,
|
|
1212
|
+
_aTSEA,
|
|
1213
|
+
_aTSEAc,
|
|
1214
|
+
_aTCEA,
|
|
1215
|
+
_aTFEA,
|
|
1216
|
+
_aTTOEA,
|
|
1217
|
+
_aTCEAc,
|
|
1218
|
+
_aTCREA,
|
|
1219
|
+
_wESEAo,
|
|
1220
|
+
_mREA,
|
|
1221
|
+
_rMFEA,
|
|
1222
|
+
_tSEA,
|
|
1223
|
+
_tFEA,
|
|
1224
|
+
_tCEA,
|
|
1225
|
+
_sCWEIEA,
|
|
1226
|
+
_cWESEA,
|
|
1227
|
+
_cWECEA,
|
|
1228
|
+
_cWEFEAh,
|
|
1229
|
+
_cWETOEA,
|
|
1230
|
+
_cWECEAh,
|
|
1231
|
+
_cWETEA,
|
|
1232
|
+
_sEWEIEA,
|
|
1233
|
+
_eWESEA,
|
|
1234
|
+
_sEWEFEA,
|
|
1235
|
+
_eWECREA,
|
|
1236
|
+
_rCEWEIEA,
|
|
1237
|
+
_rCEWEFEA,
|
|
1238
|
+
_sATFEA,
|
|
1239
|
+
_rCATFEA,
|
|
1240
|
+
_sTFEA,
|
|
1241
|
+
_cTFEA,
|
|
1242
|
+
_sCWEFEA,
|
|
1243
|
+
_lFSEA,
|
|
1244
|
+
_lFSEAa,
|
|
1245
|
+
_lFCEA,
|
|
1246
|
+
_lFFEA,
|
|
1247
|
+
_lFTOEA,
|
|
1248
|
+
_sLFFEA,
|
|
1249
|
+
_sLFFEAt,
|
|
1250
|
+
],
|
|
1251
|
+
[
|
|
1252
|
+
4,
|
|
1253
|
+
0,
|
|
1254
|
+
1,
|
|
1255
|
+
() => WorkflowExecutionStartedEventAttributes,
|
|
1256
|
+
() => WorkflowExecutionCompletedEventAttributes,
|
|
1257
|
+
() => CompleteWorkflowExecutionFailedEventAttributes,
|
|
1258
|
+
() => WorkflowExecutionFailedEventAttributes,
|
|
1259
|
+
() => FailWorkflowExecutionFailedEventAttributes,
|
|
1260
|
+
() => WorkflowExecutionTimedOutEventAttributes,
|
|
1261
|
+
() => WorkflowExecutionCanceledEventAttributes,
|
|
1262
|
+
() => CancelWorkflowExecutionFailedEventAttributes,
|
|
1263
|
+
() => WorkflowExecutionContinuedAsNewEventAttributes,
|
|
1264
|
+
() => ContinueAsNewWorkflowExecutionFailedEventAttributes,
|
|
1265
|
+
() => WorkflowExecutionTerminatedEventAttributes,
|
|
1266
|
+
() => WorkflowExecutionCancelRequestedEventAttributes,
|
|
1267
|
+
() => DecisionTaskScheduledEventAttributes,
|
|
1268
|
+
() => DecisionTaskStartedEventAttributes,
|
|
1269
|
+
() => DecisionTaskCompletedEventAttributes,
|
|
1270
|
+
() => DecisionTaskTimedOutEventAttributes,
|
|
1271
|
+
() => ActivityTaskScheduledEventAttributes,
|
|
1272
|
+
() => ActivityTaskStartedEventAttributes,
|
|
1273
|
+
() => ActivityTaskCompletedEventAttributes,
|
|
1274
|
+
() => ActivityTaskFailedEventAttributes,
|
|
1275
|
+
() => ActivityTaskTimedOutEventAttributes,
|
|
1276
|
+
() => ActivityTaskCanceledEventAttributes,
|
|
1277
|
+
() => ActivityTaskCancelRequestedEventAttributes,
|
|
1278
|
+
() => WorkflowExecutionSignaledEventAttributes,
|
|
1279
|
+
() => MarkerRecordedEventAttributes,
|
|
1280
|
+
() => RecordMarkerFailedEventAttributes,
|
|
1281
|
+
() => TimerStartedEventAttributes,
|
|
1282
|
+
() => TimerFiredEventAttributes,
|
|
1283
|
+
() => TimerCanceledEventAttributes,
|
|
1284
|
+
() => StartChildWorkflowExecutionInitiatedEventAttributes,
|
|
1285
|
+
() => ChildWorkflowExecutionStartedEventAttributes,
|
|
1286
|
+
() => ChildWorkflowExecutionCompletedEventAttributes,
|
|
1287
|
+
() => ChildWorkflowExecutionFailedEventAttributes,
|
|
1288
|
+
() => ChildWorkflowExecutionTimedOutEventAttributes,
|
|
1289
|
+
() => ChildWorkflowExecutionCanceledEventAttributes,
|
|
1290
|
+
() => ChildWorkflowExecutionTerminatedEventAttributes,
|
|
1291
|
+
() => SignalExternalWorkflowExecutionInitiatedEventAttributes,
|
|
1292
|
+
() => ExternalWorkflowExecutionSignaledEventAttributes,
|
|
1293
|
+
() => SignalExternalWorkflowExecutionFailedEventAttributes,
|
|
1294
|
+
() => ExternalWorkflowExecutionCancelRequestedEventAttributes,
|
|
1295
|
+
() => RequestCancelExternalWorkflowExecutionInitiatedEventAttributes,
|
|
1296
|
+
() => RequestCancelExternalWorkflowExecutionFailedEventAttributes,
|
|
1297
|
+
() => ScheduleActivityTaskFailedEventAttributes,
|
|
1298
|
+
() => RequestCancelActivityTaskFailedEventAttributes,
|
|
1299
|
+
() => StartTimerFailedEventAttributes,
|
|
1300
|
+
() => CancelTimerFailedEventAttributes,
|
|
1301
|
+
() => StartChildWorkflowExecutionFailedEventAttributes,
|
|
1302
|
+
() => LambdaFunctionScheduledEventAttributes,
|
|
1303
|
+
() => LambdaFunctionStartedEventAttributes,
|
|
1304
|
+
() => LambdaFunctionCompletedEventAttributes,
|
|
1305
|
+
() => LambdaFunctionFailedEventAttributes,
|
|
1306
|
+
() => LambdaFunctionTimedOutEventAttributes,
|
|
1307
|
+
() => ScheduleLambdaFunctionFailedEventAttributes,
|
|
1308
|
+
() => StartLambdaFunctionFailedEventAttributes,
|
|
1309
|
+
],
|
|
1310
|
+
];
|
|
1311
|
+
var LambdaFunctionCompletedEventAttributes = [
|
|
1312
|
+
3,
|
|
1313
|
+
n0,
|
|
1314
|
+
_LFCEA,
|
|
1315
|
+
0,
|
|
1316
|
+
[_sEIc, _sEI, _r],
|
|
1317
|
+
[1, 1, 0],
|
|
1318
|
+
];
|
|
1319
|
+
var LambdaFunctionFailedEventAttributes = [
|
|
1320
|
+
3,
|
|
1321
|
+
n0,
|
|
1322
|
+
_LFFEA,
|
|
1323
|
+
0,
|
|
1324
|
+
[_sEIc, _sEI, _re, _d],
|
|
1325
|
+
[1, 1, 0, 0],
|
|
1326
|
+
];
|
|
1327
|
+
var LambdaFunctionScheduledEventAttributes = [
|
|
1328
|
+
3,
|
|
1329
|
+
n0,
|
|
1330
|
+
_LFSEA,
|
|
1331
|
+
0,
|
|
1332
|
+
[_id_, _n, _c, _i, _sTCTt, _dTCEI],
|
|
1333
|
+
[0, 0, 0, 0, 0, 1],
|
|
1334
|
+
];
|
|
1335
|
+
var LambdaFunctionStartedEventAttributes = [3, n0, _LFSEAa, 0, [_sEIc], [1]];
|
|
1336
|
+
var LambdaFunctionTimedOutEventAttributes = [
|
|
1337
|
+
3,
|
|
1338
|
+
n0,
|
|
1339
|
+
_LFTOEA,
|
|
1340
|
+
0,
|
|
1341
|
+
[_sEIc, _sEI, _tTi],
|
|
1342
|
+
[1, 1, 0],
|
|
1343
|
+
];
|
|
1344
|
+
var LimitExceededFault = [
|
|
1345
|
+
-3,
|
|
1346
|
+
n0,
|
|
1347
|
+
_LEF,
|
|
1348
|
+
{
|
|
1349
|
+
[_er]: _cl,
|
|
1350
|
+
},
|
|
1351
|
+
[_m],
|
|
1352
|
+
[0],
|
|
1353
|
+
];
|
|
1354
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededFault, LimitExceededFault$1);
|
|
1355
|
+
var ListActivityTypesInput = [
|
|
1356
|
+
3,
|
|
1357
|
+
n0,
|
|
1358
|
+
_LATI,
|
|
1359
|
+
0,
|
|
1360
|
+
[_do, _n, _rS, _nPT, _mPS, _rO],
|
|
1361
|
+
[0, 0, 0, 0, 1, 2],
|
|
1362
|
+
];
|
|
1363
|
+
var ListClosedWorkflowExecutionsInput = [
|
|
1364
|
+
3,
|
|
1365
|
+
n0,
|
|
1366
|
+
_LCWEI,
|
|
1367
|
+
0,
|
|
1368
|
+
[_do, _sTF, _cTF, _eF, _cSF, _tF, _tFa, _nPT, _mPS, _rO],
|
|
1369
|
+
[
|
|
1370
|
+
0,
|
|
1371
|
+
() => ExecutionTimeFilter,
|
|
1372
|
+
() => ExecutionTimeFilter,
|
|
1373
|
+
() => WorkflowExecutionFilter,
|
|
1374
|
+
() => CloseStatusFilter,
|
|
1375
|
+
() => WorkflowTypeFilter,
|
|
1376
|
+
() => TagFilter,
|
|
1377
|
+
0,
|
|
1378
|
+
1,
|
|
1379
|
+
2,
|
|
1380
|
+
],
|
|
1381
|
+
];
|
|
1382
|
+
var ListDomainsInput = [3, n0, _LDI, 0, [_nPT, _rS, _mPS, _rO], [0, 0, 1, 2]];
|
|
1383
|
+
var ListOpenWorkflowExecutionsInput = [
|
|
1384
|
+
3,
|
|
1385
|
+
n0,
|
|
1386
|
+
_LOWEI,
|
|
1387
|
+
0,
|
|
1388
|
+
[_do, _sTF, _tF, _tFa, _nPT, _mPS, _rO, _eF],
|
|
1389
|
+
[0, () => ExecutionTimeFilter, () => WorkflowTypeFilter, () => TagFilter, 0, 1, 2, () => WorkflowExecutionFilter],
|
|
1390
|
+
];
|
|
1391
|
+
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rA], [0]];
|
|
1392
|
+
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_t], [() => ResourceTagList]];
|
|
1393
|
+
var ListWorkflowTypesInput = [
|
|
1394
|
+
3,
|
|
1395
|
+
n0,
|
|
1396
|
+
_LWTI,
|
|
1397
|
+
0,
|
|
1398
|
+
[_do, _n, _rS, _nPT, _mPS, _rO],
|
|
1399
|
+
[0, 0, 0, 0, 1, 2],
|
|
1400
|
+
];
|
|
1401
|
+
var MarkerRecordedEventAttributes = [3, n0, _MREA, 0, [_mN, _d, _dTCEI], [0, 0, 1]];
|
|
1402
|
+
var OperationNotPermittedFault = [
|
|
1403
|
+
-3,
|
|
1404
|
+
n0,
|
|
1405
|
+
_ONPF,
|
|
1406
|
+
{
|
|
1407
|
+
[_er]: _cl,
|
|
1408
|
+
},
|
|
1409
|
+
[_m],
|
|
1410
|
+
[0],
|
|
1411
|
+
];
|
|
1412
|
+
schema.TypeRegistry.for(n0).registerError(OperationNotPermittedFault, OperationNotPermittedFault$1);
|
|
1413
|
+
var PendingTaskCount = [3, n0, _PTC, 0, [_cou, _tr], [1, 2]];
|
|
1414
|
+
var PollForActivityTaskInput = [
|
|
1415
|
+
3,
|
|
1416
|
+
n0,
|
|
1417
|
+
_PFATI,
|
|
1418
|
+
0,
|
|
1419
|
+
[_do, _tL, _id],
|
|
1420
|
+
[0, () => TaskList, 0],
|
|
1421
|
+
];
|
|
1422
|
+
var PollForDecisionTaskInput = [
|
|
1423
|
+
3,
|
|
1424
|
+
n0,
|
|
1425
|
+
_PFDTI,
|
|
1426
|
+
0,
|
|
1427
|
+
[_do, _tL, _id, _nPT, _mPS, _rO, _sAPSE],
|
|
1428
|
+
[0, () => TaskList, 0, 0, 1, 2, 2],
|
|
1429
|
+
];
|
|
1430
|
+
var RecordActivityTaskHeartbeatInput = [3, n0, _RATHI, 0, [_tT, _d], [0, 0]];
|
|
1431
|
+
var RecordMarkerDecisionAttributes = [3, n0, _RMDA, 0, [_mN, _d], [0, 0]];
|
|
1432
|
+
var RecordMarkerFailedEventAttributes = [3, n0, _RMFEA, 0, [_mN, _ca, _dTCEI], [0, 0, 1]];
|
|
1433
|
+
var RegisterActivityTypeInput = [
|
|
1434
|
+
3,
|
|
1435
|
+
n0,
|
|
1436
|
+
_RATI,
|
|
1437
|
+
0,
|
|
1438
|
+
[_do, _n, _v, _de, _dTSTCT, _dTHT, _dTL, _dTP, _dTSTST, _dTSTCTe],
|
|
1439
|
+
[0, 0, 0, 0, 0, 0, () => TaskList, 0, 0, 0],
|
|
1440
|
+
];
|
|
1441
|
+
var RegisterDomainInput = [
|
|
1442
|
+
3,
|
|
1443
|
+
n0,
|
|
1444
|
+
_RDI,
|
|
1445
|
+
0,
|
|
1446
|
+
[_n, _de, _wERPID, _t],
|
|
1447
|
+
[0, 0, 0, () => ResourceTagList],
|
|
1448
|
+
];
|
|
1449
|
+
var RegisterWorkflowTypeInput = [
|
|
1450
|
+
3,
|
|
1451
|
+
n0,
|
|
1452
|
+
_RWTI,
|
|
1453
|
+
0,
|
|
1454
|
+
[_do, _n, _v, _de, _dTSTCT, _dESTCT, _dTL, _dTP, _dCP, _dLR],
|
|
1455
|
+
[0, 0, 0, 0, 0, 0, () => TaskList, 0, 0, 0],
|
|
1456
|
+
];
|
|
1457
|
+
var RequestCancelActivityTaskDecisionAttributes = [3, n0, _RCATDA, 0, [_aI], [0]];
|
|
1458
|
+
var RequestCancelActivityTaskFailedEventAttributes = [
|
|
1459
|
+
3,
|
|
1460
|
+
n0,
|
|
1461
|
+
_RCATFEA,
|
|
1462
|
+
0,
|
|
1463
|
+
[_aI, _ca, _dTCEI],
|
|
1464
|
+
[0, 0, 1],
|
|
1465
|
+
];
|
|
1466
|
+
var RequestCancelExternalWorkflowExecutionDecisionAttributes = [
|
|
1467
|
+
3,
|
|
1468
|
+
n0,
|
|
1469
|
+
_RCEWEDA,
|
|
1470
|
+
0,
|
|
1471
|
+
[_wI, _rI, _c],
|
|
1472
|
+
[0, 0, 0],
|
|
1473
|
+
];
|
|
1474
|
+
var RequestCancelExternalWorkflowExecutionFailedEventAttributes = [
|
|
1475
|
+
3,
|
|
1476
|
+
n0,
|
|
1477
|
+
_RCEWEFEA,
|
|
1478
|
+
0,
|
|
1479
|
+
[_wI, _rI, _ca, _iEI, _dTCEI, _c],
|
|
1480
|
+
[0, 0, 0, 1, 1, 0],
|
|
1481
|
+
];
|
|
1482
|
+
var RequestCancelExternalWorkflowExecutionInitiatedEventAttributes = [
|
|
1483
|
+
3,
|
|
1484
|
+
n0,
|
|
1485
|
+
_RCEWEIEA,
|
|
1486
|
+
0,
|
|
1487
|
+
[_wI, _rI, _dTCEI, _c],
|
|
1488
|
+
[0, 0, 1, 0],
|
|
1489
|
+
];
|
|
1490
|
+
var RequestCancelWorkflowExecutionInput = [3, n0, _RCWEI, 0, [_do, _wI, _rI], [0, 0, 0]];
|
|
1491
|
+
var ResourceTag = [3, n0, _RT, 0, [_k, _va], [0, 0]];
|
|
1492
|
+
var RespondActivityTaskCanceledInput = [3, n0, _RATCI, 0, [_tT, _d], [0, 0]];
|
|
1493
|
+
var RespondActivityTaskCompletedInput = [3, n0, _RATCIe, 0, [_tT, _r], [0, 0]];
|
|
1494
|
+
var RespondActivityTaskFailedInput = [3, n0, _RATFI, 0, [_tT, _re, _d], [0, 0, 0]];
|
|
1495
|
+
var RespondDecisionTaskCompletedInput = [
|
|
1496
|
+
3,
|
|
1497
|
+
n0,
|
|
1498
|
+
_RDTCI,
|
|
1499
|
+
0,
|
|
1500
|
+
[_tT, _dec, _eC, _tL, _tLSTST],
|
|
1501
|
+
[0, () => DecisionList, 0, () => TaskList, 0],
|
|
1502
|
+
];
|
|
1503
|
+
var Run = [3, n0, _R, 0, [_rI], [0]];
|
|
1504
|
+
var ScheduleActivityTaskDecisionAttributes = [
|
|
1505
|
+
3,
|
|
1506
|
+
n0,
|
|
1507
|
+
_SATDA,
|
|
1508
|
+
0,
|
|
1509
|
+
[_aT, _aI, _c, _i, _sTCT, _tL, _tP, _sTST, _sTCTt, _hT],
|
|
1510
|
+
[() => ActivityType, 0, 0, 0, 0, () => TaskList, 0, 0, 0, 0],
|
|
1511
|
+
];
|
|
1512
|
+
var ScheduleActivityTaskFailedEventAttributes = [
|
|
1513
|
+
3,
|
|
1514
|
+
n0,
|
|
1515
|
+
_SATFEA,
|
|
1516
|
+
0,
|
|
1517
|
+
[_aT, _aI, _ca, _dTCEI],
|
|
1518
|
+
[() => ActivityType, 0, 0, 1],
|
|
1519
|
+
];
|
|
1520
|
+
var ScheduleLambdaFunctionDecisionAttributes = [
|
|
1521
|
+
3,
|
|
1522
|
+
n0,
|
|
1523
|
+
_SLFDA,
|
|
1524
|
+
0,
|
|
1525
|
+
[_id_, _n, _c, _i, _sTCTt],
|
|
1526
|
+
[0, 0, 0, 0, 0],
|
|
1527
|
+
];
|
|
1528
|
+
var ScheduleLambdaFunctionFailedEventAttributes = [
|
|
1529
|
+
3,
|
|
1530
|
+
n0,
|
|
1531
|
+
_SLFFEA,
|
|
1532
|
+
0,
|
|
1533
|
+
[_id_, _n, _ca, _dTCEI],
|
|
1534
|
+
[0, 0, 0, 1],
|
|
1535
|
+
];
|
|
1536
|
+
var SignalExternalWorkflowExecutionDecisionAttributes = [
|
|
1537
|
+
3,
|
|
1538
|
+
n0,
|
|
1539
|
+
_SEWEDA,
|
|
1540
|
+
0,
|
|
1541
|
+
[_wI, _rI, _sN, _i, _c],
|
|
1542
|
+
[0, 0, 0, 0, 0],
|
|
1543
|
+
];
|
|
1544
|
+
var SignalExternalWorkflowExecutionFailedEventAttributes = [
|
|
1545
|
+
3,
|
|
1546
|
+
n0,
|
|
1547
|
+
_SEWEFEA,
|
|
1548
|
+
0,
|
|
1549
|
+
[_wI, _rI, _ca, _iEI, _dTCEI, _c],
|
|
1550
|
+
[0, 0, 0, 1, 1, 0],
|
|
1551
|
+
];
|
|
1552
|
+
var SignalExternalWorkflowExecutionInitiatedEventAttributes = [
|
|
1553
|
+
3,
|
|
1554
|
+
n0,
|
|
1555
|
+
_SEWEIEA,
|
|
1556
|
+
0,
|
|
1557
|
+
[_wI, _rI, _sN, _i, _dTCEI, _c],
|
|
1558
|
+
[0, 0, 0, 0, 1, 0],
|
|
1559
|
+
];
|
|
1560
|
+
var SignalWorkflowExecutionInput = [
|
|
1561
|
+
3,
|
|
1562
|
+
n0,
|
|
1563
|
+
_SWEI,
|
|
1564
|
+
0,
|
|
1565
|
+
[_do, _wI, _rI, _sN, _i],
|
|
1566
|
+
[0, 0, 0, 0, 0],
|
|
1567
|
+
];
|
|
1568
|
+
var StartChildWorkflowExecutionDecisionAttributes = [
|
|
1569
|
+
3,
|
|
1570
|
+
n0,
|
|
1571
|
+
_SCWEDA,
|
|
1572
|
+
0,
|
|
1573
|
+
[_wT, _wI, _c, _i, _eSTCT, _tL, _tP, _tSTCT, _cP, _tLa, _lR],
|
|
1574
|
+
[() => WorkflowType, 0, 0, 0, 0, () => TaskList, 0, 0, 0, 64 | 0, 0],
|
|
1575
|
+
];
|
|
1576
|
+
var StartChildWorkflowExecutionFailedEventAttributes = [
|
|
1577
|
+
3,
|
|
1578
|
+
n0,
|
|
1579
|
+
_SCWEFEA,
|
|
1580
|
+
0,
|
|
1581
|
+
[_wT, _ca, _wI, _iEI, _dTCEI, _c],
|
|
1582
|
+
[() => WorkflowType, 0, 0, 1, 1, 0],
|
|
1583
|
+
];
|
|
1584
|
+
var StartChildWorkflowExecutionInitiatedEventAttributes = [
|
|
1585
|
+
3,
|
|
1586
|
+
n0,
|
|
1587
|
+
_SCWEIEA,
|
|
1588
|
+
0,
|
|
1589
|
+
[_wI, _wT, _c, _i, _eSTCT, _tL, _tP, _dTCEI, _cP, _tSTCT, _tLa, _lR],
|
|
1590
|
+
[0, () => WorkflowType, 0, 0, 0, () => TaskList, 0, 1, 0, 0, 64 | 0, 0],
|
|
1591
|
+
];
|
|
1592
|
+
var StartLambdaFunctionFailedEventAttributes = [
|
|
1593
|
+
3,
|
|
1594
|
+
n0,
|
|
1595
|
+
_SLFFEAt,
|
|
1596
|
+
0,
|
|
1597
|
+
[_sEIc, _ca, _m],
|
|
1598
|
+
[1, 0, 0],
|
|
1599
|
+
];
|
|
1600
|
+
var StartTimerDecisionAttributes = [3, n0, _STDA, 0, [_tIi, _c, _sTFT], [0, 0, 0]];
|
|
1601
|
+
var StartTimerFailedEventAttributes = [3, n0, _STFEA, 0, [_tIi, _ca, _dTCEI], [0, 0, 1]];
|
|
1602
|
+
var StartWorkflowExecutionInput = [
|
|
1603
|
+
3,
|
|
1604
|
+
n0,
|
|
1605
|
+
_SWEIt,
|
|
1606
|
+
0,
|
|
1607
|
+
[_do, _wI, _wT, _tL, _tP, _i, _eSTCT, _tLa, _tSTCT, _cP, _lR],
|
|
1608
|
+
[0, 0, () => WorkflowType, () => TaskList, 0, 0, 0, 64 | 0, 0, 0, 0],
|
|
1609
|
+
];
|
|
1610
|
+
var TagFilter = [3, n0, _TF, 0, [_ta], [0]];
|
|
1611
|
+
var TagResourceInput = [3, n0, _TRI, 0, [_rA, _t], [0, () => ResourceTagList]];
|
|
1612
|
+
var TaskList = [3, n0, _TL, 0, [_n], [0]];
|
|
1613
|
+
var TerminateWorkflowExecutionInput = [
|
|
1614
|
+
3,
|
|
1615
|
+
n0,
|
|
1616
|
+
_TWEI,
|
|
1617
|
+
0,
|
|
1618
|
+
[_do, _wI, _rI, _re, _d, _cP],
|
|
1619
|
+
[0, 0, 0, 0, 0, 0],
|
|
1620
|
+
];
|
|
1621
|
+
var TimerCanceledEventAttributes = [3, n0, _TCEA, 0, [_tIi, _sEI, _dTCEI], [0, 1, 1]];
|
|
1622
|
+
var TimerFiredEventAttributes = [3, n0, _TFEA, 0, [_tIi, _sEI], [0, 1]];
|
|
1623
|
+
var TimerStartedEventAttributes = [
|
|
1624
|
+
3,
|
|
1625
|
+
n0,
|
|
1626
|
+
_TSEA,
|
|
1627
|
+
0,
|
|
1628
|
+
[_tIi, _c, _sTFT, _dTCEI],
|
|
1629
|
+
[0, 0, 0, 1],
|
|
1630
|
+
];
|
|
1631
|
+
var TooManyTagsFault = [
|
|
1632
|
+
-3,
|
|
1633
|
+
n0,
|
|
1634
|
+
_TMTF,
|
|
1635
|
+
{
|
|
1636
|
+
[_er]: _cl,
|
|
1637
|
+
[_hE]: 400,
|
|
1638
|
+
},
|
|
1639
|
+
[_m],
|
|
1640
|
+
[0],
|
|
1641
|
+
];
|
|
1642
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsFault, TooManyTagsFault$1);
|
|
1643
|
+
var TypeAlreadyExistsFault = [
|
|
1644
|
+
-3,
|
|
1645
|
+
n0,
|
|
1646
|
+
_TAEF,
|
|
1647
|
+
{
|
|
1648
|
+
[_er]: _cl,
|
|
1649
|
+
},
|
|
1650
|
+
[_m],
|
|
1651
|
+
[0],
|
|
1652
|
+
];
|
|
1653
|
+
schema.TypeRegistry.for(n0).registerError(TypeAlreadyExistsFault, TypeAlreadyExistsFault$1);
|
|
1654
|
+
var TypeDeprecatedFault = [
|
|
1655
|
+
-3,
|
|
1656
|
+
n0,
|
|
1657
|
+
_TDF,
|
|
1658
|
+
{
|
|
1659
|
+
[_er]: _cl,
|
|
1660
|
+
},
|
|
1661
|
+
[_m],
|
|
1662
|
+
[0],
|
|
1663
|
+
];
|
|
1664
|
+
schema.TypeRegistry.for(n0).registerError(TypeDeprecatedFault, TypeDeprecatedFault$1);
|
|
1665
|
+
var TypeNotDeprecatedFault = [
|
|
1666
|
+
-3,
|
|
1667
|
+
n0,
|
|
1668
|
+
_TNDF,
|
|
1669
|
+
{
|
|
1670
|
+
[_er]: _cl,
|
|
1671
|
+
},
|
|
1672
|
+
[_m],
|
|
1673
|
+
[0],
|
|
1674
|
+
];
|
|
1675
|
+
schema.TypeRegistry.for(n0).registerError(TypeNotDeprecatedFault, TypeNotDeprecatedFault$1);
|
|
1676
|
+
var UndeprecateActivityTypeInput = [3, n0, _UATI, 0, [_do, _aT], [0, () => ActivityType]];
|
|
1677
|
+
var UndeprecateDomainInput = [3, n0, _UDI, 0, [_n], [0]];
|
|
1678
|
+
var UndeprecateWorkflowTypeInput = [3, n0, _UWTI, 0, [_do, _wT], [0, () => WorkflowType]];
|
|
1679
|
+
var UnknownResourceFault = [
|
|
1680
|
+
-3,
|
|
1681
|
+
n0,
|
|
1682
|
+
_URF,
|
|
1683
|
+
{
|
|
1684
|
+
[_er]: _cl,
|
|
1685
|
+
},
|
|
1686
|
+
[_m],
|
|
1687
|
+
[0],
|
|
1688
|
+
];
|
|
1689
|
+
schema.TypeRegistry.for(n0).registerError(UnknownResourceFault, UnknownResourceFault$1);
|
|
1690
|
+
var UntagResourceInput = [3, n0, _URI, 0, [_rA, _tK], [0, 64 | 0]];
|
|
1691
|
+
var WorkflowExecution = [3, n0, _WE, 0, [_wI, _rI], [0, 0]];
|
|
1692
|
+
var WorkflowExecutionAlreadyStartedFault = [
|
|
1693
|
+
-3,
|
|
1694
|
+
n0,
|
|
1695
|
+
_WEASF,
|
|
1696
|
+
{
|
|
1697
|
+
[_er]: _cl,
|
|
1698
|
+
},
|
|
1699
|
+
[_m],
|
|
1700
|
+
[0],
|
|
1701
|
+
];
|
|
1702
|
+
schema.TypeRegistry.for(n0).registerError(WorkflowExecutionAlreadyStartedFault, WorkflowExecutionAlreadyStartedFault$1);
|
|
1703
|
+
var WorkflowExecutionCanceledEventAttributes = [3, n0, _WECEA, 0, [_d, _dTCEI], [0, 1]];
|
|
1704
|
+
var WorkflowExecutionCancelRequestedEventAttributes = [
|
|
1705
|
+
3,
|
|
1706
|
+
n0,
|
|
1707
|
+
_WECREA,
|
|
1708
|
+
0,
|
|
1709
|
+
[_eWE, _eIEI, _ca],
|
|
1710
|
+
[() => WorkflowExecution, 1, 0],
|
|
1711
|
+
];
|
|
1712
|
+
var WorkflowExecutionCompletedEventAttributes = [3, n0, _WECEAo, 0, [_r, _dTCEI], [0, 1]];
|
|
1713
|
+
var WorkflowExecutionConfiguration = [
|
|
1714
|
+
3,
|
|
1715
|
+
n0,
|
|
1716
|
+
_WEC,
|
|
1717
|
+
0,
|
|
1718
|
+
[_tSTCT, _eSTCT, _tL, _tP, _cP, _lR],
|
|
1719
|
+
[0, 0, () => TaskList, 0, 0, 0],
|
|
1720
|
+
];
|
|
1721
|
+
var WorkflowExecutionContinuedAsNewEventAttributes = [
|
|
1722
|
+
3,
|
|
1723
|
+
n0,
|
|
1724
|
+
_WECANEA,
|
|
1725
|
+
0,
|
|
1726
|
+
[_i, _dTCEI, _nERI, _eSTCT, _tL, _tP, _tSTCT, _cP, _tLa, _wT, _lR],
|
|
1727
|
+
[0, 1, 0, 0, () => TaskList, 0, 0, 0, 64 | 0, () => WorkflowType, 0],
|
|
1728
|
+
];
|
|
1729
|
+
var WorkflowExecutionCount = [3, n0, _WECo, 0, [_cou, _tr], [1, 2]];
|
|
1730
|
+
var WorkflowExecutionDetail = [
|
|
1731
|
+
3,
|
|
1732
|
+
n0,
|
|
1733
|
+
_WED,
|
|
1734
|
+
0,
|
|
1735
|
+
[_eIx, _eCx, _oC, _lATT, _lEC],
|
|
1736
|
+
[() => WorkflowExecutionInfo, () => WorkflowExecutionConfiguration, () => WorkflowExecutionOpenCounts, 4, 0],
|
|
1737
|
+
];
|
|
1738
|
+
var WorkflowExecutionFailedEventAttributes = [
|
|
1739
|
+
3,
|
|
1740
|
+
n0,
|
|
1741
|
+
_WEFEA,
|
|
1742
|
+
0,
|
|
1743
|
+
[_re, _d, _dTCEI],
|
|
1744
|
+
[0, 0, 1],
|
|
1745
|
+
];
|
|
1746
|
+
var WorkflowExecutionFilter = [3, n0, _WEF, 0, [_wI], [0]];
|
|
1747
|
+
var WorkflowExecutionInfo = [
|
|
1748
|
+
3,
|
|
1749
|
+
n0,
|
|
1750
|
+
_WEI,
|
|
1751
|
+
0,
|
|
1752
|
+
[_ex, _wT, _sT, _cT, _eS, _cS, _p, _tLa, _cR],
|
|
1753
|
+
[() => WorkflowExecution, () => WorkflowType, 4, 4, 0, 0, () => WorkflowExecution, 64 | 0, 2],
|
|
1754
|
+
];
|
|
1755
|
+
var WorkflowExecutionInfos = [
|
|
1756
|
+
3,
|
|
1757
|
+
n0,
|
|
1758
|
+
_WEIo,
|
|
1759
|
+
0,
|
|
1760
|
+
[_eIxe, _nPT],
|
|
1761
|
+
[() => WorkflowExecutionInfoList, 0],
|
|
1762
|
+
];
|
|
1763
|
+
var WorkflowExecutionOpenCounts = [
|
|
1764
|
+
3,
|
|
1765
|
+
n0,
|
|
1766
|
+
_WEOC,
|
|
1767
|
+
0,
|
|
1768
|
+
[_oAT, _oDT, _oT, _oCWE, _oLF],
|
|
1769
|
+
[1, 1, 1, 1, 1],
|
|
1770
|
+
];
|
|
1771
|
+
var WorkflowExecutionSignaledEventAttributes = [
|
|
1772
|
+
3,
|
|
1773
|
+
n0,
|
|
1774
|
+
_WESEA,
|
|
1775
|
+
0,
|
|
1776
|
+
[_sN, _i, _eWE, _eIEI],
|
|
1777
|
+
[0, 0, () => WorkflowExecution, 1],
|
|
1778
|
+
];
|
|
1779
|
+
var WorkflowExecutionStartedEventAttributes = [
|
|
1780
|
+
3,
|
|
1781
|
+
n0,
|
|
1782
|
+
_WESEAo,
|
|
1783
|
+
0,
|
|
1784
|
+
[_i, _eSTCT, _tSTCT, _cP, _tL, _tP, _wT, _tLa, _cERI, _pWE, _pIEI, _lR],
|
|
1785
|
+
[0, 0, 0, 0, () => TaskList, 0, () => WorkflowType, 64 | 0, 0, () => WorkflowExecution, 1, 0],
|
|
1786
|
+
];
|
|
1787
|
+
var WorkflowExecutionTerminatedEventAttributes = [
|
|
1788
|
+
3,
|
|
1789
|
+
n0,
|
|
1790
|
+
_WETEA,
|
|
1791
|
+
0,
|
|
1792
|
+
[_re, _d, _cP, _ca],
|
|
1793
|
+
[0, 0, 0, 0],
|
|
1794
|
+
];
|
|
1795
|
+
var WorkflowExecutionTimedOutEventAttributes = [3, n0, _WETOEA, 0, [_tTi, _cP], [0, 0]];
|
|
1796
|
+
var WorkflowType = [3, n0, _WT, 0, [_n, _v], [0, 0]];
|
|
1797
|
+
var WorkflowTypeConfiguration = [
|
|
1798
|
+
3,
|
|
1799
|
+
n0,
|
|
1800
|
+
_WTC,
|
|
1801
|
+
0,
|
|
1802
|
+
[_dTSTCT, _dESTCT, _dTL, _dTP, _dCP, _dLR],
|
|
1803
|
+
[0, 0, () => TaskList, 0, 0, 0],
|
|
1804
|
+
];
|
|
1805
|
+
var WorkflowTypeDetail = [
|
|
1806
|
+
3,
|
|
1807
|
+
n0,
|
|
1808
|
+
_WTD,
|
|
1809
|
+
0,
|
|
1810
|
+
[_tI, _co],
|
|
1811
|
+
[() => WorkflowTypeInfo, () => WorkflowTypeConfiguration],
|
|
1812
|
+
];
|
|
1813
|
+
var WorkflowTypeFilter = [3, n0, _WTF, 0, [_n, _v], [0, 0]];
|
|
1814
|
+
var WorkflowTypeInfo = [
|
|
1815
|
+
3,
|
|
1816
|
+
n0,
|
|
1817
|
+
_WTI,
|
|
1818
|
+
0,
|
|
1819
|
+
[_wT, _s, _de, _cD, _dD],
|
|
1820
|
+
[() => WorkflowType, 0, 0, 4, 4],
|
|
1821
|
+
];
|
|
1822
|
+
var WorkflowTypeInfos = [3, n0, _WTIo, 0, [_tIy, _nPT], [() => WorkflowTypeInfoList, 0]];
|
|
1823
|
+
var __Unit = "unit";
|
|
1824
|
+
var SWFServiceException = [-3, _sm, "SWFServiceException", 0, [], []];
|
|
1825
|
+
schema.TypeRegistry.for(_sm).registerError(SWFServiceException, SWFServiceException$1);
|
|
1826
|
+
var ActivityTypeInfoList = [1, n0, _ATIL, 0, () => ActivityTypeInfo];
|
|
1827
|
+
var DecisionList = [1, n0, _DL, 0, () => Decision];
|
|
1828
|
+
var DomainInfoList = [1, n0, _DIL, 0, () => DomainInfo];
|
|
1829
|
+
var HistoryEventList = [1, n0, _HEL, 0, () => HistoryEvent];
|
|
1830
|
+
var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag];
|
|
1831
|
+
var WorkflowExecutionInfoList = [1, n0, _WEIL, 0, () => WorkflowExecutionInfo];
|
|
1832
|
+
var WorkflowTypeInfoList = [1, n0, _WTIL, 0, () => WorkflowTypeInfo];
|
|
1833
|
+
var CountClosedWorkflowExecutions = [
|
|
1834
|
+
9,
|
|
1835
|
+
n0,
|
|
1836
|
+
_CCWE,
|
|
1837
|
+
0,
|
|
1838
|
+
() => CountClosedWorkflowExecutionsInput,
|
|
1839
|
+
() => WorkflowExecutionCount,
|
|
1840
|
+
];
|
|
1841
|
+
var CountOpenWorkflowExecutions = [
|
|
1842
|
+
9,
|
|
1843
|
+
n0,
|
|
1844
|
+
_COWE,
|
|
1845
|
+
0,
|
|
1846
|
+
() => CountOpenWorkflowExecutionsInput,
|
|
1847
|
+
() => WorkflowExecutionCount,
|
|
1848
|
+
];
|
|
1849
|
+
var CountPendingActivityTasks = [
|
|
1850
|
+
9,
|
|
1851
|
+
n0,
|
|
1852
|
+
_CPAT,
|
|
1853
|
+
0,
|
|
1854
|
+
() => CountPendingActivityTasksInput,
|
|
1855
|
+
() => PendingTaskCount,
|
|
1856
|
+
];
|
|
1857
|
+
var CountPendingDecisionTasks = [
|
|
1858
|
+
9,
|
|
1859
|
+
n0,
|
|
1860
|
+
_CPDT,
|
|
1861
|
+
0,
|
|
1862
|
+
() => CountPendingDecisionTasksInput,
|
|
1863
|
+
() => PendingTaskCount,
|
|
1864
|
+
];
|
|
1865
|
+
var DeleteActivityType = [9, n0, _DAT, 0, () => DeleteActivityTypeInput, () => __Unit];
|
|
1866
|
+
var DeleteWorkflowType = [9, n0, _DWT, 0, () => DeleteWorkflowTypeInput, () => __Unit];
|
|
1867
|
+
var DeprecateActivityType = [
|
|
1868
|
+
9,
|
|
1869
|
+
n0,
|
|
1870
|
+
_DATe,
|
|
1871
|
+
0,
|
|
1872
|
+
() => DeprecateActivityTypeInput,
|
|
1873
|
+
() => __Unit,
|
|
1874
|
+
];
|
|
1875
|
+
var DeprecateDomain = [9, n0, _DDe, 0, () => DeprecateDomainInput, () => __Unit];
|
|
1876
|
+
var DeprecateWorkflowType = [
|
|
1877
|
+
9,
|
|
1878
|
+
n0,
|
|
1879
|
+
_DWTe,
|
|
1880
|
+
0,
|
|
1881
|
+
() => DeprecateWorkflowTypeInput,
|
|
1882
|
+
() => __Unit,
|
|
1883
|
+
];
|
|
1884
|
+
var DescribeActivityType = [
|
|
1885
|
+
9,
|
|
1886
|
+
n0,
|
|
1887
|
+
_DATes,
|
|
1888
|
+
0,
|
|
1889
|
+
() => DescribeActivityTypeInput,
|
|
1890
|
+
() => ActivityTypeDetail,
|
|
1891
|
+
];
|
|
1892
|
+
var DescribeDomain = [9, n0, _DDes, 0, () => DescribeDomainInput, () => DomainDetail];
|
|
1893
|
+
var DescribeWorkflowExecution = [
|
|
1894
|
+
9,
|
|
1895
|
+
n0,
|
|
1896
|
+
_DWE,
|
|
1897
|
+
0,
|
|
1898
|
+
() => DescribeWorkflowExecutionInput,
|
|
1899
|
+
() => WorkflowExecutionDetail,
|
|
1900
|
+
];
|
|
1901
|
+
var DescribeWorkflowType = [
|
|
1902
|
+
9,
|
|
1903
|
+
n0,
|
|
1904
|
+
_DWTes,
|
|
1905
|
+
0,
|
|
1906
|
+
() => DescribeWorkflowTypeInput,
|
|
1907
|
+
() => WorkflowTypeDetail,
|
|
1908
|
+
];
|
|
1909
|
+
var GetWorkflowExecutionHistory = [
|
|
1910
|
+
9,
|
|
1911
|
+
n0,
|
|
1912
|
+
_GWEH,
|
|
1913
|
+
0,
|
|
1914
|
+
() => GetWorkflowExecutionHistoryInput,
|
|
1915
|
+
() => History,
|
|
1916
|
+
];
|
|
1917
|
+
var ListActivityTypes = [
|
|
1918
|
+
9,
|
|
1919
|
+
n0,
|
|
1920
|
+
_LAT,
|
|
1921
|
+
0,
|
|
1922
|
+
() => ListActivityTypesInput,
|
|
1923
|
+
() => ActivityTypeInfos,
|
|
1924
|
+
];
|
|
1925
|
+
var ListClosedWorkflowExecutions = [
|
|
1926
|
+
9,
|
|
1927
|
+
n0,
|
|
1928
|
+
_LCWE,
|
|
1929
|
+
0,
|
|
1930
|
+
() => ListClosedWorkflowExecutionsInput,
|
|
1931
|
+
() => WorkflowExecutionInfos,
|
|
1932
|
+
];
|
|
1933
|
+
var ListDomains = [9, n0, _LD, 0, () => ListDomainsInput, () => DomainInfos];
|
|
1934
|
+
var ListOpenWorkflowExecutions = [
|
|
1935
|
+
9,
|
|
1936
|
+
n0,
|
|
1937
|
+
_LOWE,
|
|
1938
|
+
0,
|
|
1939
|
+
() => ListOpenWorkflowExecutionsInput,
|
|
1940
|
+
() => WorkflowExecutionInfos,
|
|
1941
|
+
];
|
|
1942
|
+
var ListTagsForResource = [
|
|
1943
|
+
9,
|
|
1944
|
+
n0,
|
|
1945
|
+
_LTFR,
|
|
1946
|
+
0,
|
|
1947
|
+
() => ListTagsForResourceInput,
|
|
1948
|
+
() => ListTagsForResourceOutput,
|
|
1949
|
+
];
|
|
1950
|
+
var ListWorkflowTypes = [
|
|
1951
|
+
9,
|
|
1952
|
+
n0,
|
|
1953
|
+
_LWT,
|
|
1954
|
+
0,
|
|
1955
|
+
() => ListWorkflowTypesInput,
|
|
1956
|
+
() => WorkflowTypeInfos,
|
|
1957
|
+
];
|
|
1958
|
+
var PollForActivityTask = [
|
|
1959
|
+
9,
|
|
1960
|
+
n0,
|
|
1961
|
+
_PFAT,
|
|
1962
|
+
0,
|
|
1963
|
+
() => PollForActivityTaskInput,
|
|
1964
|
+
() => ActivityTask,
|
|
1965
|
+
];
|
|
1966
|
+
var PollForDecisionTask = [
|
|
1967
|
+
9,
|
|
1968
|
+
n0,
|
|
1969
|
+
_PFDT,
|
|
1970
|
+
0,
|
|
1971
|
+
() => PollForDecisionTaskInput,
|
|
1972
|
+
() => DecisionTask,
|
|
1973
|
+
];
|
|
1974
|
+
var RecordActivityTaskHeartbeat = [
|
|
1975
|
+
9,
|
|
1976
|
+
n0,
|
|
1977
|
+
_RATH,
|
|
1978
|
+
0,
|
|
1979
|
+
() => RecordActivityTaskHeartbeatInput,
|
|
1980
|
+
() => ActivityTaskStatus,
|
|
1981
|
+
];
|
|
1982
|
+
var RegisterActivityType = [
|
|
1983
|
+
9,
|
|
1984
|
+
n0,
|
|
1985
|
+
_RAT,
|
|
1986
|
+
0,
|
|
1987
|
+
() => RegisterActivityTypeInput,
|
|
1988
|
+
() => __Unit,
|
|
1989
|
+
];
|
|
1990
|
+
var RegisterDomain = [9, n0, _RD, 0, () => RegisterDomainInput, () => __Unit];
|
|
1991
|
+
var RegisterWorkflowType = [
|
|
1992
|
+
9,
|
|
1993
|
+
n0,
|
|
1994
|
+
_RWT,
|
|
1995
|
+
0,
|
|
1996
|
+
() => RegisterWorkflowTypeInput,
|
|
1997
|
+
() => __Unit,
|
|
1998
|
+
];
|
|
1999
|
+
var RequestCancelWorkflowExecution = [
|
|
2000
|
+
9,
|
|
2001
|
+
n0,
|
|
2002
|
+
_RCWE,
|
|
2003
|
+
0,
|
|
2004
|
+
() => RequestCancelWorkflowExecutionInput,
|
|
2005
|
+
() => __Unit,
|
|
2006
|
+
];
|
|
2007
|
+
var RespondActivityTaskCanceled = [
|
|
2008
|
+
9,
|
|
2009
|
+
n0,
|
|
2010
|
+
_RATC,
|
|
2011
|
+
0,
|
|
2012
|
+
() => RespondActivityTaskCanceledInput,
|
|
2013
|
+
() => __Unit,
|
|
2014
|
+
];
|
|
2015
|
+
var RespondActivityTaskCompleted = [
|
|
2016
|
+
9,
|
|
2017
|
+
n0,
|
|
2018
|
+
_RATCe,
|
|
2019
|
+
0,
|
|
2020
|
+
() => RespondActivityTaskCompletedInput,
|
|
2021
|
+
() => __Unit,
|
|
2022
|
+
];
|
|
2023
|
+
var RespondActivityTaskFailed = [
|
|
2024
|
+
9,
|
|
2025
|
+
n0,
|
|
2026
|
+
_RATF,
|
|
2027
|
+
0,
|
|
2028
|
+
() => RespondActivityTaskFailedInput,
|
|
2029
|
+
() => __Unit,
|
|
2030
|
+
];
|
|
2031
|
+
var RespondDecisionTaskCompleted = [
|
|
2032
|
+
9,
|
|
2033
|
+
n0,
|
|
2034
|
+
_RDTC,
|
|
2035
|
+
0,
|
|
2036
|
+
() => RespondDecisionTaskCompletedInput,
|
|
2037
|
+
() => __Unit,
|
|
2038
|
+
];
|
|
2039
|
+
var SignalWorkflowExecution = [
|
|
2040
|
+
9,
|
|
2041
|
+
n0,
|
|
2042
|
+
_SWE,
|
|
2043
|
+
0,
|
|
2044
|
+
() => SignalWorkflowExecutionInput,
|
|
2045
|
+
() => __Unit,
|
|
2046
|
+
];
|
|
2047
|
+
var StartWorkflowExecution = [
|
|
2048
|
+
9,
|
|
2049
|
+
n0,
|
|
2050
|
+
_SWEt,
|
|
2051
|
+
0,
|
|
2052
|
+
() => StartWorkflowExecutionInput,
|
|
2053
|
+
() => Run,
|
|
2054
|
+
];
|
|
2055
|
+
var TagResource = [9, n0, _TR, 0, () => TagResourceInput, () => __Unit];
|
|
2056
|
+
var TerminateWorkflowExecution = [
|
|
2057
|
+
9,
|
|
2058
|
+
n0,
|
|
2059
|
+
_TWE,
|
|
2060
|
+
0,
|
|
2061
|
+
() => TerminateWorkflowExecutionInput,
|
|
2062
|
+
() => __Unit,
|
|
2063
|
+
];
|
|
2064
|
+
var UndeprecateActivityType = [
|
|
2065
|
+
9,
|
|
2066
|
+
n0,
|
|
2067
|
+
_UAT,
|
|
2068
|
+
0,
|
|
2069
|
+
() => UndeprecateActivityTypeInput,
|
|
2070
|
+
() => __Unit,
|
|
2071
|
+
];
|
|
2072
|
+
var UndeprecateDomain = [9, n0, _UD, 0, () => UndeprecateDomainInput, () => __Unit];
|
|
2073
|
+
var UndeprecateWorkflowType = [
|
|
2074
|
+
9,
|
|
2075
|
+
n0,
|
|
2076
|
+
_UWT,
|
|
2077
|
+
0,
|
|
2078
|
+
() => UndeprecateWorkflowTypeInput,
|
|
2079
|
+
() => __Unit,
|
|
2080
|
+
];
|
|
2081
|
+
var UntagResource = [9, n0, _UR, 0, () => UntagResourceInput, () => __Unit];
|
|
1543
2082
|
|
|
1544
2083
|
class CountClosedWorkflowExecutionsCommand extends smithyClient.Command
|
|
1545
2084
|
.classBuilder()
|
|
1546
2085
|
.ep(commonParams)
|
|
1547
2086
|
.m(function (Command, cs, config, o) {
|
|
1548
|
-
return [
|
|
1549
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1550
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1551
|
-
];
|
|
2087
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1552
2088
|
})
|
|
1553
2089
|
.s("SimpleWorkflowService", "CountClosedWorkflowExecutions", {})
|
|
1554
2090
|
.n("SWFClient", "CountClosedWorkflowExecutionsCommand")
|
|
1555
|
-
.
|
|
1556
|
-
.ser(se_CountClosedWorkflowExecutionsCommand)
|
|
1557
|
-
.de(de_CountClosedWorkflowExecutionsCommand)
|
|
2091
|
+
.sc(CountClosedWorkflowExecutions)
|
|
1558
2092
|
.build() {
|
|
1559
2093
|
}
|
|
1560
2094
|
|
|
@@ -1562,16 +2096,11 @@ class CountOpenWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
1562
2096
|
.classBuilder()
|
|
1563
2097
|
.ep(commonParams)
|
|
1564
2098
|
.m(function (Command, cs, config, o) {
|
|
1565
|
-
return [
|
|
1566
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1567
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1568
|
-
];
|
|
2099
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1569
2100
|
})
|
|
1570
2101
|
.s("SimpleWorkflowService", "CountOpenWorkflowExecutions", {})
|
|
1571
2102
|
.n("SWFClient", "CountOpenWorkflowExecutionsCommand")
|
|
1572
|
-
.
|
|
1573
|
-
.ser(se_CountOpenWorkflowExecutionsCommand)
|
|
1574
|
-
.de(de_CountOpenWorkflowExecutionsCommand)
|
|
2103
|
+
.sc(CountOpenWorkflowExecutions)
|
|
1575
2104
|
.build() {
|
|
1576
2105
|
}
|
|
1577
2106
|
|
|
@@ -1579,16 +2108,11 @@ class CountPendingActivityTasksCommand extends smithyClient.Command
|
|
|
1579
2108
|
.classBuilder()
|
|
1580
2109
|
.ep(commonParams)
|
|
1581
2110
|
.m(function (Command, cs, config, o) {
|
|
1582
|
-
return [
|
|
1583
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1584
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1585
|
-
];
|
|
2111
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1586
2112
|
})
|
|
1587
2113
|
.s("SimpleWorkflowService", "CountPendingActivityTasks", {})
|
|
1588
2114
|
.n("SWFClient", "CountPendingActivityTasksCommand")
|
|
1589
|
-
.
|
|
1590
|
-
.ser(se_CountPendingActivityTasksCommand)
|
|
1591
|
-
.de(de_CountPendingActivityTasksCommand)
|
|
2115
|
+
.sc(CountPendingActivityTasks)
|
|
1592
2116
|
.build() {
|
|
1593
2117
|
}
|
|
1594
2118
|
|
|
@@ -1596,16 +2120,11 @@ class CountPendingDecisionTasksCommand extends smithyClient.Command
|
|
|
1596
2120
|
.classBuilder()
|
|
1597
2121
|
.ep(commonParams)
|
|
1598
2122
|
.m(function (Command, cs, config, o) {
|
|
1599
|
-
return [
|
|
1600
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1601
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1602
|
-
];
|
|
2123
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1603
2124
|
})
|
|
1604
2125
|
.s("SimpleWorkflowService", "CountPendingDecisionTasks", {})
|
|
1605
2126
|
.n("SWFClient", "CountPendingDecisionTasksCommand")
|
|
1606
|
-
.
|
|
1607
|
-
.ser(se_CountPendingDecisionTasksCommand)
|
|
1608
|
-
.de(de_CountPendingDecisionTasksCommand)
|
|
2127
|
+
.sc(CountPendingDecisionTasks)
|
|
1609
2128
|
.build() {
|
|
1610
2129
|
}
|
|
1611
2130
|
|
|
@@ -1613,16 +2132,11 @@ class DeleteActivityTypeCommand extends smithyClient.Command
|
|
|
1613
2132
|
.classBuilder()
|
|
1614
2133
|
.ep(commonParams)
|
|
1615
2134
|
.m(function (Command, cs, config, o) {
|
|
1616
|
-
return [
|
|
1617
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1618
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1619
|
-
];
|
|
2135
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1620
2136
|
})
|
|
1621
2137
|
.s("SimpleWorkflowService", "DeleteActivityType", {})
|
|
1622
2138
|
.n("SWFClient", "DeleteActivityTypeCommand")
|
|
1623
|
-
.
|
|
1624
|
-
.ser(se_DeleteActivityTypeCommand)
|
|
1625
|
-
.de(de_DeleteActivityTypeCommand)
|
|
2139
|
+
.sc(DeleteActivityType)
|
|
1626
2140
|
.build() {
|
|
1627
2141
|
}
|
|
1628
2142
|
|
|
@@ -1630,16 +2144,11 @@ class DeleteWorkflowTypeCommand extends smithyClient.Command
|
|
|
1630
2144
|
.classBuilder()
|
|
1631
2145
|
.ep(commonParams)
|
|
1632
2146
|
.m(function (Command, cs, config, o) {
|
|
1633
|
-
return [
|
|
1634
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1635
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1636
|
-
];
|
|
2147
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1637
2148
|
})
|
|
1638
2149
|
.s("SimpleWorkflowService", "DeleteWorkflowType", {})
|
|
1639
2150
|
.n("SWFClient", "DeleteWorkflowTypeCommand")
|
|
1640
|
-
.
|
|
1641
|
-
.ser(se_DeleteWorkflowTypeCommand)
|
|
1642
|
-
.de(de_DeleteWorkflowTypeCommand)
|
|
2151
|
+
.sc(DeleteWorkflowType)
|
|
1643
2152
|
.build() {
|
|
1644
2153
|
}
|
|
1645
2154
|
|
|
@@ -1647,16 +2156,11 @@ class DeprecateActivityTypeCommand extends smithyClient.Command
|
|
|
1647
2156
|
.classBuilder()
|
|
1648
2157
|
.ep(commonParams)
|
|
1649
2158
|
.m(function (Command, cs, config, o) {
|
|
1650
|
-
return [
|
|
1651
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1652
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1653
|
-
];
|
|
2159
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1654
2160
|
})
|
|
1655
2161
|
.s("SimpleWorkflowService", "DeprecateActivityType", {})
|
|
1656
2162
|
.n("SWFClient", "DeprecateActivityTypeCommand")
|
|
1657
|
-
.
|
|
1658
|
-
.ser(se_DeprecateActivityTypeCommand)
|
|
1659
|
-
.de(de_DeprecateActivityTypeCommand)
|
|
2163
|
+
.sc(DeprecateActivityType)
|
|
1660
2164
|
.build() {
|
|
1661
2165
|
}
|
|
1662
2166
|
|
|
@@ -1664,16 +2168,11 @@ class DeprecateDomainCommand extends smithyClient.Command
|
|
|
1664
2168
|
.classBuilder()
|
|
1665
2169
|
.ep(commonParams)
|
|
1666
2170
|
.m(function (Command, cs, config, o) {
|
|
1667
|
-
return [
|
|
1668
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1669
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1670
|
-
];
|
|
2171
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1671
2172
|
})
|
|
1672
2173
|
.s("SimpleWorkflowService", "DeprecateDomain", {})
|
|
1673
2174
|
.n("SWFClient", "DeprecateDomainCommand")
|
|
1674
|
-
.
|
|
1675
|
-
.ser(se_DeprecateDomainCommand)
|
|
1676
|
-
.de(de_DeprecateDomainCommand)
|
|
2175
|
+
.sc(DeprecateDomain)
|
|
1677
2176
|
.build() {
|
|
1678
2177
|
}
|
|
1679
2178
|
|
|
@@ -1681,16 +2180,11 @@ class DeprecateWorkflowTypeCommand extends smithyClient.Command
|
|
|
1681
2180
|
.classBuilder()
|
|
1682
2181
|
.ep(commonParams)
|
|
1683
2182
|
.m(function (Command, cs, config, o) {
|
|
1684
|
-
return [
|
|
1685
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1686
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1687
|
-
];
|
|
2183
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1688
2184
|
})
|
|
1689
2185
|
.s("SimpleWorkflowService", "DeprecateWorkflowType", {})
|
|
1690
2186
|
.n("SWFClient", "DeprecateWorkflowTypeCommand")
|
|
1691
|
-
.
|
|
1692
|
-
.ser(se_DeprecateWorkflowTypeCommand)
|
|
1693
|
-
.de(de_DeprecateWorkflowTypeCommand)
|
|
2187
|
+
.sc(DeprecateWorkflowType)
|
|
1694
2188
|
.build() {
|
|
1695
2189
|
}
|
|
1696
2190
|
|
|
@@ -1698,16 +2192,11 @@ class DescribeActivityTypeCommand extends smithyClient.Command
|
|
|
1698
2192
|
.classBuilder()
|
|
1699
2193
|
.ep(commonParams)
|
|
1700
2194
|
.m(function (Command, cs, config, o) {
|
|
1701
|
-
return [
|
|
1702
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1703
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1704
|
-
];
|
|
2195
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1705
2196
|
})
|
|
1706
2197
|
.s("SimpleWorkflowService", "DescribeActivityType", {})
|
|
1707
2198
|
.n("SWFClient", "DescribeActivityTypeCommand")
|
|
1708
|
-
.
|
|
1709
|
-
.ser(se_DescribeActivityTypeCommand)
|
|
1710
|
-
.de(de_DescribeActivityTypeCommand)
|
|
2199
|
+
.sc(DescribeActivityType)
|
|
1711
2200
|
.build() {
|
|
1712
2201
|
}
|
|
1713
2202
|
|
|
@@ -1715,16 +2204,11 @@ class DescribeDomainCommand extends smithyClient.Command
|
|
|
1715
2204
|
.classBuilder()
|
|
1716
2205
|
.ep(commonParams)
|
|
1717
2206
|
.m(function (Command, cs, config, o) {
|
|
1718
|
-
return [
|
|
1719
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1720
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1721
|
-
];
|
|
2207
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1722
2208
|
})
|
|
1723
2209
|
.s("SimpleWorkflowService", "DescribeDomain", {})
|
|
1724
2210
|
.n("SWFClient", "DescribeDomainCommand")
|
|
1725
|
-
.
|
|
1726
|
-
.ser(se_DescribeDomainCommand)
|
|
1727
|
-
.de(de_DescribeDomainCommand)
|
|
2211
|
+
.sc(DescribeDomain)
|
|
1728
2212
|
.build() {
|
|
1729
2213
|
}
|
|
1730
2214
|
|
|
@@ -1732,16 +2216,11 @@ class DescribeWorkflowExecutionCommand extends smithyClient.Command
|
|
|
1732
2216
|
.classBuilder()
|
|
1733
2217
|
.ep(commonParams)
|
|
1734
2218
|
.m(function (Command, cs, config, o) {
|
|
1735
|
-
return [
|
|
1736
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1737
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1738
|
-
];
|
|
2219
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1739
2220
|
})
|
|
1740
2221
|
.s("SimpleWorkflowService", "DescribeWorkflowExecution", {})
|
|
1741
2222
|
.n("SWFClient", "DescribeWorkflowExecutionCommand")
|
|
1742
|
-
.
|
|
1743
|
-
.ser(se_DescribeWorkflowExecutionCommand)
|
|
1744
|
-
.de(de_DescribeWorkflowExecutionCommand)
|
|
2223
|
+
.sc(DescribeWorkflowExecution)
|
|
1745
2224
|
.build() {
|
|
1746
2225
|
}
|
|
1747
2226
|
|
|
@@ -1749,16 +2228,11 @@ class DescribeWorkflowTypeCommand extends smithyClient.Command
|
|
|
1749
2228
|
.classBuilder()
|
|
1750
2229
|
.ep(commonParams)
|
|
1751
2230
|
.m(function (Command, cs, config, o) {
|
|
1752
|
-
return [
|
|
1753
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1754
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1755
|
-
];
|
|
2231
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1756
2232
|
})
|
|
1757
2233
|
.s("SimpleWorkflowService", "DescribeWorkflowType", {})
|
|
1758
2234
|
.n("SWFClient", "DescribeWorkflowTypeCommand")
|
|
1759
|
-
.
|
|
1760
|
-
.ser(se_DescribeWorkflowTypeCommand)
|
|
1761
|
-
.de(de_DescribeWorkflowTypeCommand)
|
|
2235
|
+
.sc(DescribeWorkflowType)
|
|
1762
2236
|
.build() {
|
|
1763
2237
|
}
|
|
1764
2238
|
|
|
@@ -1766,16 +2240,11 @@ class GetWorkflowExecutionHistoryCommand extends smithyClient.Command
|
|
|
1766
2240
|
.classBuilder()
|
|
1767
2241
|
.ep(commonParams)
|
|
1768
2242
|
.m(function (Command, cs, config, o) {
|
|
1769
|
-
return [
|
|
1770
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1771
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1772
|
-
];
|
|
2243
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1773
2244
|
})
|
|
1774
2245
|
.s("SimpleWorkflowService", "GetWorkflowExecutionHistory", {})
|
|
1775
2246
|
.n("SWFClient", "GetWorkflowExecutionHistoryCommand")
|
|
1776
|
-
.
|
|
1777
|
-
.ser(se_GetWorkflowExecutionHistoryCommand)
|
|
1778
|
-
.de(de_GetWorkflowExecutionHistoryCommand)
|
|
2247
|
+
.sc(GetWorkflowExecutionHistory)
|
|
1779
2248
|
.build() {
|
|
1780
2249
|
}
|
|
1781
2250
|
|
|
@@ -1783,16 +2252,11 @@ class ListActivityTypesCommand extends smithyClient.Command
|
|
|
1783
2252
|
.classBuilder()
|
|
1784
2253
|
.ep(commonParams)
|
|
1785
2254
|
.m(function (Command, cs, config, o) {
|
|
1786
|
-
return [
|
|
1787
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1788
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1789
|
-
];
|
|
2255
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1790
2256
|
})
|
|
1791
2257
|
.s("SimpleWorkflowService", "ListActivityTypes", {})
|
|
1792
2258
|
.n("SWFClient", "ListActivityTypesCommand")
|
|
1793
|
-
.
|
|
1794
|
-
.ser(se_ListActivityTypesCommand)
|
|
1795
|
-
.de(de_ListActivityTypesCommand)
|
|
2259
|
+
.sc(ListActivityTypes)
|
|
1796
2260
|
.build() {
|
|
1797
2261
|
}
|
|
1798
2262
|
|
|
@@ -1800,16 +2264,11 @@ class ListClosedWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
1800
2264
|
.classBuilder()
|
|
1801
2265
|
.ep(commonParams)
|
|
1802
2266
|
.m(function (Command, cs, config, o) {
|
|
1803
|
-
return [
|
|
1804
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1805
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1806
|
-
];
|
|
2267
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1807
2268
|
})
|
|
1808
2269
|
.s("SimpleWorkflowService", "ListClosedWorkflowExecutions", {})
|
|
1809
2270
|
.n("SWFClient", "ListClosedWorkflowExecutionsCommand")
|
|
1810
|
-
.
|
|
1811
|
-
.ser(se_ListClosedWorkflowExecutionsCommand)
|
|
1812
|
-
.de(de_ListClosedWorkflowExecutionsCommand)
|
|
2271
|
+
.sc(ListClosedWorkflowExecutions)
|
|
1813
2272
|
.build() {
|
|
1814
2273
|
}
|
|
1815
2274
|
|
|
@@ -1817,16 +2276,11 @@ class ListDomainsCommand extends smithyClient.Command
|
|
|
1817
2276
|
.classBuilder()
|
|
1818
2277
|
.ep(commonParams)
|
|
1819
2278
|
.m(function (Command, cs, config, o) {
|
|
1820
|
-
return [
|
|
1821
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1822
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1823
|
-
];
|
|
2279
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1824
2280
|
})
|
|
1825
2281
|
.s("SimpleWorkflowService", "ListDomains", {})
|
|
1826
2282
|
.n("SWFClient", "ListDomainsCommand")
|
|
1827
|
-
.
|
|
1828
|
-
.ser(se_ListDomainsCommand)
|
|
1829
|
-
.de(de_ListDomainsCommand)
|
|
2283
|
+
.sc(ListDomains)
|
|
1830
2284
|
.build() {
|
|
1831
2285
|
}
|
|
1832
2286
|
|
|
@@ -1834,16 +2288,11 @@ class ListOpenWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
1834
2288
|
.classBuilder()
|
|
1835
2289
|
.ep(commonParams)
|
|
1836
2290
|
.m(function (Command, cs, config, o) {
|
|
1837
|
-
return [
|
|
1838
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1839
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1840
|
-
];
|
|
2291
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1841
2292
|
})
|
|
1842
2293
|
.s("SimpleWorkflowService", "ListOpenWorkflowExecutions", {})
|
|
1843
2294
|
.n("SWFClient", "ListOpenWorkflowExecutionsCommand")
|
|
1844
|
-
.
|
|
1845
|
-
.ser(se_ListOpenWorkflowExecutionsCommand)
|
|
1846
|
-
.de(de_ListOpenWorkflowExecutionsCommand)
|
|
2295
|
+
.sc(ListOpenWorkflowExecutions)
|
|
1847
2296
|
.build() {
|
|
1848
2297
|
}
|
|
1849
2298
|
|
|
@@ -1851,16 +2300,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1851
2300
|
.classBuilder()
|
|
1852
2301
|
.ep(commonParams)
|
|
1853
2302
|
.m(function (Command, cs, config, o) {
|
|
1854
|
-
return [
|
|
1855
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1856
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1857
|
-
];
|
|
2303
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1858
2304
|
})
|
|
1859
2305
|
.s("SimpleWorkflowService", "ListTagsForResource", {})
|
|
1860
2306
|
.n("SWFClient", "ListTagsForResourceCommand")
|
|
1861
|
-
.
|
|
1862
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1863
|
-
.de(de_ListTagsForResourceCommand)
|
|
2307
|
+
.sc(ListTagsForResource)
|
|
1864
2308
|
.build() {
|
|
1865
2309
|
}
|
|
1866
2310
|
|
|
@@ -1868,16 +2312,11 @@ class ListWorkflowTypesCommand extends smithyClient.Command
|
|
|
1868
2312
|
.classBuilder()
|
|
1869
2313
|
.ep(commonParams)
|
|
1870
2314
|
.m(function (Command, cs, config, o) {
|
|
1871
|
-
return [
|
|
1872
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1873
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1874
|
-
];
|
|
2315
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1875
2316
|
})
|
|
1876
2317
|
.s("SimpleWorkflowService", "ListWorkflowTypes", {})
|
|
1877
2318
|
.n("SWFClient", "ListWorkflowTypesCommand")
|
|
1878
|
-
.
|
|
1879
|
-
.ser(se_ListWorkflowTypesCommand)
|
|
1880
|
-
.de(de_ListWorkflowTypesCommand)
|
|
2319
|
+
.sc(ListWorkflowTypes)
|
|
1881
2320
|
.build() {
|
|
1882
2321
|
}
|
|
1883
2322
|
|
|
@@ -1885,16 +2324,11 @@ class PollForActivityTaskCommand extends smithyClient.Command
|
|
|
1885
2324
|
.classBuilder()
|
|
1886
2325
|
.ep(commonParams)
|
|
1887
2326
|
.m(function (Command, cs, config, o) {
|
|
1888
|
-
return [
|
|
1889
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1890
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1891
|
-
];
|
|
2327
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1892
2328
|
})
|
|
1893
2329
|
.s("SimpleWorkflowService", "PollForActivityTask", {})
|
|
1894
2330
|
.n("SWFClient", "PollForActivityTaskCommand")
|
|
1895
|
-
.
|
|
1896
|
-
.ser(se_PollForActivityTaskCommand)
|
|
1897
|
-
.de(de_PollForActivityTaskCommand)
|
|
2331
|
+
.sc(PollForActivityTask)
|
|
1898
2332
|
.build() {
|
|
1899
2333
|
}
|
|
1900
2334
|
|
|
@@ -1902,16 +2336,11 @@ class PollForDecisionTaskCommand extends smithyClient.Command
|
|
|
1902
2336
|
.classBuilder()
|
|
1903
2337
|
.ep(commonParams)
|
|
1904
2338
|
.m(function (Command, cs, config, o) {
|
|
1905
|
-
return [
|
|
1906
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1907
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1908
|
-
];
|
|
2339
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1909
2340
|
})
|
|
1910
2341
|
.s("SimpleWorkflowService", "PollForDecisionTask", {})
|
|
1911
2342
|
.n("SWFClient", "PollForDecisionTaskCommand")
|
|
1912
|
-
.
|
|
1913
|
-
.ser(se_PollForDecisionTaskCommand)
|
|
1914
|
-
.de(de_PollForDecisionTaskCommand)
|
|
2343
|
+
.sc(PollForDecisionTask)
|
|
1915
2344
|
.build() {
|
|
1916
2345
|
}
|
|
1917
2346
|
|
|
@@ -1919,16 +2348,11 @@ class RecordActivityTaskHeartbeatCommand extends smithyClient.Command
|
|
|
1919
2348
|
.classBuilder()
|
|
1920
2349
|
.ep(commonParams)
|
|
1921
2350
|
.m(function (Command, cs, config, o) {
|
|
1922
|
-
return [
|
|
1923
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1924
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1925
|
-
];
|
|
2351
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1926
2352
|
})
|
|
1927
2353
|
.s("SimpleWorkflowService", "RecordActivityTaskHeartbeat", {})
|
|
1928
2354
|
.n("SWFClient", "RecordActivityTaskHeartbeatCommand")
|
|
1929
|
-
.
|
|
1930
|
-
.ser(se_RecordActivityTaskHeartbeatCommand)
|
|
1931
|
-
.de(de_RecordActivityTaskHeartbeatCommand)
|
|
2355
|
+
.sc(RecordActivityTaskHeartbeat)
|
|
1932
2356
|
.build() {
|
|
1933
2357
|
}
|
|
1934
2358
|
|
|
@@ -1936,16 +2360,11 @@ class RegisterActivityTypeCommand extends smithyClient.Command
|
|
|
1936
2360
|
.classBuilder()
|
|
1937
2361
|
.ep(commonParams)
|
|
1938
2362
|
.m(function (Command, cs, config, o) {
|
|
1939
|
-
return [
|
|
1940
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1941
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1942
|
-
];
|
|
2363
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1943
2364
|
})
|
|
1944
2365
|
.s("SimpleWorkflowService", "RegisterActivityType", {})
|
|
1945
2366
|
.n("SWFClient", "RegisterActivityTypeCommand")
|
|
1946
|
-
.
|
|
1947
|
-
.ser(se_RegisterActivityTypeCommand)
|
|
1948
|
-
.de(de_RegisterActivityTypeCommand)
|
|
2367
|
+
.sc(RegisterActivityType)
|
|
1949
2368
|
.build() {
|
|
1950
2369
|
}
|
|
1951
2370
|
|
|
@@ -1953,16 +2372,11 @@ class RegisterDomainCommand extends smithyClient.Command
|
|
|
1953
2372
|
.classBuilder()
|
|
1954
2373
|
.ep(commonParams)
|
|
1955
2374
|
.m(function (Command, cs, config, o) {
|
|
1956
|
-
return [
|
|
1957
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1958
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1959
|
-
];
|
|
2375
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1960
2376
|
})
|
|
1961
2377
|
.s("SimpleWorkflowService", "RegisterDomain", {})
|
|
1962
2378
|
.n("SWFClient", "RegisterDomainCommand")
|
|
1963
|
-
.
|
|
1964
|
-
.ser(se_RegisterDomainCommand)
|
|
1965
|
-
.de(de_RegisterDomainCommand)
|
|
2379
|
+
.sc(RegisterDomain)
|
|
1966
2380
|
.build() {
|
|
1967
2381
|
}
|
|
1968
2382
|
|
|
@@ -1970,16 +2384,11 @@ class RegisterWorkflowTypeCommand extends smithyClient.Command
|
|
|
1970
2384
|
.classBuilder()
|
|
1971
2385
|
.ep(commonParams)
|
|
1972
2386
|
.m(function (Command, cs, config, o) {
|
|
1973
|
-
return [
|
|
1974
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1975
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1976
|
-
];
|
|
2387
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1977
2388
|
})
|
|
1978
2389
|
.s("SimpleWorkflowService", "RegisterWorkflowType", {})
|
|
1979
2390
|
.n("SWFClient", "RegisterWorkflowTypeCommand")
|
|
1980
|
-
.
|
|
1981
|
-
.ser(se_RegisterWorkflowTypeCommand)
|
|
1982
|
-
.de(de_RegisterWorkflowTypeCommand)
|
|
2391
|
+
.sc(RegisterWorkflowType)
|
|
1983
2392
|
.build() {
|
|
1984
2393
|
}
|
|
1985
2394
|
|
|
@@ -1987,16 +2396,11 @@ class RequestCancelWorkflowExecutionCommand extends smithyClient.Command
|
|
|
1987
2396
|
.classBuilder()
|
|
1988
2397
|
.ep(commonParams)
|
|
1989
2398
|
.m(function (Command, cs, config, o) {
|
|
1990
|
-
return [
|
|
1991
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1992
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1993
|
-
];
|
|
2399
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1994
2400
|
})
|
|
1995
2401
|
.s("SimpleWorkflowService", "RequestCancelWorkflowExecution", {})
|
|
1996
2402
|
.n("SWFClient", "RequestCancelWorkflowExecutionCommand")
|
|
1997
|
-
.
|
|
1998
|
-
.ser(se_RequestCancelWorkflowExecutionCommand)
|
|
1999
|
-
.de(de_RequestCancelWorkflowExecutionCommand)
|
|
2403
|
+
.sc(RequestCancelWorkflowExecution)
|
|
2000
2404
|
.build() {
|
|
2001
2405
|
}
|
|
2002
2406
|
|
|
@@ -2004,16 +2408,11 @@ class RespondActivityTaskCanceledCommand extends smithyClient.Command
|
|
|
2004
2408
|
.classBuilder()
|
|
2005
2409
|
.ep(commonParams)
|
|
2006
2410
|
.m(function (Command, cs, config, o) {
|
|
2007
|
-
return [
|
|
2008
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2009
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2010
|
-
];
|
|
2411
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2011
2412
|
})
|
|
2012
2413
|
.s("SimpleWorkflowService", "RespondActivityTaskCanceled", {})
|
|
2013
2414
|
.n("SWFClient", "RespondActivityTaskCanceledCommand")
|
|
2014
|
-
.
|
|
2015
|
-
.ser(se_RespondActivityTaskCanceledCommand)
|
|
2016
|
-
.de(de_RespondActivityTaskCanceledCommand)
|
|
2415
|
+
.sc(RespondActivityTaskCanceled)
|
|
2017
2416
|
.build() {
|
|
2018
2417
|
}
|
|
2019
2418
|
|
|
@@ -2021,16 +2420,11 @@ class RespondActivityTaskCompletedCommand extends smithyClient.Command
|
|
|
2021
2420
|
.classBuilder()
|
|
2022
2421
|
.ep(commonParams)
|
|
2023
2422
|
.m(function (Command, cs, config, o) {
|
|
2024
|
-
return [
|
|
2025
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2026
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2027
|
-
];
|
|
2423
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2028
2424
|
})
|
|
2029
2425
|
.s("SimpleWorkflowService", "RespondActivityTaskCompleted", {})
|
|
2030
2426
|
.n("SWFClient", "RespondActivityTaskCompletedCommand")
|
|
2031
|
-
.
|
|
2032
|
-
.ser(se_RespondActivityTaskCompletedCommand)
|
|
2033
|
-
.de(de_RespondActivityTaskCompletedCommand)
|
|
2427
|
+
.sc(RespondActivityTaskCompleted)
|
|
2034
2428
|
.build() {
|
|
2035
2429
|
}
|
|
2036
2430
|
|
|
@@ -2038,16 +2432,11 @@ class RespondActivityTaskFailedCommand extends smithyClient.Command
|
|
|
2038
2432
|
.classBuilder()
|
|
2039
2433
|
.ep(commonParams)
|
|
2040
2434
|
.m(function (Command, cs, config, o) {
|
|
2041
|
-
return [
|
|
2042
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2043
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2044
|
-
];
|
|
2435
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2045
2436
|
})
|
|
2046
2437
|
.s("SimpleWorkflowService", "RespondActivityTaskFailed", {})
|
|
2047
2438
|
.n("SWFClient", "RespondActivityTaskFailedCommand")
|
|
2048
|
-
.
|
|
2049
|
-
.ser(se_RespondActivityTaskFailedCommand)
|
|
2050
|
-
.de(de_RespondActivityTaskFailedCommand)
|
|
2439
|
+
.sc(RespondActivityTaskFailed)
|
|
2051
2440
|
.build() {
|
|
2052
2441
|
}
|
|
2053
2442
|
|
|
@@ -2055,16 +2444,11 @@ class RespondDecisionTaskCompletedCommand extends smithyClient.Command
|
|
|
2055
2444
|
.classBuilder()
|
|
2056
2445
|
.ep(commonParams)
|
|
2057
2446
|
.m(function (Command, cs, config, o) {
|
|
2058
|
-
return [
|
|
2059
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2060
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2061
|
-
];
|
|
2447
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2062
2448
|
})
|
|
2063
2449
|
.s("SimpleWorkflowService", "RespondDecisionTaskCompleted", {})
|
|
2064
2450
|
.n("SWFClient", "RespondDecisionTaskCompletedCommand")
|
|
2065
|
-
.
|
|
2066
|
-
.ser(se_RespondDecisionTaskCompletedCommand)
|
|
2067
|
-
.de(de_RespondDecisionTaskCompletedCommand)
|
|
2451
|
+
.sc(RespondDecisionTaskCompleted)
|
|
2068
2452
|
.build() {
|
|
2069
2453
|
}
|
|
2070
2454
|
|
|
@@ -2072,16 +2456,11 @@ class SignalWorkflowExecutionCommand extends smithyClient.Command
|
|
|
2072
2456
|
.classBuilder()
|
|
2073
2457
|
.ep(commonParams)
|
|
2074
2458
|
.m(function (Command, cs, config, o) {
|
|
2075
|
-
return [
|
|
2076
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2077
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2078
|
-
];
|
|
2459
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2079
2460
|
})
|
|
2080
2461
|
.s("SimpleWorkflowService", "SignalWorkflowExecution", {})
|
|
2081
2462
|
.n("SWFClient", "SignalWorkflowExecutionCommand")
|
|
2082
|
-
.
|
|
2083
|
-
.ser(se_SignalWorkflowExecutionCommand)
|
|
2084
|
-
.de(de_SignalWorkflowExecutionCommand)
|
|
2463
|
+
.sc(SignalWorkflowExecution)
|
|
2085
2464
|
.build() {
|
|
2086
2465
|
}
|
|
2087
2466
|
|
|
@@ -2089,16 +2468,11 @@ class StartWorkflowExecutionCommand extends smithyClient.Command
|
|
|
2089
2468
|
.classBuilder()
|
|
2090
2469
|
.ep(commonParams)
|
|
2091
2470
|
.m(function (Command, cs, config, o) {
|
|
2092
|
-
return [
|
|
2093
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2094
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2095
|
-
];
|
|
2471
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2096
2472
|
})
|
|
2097
2473
|
.s("SimpleWorkflowService", "StartWorkflowExecution", {})
|
|
2098
2474
|
.n("SWFClient", "StartWorkflowExecutionCommand")
|
|
2099
|
-
.
|
|
2100
|
-
.ser(se_StartWorkflowExecutionCommand)
|
|
2101
|
-
.de(de_StartWorkflowExecutionCommand)
|
|
2475
|
+
.sc(StartWorkflowExecution)
|
|
2102
2476
|
.build() {
|
|
2103
2477
|
}
|
|
2104
2478
|
|
|
@@ -2106,16 +2480,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2106
2480
|
.classBuilder()
|
|
2107
2481
|
.ep(commonParams)
|
|
2108
2482
|
.m(function (Command, cs, config, o) {
|
|
2109
|
-
return [
|
|
2110
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2111
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2112
|
-
];
|
|
2483
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2113
2484
|
})
|
|
2114
2485
|
.s("SimpleWorkflowService", "TagResource", {})
|
|
2115
2486
|
.n("SWFClient", "TagResourceCommand")
|
|
2116
|
-
.
|
|
2117
|
-
.ser(se_TagResourceCommand)
|
|
2118
|
-
.de(de_TagResourceCommand)
|
|
2487
|
+
.sc(TagResource)
|
|
2119
2488
|
.build() {
|
|
2120
2489
|
}
|
|
2121
2490
|
|
|
@@ -2123,16 +2492,11 @@ class TerminateWorkflowExecutionCommand extends smithyClient.Command
|
|
|
2123
2492
|
.classBuilder()
|
|
2124
2493
|
.ep(commonParams)
|
|
2125
2494
|
.m(function (Command, cs, config, o) {
|
|
2126
|
-
return [
|
|
2127
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2128
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2129
|
-
];
|
|
2495
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2130
2496
|
})
|
|
2131
2497
|
.s("SimpleWorkflowService", "TerminateWorkflowExecution", {})
|
|
2132
2498
|
.n("SWFClient", "TerminateWorkflowExecutionCommand")
|
|
2133
|
-
.
|
|
2134
|
-
.ser(se_TerminateWorkflowExecutionCommand)
|
|
2135
|
-
.de(de_TerminateWorkflowExecutionCommand)
|
|
2499
|
+
.sc(TerminateWorkflowExecution)
|
|
2136
2500
|
.build() {
|
|
2137
2501
|
}
|
|
2138
2502
|
|
|
@@ -2140,16 +2504,11 @@ class UndeprecateActivityTypeCommand extends smithyClient.Command
|
|
|
2140
2504
|
.classBuilder()
|
|
2141
2505
|
.ep(commonParams)
|
|
2142
2506
|
.m(function (Command, cs, config, o) {
|
|
2143
|
-
return [
|
|
2144
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2145
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2146
|
-
];
|
|
2507
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2147
2508
|
})
|
|
2148
2509
|
.s("SimpleWorkflowService", "UndeprecateActivityType", {})
|
|
2149
2510
|
.n("SWFClient", "UndeprecateActivityTypeCommand")
|
|
2150
|
-
.
|
|
2151
|
-
.ser(se_UndeprecateActivityTypeCommand)
|
|
2152
|
-
.de(de_UndeprecateActivityTypeCommand)
|
|
2511
|
+
.sc(UndeprecateActivityType)
|
|
2153
2512
|
.build() {
|
|
2154
2513
|
}
|
|
2155
2514
|
|
|
@@ -2157,16 +2516,11 @@ class UndeprecateDomainCommand extends smithyClient.Command
|
|
|
2157
2516
|
.classBuilder()
|
|
2158
2517
|
.ep(commonParams)
|
|
2159
2518
|
.m(function (Command, cs, config, o) {
|
|
2160
|
-
return [
|
|
2161
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2162
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2163
|
-
];
|
|
2519
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2164
2520
|
})
|
|
2165
2521
|
.s("SimpleWorkflowService", "UndeprecateDomain", {})
|
|
2166
2522
|
.n("SWFClient", "UndeprecateDomainCommand")
|
|
2167
|
-
.
|
|
2168
|
-
.ser(se_UndeprecateDomainCommand)
|
|
2169
|
-
.de(de_UndeprecateDomainCommand)
|
|
2523
|
+
.sc(UndeprecateDomain)
|
|
2170
2524
|
.build() {
|
|
2171
2525
|
}
|
|
2172
2526
|
|
|
@@ -2174,16 +2528,11 @@ class UndeprecateWorkflowTypeCommand extends smithyClient.Command
|
|
|
2174
2528
|
.classBuilder()
|
|
2175
2529
|
.ep(commonParams)
|
|
2176
2530
|
.m(function (Command, cs, config, o) {
|
|
2177
|
-
return [
|
|
2178
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2179
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2180
|
-
];
|
|
2531
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2181
2532
|
})
|
|
2182
2533
|
.s("SimpleWorkflowService", "UndeprecateWorkflowType", {})
|
|
2183
2534
|
.n("SWFClient", "UndeprecateWorkflowTypeCommand")
|
|
2184
|
-
.
|
|
2185
|
-
.ser(se_UndeprecateWorkflowTypeCommand)
|
|
2186
|
-
.de(de_UndeprecateWorkflowTypeCommand)
|
|
2535
|
+
.sc(UndeprecateWorkflowType)
|
|
2187
2536
|
.build() {
|
|
2188
2537
|
}
|
|
2189
2538
|
|
|
@@ -2191,16 +2540,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2191
2540
|
.classBuilder()
|
|
2192
2541
|
.ep(commonParams)
|
|
2193
2542
|
.m(function (Command, cs, config, o) {
|
|
2194
|
-
return [
|
|
2195
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2196
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2197
|
-
];
|
|
2543
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2198
2544
|
})
|
|
2199
2545
|
.s("SimpleWorkflowService", "UntagResource", {})
|
|
2200
2546
|
.n("SWFClient", "UntagResourceCommand")
|
|
2201
|
-
.
|
|
2202
|
-
.ser(se_UntagResourceCommand)
|
|
2203
|
-
.de(de_UntagResourceCommand)
|
|
2547
|
+
.sc(UntagResource)
|
|
2204
2548
|
.build() {
|
|
2205
2549
|
}
|
|
2206
2550
|
|
|
@@ -2284,7 +2628,7 @@ exports.CountPendingActivityTasksCommand = CountPendingActivityTasksCommand;
|
|
|
2284
2628
|
exports.CountPendingDecisionTasksCommand = CountPendingDecisionTasksCommand;
|
|
2285
2629
|
exports.DecisionTaskTimeoutType = DecisionTaskTimeoutType;
|
|
2286
2630
|
exports.DecisionType = DecisionType;
|
|
2287
|
-
exports.DefaultUndefinedFault = DefaultUndefinedFault;
|
|
2631
|
+
exports.DefaultUndefinedFault = DefaultUndefinedFault$1;
|
|
2288
2632
|
exports.DeleteActivityTypeCommand = DeleteActivityTypeCommand;
|
|
2289
2633
|
exports.DeleteWorkflowTypeCommand = DeleteWorkflowTypeCommand;
|
|
2290
2634
|
exports.DeprecateActivityTypeCommand = DeprecateActivityTypeCommand;
|
|
@@ -2294,21 +2638,21 @@ exports.DescribeActivityTypeCommand = DescribeActivityTypeCommand;
|
|
|
2294
2638
|
exports.DescribeDomainCommand = DescribeDomainCommand;
|
|
2295
2639
|
exports.DescribeWorkflowExecutionCommand = DescribeWorkflowExecutionCommand;
|
|
2296
2640
|
exports.DescribeWorkflowTypeCommand = DescribeWorkflowTypeCommand;
|
|
2297
|
-
exports.DomainAlreadyExistsFault = DomainAlreadyExistsFault;
|
|
2298
|
-
exports.DomainDeprecatedFault = DomainDeprecatedFault;
|
|
2641
|
+
exports.DomainAlreadyExistsFault = DomainAlreadyExistsFault$1;
|
|
2642
|
+
exports.DomainDeprecatedFault = DomainDeprecatedFault$1;
|
|
2299
2643
|
exports.EventType = EventType;
|
|
2300
2644
|
exports.ExecutionStatus = ExecutionStatus;
|
|
2301
2645
|
exports.FailWorkflowExecutionFailedCause = FailWorkflowExecutionFailedCause;
|
|
2302
2646
|
exports.GetWorkflowExecutionHistoryCommand = GetWorkflowExecutionHistoryCommand;
|
|
2303
2647
|
exports.LambdaFunctionTimeoutType = LambdaFunctionTimeoutType;
|
|
2304
|
-
exports.LimitExceededFault = LimitExceededFault;
|
|
2648
|
+
exports.LimitExceededFault = LimitExceededFault$1;
|
|
2305
2649
|
exports.ListActivityTypesCommand = ListActivityTypesCommand;
|
|
2306
2650
|
exports.ListClosedWorkflowExecutionsCommand = ListClosedWorkflowExecutionsCommand;
|
|
2307
2651
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
2308
2652
|
exports.ListOpenWorkflowExecutionsCommand = ListOpenWorkflowExecutionsCommand;
|
|
2309
2653
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2310
2654
|
exports.ListWorkflowTypesCommand = ListWorkflowTypesCommand;
|
|
2311
|
-
exports.OperationNotPermittedFault = OperationNotPermittedFault;
|
|
2655
|
+
exports.OperationNotPermittedFault = OperationNotPermittedFault$1;
|
|
2312
2656
|
exports.PollForActivityTaskCommand = PollForActivityTaskCommand;
|
|
2313
2657
|
exports.PollForDecisionTaskCommand = PollForDecisionTaskCommand;
|
|
2314
2658
|
exports.RecordActivityTaskHeartbeatCommand = RecordActivityTaskHeartbeatCommand;
|
|
@@ -2326,7 +2670,7 @@ exports.RespondActivityTaskFailedCommand = RespondActivityTaskFailedCommand;
|
|
|
2326
2670
|
exports.RespondDecisionTaskCompletedCommand = RespondDecisionTaskCompletedCommand;
|
|
2327
2671
|
exports.SWF = SWF;
|
|
2328
2672
|
exports.SWFClient = SWFClient;
|
|
2329
|
-
exports.SWFServiceException = SWFServiceException;
|
|
2673
|
+
exports.SWFServiceException = SWFServiceException$1;
|
|
2330
2674
|
exports.ScheduleActivityTaskFailedCause = ScheduleActivityTaskFailedCause;
|
|
2331
2675
|
exports.ScheduleLambdaFunctionFailedCause = ScheduleLambdaFunctionFailedCause;
|
|
2332
2676
|
exports.SignalExternalWorkflowExecutionFailedCause = SignalExternalWorkflowExecutionFailedCause;
|
|
@@ -2337,16 +2681,16 @@ exports.StartTimerFailedCause = StartTimerFailedCause;
|
|
|
2337
2681
|
exports.StartWorkflowExecutionCommand = StartWorkflowExecutionCommand;
|
|
2338
2682
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2339
2683
|
exports.TerminateWorkflowExecutionCommand = TerminateWorkflowExecutionCommand;
|
|
2340
|
-
exports.TooManyTagsFault = TooManyTagsFault;
|
|
2341
|
-
exports.TypeAlreadyExistsFault = TypeAlreadyExistsFault;
|
|
2342
|
-
exports.TypeDeprecatedFault = TypeDeprecatedFault;
|
|
2343
|
-
exports.TypeNotDeprecatedFault = TypeNotDeprecatedFault;
|
|
2684
|
+
exports.TooManyTagsFault = TooManyTagsFault$1;
|
|
2685
|
+
exports.TypeAlreadyExistsFault = TypeAlreadyExistsFault$1;
|
|
2686
|
+
exports.TypeDeprecatedFault = TypeDeprecatedFault$1;
|
|
2687
|
+
exports.TypeNotDeprecatedFault = TypeNotDeprecatedFault$1;
|
|
2344
2688
|
exports.UndeprecateActivityTypeCommand = UndeprecateActivityTypeCommand;
|
|
2345
2689
|
exports.UndeprecateDomainCommand = UndeprecateDomainCommand;
|
|
2346
2690
|
exports.UndeprecateWorkflowTypeCommand = UndeprecateWorkflowTypeCommand;
|
|
2347
|
-
exports.UnknownResourceFault = UnknownResourceFault;
|
|
2691
|
+
exports.UnknownResourceFault = UnknownResourceFault$1;
|
|
2348
2692
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2349
|
-
exports.WorkflowExecutionAlreadyStartedFault = WorkflowExecutionAlreadyStartedFault;
|
|
2693
|
+
exports.WorkflowExecutionAlreadyStartedFault = WorkflowExecutionAlreadyStartedFault$1;
|
|
2350
2694
|
exports.WorkflowExecutionCancelRequestedCause = WorkflowExecutionCancelRequestedCause;
|
|
2351
2695
|
exports.WorkflowExecutionTerminatedCause = WorkflowExecutionTerminatedCause;
|
|
2352
2696
|
exports.WorkflowExecutionTimeoutType = WorkflowExecutionTimeoutType;
|