@aws-sdk/client-swf 3.1074.0 → 3.1076.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 +1846 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SWFServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -133
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1475
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin, getLongPollPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin, getLongPollPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSWFHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "swf",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSWFHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1594 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://swf.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
93
|
+
["https://swf-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://swf-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
96
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
97
|
+
["https://swf.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
98
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 14, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 9, 6,
|
|
110
|
+
4, 7, r + 4,
|
|
111
|
+
5, r + 5, 8,
|
|
112
|
+
7, r + 9, r + 10,
|
|
113
|
+
4, 12, 10,
|
|
114
|
+
5, r + 4, 11,
|
|
115
|
+
6, r + 7, r + 8,
|
|
116
|
+
6, 13, r + 6,
|
|
117
|
+
7, r + 5, r + 6,
|
|
118
|
+
3, r + 1, 15,
|
|
119
|
+
4, r + 2, r + 3,
|
|
120
|
+
]);
|
|
121
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
122
|
+
|
|
123
|
+
const cache = new EndpointCache({
|
|
124
|
+
size: 50,
|
|
125
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
126
|
+
});
|
|
127
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
128
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
129
|
+
endpointParams: endpointParams,
|
|
130
|
+
logger: context.logger,
|
|
131
|
+
}));
|
|
132
|
+
};
|
|
133
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
134
|
+
|
|
135
|
+
class SWFServiceException extends ServiceException {
|
|
136
|
+
constructor(options) {
|
|
137
|
+
super(options);
|
|
138
|
+
Object.setPrototypeOf(this, SWFServiceException.prototype);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
class OperationNotPermittedFault extends SWFServiceException {
|
|
143
|
+
name = "OperationNotPermittedFault";
|
|
144
|
+
$fault = "client";
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "OperationNotPermittedFault",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
Object.setPrototypeOf(this, OperationNotPermittedFault.prototype);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
class UnknownResourceFault extends SWFServiceException {
|
|
155
|
+
name = "UnknownResourceFault";
|
|
156
|
+
$fault = "client";
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "UnknownResourceFault",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, UnknownResourceFault.prototype);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
class DefaultUndefinedFault extends SWFServiceException {
|
|
167
|
+
name = "DefaultUndefinedFault";
|
|
168
|
+
$fault = "client";
|
|
169
|
+
constructor(opts) {
|
|
170
|
+
super({
|
|
171
|
+
name: "DefaultUndefinedFault",
|
|
172
|
+
$fault: "client",
|
|
173
|
+
...opts,
|
|
174
|
+
});
|
|
175
|
+
Object.setPrototypeOf(this, DefaultUndefinedFault.prototype);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
class TypeNotDeprecatedFault extends SWFServiceException {
|
|
179
|
+
name = "TypeNotDeprecatedFault";
|
|
180
|
+
$fault = "client";
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "TypeNotDeprecatedFault",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
Object.setPrototypeOf(this, TypeNotDeprecatedFault.prototype);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
class TypeDeprecatedFault extends SWFServiceException {
|
|
191
|
+
name = "TypeDeprecatedFault";
|
|
192
|
+
$fault = "client";
|
|
193
|
+
constructor(opts) {
|
|
194
|
+
super({
|
|
195
|
+
name: "TypeDeprecatedFault",
|
|
196
|
+
$fault: "client",
|
|
197
|
+
...opts,
|
|
198
|
+
});
|
|
199
|
+
Object.setPrototypeOf(this, TypeDeprecatedFault.prototype);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
class DomainDeprecatedFault extends SWFServiceException {
|
|
203
|
+
name = "DomainDeprecatedFault";
|
|
204
|
+
$fault = "client";
|
|
205
|
+
constructor(opts) {
|
|
206
|
+
super({
|
|
207
|
+
name: "DomainDeprecatedFault",
|
|
208
|
+
$fault: "client",
|
|
209
|
+
...opts,
|
|
210
|
+
});
|
|
211
|
+
Object.setPrototypeOf(this, DomainDeprecatedFault.prototype);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
class DomainAlreadyExistsFault extends SWFServiceException {
|
|
215
|
+
name = "DomainAlreadyExistsFault";
|
|
216
|
+
$fault = "client";
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "DomainAlreadyExistsFault",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, DomainAlreadyExistsFault.prototype);
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
class LimitExceededFault extends SWFServiceException {
|
|
227
|
+
name = "LimitExceededFault";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
constructor(opts) {
|
|
230
|
+
super({
|
|
231
|
+
name: "LimitExceededFault",
|
|
232
|
+
$fault: "client",
|
|
233
|
+
...opts,
|
|
234
|
+
});
|
|
235
|
+
Object.setPrototypeOf(this, LimitExceededFault.prototype);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
class TypeAlreadyExistsFault extends SWFServiceException {
|
|
239
|
+
name = "TypeAlreadyExistsFault";
|
|
240
|
+
$fault = "client";
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "TypeAlreadyExistsFault",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, TypeAlreadyExistsFault.prototype);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
class TooManyTagsFault extends SWFServiceException {
|
|
251
|
+
name = "TooManyTagsFault";
|
|
252
|
+
$fault = "client";
|
|
253
|
+
constructor(opts) {
|
|
254
|
+
super({
|
|
255
|
+
name: "TooManyTagsFault",
|
|
256
|
+
$fault: "client",
|
|
257
|
+
...opts,
|
|
258
|
+
});
|
|
259
|
+
Object.setPrototypeOf(this, TooManyTagsFault.prototype);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
class WorkflowExecutionAlreadyStartedFault extends SWFServiceException {
|
|
263
|
+
name = "WorkflowExecutionAlreadyStartedFault";
|
|
264
|
+
$fault = "client";
|
|
265
|
+
constructor(opts) {
|
|
266
|
+
super({
|
|
267
|
+
name: "WorkflowExecutionAlreadyStartedFault",
|
|
268
|
+
$fault: "client",
|
|
269
|
+
...opts,
|
|
270
|
+
});
|
|
271
|
+
Object.setPrototypeOf(this, WorkflowExecutionAlreadyStartedFault.prototype);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
const _AT = "ActivityTask";
|
|
276
|
+
const _ATC = "ActivityTypeConfiguration";
|
|
277
|
+
const _ATCEA = "ActivityTaskCanceledEventAttributes";
|
|
278
|
+
const _ATCEAc = "ActivityTaskCompletedEventAttributes";
|
|
279
|
+
const _ATCREA = "ActivityTaskCancelRequestedEventAttributes";
|
|
280
|
+
const _ATD = "ActivityTypeDetail";
|
|
281
|
+
const _ATFEA = "ActivityTaskFailedEventAttributes";
|
|
282
|
+
const _ATI = "ActivityTypeInfo";
|
|
283
|
+
const _ATIL = "ActivityTypeInfoList";
|
|
284
|
+
const _ATIc = "ActivityTypeInfos";
|
|
285
|
+
const _ATS = "ActivityTaskStatus";
|
|
286
|
+
const _ATSEA = "ActivityTaskScheduledEventAttributes";
|
|
287
|
+
const _ATSEAc = "ActivityTaskStartedEventAttributes";
|
|
288
|
+
const _ATTOEA = "ActivityTaskTimedOutEventAttributes";
|
|
289
|
+
const _ATc = "ActivityType";
|
|
290
|
+
const _CANWEDA = "ContinueAsNewWorkflowExecutionDecisionAttributes";
|
|
291
|
+
const _CANWEFEA = "ContinueAsNewWorkflowExecutionFailedEventAttributes";
|
|
292
|
+
const _CCWE = "CountClosedWorkflowExecutions";
|
|
293
|
+
const _CCWEI = "CountClosedWorkflowExecutionsInput";
|
|
294
|
+
const _COWE = "CountOpenWorkflowExecutions";
|
|
295
|
+
const _COWEI = "CountOpenWorkflowExecutionsInput";
|
|
296
|
+
const _CPAT = "CountPendingActivityTasks";
|
|
297
|
+
const _CPATI = "CountPendingActivityTasksInput";
|
|
298
|
+
const _CPDT = "CountPendingDecisionTasks";
|
|
299
|
+
const _CPDTI = "CountPendingDecisionTasksInput";
|
|
300
|
+
const _CSF = "CloseStatusFilter";
|
|
301
|
+
const _CTDA = "CancelTimerDecisionAttributes";
|
|
302
|
+
const _CTFEA = "CancelTimerFailedEventAttributes";
|
|
303
|
+
const _CWECEA = "ChildWorkflowExecutionCanceledEventAttributes";
|
|
304
|
+
const _CWECEAh = "ChildWorkflowExecutionCompletedEventAttributes";
|
|
305
|
+
const _CWEDA = "CancelWorkflowExecutionDecisionAttributes";
|
|
306
|
+
const _CWEDAo = "CompleteWorkflowExecutionDecisionAttributes";
|
|
307
|
+
const _CWEFEA = "CancelWorkflowExecutionFailedEventAttributes";
|
|
308
|
+
const _CWEFEAh = "ChildWorkflowExecutionFailedEventAttributes";
|
|
309
|
+
const _CWEFEAo = "CompleteWorkflowExecutionFailedEventAttributes";
|
|
310
|
+
const _CWESEA = "ChildWorkflowExecutionStartedEventAttributes";
|
|
311
|
+
const _CWETEA = "ChildWorkflowExecutionTerminatedEventAttributes";
|
|
312
|
+
const _CWETOEA = "ChildWorkflowExecutionTimedOutEventAttributes";
|
|
313
|
+
const _D = "Decision";
|
|
314
|
+
const _DAEF = "DomainAlreadyExistsFault";
|
|
315
|
+
const _DAT = "DeleteActivityType";
|
|
316
|
+
const _DATI = "DeleteActivityTypeInput";
|
|
317
|
+
const _DATIe = "DeprecateActivityTypeInput";
|
|
318
|
+
const _DATIes = "DescribeActivityTypeInput";
|
|
319
|
+
const _DATe = "DeprecateActivityType";
|
|
320
|
+
const _DATes = "DescribeActivityType";
|
|
321
|
+
const _DC = "DomainConfiguration";
|
|
322
|
+
const _DD = "DomainDetail";
|
|
323
|
+
const _DDF = "DomainDeprecatedFault";
|
|
324
|
+
const _DDI = "DeprecateDomainInput";
|
|
325
|
+
const _DDIe = "DescribeDomainInput";
|
|
326
|
+
const _DDe = "DeprecateDomain";
|
|
327
|
+
const _DDes = "DescribeDomain";
|
|
328
|
+
const _DI = "DomainInfo";
|
|
329
|
+
const _DIL = "DomainInfoList";
|
|
330
|
+
const _DIo = "DomainInfos";
|
|
331
|
+
const _DL = "DecisionList";
|
|
332
|
+
const _DT = "DecisionTask";
|
|
333
|
+
const _DTCEA = "DecisionTaskCompletedEventAttributes";
|
|
334
|
+
const _DTSEA = "DecisionTaskScheduledEventAttributes";
|
|
335
|
+
const _DTSEAe = "DecisionTaskStartedEventAttributes";
|
|
336
|
+
const _DTTOEA = "DecisionTaskTimedOutEventAttributes";
|
|
337
|
+
const _DUF = "DefaultUndefinedFault";
|
|
338
|
+
const _DWE = "DescribeWorkflowExecution";
|
|
339
|
+
const _DWEI = "DescribeWorkflowExecutionInput";
|
|
340
|
+
const _DWT = "DeleteWorkflowType";
|
|
341
|
+
const _DWTI = "DeleteWorkflowTypeInput";
|
|
342
|
+
const _DWTIe = "DeprecateWorkflowTypeInput";
|
|
343
|
+
const _DWTIes = "DescribeWorkflowTypeInput";
|
|
344
|
+
const _DWTe = "DeprecateWorkflowType";
|
|
345
|
+
const _DWTes = "DescribeWorkflowType";
|
|
346
|
+
const _ETF = "ExecutionTimeFilter";
|
|
347
|
+
const _EWECREA = "ExternalWorkflowExecutionCancelRequestedEventAttributes";
|
|
348
|
+
const _EWESEA = "ExternalWorkflowExecutionSignaledEventAttributes";
|
|
349
|
+
const _FWEDA = "FailWorkflowExecutionDecisionAttributes";
|
|
350
|
+
const _FWEFEA = "FailWorkflowExecutionFailedEventAttributes";
|
|
351
|
+
const _GWEH = "GetWorkflowExecutionHistory";
|
|
352
|
+
const _GWEHI = "GetWorkflowExecutionHistoryInput";
|
|
353
|
+
const _H = "History";
|
|
354
|
+
const _HE = "HistoryEvent";
|
|
355
|
+
const _HEL = "HistoryEventList";
|
|
356
|
+
const _LAT = "ListActivityTypes";
|
|
357
|
+
const _LATI = "ListActivityTypesInput";
|
|
358
|
+
const _LCWE = "ListClosedWorkflowExecutions";
|
|
359
|
+
const _LCWEI = "ListClosedWorkflowExecutionsInput";
|
|
360
|
+
const _LD = "ListDomains";
|
|
361
|
+
const _LDI = "ListDomainsInput";
|
|
362
|
+
const _LEF = "LimitExceededFault";
|
|
363
|
+
const _LFCEA = "LambdaFunctionCompletedEventAttributes";
|
|
364
|
+
const _LFFEA = "LambdaFunctionFailedEventAttributes";
|
|
365
|
+
const _LFSEA = "LambdaFunctionScheduledEventAttributes";
|
|
366
|
+
const _LFSEAa = "LambdaFunctionStartedEventAttributes";
|
|
367
|
+
const _LFTOEA = "LambdaFunctionTimedOutEventAttributes";
|
|
368
|
+
const _LOWE = "ListOpenWorkflowExecutions";
|
|
369
|
+
const _LOWEI = "ListOpenWorkflowExecutionsInput";
|
|
370
|
+
const _LTFR = "ListTagsForResource";
|
|
371
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
372
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
373
|
+
const _LWT = "ListWorkflowTypes";
|
|
374
|
+
const _LWTI = "ListWorkflowTypesInput";
|
|
375
|
+
const _MREA = "MarkerRecordedEventAttributes";
|
|
376
|
+
const _ONPF = "OperationNotPermittedFault";
|
|
377
|
+
const _PFAT = "PollForActivityTask";
|
|
378
|
+
const _PFATI = "PollForActivityTaskInput";
|
|
379
|
+
const _PFDT = "PollForDecisionTask";
|
|
380
|
+
const _PFDTI = "PollForDecisionTaskInput";
|
|
381
|
+
const _PTC = "PendingTaskCount";
|
|
382
|
+
const _R = "Run";
|
|
383
|
+
const _RAT = "RegisterActivityType";
|
|
384
|
+
const _RATC = "RespondActivityTaskCanceled";
|
|
385
|
+
const _RATCI = "RespondActivityTaskCanceledInput";
|
|
386
|
+
const _RATCIe = "RespondActivityTaskCompletedInput";
|
|
387
|
+
const _RATCe = "RespondActivityTaskCompleted";
|
|
388
|
+
const _RATF = "RespondActivityTaskFailed";
|
|
389
|
+
const _RATFI = "RespondActivityTaskFailedInput";
|
|
390
|
+
const _RATH = "RecordActivityTaskHeartbeat";
|
|
391
|
+
const _RATHI = "RecordActivityTaskHeartbeatInput";
|
|
392
|
+
const _RATI = "RegisterActivityTypeInput";
|
|
393
|
+
const _RCATDA = "RequestCancelActivityTaskDecisionAttributes";
|
|
394
|
+
const _RCATFEA = "RequestCancelActivityTaskFailedEventAttributes";
|
|
395
|
+
const _RCEWEDA = "RequestCancelExternalWorkflowExecutionDecisionAttributes";
|
|
396
|
+
const _RCEWEFEA = "RequestCancelExternalWorkflowExecutionFailedEventAttributes";
|
|
397
|
+
const _RCEWEIEA = "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes";
|
|
398
|
+
const _RCWE = "RequestCancelWorkflowExecution";
|
|
399
|
+
const _RCWEI = "RequestCancelWorkflowExecutionInput";
|
|
400
|
+
const _RD = "RegisterDomain";
|
|
401
|
+
const _RDI = "RegisterDomainInput";
|
|
402
|
+
const _RDTC = "RespondDecisionTaskCompleted";
|
|
403
|
+
const _RDTCI = "RespondDecisionTaskCompletedInput";
|
|
404
|
+
const _RMDA = "RecordMarkerDecisionAttributes";
|
|
405
|
+
const _RMFEA = "RecordMarkerFailedEventAttributes";
|
|
406
|
+
const _RT = "ResourceTag";
|
|
407
|
+
const _RTL = "ResourceTagList";
|
|
408
|
+
const _RWT = "RegisterWorkflowType";
|
|
409
|
+
const _RWTI = "RegisterWorkflowTypeInput";
|
|
410
|
+
const _SATDA = "ScheduleActivityTaskDecisionAttributes";
|
|
411
|
+
const _SATFEA = "ScheduleActivityTaskFailedEventAttributes";
|
|
412
|
+
const _SCWEDA = "StartChildWorkflowExecutionDecisionAttributes";
|
|
413
|
+
const _SCWEFEA = "StartChildWorkflowExecutionFailedEventAttributes";
|
|
414
|
+
const _SCWEIEA = "StartChildWorkflowExecutionInitiatedEventAttributes";
|
|
415
|
+
const _SEWEDA = "SignalExternalWorkflowExecutionDecisionAttributes";
|
|
416
|
+
const _SEWEFEA = "SignalExternalWorkflowExecutionFailedEventAttributes";
|
|
417
|
+
const _SEWEIEA = "SignalExternalWorkflowExecutionInitiatedEventAttributes";
|
|
418
|
+
const _SLFDA = "ScheduleLambdaFunctionDecisionAttributes";
|
|
419
|
+
const _SLFFEA = "ScheduleLambdaFunctionFailedEventAttributes";
|
|
420
|
+
const _SLFFEAt = "StartLambdaFunctionFailedEventAttributes";
|
|
421
|
+
const _STDA = "StartTimerDecisionAttributes";
|
|
422
|
+
const _STFEA = "StartTimerFailedEventAttributes";
|
|
423
|
+
const _SWE = "SignalWorkflowExecution";
|
|
424
|
+
const _SWEI = "SignalWorkflowExecutionInput";
|
|
425
|
+
const _SWEIt = "StartWorkflowExecutionInput";
|
|
426
|
+
const _SWEt = "StartWorkflowExecution";
|
|
427
|
+
const _TAEF = "TypeAlreadyExistsFault";
|
|
428
|
+
const _TCEA = "TimerCanceledEventAttributes";
|
|
429
|
+
const _TDF = "TypeDeprecatedFault";
|
|
430
|
+
const _TF = "TagFilter";
|
|
431
|
+
const _TFEA = "TimerFiredEventAttributes";
|
|
432
|
+
const _TL = "TaskList";
|
|
433
|
+
const _TMTF = "TooManyTagsFault";
|
|
434
|
+
const _TNDF = "TypeNotDeprecatedFault";
|
|
435
|
+
const _TR = "TagResource";
|
|
436
|
+
const _TRI = "TagResourceInput";
|
|
437
|
+
const _TSEA = "TimerStartedEventAttributes";
|
|
438
|
+
const _TWE = "TerminateWorkflowExecution";
|
|
439
|
+
const _TWEI = "TerminateWorkflowExecutionInput";
|
|
440
|
+
const _UAT = "UndeprecateActivityType";
|
|
441
|
+
const _UATI = "UndeprecateActivityTypeInput";
|
|
442
|
+
const _UD = "UndeprecateDomain";
|
|
443
|
+
const _UDI = "UndeprecateDomainInput";
|
|
444
|
+
const _UR = "UntagResource";
|
|
445
|
+
const _URF = "UnknownResourceFault";
|
|
446
|
+
const _URI = "UntagResourceInput";
|
|
447
|
+
const _UWT = "UndeprecateWorkflowType";
|
|
448
|
+
const _UWTI = "UndeprecateWorkflowTypeInput";
|
|
449
|
+
const _WE = "WorkflowExecution";
|
|
450
|
+
const _WEASF = "WorkflowExecutionAlreadyStartedFault";
|
|
451
|
+
const _WEC = "WorkflowExecutionConfiguration";
|
|
452
|
+
const _WECANEA = "WorkflowExecutionContinuedAsNewEventAttributes";
|
|
453
|
+
const _WECEA = "WorkflowExecutionCanceledEventAttributes";
|
|
454
|
+
const _WECEAo = "WorkflowExecutionCompletedEventAttributes";
|
|
455
|
+
const _WECREA = "WorkflowExecutionCancelRequestedEventAttributes";
|
|
456
|
+
const _WECo = "WorkflowExecutionCount";
|
|
457
|
+
const _WED = "WorkflowExecutionDetail";
|
|
458
|
+
const _WEF = "WorkflowExecutionFilter";
|
|
459
|
+
const _WEFEA = "WorkflowExecutionFailedEventAttributes";
|
|
460
|
+
const _WEI = "WorkflowExecutionInfo";
|
|
461
|
+
const _WEIL = "WorkflowExecutionInfoList";
|
|
462
|
+
const _WEIo = "WorkflowExecutionInfos";
|
|
463
|
+
const _WEOC = "WorkflowExecutionOpenCounts";
|
|
464
|
+
const _WESEA = "WorkflowExecutionSignaledEventAttributes";
|
|
465
|
+
const _WESEAo = "WorkflowExecutionStartedEventAttributes";
|
|
466
|
+
const _WETEA = "WorkflowExecutionTerminatedEventAttributes";
|
|
467
|
+
const _WETOEA = "WorkflowExecutionTimedOutEventAttributes";
|
|
468
|
+
const _WT = "WorkflowType";
|
|
469
|
+
const _WTC = "WorkflowTypeConfiguration";
|
|
470
|
+
const _WTD = "WorkflowTypeDetail";
|
|
471
|
+
const _WTF = "WorkflowTypeFilter";
|
|
472
|
+
const _WTI = "WorkflowTypeInfo";
|
|
473
|
+
const _WTIL = "WorkflowTypeInfoList";
|
|
474
|
+
const _WTIo = "WorkflowTypeInfos";
|
|
475
|
+
const _a = "arn";
|
|
476
|
+
const _aI = "activityId";
|
|
477
|
+
const _aT = "activityType";
|
|
478
|
+
const _aTCEA = "activityTaskCompletedEventAttributes";
|
|
479
|
+
const _aTCEAc = "activityTaskCanceledEventAttributes";
|
|
480
|
+
const _aTCREA = "activityTaskCancelRequestedEventAttributes";
|
|
481
|
+
const _aTFEA = "activityTaskFailedEventAttributes";
|
|
482
|
+
const _aTSEA = "activityTaskScheduledEventAttributes";
|
|
483
|
+
const _aTSEAc = "activityTaskStartedEventAttributes";
|
|
484
|
+
const _aTTOEA = "activityTaskTimedOutEventAttributes";
|
|
485
|
+
const _c = "client";
|
|
486
|
+
const _cANWEDA = "continueAsNewWorkflowExecutionDecisionAttributes";
|
|
487
|
+
const _cANWEFEA = "continueAsNewWorkflowExecutionFailedEventAttributes";
|
|
488
|
+
const _cD = "creationDate";
|
|
489
|
+
const _cERI = "continuedExecutionRunId";
|
|
490
|
+
const _cP = "childPolicy";
|
|
491
|
+
const _cR = "cancelRequested";
|
|
492
|
+
const _cS = "closeStatus";
|
|
493
|
+
const _cSF = "closeStatusFilter";
|
|
494
|
+
const _cT = "closeTimestamp";
|
|
495
|
+
const _cTDA = "cancelTimerDecisionAttributes";
|
|
496
|
+
const _cTF = "closeTimeFilter";
|
|
497
|
+
const _cTFEA = "cancelTimerFailedEventAttributes";
|
|
498
|
+
const _cWECEA = "childWorkflowExecutionCompletedEventAttributes";
|
|
499
|
+
const _cWECEAh = "childWorkflowExecutionCanceledEventAttributes";
|
|
500
|
+
const _cWEDA = "completeWorkflowExecutionDecisionAttributes";
|
|
501
|
+
const _cWEDAa = "cancelWorkflowExecutionDecisionAttributes";
|
|
502
|
+
const _cWEFEA = "completeWorkflowExecutionFailedEventAttributes";
|
|
503
|
+
const _cWEFEAa = "cancelWorkflowExecutionFailedEventAttributes";
|
|
504
|
+
const _cWEFEAh = "childWorkflowExecutionFailedEventAttributes";
|
|
505
|
+
const _cWESEA = "childWorkflowExecutionStartedEventAttributes";
|
|
506
|
+
const _cWETEA = "childWorkflowExecutionTerminatedEventAttributes";
|
|
507
|
+
const _cWETOEA = "childWorkflowExecutionTimedOutEventAttributes";
|
|
508
|
+
const _ca = "cause";
|
|
509
|
+
const _co = "control";
|
|
510
|
+
const _con = "configuration";
|
|
511
|
+
const _cou = "count";
|
|
512
|
+
const _d = "details";
|
|
513
|
+
const _dCP = "defaultChildPolicy";
|
|
514
|
+
const _dD = "deprecationDate";
|
|
515
|
+
const _dESTCT = "defaultExecutionStartToCloseTimeout";
|
|
516
|
+
const _dI = "domainInfo";
|
|
517
|
+
const _dIo = "domainInfos";
|
|
518
|
+
const _dLR = "defaultLambdaRole";
|
|
519
|
+
const _dT = "decisionType";
|
|
520
|
+
const _dTCEA = "decisionTaskCompletedEventAttributes";
|
|
521
|
+
const _dTCEI = "decisionTaskCompletedEventId";
|
|
522
|
+
const _dTHT = "defaultTaskHeartbeatTimeout";
|
|
523
|
+
const _dTL = "defaultTaskList";
|
|
524
|
+
const _dTP = "defaultTaskPriority";
|
|
525
|
+
const _dTSEA = "decisionTaskScheduledEventAttributes";
|
|
526
|
+
const _dTSEAe = "decisionTaskStartedEventAttributes";
|
|
527
|
+
const _dTSTCT = "defaultTaskStartToCloseTimeout";
|
|
528
|
+
const _dTSTCTe = "defaultTaskScheduleToCloseTimeout";
|
|
529
|
+
const _dTSTST = "defaultTaskScheduleToStartTimeout";
|
|
530
|
+
const _dTTOEA = "decisionTaskTimedOutEventAttributes";
|
|
531
|
+
const _de = "description";
|
|
532
|
+
const _dec = "decisions";
|
|
533
|
+
const _do = "domain";
|
|
534
|
+
const _e = "error";
|
|
535
|
+
const _eC = "executionContext";
|
|
536
|
+
const _eCx = "executionConfiguration";
|
|
537
|
+
const _eF = "executionFilter";
|
|
538
|
+
const _eI = "eventId";
|
|
539
|
+
const _eIEI = "externalInitiatedEventId";
|
|
540
|
+
const _eIx = "executionInfo";
|
|
541
|
+
const _eIxe = "executionInfos";
|
|
542
|
+
const _eS = "executionStatus";
|
|
543
|
+
const _eSTCT = "executionStartToCloseTimeout";
|
|
544
|
+
const _eT = "eventTimestamp";
|
|
545
|
+
const _eTv = "eventType";
|
|
546
|
+
const _eWE = "externalWorkflowExecution";
|
|
547
|
+
const _eWECREA = "externalWorkflowExecutionCancelRequestedEventAttributes";
|
|
548
|
+
const _eWESEA = "externalWorkflowExecutionSignaledEventAttributes";
|
|
549
|
+
const _ev = "events";
|
|
550
|
+
const _ex = "execution";
|
|
551
|
+
const _fWEDA = "failWorkflowExecutionDecisionAttributes";
|
|
552
|
+
const _fWEFEA = "failWorkflowExecutionFailedEventAttributes";
|
|
553
|
+
const _hE = "httpError";
|
|
554
|
+
const _hT = "heartbeatTimeout";
|
|
555
|
+
const _i = "input";
|
|
556
|
+
const _iEI = "initiatedEventId";
|
|
557
|
+
const _id = "identity";
|
|
558
|
+
const _id_ = "id";
|
|
559
|
+
const _k = "key";
|
|
560
|
+
const _lATT = "latestActivityTaskTimestamp";
|
|
561
|
+
const _lCREI = "latestCancelRequestedEventId";
|
|
562
|
+
const _lD = "latestDate";
|
|
563
|
+
const _lEC = "latestExecutionContext";
|
|
564
|
+
const _lFCEA = "lambdaFunctionCompletedEventAttributes";
|
|
565
|
+
const _lFFEA = "lambdaFunctionFailedEventAttributes";
|
|
566
|
+
const _lFSEA = "lambdaFunctionScheduledEventAttributes";
|
|
567
|
+
const _lFSEAa = "lambdaFunctionStartedEventAttributes";
|
|
568
|
+
const _lFTOEA = "lambdaFunctionTimedOutEventAttributes";
|
|
569
|
+
const _lR = "lambdaRole";
|
|
570
|
+
const _m = "message";
|
|
571
|
+
const _mN = "markerName";
|
|
572
|
+
const _mPS = "maximumPageSize";
|
|
573
|
+
const _mREA = "markerRecordedEventAttributes";
|
|
574
|
+
const _n = "name";
|
|
575
|
+
const _nERI = "newExecutionRunId";
|
|
576
|
+
const _nPT = "nextPageToken";
|
|
577
|
+
const _oAT = "openActivityTasks";
|
|
578
|
+
const _oC = "openCounts";
|
|
579
|
+
const _oCWE = "openChildWorkflowExecutions";
|
|
580
|
+
const _oD = "oldestDate";
|
|
581
|
+
const _oDT = "openDecisionTasks";
|
|
582
|
+
const _oLF = "openLambdaFunctions";
|
|
583
|
+
const _oT = "openTimers";
|
|
584
|
+
const _p = "parent";
|
|
585
|
+
const _pIEI = "parentInitiatedEventId";
|
|
586
|
+
const _pSEI = "previousStartedEventId";
|
|
587
|
+
const _pWE = "parentWorkflowExecution";
|
|
588
|
+
const _r = "result";
|
|
589
|
+
const _rA = "resourceArn";
|
|
590
|
+
const _rCATDA = "requestCancelActivityTaskDecisionAttributes";
|
|
591
|
+
const _rCATFEA = "requestCancelActivityTaskFailedEventAttributes";
|
|
592
|
+
const _rCEWEDA = "requestCancelExternalWorkflowExecutionDecisionAttributes";
|
|
593
|
+
const _rCEWEFEA = "requestCancelExternalWorkflowExecutionFailedEventAttributes";
|
|
594
|
+
const _rCEWEIEA = "requestCancelExternalWorkflowExecutionInitiatedEventAttributes";
|
|
595
|
+
const _rI = "runId";
|
|
596
|
+
const _rMDA = "recordMarkerDecisionAttributes";
|
|
597
|
+
const _rMFEA = "recordMarkerFailedEventAttributes";
|
|
598
|
+
const _rO = "reverseOrder";
|
|
599
|
+
const _rS = "registrationStatus";
|
|
600
|
+
const _re = "reason";
|
|
601
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.swf";
|
|
602
|
+
const _sAPSE = "startAtPreviousStartedEvent";
|
|
603
|
+
const _sATDA = "scheduleActivityTaskDecisionAttributes";
|
|
604
|
+
const _sATFEA = "scheduleActivityTaskFailedEventAttributes";
|
|
605
|
+
const _sCWEDA = "startChildWorkflowExecutionDecisionAttributes";
|
|
606
|
+
const _sCWEFEA = "startChildWorkflowExecutionFailedEventAttributes";
|
|
607
|
+
const _sCWEIEA = "startChildWorkflowExecutionInitiatedEventAttributes";
|
|
608
|
+
const _sEI = "startedEventId";
|
|
609
|
+
const _sEIc = "scheduledEventId";
|
|
610
|
+
const _sEWEDA = "signalExternalWorkflowExecutionDecisionAttributes";
|
|
611
|
+
const _sEWEFEA = "signalExternalWorkflowExecutionFailedEventAttributes";
|
|
612
|
+
const _sEWEIEA = "signalExternalWorkflowExecutionInitiatedEventAttributes";
|
|
613
|
+
const _sLFDA = "scheduleLambdaFunctionDecisionAttributes";
|
|
614
|
+
const _sLFFEA = "scheduleLambdaFunctionFailedEventAttributes";
|
|
615
|
+
const _sLFFEAt = "startLambdaFunctionFailedEventAttributes";
|
|
616
|
+
const _sN = "signalName";
|
|
617
|
+
const _sT = "startTimestamp";
|
|
618
|
+
const _sTCT = "scheduleToCloseTimeout";
|
|
619
|
+
const _sTCTt = "startToCloseTimeout";
|
|
620
|
+
const _sTDA = "startTimerDecisionAttributes";
|
|
621
|
+
const _sTF = "startTimeFilter";
|
|
622
|
+
const _sTFEA = "startTimerFailedEventAttributes";
|
|
623
|
+
const _sTFT = "startToFireTimeout";
|
|
624
|
+
const _sTST = "scheduleToStartTimeout";
|
|
625
|
+
const _st = "status";
|
|
626
|
+
const _t = "tags";
|
|
627
|
+
const _tCEA = "timerCanceledEventAttributes";
|
|
628
|
+
const _tF = "typeFilter";
|
|
629
|
+
const _tFEA = "timerFiredEventAttributes";
|
|
630
|
+
const _tFa = "tagFilter";
|
|
631
|
+
const _tI = "typeInfo";
|
|
632
|
+
const _tIi = "timerId";
|
|
633
|
+
const _tIy = "typeInfos";
|
|
634
|
+
const _tK = "tagKeys";
|
|
635
|
+
const _tL = "taskList";
|
|
636
|
+
const _tLSTST = "taskListScheduleToStartTimeout";
|
|
637
|
+
const _tLa = "tagList";
|
|
638
|
+
const _tP = "taskPriority";
|
|
639
|
+
const _tSEA = "timerStartedEventAttributes";
|
|
640
|
+
const _tSTCT = "taskStartToCloseTimeout";
|
|
641
|
+
const _tT = "taskToken";
|
|
642
|
+
const _tTi = "timeoutType";
|
|
643
|
+
const _ta = "tag";
|
|
644
|
+
const _tr = "truncated";
|
|
645
|
+
const _v = "version";
|
|
646
|
+
const _va = "value";
|
|
647
|
+
const _wE = "workflowExecution";
|
|
648
|
+
const _wECANEA = "workflowExecutionContinuedAsNewEventAttributes";
|
|
649
|
+
const _wECEA = "workflowExecutionCompletedEventAttributes";
|
|
650
|
+
const _wECEAo = "workflowExecutionCanceledEventAttributes";
|
|
651
|
+
const _wECREA = "workflowExecutionCancelRequestedEventAttributes";
|
|
652
|
+
const _wEFEA = "workflowExecutionFailedEventAttributes";
|
|
653
|
+
const _wERPID = "workflowExecutionRetentionPeriodInDays";
|
|
654
|
+
const _wESEA = "workflowExecutionStartedEventAttributes";
|
|
655
|
+
const _wESEAo = "workflowExecutionSignaledEventAttributes";
|
|
656
|
+
const _wETEA = "workflowExecutionTerminatedEventAttributes";
|
|
657
|
+
const _wETOEA = "workflowExecutionTimedOutEventAttributes";
|
|
658
|
+
const _wI = "workflowId";
|
|
659
|
+
const _wT = "workflowType";
|
|
660
|
+
const _wTV = "workflowTypeVersion";
|
|
661
|
+
const n0 = "com.amazonaws.swf";
|
|
662
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
663
|
+
var SWFServiceException$ = [-3, _s, "SWFServiceException", 0, [], []];
|
|
664
|
+
_s_registry.registerError(SWFServiceException$, SWFServiceException);
|
|
665
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
666
|
+
var DefaultUndefinedFault$ = [-3, n0, _DUF,
|
|
667
|
+
{ [_e]: _c },
|
|
668
|
+
[_m],
|
|
669
|
+
[0]
|
|
670
|
+
];
|
|
671
|
+
n0_registry.registerError(DefaultUndefinedFault$, DefaultUndefinedFault);
|
|
672
|
+
var DomainAlreadyExistsFault$ = [-3, n0, _DAEF,
|
|
673
|
+
{ [_e]: _c },
|
|
674
|
+
[_m],
|
|
675
|
+
[0]
|
|
676
|
+
];
|
|
677
|
+
n0_registry.registerError(DomainAlreadyExistsFault$, DomainAlreadyExistsFault);
|
|
678
|
+
var DomainDeprecatedFault$ = [-3, n0, _DDF,
|
|
679
|
+
{ [_e]: _c },
|
|
680
|
+
[_m],
|
|
681
|
+
[0]
|
|
682
|
+
];
|
|
683
|
+
n0_registry.registerError(DomainDeprecatedFault$, DomainDeprecatedFault);
|
|
684
|
+
var LimitExceededFault$ = [-3, n0, _LEF,
|
|
685
|
+
{ [_e]: _c },
|
|
686
|
+
[_m],
|
|
687
|
+
[0]
|
|
688
|
+
];
|
|
689
|
+
n0_registry.registerError(LimitExceededFault$, LimitExceededFault);
|
|
690
|
+
var OperationNotPermittedFault$ = [-3, n0, _ONPF,
|
|
691
|
+
{ [_e]: _c },
|
|
692
|
+
[_m],
|
|
693
|
+
[0]
|
|
694
|
+
];
|
|
695
|
+
n0_registry.registerError(OperationNotPermittedFault$, OperationNotPermittedFault);
|
|
696
|
+
var TooManyTagsFault$ = [-3, n0, _TMTF,
|
|
697
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
698
|
+
[_m],
|
|
699
|
+
[0]
|
|
700
|
+
];
|
|
701
|
+
n0_registry.registerError(TooManyTagsFault$, TooManyTagsFault);
|
|
702
|
+
var TypeAlreadyExistsFault$ = [-3, n0, _TAEF,
|
|
703
|
+
{ [_e]: _c },
|
|
704
|
+
[_m],
|
|
705
|
+
[0]
|
|
706
|
+
];
|
|
707
|
+
n0_registry.registerError(TypeAlreadyExistsFault$, TypeAlreadyExistsFault);
|
|
708
|
+
var TypeDeprecatedFault$ = [-3, n0, _TDF,
|
|
709
|
+
{ [_e]: _c },
|
|
710
|
+
[_m],
|
|
711
|
+
[0]
|
|
712
|
+
];
|
|
713
|
+
n0_registry.registerError(TypeDeprecatedFault$, TypeDeprecatedFault);
|
|
714
|
+
var TypeNotDeprecatedFault$ = [-3, n0, _TNDF,
|
|
715
|
+
{ [_e]: _c },
|
|
716
|
+
[_m],
|
|
717
|
+
[0]
|
|
718
|
+
];
|
|
719
|
+
n0_registry.registerError(TypeNotDeprecatedFault$, TypeNotDeprecatedFault);
|
|
720
|
+
var UnknownResourceFault$ = [-3, n0, _URF,
|
|
721
|
+
{ [_e]: _c },
|
|
722
|
+
[_m],
|
|
723
|
+
[0]
|
|
724
|
+
];
|
|
725
|
+
n0_registry.registerError(UnknownResourceFault$, UnknownResourceFault);
|
|
726
|
+
var WorkflowExecutionAlreadyStartedFault$ = [-3, n0, _WEASF,
|
|
727
|
+
{ [_e]: _c },
|
|
728
|
+
[_m],
|
|
729
|
+
[0]
|
|
730
|
+
];
|
|
731
|
+
n0_registry.registerError(WorkflowExecutionAlreadyStartedFault$, WorkflowExecutionAlreadyStartedFault);
|
|
732
|
+
const errorTypeRegistries = [
|
|
733
|
+
_s_registry,
|
|
734
|
+
n0_registry,
|
|
735
|
+
];
|
|
736
|
+
var ActivityTask$ = [3, n0, _AT,
|
|
737
|
+
0,
|
|
738
|
+
[_tT, _aI, _sEI, _wE, _aT, _i],
|
|
739
|
+
[0, 0, 1, () => WorkflowExecution$, () => ActivityType$, 0], 5
|
|
740
|
+
];
|
|
741
|
+
var ActivityTaskCanceledEventAttributes$ = [3, n0, _ATCEA,
|
|
742
|
+
0,
|
|
743
|
+
[_sEIc, _sEI, _d, _lCREI],
|
|
744
|
+
[1, 1, 0, 1], 2
|
|
745
|
+
];
|
|
746
|
+
var ActivityTaskCancelRequestedEventAttributes$ = [3, n0, _ATCREA,
|
|
747
|
+
0,
|
|
748
|
+
[_dTCEI, _aI],
|
|
749
|
+
[1, 0], 2
|
|
750
|
+
];
|
|
751
|
+
var ActivityTaskCompletedEventAttributes$ = [3, n0, _ATCEAc,
|
|
752
|
+
0,
|
|
753
|
+
[_sEIc, _sEI, _r],
|
|
754
|
+
[1, 1, 0], 2
|
|
755
|
+
];
|
|
756
|
+
var ActivityTaskFailedEventAttributes$ = [3, n0, _ATFEA,
|
|
757
|
+
0,
|
|
758
|
+
[_sEIc, _sEI, _re, _d],
|
|
759
|
+
[1, 1, 0, 0], 2
|
|
760
|
+
];
|
|
761
|
+
var ActivityTaskScheduledEventAttributes$ = [3, n0, _ATSEA,
|
|
762
|
+
0,
|
|
763
|
+
[_aT, _aI, _tL, _dTCEI, _i, _co, _sTST, _sTCT, _sTCTt, _tP, _hT],
|
|
764
|
+
[() => ActivityType$, 0, () => TaskList$, 1, 0, 0, 0, 0, 0, 0, 0], 4
|
|
765
|
+
];
|
|
766
|
+
var ActivityTaskStartedEventAttributes$ = [3, n0, _ATSEAc,
|
|
767
|
+
0,
|
|
768
|
+
[_sEIc, _id],
|
|
769
|
+
[1, 0], 1
|
|
770
|
+
];
|
|
771
|
+
var ActivityTaskStatus$ = [3, n0, _ATS,
|
|
772
|
+
0,
|
|
773
|
+
[_cR],
|
|
774
|
+
[2], 1
|
|
775
|
+
];
|
|
776
|
+
var ActivityTaskTimedOutEventAttributes$ = [3, n0, _ATTOEA,
|
|
777
|
+
0,
|
|
778
|
+
[_tTi, _sEIc, _sEI, _d],
|
|
779
|
+
[0, 1, 1, 0], 3
|
|
780
|
+
];
|
|
781
|
+
var ActivityType$ = [3, n0, _ATc,
|
|
782
|
+
0,
|
|
783
|
+
[_n, _v],
|
|
784
|
+
[0, 0], 2
|
|
785
|
+
];
|
|
786
|
+
var ActivityTypeConfiguration$ = [3, n0, _ATC,
|
|
787
|
+
0,
|
|
788
|
+
[_dTSTCT, _dTHT, _dTL, _dTP, _dTSTST, _dTSTCTe],
|
|
789
|
+
[0, 0, () => TaskList$, 0, 0, 0]
|
|
790
|
+
];
|
|
791
|
+
var ActivityTypeDetail$ = [3, n0, _ATD,
|
|
792
|
+
0,
|
|
793
|
+
[_tI, _con],
|
|
794
|
+
[() => ActivityTypeInfo$, () => ActivityTypeConfiguration$], 2
|
|
795
|
+
];
|
|
796
|
+
var ActivityTypeInfo$ = [3, n0, _ATI,
|
|
797
|
+
0,
|
|
798
|
+
[_aT, _st, _cD, _de, _dD],
|
|
799
|
+
[() => ActivityType$, 0, 4, 0, 4], 3
|
|
800
|
+
];
|
|
801
|
+
var ActivityTypeInfos$ = [3, n0, _ATIc,
|
|
802
|
+
0,
|
|
803
|
+
[_tIy, _nPT],
|
|
804
|
+
[() => ActivityTypeInfoList, 0], 1
|
|
805
|
+
];
|
|
806
|
+
var CancelTimerDecisionAttributes$ = [3, n0, _CTDA,
|
|
807
|
+
0,
|
|
808
|
+
[_tIi],
|
|
809
|
+
[0], 1
|
|
810
|
+
];
|
|
811
|
+
var CancelTimerFailedEventAttributes$ = [3, n0, _CTFEA,
|
|
812
|
+
0,
|
|
813
|
+
[_tIi, _ca, _dTCEI],
|
|
814
|
+
[0, 0, 1], 3
|
|
815
|
+
];
|
|
816
|
+
var CancelWorkflowExecutionDecisionAttributes$ = [3, n0, _CWEDA,
|
|
817
|
+
0,
|
|
818
|
+
[_d],
|
|
819
|
+
[0]
|
|
820
|
+
];
|
|
821
|
+
var CancelWorkflowExecutionFailedEventAttributes$ = [3, n0, _CWEFEA,
|
|
822
|
+
0,
|
|
823
|
+
[_ca, _dTCEI],
|
|
824
|
+
[0, 1], 2
|
|
825
|
+
];
|
|
826
|
+
var ChildWorkflowExecutionCanceledEventAttributes$ = [3, n0, _CWECEA,
|
|
827
|
+
0,
|
|
828
|
+
[_wE, _wT, _iEI, _sEI, _d],
|
|
829
|
+
[() => WorkflowExecution$, () => WorkflowType$, 1, 1, 0], 4
|
|
830
|
+
];
|
|
831
|
+
var ChildWorkflowExecutionCompletedEventAttributes$ = [3, n0, _CWECEAh,
|
|
832
|
+
0,
|
|
833
|
+
[_wE, _wT, _iEI, _sEI, _r],
|
|
834
|
+
[() => WorkflowExecution$, () => WorkflowType$, 1, 1, 0], 4
|
|
835
|
+
];
|
|
836
|
+
var ChildWorkflowExecutionFailedEventAttributes$ = [3, n0, _CWEFEAh,
|
|
837
|
+
0,
|
|
838
|
+
[_wE, _wT, _iEI, _sEI, _re, _d],
|
|
839
|
+
[() => WorkflowExecution$, () => WorkflowType$, 1, 1, 0, 0], 4
|
|
840
|
+
];
|
|
841
|
+
var ChildWorkflowExecutionStartedEventAttributes$ = [3, n0, _CWESEA,
|
|
842
|
+
0,
|
|
843
|
+
[_wE, _wT, _iEI],
|
|
844
|
+
[() => WorkflowExecution$, () => WorkflowType$, 1], 3
|
|
845
|
+
];
|
|
846
|
+
var ChildWorkflowExecutionTerminatedEventAttributes$ = [3, n0, _CWETEA,
|
|
847
|
+
0,
|
|
848
|
+
[_wE, _wT, _iEI, _sEI],
|
|
849
|
+
[() => WorkflowExecution$, () => WorkflowType$, 1, 1], 4
|
|
850
|
+
];
|
|
851
|
+
var ChildWorkflowExecutionTimedOutEventAttributes$ = [3, n0, _CWETOEA,
|
|
852
|
+
0,
|
|
853
|
+
[_wE, _wT, _tTi, _iEI, _sEI],
|
|
854
|
+
[() => WorkflowExecution$, () => WorkflowType$, 0, 1, 1], 5
|
|
855
|
+
];
|
|
856
|
+
var CloseStatusFilter$ = [3, n0, _CSF,
|
|
857
|
+
0,
|
|
858
|
+
[_st],
|
|
859
|
+
[0], 1
|
|
860
|
+
];
|
|
861
|
+
var CompleteWorkflowExecutionDecisionAttributes$ = [3, n0, _CWEDAo,
|
|
862
|
+
0,
|
|
863
|
+
[_r],
|
|
864
|
+
[0]
|
|
865
|
+
];
|
|
866
|
+
var CompleteWorkflowExecutionFailedEventAttributes$ = [3, n0, _CWEFEAo,
|
|
867
|
+
0,
|
|
868
|
+
[_ca, _dTCEI],
|
|
869
|
+
[0, 1], 2
|
|
870
|
+
];
|
|
871
|
+
var ContinueAsNewWorkflowExecutionDecisionAttributes$ = [3, n0, _CANWEDA,
|
|
872
|
+
0,
|
|
873
|
+
[_i, _eSTCT, _tL, _tP, _tSTCT, _cP, _tLa, _wTV, _lR],
|
|
874
|
+
[0, 0, () => TaskList$, 0, 0, 0, 64 | 0, 0, 0]
|
|
875
|
+
];
|
|
876
|
+
var ContinueAsNewWorkflowExecutionFailedEventAttributes$ = [3, n0, _CANWEFEA,
|
|
877
|
+
0,
|
|
878
|
+
[_ca, _dTCEI],
|
|
879
|
+
[0, 1], 2
|
|
880
|
+
];
|
|
881
|
+
var CountClosedWorkflowExecutionsInput$ = [3, n0, _CCWEI,
|
|
882
|
+
0,
|
|
883
|
+
[_do, _sTF, _cTF, _eF, _tF, _tFa, _cSF],
|
|
884
|
+
[0, () => ExecutionTimeFilter$, () => ExecutionTimeFilter$, () => WorkflowExecutionFilter$, () => WorkflowTypeFilter$, () => TagFilter$, () => CloseStatusFilter$], 1
|
|
885
|
+
];
|
|
886
|
+
var CountOpenWorkflowExecutionsInput$ = [3, n0, _COWEI,
|
|
887
|
+
0,
|
|
888
|
+
[_do, _sTF, _tF, _tFa, _eF],
|
|
889
|
+
[0, () => ExecutionTimeFilter$, () => WorkflowTypeFilter$, () => TagFilter$, () => WorkflowExecutionFilter$], 2
|
|
890
|
+
];
|
|
891
|
+
var CountPendingActivityTasksInput$ = [3, n0, _CPATI,
|
|
892
|
+
0,
|
|
893
|
+
[_do, _tL],
|
|
894
|
+
[0, () => TaskList$], 2
|
|
895
|
+
];
|
|
896
|
+
var CountPendingDecisionTasksInput$ = [3, n0, _CPDTI,
|
|
897
|
+
0,
|
|
898
|
+
[_do, _tL],
|
|
899
|
+
[0, () => TaskList$], 2
|
|
900
|
+
];
|
|
901
|
+
var Decision$ = [3, n0, _D,
|
|
902
|
+
0,
|
|
903
|
+
[_dT, _sATDA, _rCATDA, _cWEDA, _fWEDA, _cWEDAa, _cANWEDA, _rMDA, _sTDA, _cTDA, _sEWEDA, _rCEWEDA, _sCWEDA, _sLFDA],
|
|
904
|
+
[0, () => ScheduleActivityTaskDecisionAttributes$, () => RequestCancelActivityTaskDecisionAttributes$, () => CompleteWorkflowExecutionDecisionAttributes$, () => FailWorkflowExecutionDecisionAttributes$, () => CancelWorkflowExecutionDecisionAttributes$, () => ContinueAsNewWorkflowExecutionDecisionAttributes$, () => RecordMarkerDecisionAttributes$, () => StartTimerDecisionAttributes$, () => CancelTimerDecisionAttributes$, () => SignalExternalWorkflowExecutionDecisionAttributes$, () => RequestCancelExternalWorkflowExecutionDecisionAttributes$, () => StartChildWorkflowExecutionDecisionAttributes$, () => ScheduleLambdaFunctionDecisionAttributes$], 1
|
|
905
|
+
];
|
|
906
|
+
var DecisionTask$ = [3, n0, _DT,
|
|
907
|
+
0,
|
|
908
|
+
[_tT, _sEI, _wE, _wT, _ev, _nPT, _pSEI],
|
|
909
|
+
[0, 1, () => WorkflowExecution$, () => WorkflowType$, () => HistoryEventList, 0, 1], 5
|
|
910
|
+
];
|
|
911
|
+
var DecisionTaskCompletedEventAttributes$ = [3, n0, _DTCEA,
|
|
912
|
+
0,
|
|
913
|
+
[_sEIc, _sEI, _eC, _tL, _tLSTST],
|
|
914
|
+
[1, 1, 0, () => TaskList$, 0], 2
|
|
915
|
+
];
|
|
916
|
+
var DecisionTaskScheduledEventAttributes$ = [3, n0, _DTSEA,
|
|
917
|
+
0,
|
|
918
|
+
[_tL, _tP, _sTCTt, _sTST],
|
|
919
|
+
[() => TaskList$, 0, 0, 0], 1
|
|
920
|
+
];
|
|
921
|
+
var DecisionTaskStartedEventAttributes$ = [3, n0, _DTSEAe,
|
|
922
|
+
0,
|
|
923
|
+
[_sEIc, _id],
|
|
924
|
+
[1, 0], 1
|
|
925
|
+
];
|
|
926
|
+
var DecisionTaskTimedOutEventAttributes$ = [3, n0, _DTTOEA,
|
|
927
|
+
0,
|
|
928
|
+
[_tTi, _sEIc, _sEI],
|
|
929
|
+
[0, 1, 1], 3
|
|
930
|
+
];
|
|
931
|
+
var DeleteActivityTypeInput$ = [3, n0, _DATI,
|
|
932
|
+
0,
|
|
933
|
+
[_do, _aT],
|
|
934
|
+
[0, () => ActivityType$], 2
|
|
935
|
+
];
|
|
936
|
+
var DeleteWorkflowTypeInput$ = [3, n0, _DWTI,
|
|
937
|
+
0,
|
|
938
|
+
[_do, _wT],
|
|
939
|
+
[0, () => WorkflowType$], 2
|
|
940
|
+
];
|
|
941
|
+
var DeprecateActivityTypeInput$ = [3, n0, _DATIe,
|
|
942
|
+
0,
|
|
943
|
+
[_do, _aT],
|
|
944
|
+
[0, () => ActivityType$], 2
|
|
945
|
+
];
|
|
946
|
+
var DeprecateDomainInput$ = [3, n0, _DDI,
|
|
947
|
+
0,
|
|
948
|
+
[_n],
|
|
949
|
+
[0], 1
|
|
950
|
+
];
|
|
951
|
+
var DeprecateWorkflowTypeInput$ = [3, n0, _DWTIe,
|
|
952
|
+
0,
|
|
953
|
+
[_do, _wT],
|
|
954
|
+
[0, () => WorkflowType$], 2
|
|
955
|
+
];
|
|
956
|
+
var DescribeActivityTypeInput$ = [3, n0, _DATIes,
|
|
957
|
+
0,
|
|
958
|
+
[_do, _aT],
|
|
959
|
+
[0, () => ActivityType$], 2
|
|
960
|
+
];
|
|
961
|
+
var DescribeDomainInput$ = [3, n0, _DDIe,
|
|
962
|
+
0,
|
|
963
|
+
[_n],
|
|
964
|
+
[0], 1
|
|
965
|
+
];
|
|
966
|
+
var DescribeWorkflowExecutionInput$ = [3, n0, _DWEI,
|
|
967
|
+
0,
|
|
968
|
+
[_do, _ex],
|
|
969
|
+
[0, () => WorkflowExecution$], 2
|
|
970
|
+
];
|
|
971
|
+
var DescribeWorkflowTypeInput$ = [3, n0, _DWTIes,
|
|
972
|
+
0,
|
|
973
|
+
[_do, _wT],
|
|
974
|
+
[0, () => WorkflowType$], 2
|
|
975
|
+
];
|
|
976
|
+
var DomainConfiguration$ = [3, n0, _DC,
|
|
977
|
+
0,
|
|
978
|
+
[_wERPID],
|
|
979
|
+
[0], 1
|
|
980
|
+
];
|
|
981
|
+
var DomainDetail$ = [3, n0, _DD,
|
|
982
|
+
0,
|
|
983
|
+
[_dI, _con],
|
|
984
|
+
[() => DomainInfo$, () => DomainConfiguration$], 2
|
|
985
|
+
];
|
|
986
|
+
var DomainInfo$ = [3, n0, _DI,
|
|
987
|
+
0,
|
|
988
|
+
[_n, _st, _de, _a],
|
|
989
|
+
[0, 0, 0, 0], 2
|
|
990
|
+
];
|
|
991
|
+
var DomainInfos$ = [3, n0, _DIo,
|
|
992
|
+
0,
|
|
993
|
+
[_dIo, _nPT],
|
|
994
|
+
[() => DomainInfoList, 0], 1
|
|
995
|
+
];
|
|
996
|
+
var ExecutionTimeFilter$ = [3, n0, _ETF,
|
|
997
|
+
0,
|
|
998
|
+
[_oD, _lD],
|
|
999
|
+
[4, 4], 1
|
|
1000
|
+
];
|
|
1001
|
+
var ExternalWorkflowExecutionCancelRequestedEventAttributes$ = [3, n0, _EWECREA,
|
|
1002
|
+
0,
|
|
1003
|
+
[_wE, _iEI],
|
|
1004
|
+
[() => WorkflowExecution$, 1], 2
|
|
1005
|
+
];
|
|
1006
|
+
var ExternalWorkflowExecutionSignaledEventAttributes$ = [3, n0, _EWESEA,
|
|
1007
|
+
0,
|
|
1008
|
+
[_wE, _iEI],
|
|
1009
|
+
[() => WorkflowExecution$, 1], 2
|
|
1010
|
+
];
|
|
1011
|
+
var FailWorkflowExecutionDecisionAttributes$ = [3, n0, _FWEDA,
|
|
1012
|
+
0,
|
|
1013
|
+
[_re, _d],
|
|
1014
|
+
[0, 0]
|
|
1015
|
+
];
|
|
1016
|
+
var FailWorkflowExecutionFailedEventAttributes$ = [3, n0, _FWEFEA,
|
|
1017
|
+
0,
|
|
1018
|
+
[_ca, _dTCEI],
|
|
1019
|
+
[0, 1], 2
|
|
1020
|
+
];
|
|
1021
|
+
var GetWorkflowExecutionHistoryInput$ = [3, n0, _GWEHI,
|
|
1022
|
+
0,
|
|
1023
|
+
[_do, _ex, _nPT, _mPS, _rO],
|
|
1024
|
+
[0, () => WorkflowExecution$, 0, 1, 2], 2
|
|
1025
|
+
];
|
|
1026
|
+
var History$ = [3, n0, _H,
|
|
1027
|
+
0,
|
|
1028
|
+
[_ev, _nPT],
|
|
1029
|
+
[() => HistoryEventList, 0], 1
|
|
1030
|
+
];
|
|
1031
|
+
var HistoryEvent$ = [3, n0, _HE,
|
|
1032
|
+
0,
|
|
1033
|
+
[_eT, _eTv, _eI, _wESEA, _wECEA, _cWEFEA, _wEFEA, _fWEFEA, _wETOEA, _wECEAo, _cWEFEAa, _wECANEA, _cANWEFEA, _wETEA, _wECREA, _dTSEA, _dTSEAe, _dTCEA, _dTTOEA, _aTSEA, _aTSEAc, _aTCEA, _aTFEA, _aTTOEA, _aTCEAc, _aTCREA, _wESEAo, _mREA, _rMFEA, _tSEA, _tFEA, _tCEA, _sCWEIEA, _cWESEA, _cWECEA, _cWEFEAh, _cWETOEA, _cWECEAh, _cWETEA, _sEWEIEA, _eWESEA, _sEWEFEA, _eWECREA, _rCEWEIEA, _rCEWEFEA, _sATFEA, _rCATFEA, _sTFEA, _cTFEA, _sCWEFEA, _lFSEA, _lFSEAa, _lFCEA, _lFFEA, _lFTOEA, _sLFFEA, _sLFFEAt],
|
|
1034
|
+
[4, 0, 1, () => WorkflowExecutionStartedEventAttributes$, () => WorkflowExecutionCompletedEventAttributes$, () => CompleteWorkflowExecutionFailedEventAttributes$, () => WorkflowExecutionFailedEventAttributes$, () => FailWorkflowExecutionFailedEventAttributes$, () => WorkflowExecutionTimedOutEventAttributes$, () => WorkflowExecutionCanceledEventAttributes$, () => CancelWorkflowExecutionFailedEventAttributes$, () => WorkflowExecutionContinuedAsNewEventAttributes$, () => ContinueAsNewWorkflowExecutionFailedEventAttributes$, () => WorkflowExecutionTerminatedEventAttributes$, () => WorkflowExecutionCancelRequestedEventAttributes$, () => DecisionTaskScheduledEventAttributes$, () => DecisionTaskStartedEventAttributes$, () => DecisionTaskCompletedEventAttributes$, () => DecisionTaskTimedOutEventAttributes$, () => ActivityTaskScheduledEventAttributes$, () => ActivityTaskStartedEventAttributes$, () => ActivityTaskCompletedEventAttributes$, () => ActivityTaskFailedEventAttributes$, () => ActivityTaskTimedOutEventAttributes$, () => ActivityTaskCanceledEventAttributes$, () => ActivityTaskCancelRequestedEventAttributes$, () => WorkflowExecutionSignaledEventAttributes$, () => MarkerRecordedEventAttributes$, () => RecordMarkerFailedEventAttributes$, () => TimerStartedEventAttributes$, () => TimerFiredEventAttributes$, () => TimerCanceledEventAttributes$, () => StartChildWorkflowExecutionInitiatedEventAttributes$, () => ChildWorkflowExecutionStartedEventAttributes$, () => ChildWorkflowExecutionCompletedEventAttributes$, () => ChildWorkflowExecutionFailedEventAttributes$, () => ChildWorkflowExecutionTimedOutEventAttributes$, () => ChildWorkflowExecutionCanceledEventAttributes$, () => ChildWorkflowExecutionTerminatedEventAttributes$, () => SignalExternalWorkflowExecutionInitiatedEventAttributes$, () => ExternalWorkflowExecutionSignaledEventAttributes$, () => SignalExternalWorkflowExecutionFailedEventAttributes$, () => ExternalWorkflowExecutionCancelRequestedEventAttributes$, () => RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$, () => RequestCancelExternalWorkflowExecutionFailedEventAttributes$, () => ScheduleActivityTaskFailedEventAttributes$, () => RequestCancelActivityTaskFailedEventAttributes$, () => StartTimerFailedEventAttributes$, () => CancelTimerFailedEventAttributes$, () => StartChildWorkflowExecutionFailedEventAttributes$, () => LambdaFunctionScheduledEventAttributes$, () => LambdaFunctionStartedEventAttributes$, () => LambdaFunctionCompletedEventAttributes$, () => LambdaFunctionFailedEventAttributes$, () => LambdaFunctionTimedOutEventAttributes$, () => ScheduleLambdaFunctionFailedEventAttributes$, () => StartLambdaFunctionFailedEventAttributes$], 3
|
|
1035
|
+
];
|
|
1036
|
+
var LambdaFunctionCompletedEventAttributes$ = [3, n0, _LFCEA,
|
|
1037
|
+
0,
|
|
1038
|
+
[_sEIc, _sEI, _r],
|
|
1039
|
+
[1, 1, 0], 2
|
|
1040
|
+
];
|
|
1041
|
+
var LambdaFunctionFailedEventAttributes$ = [3, n0, _LFFEA,
|
|
1042
|
+
0,
|
|
1043
|
+
[_sEIc, _sEI, _re, _d],
|
|
1044
|
+
[1, 1, 0, 0], 2
|
|
1045
|
+
];
|
|
1046
|
+
var LambdaFunctionScheduledEventAttributes$ = [3, n0, _LFSEA,
|
|
1047
|
+
0,
|
|
1048
|
+
[_id_, _n, _dTCEI, _co, _i, _sTCTt],
|
|
1049
|
+
[0, 0, 1, 0, 0, 0], 3
|
|
1050
|
+
];
|
|
1051
|
+
var LambdaFunctionStartedEventAttributes$ = [3, n0, _LFSEAa,
|
|
1052
|
+
0,
|
|
1053
|
+
[_sEIc],
|
|
1054
|
+
[1], 1
|
|
1055
|
+
];
|
|
1056
|
+
var LambdaFunctionTimedOutEventAttributes$ = [3, n0, _LFTOEA,
|
|
1057
|
+
0,
|
|
1058
|
+
[_sEIc, _sEI, _tTi],
|
|
1059
|
+
[1, 1, 0], 2
|
|
1060
|
+
];
|
|
1061
|
+
var ListActivityTypesInput$ = [3, n0, _LATI,
|
|
1062
|
+
0,
|
|
1063
|
+
[_do, _rS, _n, _nPT, _mPS, _rO],
|
|
1064
|
+
[0, 0, 0, 0, 1, 2], 2
|
|
1065
|
+
];
|
|
1066
|
+
var ListClosedWorkflowExecutionsInput$ = [3, n0, _LCWEI,
|
|
1067
|
+
0,
|
|
1068
|
+
[_do, _sTF, _cTF, _eF, _cSF, _tF, _tFa, _nPT, _mPS, _rO],
|
|
1069
|
+
[0, () => ExecutionTimeFilter$, () => ExecutionTimeFilter$, () => WorkflowExecutionFilter$, () => CloseStatusFilter$, () => WorkflowTypeFilter$, () => TagFilter$, 0, 1, 2], 1
|
|
1070
|
+
];
|
|
1071
|
+
var ListDomainsInput$ = [3, n0, _LDI,
|
|
1072
|
+
0,
|
|
1073
|
+
[_rS, _nPT, _mPS, _rO],
|
|
1074
|
+
[0, 0, 1, 2], 1
|
|
1075
|
+
];
|
|
1076
|
+
var ListOpenWorkflowExecutionsInput$ = [3, n0, _LOWEI,
|
|
1077
|
+
0,
|
|
1078
|
+
[_do, _sTF, _tF, _tFa, _nPT, _mPS, _rO, _eF],
|
|
1079
|
+
[0, () => ExecutionTimeFilter$, () => WorkflowTypeFilter$, () => TagFilter$, 0, 1, 2, () => WorkflowExecutionFilter$], 2
|
|
1080
|
+
];
|
|
1081
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1082
|
+
0,
|
|
1083
|
+
[_rA],
|
|
1084
|
+
[0], 1
|
|
1085
|
+
];
|
|
1086
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1087
|
+
0,
|
|
1088
|
+
[_t],
|
|
1089
|
+
[() => ResourceTagList]
|
|
1090
|
+
];
|
|
1091
|
+
var ListWorkflowTypesInput$ = [3, n0, _LWTI,
|
|
1092
|
+
0,
|
|
1093
|
+
[_do, _rS, _n, _nPT, _mPS, _rO],
|
|
1094
|
+
[0, 0, 0, 0, 1, 2], 2
|
|
1095
|
+
];
|
|
1096
|
+
var MarkerRecordedEventAttributes$ = [3, n0, _MREA,
|
|
1097
|
+
0,
|
|
1098
|
+
[_mN, _dTCEI, _d],
|
|
1099
|
+
[0, 1, 0], 2
|
|
1100
|
+
];
|
|
1101
|
+
var PendingTaskCount$ = [3, n0, _PTC,
|
|
1102
|
+
0,
|
|
1103
|
+
[_cou, _tr],
|
|
1104
|
+
[1, 2], 1
|
|
1105
|
+
];
|
|
1106
|
+
var PollForActivityTaskInput$ = [3, n0, _PFATI,
|
|
1107
|
+
0,
|
|
1108
|
+
[_do, _tL, _id],
|
|
1109
|
+
[0, () => TaskList$, 0], 2
|
|
1110
|
+
];
|
|
1111
|
+
var PollForDecisionTaskInput$ = [3, n0, _PFDTI,
|
|
1112
|
+
0,
|
|
1113
|
+
[_do, _tL, _id, _nPT, _mPS, _rO, _sAPSE],
|
|
1114
|
+
[0, () => TaskList$, 0, 0, 1, 2, 2], 2
|
|
1115
|
+
];
|
|
1116
|
+
var RecordActivityTaskHeartbeatInput$ = [3, n0, _RATHI,
|
|
1117
|
+
0,
|
|
1118
|
+
[_tT, _d],
|
|
1119
|
+
[0, 0], 1
|
|
1120
|
+
];
|
|
1121
|
+
var RecordMarkerDecisionAttributes$ = [3, n0, _RMDA,
|
|
1122
|
+
0,
|
|
1123
|
+
[_mN, _d],
|
|
1124
|
+
[0, 0], 1
|
|
1125
|
+
];
|
|
1126
|
+
var RecordMarkerFailedEventAttributes$ = [3, n0, _RMFEA,
|
|
1127
|
+
0,
|
|
1128
|
+
[_mN, _ca, _dTCEI],
|
|
1129
|
+
[0, 0, 1], 3
|
|
1130
|
+
];
|
|
1131
|
+
var RegisterActivityTypeInput$ = [3, n0, _RATI,
|
|
1132
|
+
0,
|
|
1133
|
+
[_do, _n, _v, _de, _dTSTCT, _dTHT, _dTL, _dTP, _dTSTST, _dTSTCTe],
|
|
1134
|
+
[0, 0, 0, 0, 0, 0, () => TaskList$, 0, 0, 0], 3
|
|
1135
|
+
];
|
|
1136
|
+
var RegisterDomainInput$ = [3, n0, _RDI,
|
|
1137
|
+
0,
|
|
1138
|
+
[_n, _wERPID, _de, _t],
|
|
1139
|
+
[0, 0, 0, () => ResourceTagList], 2
|
|
1140
|
+
];
|
|
1141
|
+
var RegisterWorkflowTypeInput$ = [3, n0, _RWTI,
|
|
1142
|
+
0,
|
|
1143
|
+
[_do, _n, _v, _de, _dTSTCT, _dESTCT, _dTL, _dTP, _dCP, _dLR],
|
|
1144
|
+
[0, 0, 0, 0, 0, 0, () => TaskList$, 0, 0, 0], 3
|
|
1145
|
+
];
|
|
1146
|
+
var RequestCancelActivityTaskDecisionAttributes$ = [3, n0, _RCATDA,
|
|
1147
|
+
0,
|
|
1148
|
+
[_aI],
|
|
1149
|
+
[0], 1
|
|
1150
|
+
];
|
|
1151
|
+
var RequestCancelActivityTaskFailedEventAttributes$ = [3, n0, _RCATFEA,
|
|
1152
|
+
0,
|
|
1153
|
+
[_aI, _ca, _dTCEI],
|
|
1154
|
+
[0, 0, 1], 3
|
|
1155
|
+
];
|
|
1156
|
+
var RequestCancelExternalWorkflowExecutionDecisionAttributes$ = [3, n0, _RCEWEDA,
|
|
1157
|
+
0,
|
|
1158
|
+
[_wI, _rI, _co],
|
|
1159
|
+
[0, 0, 0], 1
|
|
1160
|
+
];
|
|
1161
|
+
var RequestCancelExternalWorkflowExecutionFailedEventAttributes$ = [3, n0, _RCEWEFEA,
|
|
1162
|
+
0,
|
|
1163
|
+
[_wI, _ca, _iEI, _dTCEI, _rI, _co],
|
|
1164
|
+
[0, 0, 1, 1, 0, 0], 4
|
|
1165
|
+
];
|
|
1166
|
+
var RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$ = [3, n0, _RCEWEIEA,
|
|
1167
|
+
0,
|
|
1168
|
+
[_wI, _dTCEI, _rI, _co],
|
|
1169
|
+
[0, 1, 0, 0], 2
|
|
1170
|
+
];
|
|
1171
|
+
var RequestCancelWorkflowExecutionInput$ = [3, n0, _RCWEI,
|
|
1172
|
+
0,
|
|
1173
|
+
[_do, _wI, _rI],
|
|
1174
|
+
[0, 0, 0], 2
|
|
1175
|
+
];
|
|
1176
|
+
var ResourceTag$ = [3, n0, _RT,
|
|
1177
|
+
0,
|
|
1178
|
+
[_k, _va],
|
|
1179
|
+
[0, 0], 1
|
|
1180
|
+
];
|
|
1181
|
+
var RespondActivityTaskCanceledInput$ = [3, n0, _RATCI,
|
|
1182
|
+
0,
|
|
1183
|
+
[_tT, _d],
|
|
1184
|
+
[0, 0], 1
|
|
1185
|
+
];
|
|
1186
|
+
var RespondActivityTaskCompletedInput$ = [3, n0, _RATCIe,
|
|
1187
|
+
0,
|
|
1188
|
+
[_tT, _r],
|
|
1189
|
+
[0, 0], 1
|
|
1190
|
+
];
|
|
1191
|
+
var RespondActivityTaskFailedInput$ = [3, n0, _RATFI,
|
|
1192
|
+
0,
|
|
1193
|
+
[_tT, _re, _d],
|
|
1194
|
+
[0, 0, 0], 1
|
|
1195
|
+
];
|
|
1196
|
+
var RespondDecisionTaskCompletedInput$ = [3, n0, _RDTCI,
|
|
1197
|
+
0,
|
|
1198
|
+
[_tT, _dec, _eC, _tL, _tLSTST],
|
|
1199
|
+
[0, () => DecisionList, 0, () => TaskList$, 0], 1
|
|
1200
|
+
];
|
|
1201
|
+
var Run$ = [3, n0, _R,
|
|
1202
|
+
0,
|
|
1203
|
+
[_rI],
|
|
1204
|
+
[0]
|
|
1205
|
+
];
|
|
1206
|
+
var ScheduleActivityTaskDecisionAttributes$ = [3, n0, _SATDA,
|
|
1207
|
+
0,
|
|
1208
|
+
[_aT, _aI, _co, _i, _sTCT, _tL, _tP, _sTST, _sTCTt, _hT],
|
|
1209
|
+
[() => ActivityType$, 0, 0, 0, 0, () => TaskList$, 0, 0, 0, 0], 2
|
|
1210
|
+
];
|
|
1211
|
+
var ScheduleActivityTaskFailedEventAttributes$ = [3, n0, _SATFEA,
|
|
1212
|
+
0,
|
|
1213
|
+
[_aT, _aI, _ca, _dTCEI],
|
|
1214
|
+
[() => ActivityType$, 0, 0, 1], 4
|
|
1215
|
+
];
|
|
1216
|
+
var ScheduleLambdaFunctionDecisionAttributes$ = [3, n0, _SLFDA,
|
|
1217
|
+
0,
|
|
1218
|
+
[_id_, _n, _co, _i, _sTCTt],
|
|
1219
|
+
[0, 0, 0, 0, 0], 2
|
|
1220
|
+
];
|
|
1221
|
+
var ScheduleLambdaFunctionFailedEventAttributes$ = [3, n0, _SLFFEA,
|
|
1222
|
+
0,
|
|
1223
|
+
[_id_, _n, _ca, _dTCEI],
|
|
1224
|
+
[0, 0, 0, 1], 4
|
|
1225
|
+
];
|
|
1226
|
+
var SignalExternalWorkflowExecutionDecisionAttributes$ = [3, n0, _SEWEDA,
|
|
1227
|
+
0,
|
|
1228
|
+
[_wI, _sN, _rI, _i, _co],
|
|
1229
|
+
[0, 0, 0, 0, 0], 2
|
|
1230
|
+
];
|
|
1231
|
+
var SignalExternalWorkflowExecutionFailedEventAttributes$ = [3, n0, _SEWEFEA,
|
|
1232
|
+
0,
|
|
1233
|
+
[_wI, _ca, _iEI, _dTCEI, _rI, _co],
|
|
1234
|
+
[0, 0, 1, 1, 0, 0], 4
|
|
1235
|
+
];
|
|
1236
|
+
var SignalExternalWorkflowExecutionInitiatedEventAttributes$ = [3, n0, _SEWEIEA,
|
|
1237
|
+
0,
|
|
1238
|
+
[_wI, _sN, _dTCEI, _rI, _i, _co],
|
|
1239
|
+
[0, 0, 1, 0, 0, 0], 3
|
|
1240
|
+
];
|
|
1241
|
+
var SignalWorkflowExecutionInput$ = [3, n0, _SWEI,
|
|
1242
|
+
0,
|
|
1243
|
+
[_do, _wI, _sN, _rI, _i],
|
|
1244
|
+
[0, 0, 0, 0, 0], 3
|
|
1245
|
+
];
|
|
1246
|
+
var StartChildWorkflowExecutionDecisionAttributes$ = [3, n0, _SCWEDA,
|
|
1247
|
+
0,
|
|
1248
|
+
[_wT, _wI, _co, _i, _eSTCT, _tL, _tP, _tSTCT, _cP, _tLa, _lR],
|
|
1249
|
+
[() => WorkflowType$, 0, 0, 0, 0, () => TaskList$, 0, 0, 0, 64 | 0, 0], 2
|
|
1250
|
+
];
|
|
1251
|
+
var StartChildWorkflowExecutionFailedEventAttributes$ = [3, n0, _SCWEFEA,
|
|
1252
|
+
0,
|
|
1253
|
+
[_wT, _ca, _wI, _iEI, _dTCEI, _co],
|
|
1254
|
+
[() => WorkflowType$, 0, 0, 1, 1, 0], 5
|
|
1255
|
+
];
|
|
1256
|
+
var StartChildWorkflowExecutionInitiatedEventAttributes$ = [3, n0, _SCWEIEA,
|
|
1257
|
+
0,
|
|
1258
|
+
[_wI, _wT, _tL, _dTCEI, _cP, _co, _i, _eSTCT, _tP, _tSTCT, _tLa, _lR],
|
|
1259
|
+
[0, () => WorkflowType$, () => TaskList$, 1, 0, 0, 0, 0, 0, 0, 64 | 0, 0], 5
|
|
1260
|
+
];
|
|
1261
|
+
var StartLambdaFunctionFailedEventAttributes$ = [3, n0, _SLFFEAt,
|
|
1262
|
+
0,
|
|
1263
|
+
[_sEIc, _ca, _m],
|
|
1264
|
+
[1, 0, 0]
|
|
1265
|
+
];
|
|
1266
|
+
var StartTimerDecisionAttributes$ = [3, n0, _STDA,
|
|
1267
|
+
0,
|
|
1268
|
+
[_tIi, _sTFT, _co],
|
|
1269
|
+
[0, 0, 0], 2
|
|
1270
|
+
];
|
|
1271
|
+
var StartTimerFailedEventAttributes$ = [3, n0, _STFEA,
|
|
1272
|
+
0,
|
|
1273
|
+
[_tIi, _ca, _dTCEI],
|
|
1274
|
+
[0, 0, 1], 3
|
|
1275
|
+
];
|
|
1276
|
+
var StartWorkflowExecutionInput$ = [3, n0, _SWEIt,
|
|
1277
|
+
0,
|
|
1278
|
+
[_do, _wI, _wT, _tL, _tP, _i, _eSTCT, _tLa, _tSTCT, _cP, _lR],
|
|
1279
|
+
[0, 0, () => WorkflowType$, () => TaskList$, 0, 0, 0, 64 | 0, 0, 0, 0], 3
|
|
1280
|
+
];
|
|
1281
|
+
var TagFilter$ = [3, n0, _TF,
|
|
1282
|
+
0,
|
|
1283
|
+
[_ta],
|
|
1284
|
+
[0], 1
|
|
1285
|
+
];
|
|
1286
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
1287
|
+
0,
|
|
1288
|
+
[_rA, _t],
|
|
1289
|
+
[0, () => ResourceTagList], 2
|
|
1290
|
+
];
|
|
1291
|
+
var TaskList$ = [3, n0, _TL,
|
|
1292
|
+
0,
|
|
1293
|
+
[_n],
|
|
1294
|
+
[0], 1
|
|
1295
|
+
];
|
|
1296
|
+
var TerminateWorkflowExecutionInput$ = [3, n0, _TWEI,
|
|
1297
|
+
0,
|
|
1298
|
+
[_do, _wI, _rI, _re, _d, _cP],
|
|
1299
|
+
[0, 0, 0, 0, 0, 0], 2
|
|
1300
|
+
];
|
|
1301
|
+
var TimerCanceledEventAttributes$ = [3, n0, _TCEA,
|
|
1302
|
+
0,
|
|
1303
|
+
[_tIi, _sEI, _dTCEI],
|
|
1304
|
+
[0, 1, 1], 3
|
|
1305
|
+
];
|
|
1306
|
+
var TimerFiredEventAttributes$ = [3, n0, _TFEA,
|
|
1307
|
+
0,
|
|
1308
|
+
[_tIi, _sEI],
|
|
1309
|
+
[0, 1], 2
|
|
1310
|
+
];
|
|
1311
|
+
var TimerStartedEventAttributes$ = [3, n0, _TSEA,
|
|
1312
|
+
0,
|
|
1313
|
+
[_tIi, _sTFT, _dTCEI, _co],
|
|
1314
|
+
[0, 0, 1, 0], 3
|
|
1315
|
+
];
|
|
1316
|
+
var UndeprecateActivityTypeInput$ = [3, n0, _UATI,
|
|
1317
|
+
0,
|
|
1318
|
+
[_do, _aT],
|
|
1319
|
+
[0, () => ActivityType$], 2
|
|
1320
|
+
];
|
|
1321
|
+
var UndeprecateDomainInput$ = [3, n0, _UDI,
|
|
1322
|
+
0,
|
|
1323
|
+
[_n],
|
|
1324
|
+
[0], 1
|
|
1325
|
+
];
|
|
1326
|
+
var UndeprecateWorkflowTypeInput$ = [3, n0, _UWTI,
|
|
1327
|
+
0,
|
|
1328
|
+
[_do, _wT],
|
|
1329
|
+
[0, () => WorkflowType$], 2
|
|
1330
|
+
];
|
|
1331
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
1332
|
+
0,
|
|
1333
|
+
[_rA, _tK],
|
|
1334
|
+
[0, 64 | 0], 2
|
|
1335
|
+
];
|
|
1336
|
+
var WorkflowExecution$ = [3, n0, _WE,
|
|
1337
|
+
0,
|
|
1338
|
+
[_wI, _rI],
|
|
1339
|
+
[0, 0], 2
|
|
1340
|
+
];
|
|
1341
|
+
var WorkflowExecutionCanceledEventAttributes$ = [3, n0, _WECEA,
|
|
1342
|
+
0,
|
|
1343
|
+
[_dTCEI, _d],
|
|
1344
|
+
[1, 0], 1
|
|
1345
|
+
];
|
|
1346
|
+
var WorkflowExecutionCancelRequestedEventAttributes$ = [3, n0, _WECREA,
|
|
1347
|
+
0,
|
|
1348
|
+
[_eWE, _eIEI, _ca],
|
|
1349
|
+
[() => WorkflowExecution$, 1, 0]
|
|
1350
|
+
];
|
|
1351
|
+
var WorkflowExecutionCompletedEventAttributes$ = [3, n0, _WECEAo,
|
|
1352
|
+
0,
|
|
1353
|
+
[_dTCEI, _r],
|
|
1354
|
+
[1, 0], 1
|
|
1355
|
+
];
|
|
1356
|
+
var WorkflowExecutionConfiguration$ = [3, n0, _WEC,
|
|
1357
|
+
0,
|
|
1358
|
+
[_tSTCT, _eSTCT, _tL, _cP, _tP, _lR],
|
|
1359
|
+
[0, 0, () => TaskList$, 0, 0, 0], 4
|
|
1360
|
+
];
|
|
1361
|
+
var WorkflowExecutionContinuedAsNewEventAttributes$ = [3, n0, _WECANEA,
|
|
1362
|
+
0,
|
|
1363
|
+
[_dTCEI, _nERI, _tL, _cP, _wT, _i, _eSTCT, _tP, _tSTCT, _tLa, _lR],
|
|
1364
|
+
[1, 0, () => TaskList$, 0, () => WorkflowType$, 0, 0, 0, 0, 64 | 0, 0], 5
|
|
1365
|
+
];
|
|
1366
|
+
var WorkflowExecutionCount$ = [3, n0, _WECo,
|
|
1367
|
+
0,
|
|
1368
|
+
[_cou, _tr],
|
|
1369
|
+
[1, 2], 1
|
|
1370
|
+
];
|
|
1371
|
+
var WorkflowExecutionDetail$ = [3, n0, _WED,
|
|
1372
|
+
0,
|
|
1373
|
+
[_eIx, _eCx, _oC, _lATT, _lEC],
|
|
1374
|
+
[() => WorkflowExecutionInfo$, () => WorkflowExecutionConfiguration$, () => WorkflowExecutionOpenCounts$, 4, 0], 3
|
|
1375
|
+
];
|
|
1376
|
+
var WorkflowExecutionFailedEventAttributes$ = [3, n0, _WEFEA,
|
|
1377
|
+
0,
|
|
1378
|
+
[_dTCEI, _re, _d],
|
|
1379
|
+
[1, 0, 0], 1
|
|
1380
|
+
];
|
|
1381
|
+
var WorkflowExecutionFilter$ = [3, n0, _WEF,
|
|
1382
|
+
0,
|
|
1383
|
+
[_wI],
|
|
1384
|
+
[0], 1
|
|
1385
|
+
];
|
|
1386
|
+
var WorkflowExecutionInfo$ = [3, n0, _WEI,
|
|
1387
|
+
0,
|
|
1388
|
+
[_ex, _wT, _sT, _eS, _cT, _cS, _p, _tLa, _cR],
|
|
1389
|
+
[() => WorkflowExecution$, () => WorkflowType$, 4, 0, 4, 0, () => WorkflowExecution$, 64 | 0, 2], 4
|
|
1390
|
+
];
|
|
1391
|
+
var WorkflowExecutionInfos$ = [3, n0, _WEIo,
|
|
1392
|
+
0,
|
|
1393
|
+
[_eIxe, _nPT],
|
|
1394
|
+
[() => WorkflowExecutionInfoList, 0], 1
|
|
1395
|
+
];
|
|
1396
|
+
var WorkflowExecutionOpenCounts$ = [3, n0, _WEOC,
|
|
1397
|
+
0,
|
|
1398
|
+
[_oAT, _oDT, _oT, _oCWE, _oLF],
|
|
1399
|
+
[1, 1, 1, 1, 1], 4
|
|
1400
|
+
];
|
|
1401
|
+
var WorkflowExecutionSignaledEventAttributes$ = [3, n0, _WESEA,
|
|
1402
|
+
0,
|
|
1403
|
+
[_sN, _i, _eWE, _eIEI],
|
|
1404
|
+
[0, 0, () => WorkflowExecution$, 1], 1
|
|
1405
|
+
];
|
|
1406
|
+
var WorkflowExecutionStartedEventAttributes$ = [3, n0, _WESEAo,
|
|
1407
|
+
0,
|
|
1408
|
+
[_cP, _tL, _wT, _i, _eSTCT, _tSTCT, _tP, _tLa, _cERI, _pWE, _pIEI, _lR],
|
|
1409
|
+
[0, () => TaskList$, () => WorkflowType$, 0, 0, 0, 0, 64 | 0, 0, () => WorkflowExecution$, 1, 0], 3
|
|
1410
|
+
];
|
|
1411
|
+
var WorkflowExecutionTerminatedEventAttributes$ = [3, n0, _WETEA,
|
|
1412
|
+
0,
|
|
1413
|
+
[_cP, _re, _d, _ca],
|
|
1414
|
+
[0, 0, 0, 0], 1
|
|
1415
|
+
];
|
|
1416
|
+
var WorkflowExecutionTimedOutEventAttributes$ = [3, n0, _WETOEA,
|
|
1417
|
+
0,
|
|
1418
|
+
[_tTi, _cP],
|
|
1419
|
+
[0, 0], 2
|
|
1420
|
+
];
|
|
1421
|
+
var WorkflowType$ = [3, n0, _WT,
|
|
1422
|
+
0,
|
|
1423
|
+
[_n, _v],
|
|
1424
|
+
[0, 0], 2
|
|
1425
|
+
];
|
|
1426
|
+
var WorkflowTypeConfiguration$ = [3, n0, _WTC,
|
|
1427
|
+
0,
|
|
1428
|
+
[_dTSTCT, _dESTCT, _dTL, _dTP, _dCP, _dLR],
|
|
1429
|
+
[0, 0, () => TaskList$, 0, 0, 0]
|
|
1430
|
+
];
|
|
1431
|
+
var WorkflowTypeDetail$ = [3, n0, _WTD,
|
|
1432
|
+
0,
|
|
1433
|
+
[_tI, _con],
|
|
1434
|
+
[() => WorkflowTypeInfo$, () => WorkflowTypeConfiguration$], 2
|
|
1435
|
+
];
|
|
1436
|
+
var WorkflowTypeFilter$ = [3, n0, _WTF,
|
|
1437
|
+
0,
|
|
1438
|
+
[_n, _v],
|
|
1439
|
+
[0, 0], 1
|
|
1440
|
+
];
|
|
1441
|
+
var WorkflowTypeInfo$ = [3, n0, _WTI,
|
|
1442
|
+
0,
|
|
1443
|
+
[_wT, _st, _cD, _de, _dD],
|
|
1444
|
+
[() => WorkflowType$, 0, 4, 0, 4], 3
|
|
1445
|
+
];
|
|
1446
|
+
var WorkflowTypeInfos$ = [3, n0, _WTIo,
|
|
1447
|
+
0,
|
|
1448
|
+
[_tIy, _nPT],
|
|
1449
|
+
[() => WorkflowTypeInfoList, 0], 1
|
|
1450
|
+
];
|
|
1451
|
+
var __Unit = "unit";
|
|
1452
|
+
var ActivityTypeInfoList = [1, n0, _ATIL,
|
|
1453
|
+
0, () => ActivityTypeInfo$
|
|
1454
|
+
];
|
|
1455
|
+
var DecisionList = [1, n0, _DL,
|
|
1456
|
+
0, () => Decision$
|
|
1457
|
+
];
|
|
1458
|
+
var DomainInfoList = [1, n0, _DIL,
|
|
1459
|
+
0, () => DomainInfo$
|
|
1460
|
+
];
|
|
1461
|
+
var HistoryEventList = [1, n0, _HEL,
|
|
1462
|
+
0, () => HistoryEvent$
|
|
1463
|
+
];
|
|
1464
|
+
var ResourceTagList = [1, n0, _RTL,
|
|
1465
|
+
0, () => ResourceTag$
|
|
1466
|
+
];
|
|
1467
|
+
var WorkflowExecutionInfoList = [1, n0, _WEIL,
|
|
1468
|
+
0, () => WorkflowExecutionInfo$
|
|
1469
|
+
];
|
|
1470
|
+
var WorkflowTypeInfoList = [1, n0, _WTIL,
|
|
1471
|
+
0, () => WorkflowTypeInfo$
|
|
1472
|
+
];
|
|
1473
|
+
var CountClosedWorkflowExecutions$ = [9, n0, _CCWE,
|
|
1474
|
+
0, () => CountClosedWorkflowExecutionsInput$, () => WorkflowExecutionCount$
|
|
1475
|
+
];
|
|
1476
|
+
var CountOpenWorkflowExecutions$ = [9, n0, _COWE,
|
|
1477
|
+
0, () => CountOpenWorkflowExecutionsInput$, () => WorkflowExecutionCount$
|
|
1478
|
+
];
|
|
1479
|
+
var CountPendingActivityTasks$ = [9, n0, _CPAT,
|
|
1480
|
+
0, () => CountPendingActivityTasksInput$, () => PendingTaskCount$
|
|
1481
|
+
];
|
|
1482
|
+
var CountPendingDecisionTasks$ = [9, n0, _CPDT,
|
|
1483
|
+
0, () => CountPendingDecisionTasksInput$, () => PendingTaskCount$
|
|
1484
|
+
];
|
|
1485
|
+
var DeleteActivityType$ = [9, n0, _DAT,
|
|
1486
|
+
0, () => DeleteActivityTypeInput$, () => __Unit
|
|
1487
|
+
];
|
|
1488
|
+
var DeleteWorkflowType$ = [9, n0, _DWT,
|
|
1489
|
+
0, () => DeleteWorkflowTypeInput$, () => __Unit
|
|
1490
|
+
];
|
|
1491
|
+
var DeprecateActivityType$ = [9, n0, _DATe,
|
|
1492
|
+
0, () => DeprecateActivityTypeInput$, () => __Unit
|
|
1493
|
+
];
|
|
1494
|
+
var DeprecateDomain$ = [9, n0, _DDe,
|
|
1495
|
+
0, () => DeprecateDomainInput$, () => __Unit
|
|
1496
|
+
];
|
|
1497
|
+
var DeprecateWorkflowType$ = [9, n0, _DWTe,
|
|
1498
|
+
0, () => DeprecateWorkflowTypeInput$, () => __Unit
|
|
1499
|
+
];
|
|
1500
|
+
var DescribeActivityType$ = [9, n0, _DATes,
|
|
1501
|
+
0, () => DescribeActivityTypeInput$, () => ActivityTypeDetail$
|
|
1502
|
+
];
|
|
1503
|
+
var DescribeDomain$ = [9, n0, _DDes,
|
|
1504
|
+
0, () => DescribeDomainInput$, () => DomainDetail$
|
|
1505
|
+
];
|
|
1506
|
+
var DescribeWorkflowExecution$ = [9, n0, _DWE,
|
|
1507
|
+
0, () => DescribeWorkflowExecutionInput$, () => WorkflowExecutionDetail$
|
|
1508
|
+
];
|
|
1509
|
+
var DescribeWorkflowType$ = [9, n0, _DWTes,
|
|
1510
|
+
0, () => DescribeWorkflowTypeInput$, () => WorkflowTypeDetail$
|
|
1511
|
+
];
|
|
1512
|
+
var GetWorkflowExecutionHistory$ = [9, n0, _GWEH,
|
|
1513
|
+
0, () => GetWorkflowExecutionHistoryInput$, () => History$
|
|
1514
|
+
];
|
|
1515
|
+
var ListActivityTypes$ = [9, n0, _LAT,
|
|
1516
|
+
0, () => ListActivityTypesInput$, () => ActivityTypeInfos$
|
|
1517
|
+
];
|
|
1518
|
+
var ListClosedWorkflowExecutions$ = [9, n0, _LCWE,
|
|
1519
|
+
0, () => ListClosedWorkflowExecutionsInput$, () => WorkflowExecutionInfos$
|
|
1520
|
+
];
|
|
1521
|
+
var ListDomains$ = [9, n0, _LD,
|
|
1522
|
+
0, () => ListDomainsInput$, () => DomainInfos$
|
|
1523
|
+
];
|
|
1524
|
+
var ListOpenWorkflowExecutions$ = [9, n0, _LOWE,
|
|
1525
|
+
0, () => ListOpenWorkflowExecutionsInput$, () => WorkflowExecutionInfos$
|
|
1526
|
+
];
|
|
1527
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1528
|
+
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1529
|
+
];
|
|
1530
|
+
var ListWorkflowTypes$ = [9, n0, _LWT,
|
|
1531
|
+
0, () => ListWorkflowTypesInput$, () => WorkflowTypeInfos$
|
|
1532
|
+
];
|
|
1533
|
+
var PollForActivityTask$ = [9, n0, _PFAT,
|
|
1534
|
+
0, () => PollForActivityTaskInput$, () => ActivityTask$
|
|
1535
|
+
];
|
|
1536
|
+
var PollForDecisionTask$ = [9, n0, _PFDT,
|
|
1537
|
+
0, () => PollForDecisionTaskInput$, () => DecisionTask$
|
|
1538
|
+
];
|
|
1539
|
+
var RecordActivityTaskHeartbeat$ = [9, n0, _RATH,
|
|
1540
|
+
0, () => RecordActivityTaskHeartbeatInput$, () => ActivityTaskStatus$
|
|
1541
|
+
];
|
|
1542
|
+
var RegisterActivityType$ = [9, n0, _RAT,
|
|
1543
|
+
0, () => RegisterActivityTypeInput$, () => __Unit
|
|
1544
|
+
];
|
|
1545
|
+
var RegisterDomain$ = [9, n0, _RD,
|
|
1546
|
+
0, () => RegisterDomainInput$, () => __Unit
|
|
1547
|
+
];
|
|
1548
|
+
var RegisterWorkflowType$ = [9, n0, _RWT,
|
|
1549
|
+
0, () => RegisterWorkflowTypeInput$, () => __Unit
|
|
1550
|
+
];
|
|
1551
|
+
var RequestCancelWorkflowExecution$ = [9, n0, _RCWE,
|
|
1552
|
+
0, () => RequestCancelWorkflowExecutionInput$, () => __Unit
|
|
1553
|
+
];
|
|
1554
|
+
var RespondActivityTaskCanceled$ = [9, n0, _RATC,
|
|
1555
|
+
0, () => RespondActivityTaskCanceledInput$, () => __Unit
|
|
1556
|
+
];
|
|
1557
|
+
var RespondActivityTaskCompleted$ = [9, n0, _RATCe,
|
|
1558
|
+
0, () => RespondActivityTaskCompletedInput$, () => __Unit
|
|
1559
|
+
];
|
|
1560
|
+
var RespondActivityTaskFailed$ = [9, n0, _RATF,
|
|
1561
|
+
0, () => RespondActivityTaskFailedInput$, () => __Unit
|
|
1562
|
+
];
|
|
1563
|
+
var RespondDecisionTaskCompleted$ = [9, n0, _RDTC,
|
|
1564
|
+
0, () => RespondDecisionTaskCompletedInput$, () => __Unit
|
|
1565
|
+
];
|
|
1566
|
+
var SignalWorkflowExecution$ = [9, n0, _SWE,
|
|
1567
|
+
0, () => SignalWorkflowExecutionInput$, () => __Unit
|
|
1568
|
+
];
|
|
1569
|
+
var StartWorkflowExecution$ = [9, n0, _SWEt,
|
|
1570
|
+
0, () => StartWorkflowExecutionInput$, () => Run$
|
|
1571
|
+
];
|
|
1572
|
+
var TagResource$ = [9, n0, _TR,
|
|
1573
|
+
0, () => TagResourceInput$, () => __Unit
|
|
1574
|
+
];
|
|
1575
|
+
var TerminateWorkflowExecution$ = [9, n0, _TWE,
|
|
1576
|
+
0, () => TerminateWorkflowExecutionInput$, () => __Unit
|
|
1577
|
+
];
|
|
1578
|
+
var UndeprecateActivityType$ = [9, n0, _UAT,
|
|
1579
|
+
0, () => UndeprecateActivityTypeInput$, () => __Unit
|
|
1580
|
+
];
|
|
1581
|
+
var UndeprecateDomain$ = [9, n0, _UD,
|
|
1582
|
+
0, () => UndeprecateDomainInput$, () => __Unit
|
|
1583
|
+
];
|
|
1584
|
+
var UndeprecateWorkflowType$ = [9, n0, _UWT,
|
|
1585
|
+
0, () => UndeprecateWorkflowTypeInput$, () => __Unit
|
|
1586
|
+
];
|
|
1587
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1588
|
+
0, () => UntagResourceInput$, () => __Unit
|
|
1589
|
+
];
|
|
1590
|
+
|
|
1591
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1592
|
+
return {
|
|
1593
|
+
apiVersion: "2012-01-25",
|
|
1594
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1595
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1596
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1597
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1598
|
+
extensions: config?.extensions ?? [],
|
|
1599
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSWFHttpAuthSchemeProvider,
|
|
1600
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1601
|
+
{
|
|
1602
|
+
schemeId: "aws.auth#sigv4",
|
|
1603
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1604
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1605
|
+
},
|
|
1606
|
+
],
|
|
1607
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1608
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
1609
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1610
|
+
defaultNamespace: "com.amazonaws.swf",
|
|
1611
|
+
errorTypeRegistries,
|
|
1612
|
+
xmlNamespace: "http://swf.amazonaws.com/doc/2012-01-25",
|
|
1613
|
+
version: "2012-01-25",
|
|
1614
|
+
serviceTarget: "SimpleWorkflowService",
|
|
1615
|
+
},
|
|
1616
|
+
serviceId: config?.serviceId ?? "SWF",
|
|
1617
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1618
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1619
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
|
|
1623
|
+
const getRuntimeConfig = (config) => {
|
|
1624
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1625
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1626
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1627
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1628
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1629
|
+
const loaderConfig = {
|
|
1630
|
+
profile: config?.profile,
|
|
1631
|
+
logger: clientSharedValues.logger,
|
|
1632
|
+
};
|
|
1633
|
+
return {
|
|
1634
|
+
...clientSharedValues,
|
|
1635
|
+
...config,
|
|
1636
|
+
runtime: "node",
|
|
1637
|
+
defaultsMode,
|
|
1638
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1639
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1640
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1641
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1642
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1643
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1644
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1645
|
+
retryMode: config?.retryMode ??
|
|
1646
|
+
loadConfig({
|
|
1647
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1648
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1649
|
+
}, config),
|
|
1650
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1651
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1652
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1653
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1654
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1655
|
+
};
|
|
1656
|
+
};
|
|
1657
|
+
|
|
34
1658
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1659
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1660
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -855,73 +2479,280 @@ const ExecutionStatus = {
|
|
|
855
2479
|
OPEN: "OPEN",
|
|
856
2480
|
};
|
|
857
2481
|
|
|
2482
|
+
exports.ActivityTask$ = ActivityTask$;
|
|
2483
|
+
exports.ActivityTaskCancelRequestedEventAttributes$ = ActivityTaskCancelRequestedEventAttributes$;
|
|
2484
|
+
exports.ActivityTaskCanceledEventAttributes$ = ActivityTaskCanceledEventAttributes$;
|
|
2485
|
+
exports.ActivityTaskCompletedEventAttributes$ = ActivityTaskCompletedEventAttributes$;
|
|
2486
|
+
exports.ActivityTaskFailedEventAttributes$ = ActivityTaskFailedEventAttributes$;
|
|
2487
|
+
exports.ActivityTaskScheduledEventAttributes$ = ActivityTaskScheduledEventAttributes$;
|
|
2488
|
+
exports.ActivityTaskStartedEventAttributes$ = ActivityTaskStartedEventAttributes$;
|
|
2489
|
+
exports.ActivityTaskStatus$ = ActivityTaskStatus$;
|
|
2490
|
+
exports.ActivityTaskTimedOutEventAttributes$ = ActivityTaskTimedOutEventAttributes$;
|
|
858
2491
|
exports.ActivityTaskTimeoutType = ActivityTaskTimeoutType;
|
|
2492
|
+
exports.ActivityType$ = ActivityType$;
|
|
2493
|
+
exports.ActivityTypeConfiguration$ = ActivityTypeConfiguration$;
|
|
2494
|
+
exports.ActivityTypeDetail$ = ActivityTypeDetail$;
|
|
2495
|
+
exports.ActivityTypeInfo$ = ActivityTypeInfo$;
|
|
2496
|
+
exports.ActivityTypeInfos$ = ActivityTypeInfos$;
|
|
2497
|
+
exports.CancelTimerDecisionAttributes$ = CancelTimerDecisionAttributes$;
|
|
859
2498
|
exports.CancelTimerFailedCause = CancelTimerFailedCause;
|
|
2499
|
+
exports.CancelTimerFailedEventAttributes$ = CancelTimerFailedEventAttributes$;
|
|
2500
|
+
exports.CancelWorkflowExecutionDecisionAttributes$ = CancelWorkflowExecutionDecisionAttributes$;
|
|
860
2501
|
exports.CancelWorkflowExecutionFailedCause = CancelWorkflowExecutionFailedCause;
|
|
2502
|
+
exports.CancelWorkflowExecutionFailedEventAttributes$ = CancelWorkflowExecutionFailedEventAttributes$;
|
|
861
2503
|
exports.ChildPolicy = ChildPolicy;
|
|
2504
|
+
exports.ChildWorkflowExecutionCanceledEventAttributes$ = ChildWorkflowExecutionCanceledEventAttributes$;
|
|
2505
|
+
exports.ChildWorkflowExecutionCompletedEventAttributes$ = ChildWorkflowExecutionCompletedEventAttributes$;
|
|
2506
|
+
exports.ChildWorkflowExecutionFailedEventAttributes$ = ChildWorkflowExecutionFailedEventAttributes$;
|
|
2507
|
+
exports.ChildWorkflowExecutionStartedEventAttributes$ = ChildWorkflowExecutionStartedEventAttributes$;
|
|
2508
|
+
exports.ChildWorkflowExecutionTerminatedEventAttributes$ = ChildWorkflowExecutionTerminatedEventAttributes$;
|
|
2509
|
+
exports.ChildWorkflowExecutionTimedOutEventAttributes$ = ChildWorkflowExecutionTimedOutEventAttributes$;
|
|
862
2510
|
exports.CloseStatus = CloseStatus;
|
|
2511
|
+
exports.CloseStatusFilter$ = CloseStatusFilter$;
|
|
2512
|
+
exports.CompleteWorkflowExecutionDecisionAttributes$ = CompleteWorkflowExecutionDecisionAttributes$;
|
|
863
2513
|
exports.CompleteWorkflowExecutionFailedCause = CompleteWorkflowExecutionFailedCause;
|
|
2514
|
+
exports.CompleteWorkflowExecutionFailedEventAttributes$ = CompleteWorkflowExecutionFailedEventAttributes$;
|
|
2515
|
+
exports.ContinueAsNewWorkflowExecutionDecisionAttributes$ = ContinueAsNewWorkflowExecutionDecisionAttributes$;
|
|
864
2516
|
exports.ContinueAsNewWorkflowExecutionFailedCause = ContinueAsNewWorkflowExecutionFailedCause;
|
|
2517
|
+
exports.ContinueAsNewWorkflowExecutionFailedEventAttributes$ = ContinueAsNewWorkflowExecutionFailedEventAttributes$;
|
|
2518
|
+
exports.CountClosedWorkflowExecutions$ = CountClosedWorkflowExecutions$;
|
|
865
2519
|
exports.CountClosedWorkflowExecutionsCommand = CountClosedWorkflowExecutionsCommand;
|
|
2520
|
+
exports.CountClosedWorkflowExecutionsInput$ = CountClosedWorkflowExecutionsInput$;
|
|
2521
|
+
exports.CountOpenWorkflowExecutions$ = CountOpenWorkflowExecutions$;
|
|
866
2522
|
exports.CountOpenWorkflowExecutionsCommand = CountOpenWorkflowExecutionsCommand;
|
|
2523
|
+
exports.CountOpenWorkflowExecutionsInput$ = CountOpenWorkflowExecutionsInput$;
|
|
2524
|
+
exports.CountPendingActivityTasks$ = CountPendingActivityTasks$;
|
|
867
2525
|
exports.CountPendingActivityTasksCommand = CountPendingActivityTasksCommand;
|
|
2526
|
+
exports.CountPendingActivityTasksInput$ = CountPendingActivityTasksInput$;
|
|
2527
|
+
exports.CountPendingDecisionTasks$ = CountPendingDecisionTasks$;
|
|
868
2528
|
exports.CountPendingDecisionTasksCommand = CountPendingDecisionTasksCommand;
|
|
2529
|
+
exports.CountPendingDecisionTasksInput$ = CountPendingDecisionTasksInput$;
|
|
2530
|
+
exports.Decision$ = Decision$;
|
|
2531
|
+
exports.DecisionTask$ = DecisionTask$;
|
|
2532
|
+
exports.DecisionTaskCompletedEventAttributes$ = DecisionTaskCompletedEventAttributes$;
|
|
2533
|
+
exports.DecisionTaskScheduledEventAttributes$ = DecisionTaskScheduledEventAttributes$;
|
|
2534
|
+
exports.DecisionTaskStartedEventAttributes$ = DecisionTaskStartedEventAttributes$;
|
|
2535
|
+
exports.DecisionTaskTimedOutEventAttributes$ = DecisionTaskTimedOutEventAttributes$;
|
|
869
2536
|
exports.DecisionTaskTimeoutType = DecisionTaskTimeoutType;
|
|
870
2537
|
exports.DecisionType = DecisionType;
|
|
2538
|
+
exports.DefaultUndefinedFault = DefaultUndefinedFault;
|
|
2539
|
+
exports.DefaultUndefinedFault$ = DefaultUndefinedFault$;
|
|
2540
|
+
exports.DeleteActivityType$ = DeleteActivityType$;
|
|
871
2541
|
exports.DeleteActivityTypeCommand = DeleteActivityTypeCommand;
|
|
2542
|
+
exports.DeleteActivityTypeInput$ = DeleteActivityTypeInput$;
|
|
2543
|
+
exports.DeleteWorkflowType$ = DeleteWorkflowType$;
|
|
872
2544
|
exports.DeleteWorkflowTypeCommand = DeleteWorkflowTypeCommand;
|
|
2545
|
+
exports.DeleteWorkflowTypeInput$ = DeleteWorkflowTypeInput$;
|
|
2546
|
+
exports.DeprecateActivityType$ = DeprecateActivityType$;
|
|
873
2547
|
exports.DeprecateActivityTypeCommand = DeprecateActivityTypeCommand;
|
|
2548
|
+
exports.DeprecateActivityTypeInput$ = DeprecateActivityTypeInput$;
|
|
2549
|
+
exports.DeprecateDomain$ = DeprecateDomain$;
|
|
874
2550
|
exports.DeprecateDomainCommand = DeprecateDomainCommand;
|
|
2551
|
+
exports.DeprecateDomainInput$ = DeprecateDomainInput$;
|
|
2552
|
+
exports.DeprecateWorkflowType$ = DeprecateWorkflowType$;
|
|
875
2553
|
exports.DeprecateWorkflowTypeCommand = DeprecateWorkflowTypeCommand;
|
|
2554
|
+
exports.DeprecateWorkflowTypeInput$ = DeprecateWorkflowTypeInput$;
|
|
2555
|
+
exports.DescribeActivityType$ = DescribeActivityType$;
|
|
876
2556
|
exports.DescribeActivityTypeCommand = DescribeActivityTypeCommand;
|
|
2557
|
+
exports.DescribeActivityTypeInput$ = DescribeActivityTypeInput$;
|
|
2558
|
+
exports.DescribeDomain$ = DescribeDomain$;
|
|
877
2559
|
exports.DescribeDomainCommand = DescribeDomainCommand;
|
|
2560
|
+
exports.DescribeDomainInput$ = DescribeDomainInput$;
|
|
2561
|
+
exports.DescribeWorkflowExecution$ = DescribeWorkflowExecution$;
|
|
878
2562
|
exports.DescribeWorkflowExecutionCommand = DescribeWorkflowExecutionCommand;
|
|
2563
|
+
exports.DescribeWorkflowExecutionInput$ = DescribeWorkflowExecutionInput$;
|
|
2564
|
+
exports.DescribeWorkflowType$ = DescribeWorkflowType$;
|
|
879
2565
|
exports.DescribeWorkflowTypeCommand = DescribeWorkflowTypeCommand;
|
|
2566
|
+
exports.DescribeWorkflowTypeInput$ = DescribeWorkflowTypeInput$;
|
|
2567
|
+
exports.DomainAlreadyExistsFault = DomainAlreadyExistsFault;
|
|
2568
|
+
exports.DomainAlreadyExistsFault$ = DomainAlreadyExistsFault$;
|
|
2569
|
+
exports.DomainConfiguration$ = DomainConfiguration$;
|
|
2570
|
+
exports.DomainDeprecatedFault = DomainDeprecatedFault;
|
|
2571
|
+
exports.DomainDeprecatedFault$ = DomainDeprecatedFault$;
|
|
2572
|
+
exports.DomainDetail$ = DomainDetail$;
|
|
2573
|
+
exports.DomainInfo$ = DomainInfo$;
|
|
2574
|
+
exports.DomainInfos$ = DomainInfos$;
|
|
880
2575
|
exports.EventType = EventType;
|
|
881
2576
|
exports.ExecutionStatus = ExecutionStatus;
|
|
2577
|
+
exports.ExecutionTimeFilter$ = ExecutionTimeFilter$;
|
|
2578
|
+
exports.ExternalWorkflowExecutionCancelRequestedEventAttributes$ = ExternalWorkflowExecutionCancelRequestedEventAttributes$;
|
|
2579
|
+
exports.ExternalWorkflowExecutionSignaledEventAttributes$ = ExternalWorkflowExecutionSignaledEventAttributes$;
|
|
2580
|
+
exports.FailWorkflowExecutionDecisionAttributes$ = FailWorkflowExecutionDecisionAttributes$;
|
|
882
2581
|
exports.FailWorkflowExecutionFailedCause = FailWorkflowExecutionFailedCause;
|
|
2582
|
+
exports.FailWorkflowExecutionFailedEventAttributes$ = FailWorkflowExecutionFailedEventAttributes$;
|
|
2583
|
+
exports.GetWorkflowExecutionHistory$ = GetWorkflowExecutionHistory$;
|
|
883
2584
|
exports.GetWorkflowExecutionHistoryCommand = GetWorkflowExecutionHistoryCommand;
|
|
2585
|
+
exports.GetWorkflowExecutionHistoryInput$ = GetWorkflowExecutionHistoryInput$;
|
|
2586
|
+
exports.History$ = History$;
|
|
2587
|
+
exports.HistoryEvent$ = HistoryEvent$;
|
|
2588
|
+
exports.LambdaFunctionCompletedEventAttributes$ = LambdaFunctionCompletedEventAttributes$;
|
|
2589
|
+
exports.LambdaFunctionFailedEventAttributes$ = LambdaFunctionFailedEventAttributes$;
|
|
2590
|
+
exports.LambdaFunctionScheduledEventAttributes$ = LambdaFunctionScheduledEventAttributes$;
|
|
2591
|
+
exports.LambdaFunctionStartedEventAttributes$ = LambdaFunctionStartedEventAttributes$;
|
|
2592
|
+
exports.LambdaFunctionTimedOutEventAttributes$ = LambdaFunctionTimedOutEventAttributes$;
|
|
884
2593
|
exports.LambdaFunctionTimeoutType = LambdaFunctionTimeoutType;
|
|
2594
|
+
exports.LimitExceededFault = LimitExceededFault;
|
|
2595
|
+
exports.LimitExceededFault$ = LimitExceededFault$;
|
|
2596
|
+
exports.ListActivityTypes$ = ListActivityTypes$;
|
|
885
2597
|
exports.ListActivityTypesCommand = ListActivityTypesCommand;
|
|
2598
|
+
exports.ListActivityTypesInput$ = ListActivityTypesInput$;
|
|
2599
|
+
exports.ListClosedWorkflowExecutions$ = ListClosedWorkflowExecutions$;
|
|
886
2600
|
exports.ListClosedWorkflowExecutionsCommand = ListClosedWorkflowExecutionsCommand;
|
|
2601
|
+
exports.ListClosedWorkflowExecutionsInput$ = ListClosedWorkflowExecutionsInput$;
|
|
2602
|
+
exports.ListDomains$ = ListDomains$;
|
|
887
2603
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
2604
|
+
exports.ListDomainsInput$ = ListDomainsInput$;
|
|
2605
|
+
exports.ListOpenWorkflowExecutions$ = ListOpenWorkflowExecutions$;
|
|
888
2606
|
exports.ListOpenWorkflowExecutionsCommand = ListOpenWorkflowExecutionsCommand;
|
|
2607
|
+
exports.ListOpenWorkflowExecutionsInput$ = ListOpenWorkflowExecutionsInput$;
|
|
2608
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
889
2609
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2610
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2611
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2612
|
+
exports.ListWorkflowTypes$ = ListWorkflowTypes$;
|
|
890
2613
|
exports.ListWorkflowTypesCommand = ListWorkflowTypesCommand;
|
|
2614
|
+
exports.ListWorkflowTypesInput$ = ListWorkflowTypesInput$;
|
|
2615
|
+
exports.MarkerRecordedEventAttributes$ = MarkerRecordedEventAttributes$;
|
|
2616
|
+
exports.OperationNotPermittedFault = OperationNotPermittedFault;
|
|
2617
|
+
exports.OperationNotPermittedFault$ = OperationNotPermittedFault$;
|
|
2618
|
+
exports.PendingTaskCount$ = PendingTaskCount$;
|
|
2619
|
+
exports.PollForActivityTask$ = PollForActivityTask$;
|
|
891
2620
|
exports.PollForActivityTaskCommand = PollForActivityTaskCommand;
|
|
2621
|
+
exports.PollForActivityTaskInput$ = PollForActivityTaskInput$;
|
|
2622
|
+
exports.PollForDecisionTask$ = PollForDecisionTask$;
|
|
892
2623
|
exports.PollForDecisionTaskCommand = PollForDecisionTaskCommand;
|
|
2624
|
+
exports.PollForDecisionTaskInput$ = PollForDecisionTaskInput$;
|
|
2625
|
+
exports.RecordActivityTaskHeartbeat$ = RecordActivityTaskHeartbeat$;
|
|
893
2626
|
exports.RecordActivityTaskHeartbeatCommand = RecordActivityTaskHeartbeatCommand;
|
|
2627
|
+
exports.RecordActivityTaskHeartbeatInput$ = RecordActivityTaskHeartbeatInput$;
|
|
2628
|
+
exports.RecordMarkerDecisionAttributes$ = RecordMarkerDecisionAttributes$;
|
|
894
2629
|
exports.RecordMarkerFailedCause = RecordMarkerFailedCause;
|
|
2630
|
+
exports.RecordMarkerFailedEventAttributes$ = RecordMarkerFailedEventAttributes$;
|
|
2631
|
+
exports.RegisterActivityType$ = RegisterActivityType$;
|
|
895
2632
|
exports.RegisterActivityTypeCommand = RegisterActivityTypeCommand;
|
|
2633
|
+
exports.RegisterActivityTypeInput$ = RegisterActivityTypeInput$;
|
|
2634
|
+
exports.RegisterDomain$ = RegisterDomain$;
|
|
896
2635
|
exports.RegisterDomainCommand = RegisterDomainCommand;
|
|
2636
|
+
exports.RegisterDomainInput$ = RegisterDomainInput$;
|
|
2637
|
+
exports.RegisterWorkflowType$ = RegisterWorkflowType$;
|
|
897
2638
|
exports.RegisterWorkflowTypeCommand = RegisterWorkflowTypeCommand;
|
|
2639
|
+
exports.RegisterWorkflowTypeInput$ = RegisterWorkflowTypeInput$;
|
|
898
2640
|
exports.RegistrationStatus = RegistrationStatus;
|
|
2641
|
+
exports.RequestCancelActivityTaskDecisionAttributes$ = RequestCancelActivityTaskDecisionAttributes$;
|
|
899
2642
|
exports.RequestCancelActivityTaskFailedCause = RequestCancelActivityTaskFailedCause;
|
|
2643
|
+
exports.RequestCancelActivityTaskFailedEventAttributes$ = RequestCancelActivityTaskFailedEventAttributes$;
|
|
2644
|
+
exports.RequestCancelExternalWorkflowExecutionDecisionAttributes$ = RequestCancelExternalWorkflowExecutionDecisionAttributes$;
|
|
900
2645
|
exports.RequestCancelExternalWorkflowExecutionFailedCause = RequestCancelExternalWorkflowExecutionFailedCause;
|
|
2646
|
+
exports.RequestCancelExternalWorkflowExecutionFailedEventAttributes$ = RequestCancelExternalWorkflowExecutionFailedEventAttributes$;
|
|
2647
|
+
exports.RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$ = RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$;
|
|
2648
|
+
exports.RequestCancelWorkflowExecution$ = RequestCancelWorkflowExecution$;
|
|
901
2649
|
exports.RequestCancelWorkflowExecutionCommand = RequestCancelWorkflowExecutionCommand;
|
|
2650
|
+
exports.RequestCancelWorkflowExecutionInput$ = RequestCancelWorkflowExecutionInput$;
|
|
2651
|
+
exports.ResourceTag$ = ResourceTag$;
|
|
2652
|
+
exports.RespondActivityTaskCanceled$ = RespondActivityTaskCanceled$;
|
|
902
2653
|
exports.RespondActivityTaskCanceledCommand = RespondActivityTaskCanceledCommand;
|
|
2654
|
+
exports.RespondActivityTaskCanceledInput$ = RespondActivityTaskCanceledInput$;
|
|
2655
|
+
exports.RespondActivityTaskCompleted$ = RespondActivityTaskCompleted$;
|
|
903
2656
|
exports.RespondActivityTaskCompletedCommand = RespondActivityTaskCompletedCommand;
|
|
2657
|
+
exports.RespondActivityTaskCompletedInput$ = RespondActivityTaskCompletedInput$;
|
|
2658
|
+
exports.RespondActivityTaskFailed$ = RespondActivityTaskFailed$;
|
|
904
2659
|
exports.RespondActivityTaskFailedCommand = RespondActivityTaskFailedCommand;
|
|
2660
|
+
exports.RespondActivityTaskFailedInput$ = RespondActivityTaskFailedInput$;
|
|
2661
|
+
exports.RespondDecisionTaskCompleted$ = RespondDecisionTaskCompleted$;
|
|
905
2662
|
exports.RespondDecisionTaskCompletedCommand = RespondDecisionTaskCompletedCommand;
|
|
2663
|
+
exports.RespondDecisionTaskCompletedInput$ = RespondDecisionTaskCompletedInput$;
|
|
2664
|
+
exports.Run$ = Run$;
|
|
906
2665
|
exports.SWF = SWF;
|
|
907
2666
|
exports.SWFClient = SWFClient;
|
|
2667
|
+
exports.SWFServiceException = SWFServiceException;
|
|
2668
|
+
exports.SWFServiceException$ = SWFServiceException$;
|
|
2669
|
+
exports.ScheduleActivityTaskDecisionAttributes$ = ScheduleActivityTaskDecisionAttributes$;
|
|
908
2670
|
exports.ScheduleActivityTaskFailedCause = ScheduleActivityTaskFailedCause;
|
|
2671
|
+
exports.ScheduleActivityTaskFailedEventAttributes$ = ScheduleActivityTaskFailedEventAttributes$;
|
|
2672
|
+
exports.ScheduleLambdaFunctionDecisionAttributes$ = ScheduleLambdaFunctionDecisionAttributes$;
|
|
909
2673
|
exports.ScheduleLambdaFunctionFailedCause = ScheduleLambdaFunctionFailedCause;
|
|
2674
|
+
exports.ScheduleLambdaFunctionFailedEventAttributes$ = ScheduleLambdaFunctionFailedEventAttributes$;
|
|
2675
|
+
exports.SignalExternalWorkflowExecutionDecisionAttributes$ = SignalExternalWorkflowExecutionDecisionAttributes$;
|
|
910
2676
|
exports.SignalExternalWorkflowExecutionFailedCause = SignalExternalWorkflowExecutionFailedCause;
|
|
2677
|
+
exports.SignalExternalWorkflowExecutionFailedEventAttributes$ = SignalExternalWorkflowExecutionFailedEventAttributes$;
|
|
2678
|
+
exports.SignalExternalWorkflowExecutionInitiatedEventAttributes$ = SignalExternalWorkflowExecutionInitiatedEventAttributes$;
|
|
2679
|
+
exports.SignalWorkflowExecution$ = SignalWorkflowExecution$;
|
|
911
2680
|
exports.SignalWorkflowExecutionCommand = SignalWorkflowExecutionCommand;
|
|
2681
|
+
exports.SignalWorkflowExecutionInput$ = SignalWorkflowExecutionInput$;
|
|
2682
|
+
exports.StartChildWorkflowExecutionDecisionAttributes$ = StartChildWorkflowExecutionDecisionAttributes$;
|
|
912
2683
|
exports.StartChildWorkflowExecutionFailedCause = StartChildWorkflowExecutionFailedCause;
|
|
2684
|
+
exports.StartChildWorkflowExecutionFailedEventAttributes$ = StartChildWorkflowExecutionFailedEventAttributes$;
|
|
2685
|
+
exports.StartChildWorkflowExecutionInitiatedEventAttributes$ = StartChildWorkflowExecutionInitiatedEventAttributes$;
|
|
913
2686
|
exports.StartLambdaFunctionFailedCause = StartLambdaFunctionFailedCause;
|
|
2687
|
+
exports.StartLambdaFunctionFailedEventAttributes$ = StartLambdaFunctionFailedEventAttributes$;
|
|
2688
|
+
exports.StartTimerDecisionAttributes$ = StartTimerDecisionAttributes$;
|
|
914
2689
|
exports.StartTimerFailedCause = StartTimerFailedCause;
|
|
2690
|
+
exports.StartTimerFailedEventAttributes$ = StartTimerFailedEventAttributes$;
|
|
2691
|
+
exports.StartWorkflowExecution$ = StartWorkflowExecution$;
|
|
915
2692
|
exports.StartWorkflowExecutionCommand = StartWorkflowExecutionCommand;
|
|
2693
|
+
exports.StartWorkflowExecutionInput$ = StartWorkflowExecutionInput$;
|
|
2694
|
+
exports.TagFilter$ = TagFilter$;
|
|
2695
|
+
exports.TagResource$ = TagResource$;
|
|
916
2696
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2697
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
2698
|
+
exports.TaskList$ = TaskList$;
|
|
2699
|
+
exports.TerminateWorkflowExecution$ = TerminateWorkflowExecution$;
|
|
917
2700
|
exports.TerminateWorkflowExecutionCommand = TerminateWorkflowExecutionCommand;
|
|
2701
|
+
exports.TerminateWorkflowExecutionInput$ = TerminateWorkflowExecutionInput$;
|
|
2702
|
+
exports.TimerCanceledEventAttributes$ = TimerCanceledEventAttributes$;
|
|
2703
|
+
exports.TimerFiredEventAttributes$ = TimerFiredEventAttributes$;
|
|
2704
|
+
exports.TimerStartedEventAttributes$ = TimerStartedEventAttributes$;
|
|
2705
|
+
exports.TooManyTagsFault = TooManyTagsFault;
|
|
2706
|
+
exports.TooManyTagsFault$ = TooManyTagsFault$;
|
|
2707
|
+
exports.TypeAlreadyExistsFault = TypeAlreadyExistsFault;
|
|
2708
|
+
exports.TypeAlreadyExistsFault$ = TypeAlreadyExistsFault$;
|
|
2709
|
+
exports.TypeDeprecatedFault = TypeDeprecatedFault;
|
|
2710
|
+
exports.TypeDeprecatedFault$ = TypeDeprecatedFault$;
|
|
2711
|
+
exports.TypeNotDeprecatedFault = TypeNotDeprecatedFault;
|
|
2712
|
+
exports.TypeNotDeprecatedFault$ = TypeNotDeprecatedFault$;
|
|
2713
|
+
exports.UndeprecateActivityType$ = UndeprecateActivityType$;
|
|
918
2714
|
exports.UndeprecateActivityTypeCommand = UndeprecateActivityTypeCommand;
|
|
2715
|
+
exports.UndeprecateActivityTypeInput$ = UndeprecateActivityTypeInput$;
|
|
2716
|
+
exports.UndeprecateDomain$ = UndeprecateDomain$;
|
|
919
2717
|
exports.UndeprecateDomainCommand = UndeprecateDomainCommand;
|
|
2718
|
+
exports.UndeprecateDomainInput$ = UndeprecateDomainInput$;
|
|
2719
|
+
exports.UndeprecateWorkflowType$ = UndeprecateWorkflowType$;
|
|
920
2720
|
exports.UndeprecateWorkflowTypeCommand = UndeprecateWorkflowTypeCommand;
|
|
2721
|
+
exports.UndeprecateWorkflowTypeInput$ = UndeprecateWorkflowTypeInput$;
|
|
2722
|
+
exports.UnknownResourceFault = UnknownResourceFault;
|
|
2723
|
+
exports.UnknownResourceFault$ = UnknownResourceFault$;
|
|
2724
|
+
exports.UntagResource$ = UntagResource$;
|
|
921
2725
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2726
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2727
|
+
exports.WorkflowExecution$ = WorkflowExecution$;
|
|
2728
|
+
exports.WorkflowExecutionAlreadyStartedFault = WorkflowExecutionAlreadyStartedFault;
|
|
2729
|
+
exports.WorkflowExecutionAlreadyStartedFault$ = WorkflowExecutionAlreadyStartedFault$;
|
|
922
2730
|
exports.WorkflowExecutionCancelRequestedCause = WorkflowExecutionCancelRequestedCause;
|
|
2731
|
+
exports.WorkflowExecutionCancelRequestedEventAttributes$ = WorkflowExecutionCancelRequestedEventAttributes$;
|
|
2732
|
+
exports.WorkflowExecutionCanceledEventAttributes$ = WorkflowExecutionCanceledEventAttributes$;
|
|
2733
|
+
exports.WorkflowExecutionCompletedEventAttributes$ = WorkflowExecutionCompletedEventAttributes$;
|
|
2734
|
+
exports.WorkflowExecutionConfiguration$ = WorkflowExecutionConfiguration$;
|
|
2735
|
+
exports.WorkflowExecutionContinuedAsNewEventAttributes$ = WorkflowExecutionContinuedAsNewEventAttributes$;
|
|
2736
|
+
exports.WorkflowExecutionCount$ = WorkflowExecutionCount$;
|
|
2737
|
+
exports.WorkflowExecutionDetail$ = WorkflowExecutionDetail$;
|
|
2738
|
+
exports.WorkflowExecutionFailedEventAttributes$ = WorkflowExecutionFailedEventAttributes$;
|
|
2739
|
+
exports.WorkflowExecutionFilter$ = WorkflowExecutionFilter$;
|
|
2740
|
+
exports.WorkflowExecutionInfo$ = WorkflowExecutionInfo$;
|
|
2741
|
+
exports.WorkflowExecutionInfos$ = WorkflowExecutionInfos$;
|
|
2742
|
+
exports.WorkflowExecutionOpenCounts$ = WorkflowExecutionOpenCounts$;
|
|
2743
|
+
exports.WorkflowExecutionSignaledEventAttributes$ = WorkflowExecutionSignaledEventAttributes$;
|
|
2744
|
+
exports.WorkflowExecutionStartedEventAttributes$ = WorkflowExecutionStartedEventAttributes$;
|
|
923
2745
|
exports.WorkflowExecutionTerminatedCause = WorkflowExecutionTerminatedCause;
|
|
2746
|
+
exports.WorkflowExecutionTerminatedEventAttributes$ = WorkflowExecutionTerminatedEventAttributes$;
|
|
2747
|
+
exports.WorkflowExecutionTimedOutEventAttributes$ = WorkflowExecutionTimedOutEventAttributes$;
|
|
924
2748
|
exports.WorkflowExecutionTimeoutType = WorkflowExecutionTimeoutType;
|
|
2749
|
+
exports.WorkflowType$ = WorkflowType$;
|
|
2750
|
+
exports.WorkflowTypeConfiguration$ = WorkflowTypeConfiguration$;
|
|
2751
|
+
exports.WorkflowTypeDetail$ = WorkflowTypeDetail$;
|
|
2752
|
+
exports.WorkflowTypeFilter$ = WorkflowTypeFilter$;
|
|
2753
|
+
exports.WorkflowTypeInfo$ = WorkflowTypeInfo$;
|
|
2754
|
+
exports.WorkflowTypeInfos$ = WorkflowTypeInfos$;
|
|
2755
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
925
2756
|
exports.paginateGetWorkflowExecutionHistory = paginateGetWorkflowExecutionHistory;
|
|
926
2757
|
exports.paginateListActivityTypes = paginateListActivityTypes;
|
|
927
2758
|
exports.paginateListClosedWorkflowExecutions = paginateListClosedWorkflowExecutions;
|