@aws-sdk/client-swf 3.986.0 → 3.988.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 +58 -1695
- package/dist-cjs/models/SWFServiceException.js +12 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1326 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +105 -99
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SWFServiceException = require('./models/SWFServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1456 +113,6 @@ class SWFClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SWFServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SWFServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class OperationNotPermittedFault extends SWFServiceException {
|
|
121
|
-
name = "OperationNotPermittedFault";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "OperationNotPermittedFault",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, OperationNotPermittedFault.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class UnknownResourceFault extends SWFServiceException {
|
|
133
|
-
name = "UnknownResourceFault";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "UnknownResourceFault",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, UnknownResourceFault.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class DefaultUndefinedFault extends SWFServiceException {
|
|
145
|
-
name = "DefaultUndefinedFault";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "DefaultUndefinedFault",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, DefaultUndefinedFault.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class TypeNotDeprecatedFault extends SWFServiceException {
|
|
157
|
-
name = "TypeNotDeprecatedFault";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "TypeNotDeprecatedFault",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, TypeNotDeprecatedFault.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class TypeDeprecatedFault extends SWFServiceException {
|
|
169
|
-
name = "TypeDeprecatedFault";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "TypeDeprecatedFault",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, TypeDeprecatedFault.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class DomainDeprecatedFault extends SWFServiceException {
|
|
181
|
-
name = "DomainDeprecatedFault";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "DomainDeprecatedFault",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, DomainDeprecatedFault.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class DomainAlreadyExistsFault extends SWFServiceException {
|
|
193
|
-
name = "DomainAlreadyExistsFault";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "DomainAlreadyExistsFault",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, DomainAlreadyExistsFault.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class LimitExceededFault extends SWFServiceException {
|
|
205
|
-
name = "LimitExceededFault";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "LimitExceededFault",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, LimitExceededFault.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class TypeAlreadyExistsFault extends SWFServiceException {
|
|
217
|
-
name = "TypeAlreadyExistsFault";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "TypeAlreadyExistsFault",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, TypeAlreadyExistsFault.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class TooManyTagsFault extends SWFServiceException {
|
|
229
|
-
name = "TooManyTagsFault";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "TooManyTagsFault",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, TooManyTagsFault.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class WorkflowExecutionAlreadyStartedFault extends SWFServiceException {
|
|
241
|
-
name = "WorkflowExecutionAlreadyStartedFault";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "WorkflowExecutionAlreadyStartedFault",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, WorkflowExecutionAlreadyStartedFault.prototype);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
const _AT = "ActivityTask";
|
|
254
|
-
const _ATC = "ActivityTypeConfiguration";
|
|
255
|
-
const _ATCEA = "ActivityTaskCanceledEventAttributes";
|
|
256
|
-
const _ATCEAc = "ActivityTaskCompletedEventAttributes";
|
|
257
|
-
const _ATCREA = "ActivityTaskCancelRequestedEventAttributes";
|
|
258
|
-
const _ATD = "ActivityTypeDetail";
|
|
259
|
-
const _ATFEA = "ActivityTaskFailedEventAttributes";
|
|
260
|
-
const _ATI = "ActivityTypeInfo";
|
|
261
|
-
const _ATIL = "ActivityTypeInfoList";
|
|
262
|
-
const _ATIc = "ActivityTypeInfos";
|
|
263
|
-
const _ATS = "ActivityTaskStatus";
|
|
264
|
-
const _ATSEA = "ActivityTaskScheduledEventAttributes";
|
|
265
|
-
const _ATSEAc = "ActivityTaskStartedEventAttributes";
|
|
266
|
-
const _ATTOEA = "ActivityTaskTimedOutEventAttributes";
|
|
267
|
-
const _ATc = "ActivityType";
|
|
268
|
-
const _CANWEDA = "ContinueAsNewWorkflowExecutionDecisionAttributes";
|
|
269
|
-
const _CANWEFEA = "ContinueAsNewWorkflowExecutionFailedEventAttributes";
|
|
270
|
-
const _CCWE = "CountClosedWorkflowExecutions";
|
|
271
|
-
const _CCWEI = "CountClosedWorkflowExecutionsInput";
|
|
272
|
-
const _COWE = "CountOpenWorkflowExecutions";
|
|
273
|
-
const _COWEI = "CountOpenWorkflowExecutionsInput";
|
|
274
|
-
const _CPAT = "CountPendingActivityTasks";
|
|
275
|
-
const _CPATI = "CountPendingActivityTasksInput";
|
|
276
|
-
const _CPDT = "CountPendingDecisionTasks";
|
|
277
|
-
const _CPDTI = "CountPendingDecisionTasksInput";
|
|
278
|
-
const _CSF = "CloseStatusFilter";
|
|
279
|
-
const _CTDA = "CancelTimerDecisionAttributes";
|
|
280
|
-
const _CTFEA = "CancelTimerFailedEventAttributes";
|
|
281
|
-
const _CWECEA = "ChildWorkflowExecutionCanceledEventAttributes";
|
|
282
|
-
const _CWECEAh = "ChildWorkflowExecutionCompletedEventAttributes";
|
|
283
|
-
const _CWEDA = "CancelWorkflowExecutionDecisionAttributes";
|
|
284
|
-
const _CWEDAo = "CompleteWorkflowExecutionDecisionAttributes";
|
|
285
|
-
const _CWEFEA = "CancelWorkflowExecutionFailedEventAttributes";
|
|
286
|
-
const _CWEFEAh = "ChildWorkflowExecutionFailedEventAttributes";
|
|
287
|
-
const _CWEFEAo = "CompleteWorkflowExecutionFailedEventAttributes";
|
|
288
|
-
const _CWESEA = "ChildWorkflowExecutionStartedEventAttributes";
|
|
289
|
-
const _CWETEA = "ChildWorkflowExecutionTerminatedEventAttributes";
|
|
290
|
-
const _CWETOEA = "ChildWorkflowExecutionTimedOutEventAttributes";
|
|
291
|
-
const _D = "Decision";
|
|
292
|
-
const _DAEF = "DomainAlreadyExistsFault";
|
|
293
|
-
const _DAT = "DeleteActivityType";
|
|
294
|
-
const _DATI = "DeleteActivityTypeInput";
|
|
295
|
-
const _DATIe = "DeprecateActivityTypeInput";
|
|
296
|
-
const _DATIes = "DescribeActivityTypeInput";
|
|
297
|
-
const _DATe = "DeprecateActivityType";
|
|
298
|
-
const _DATes = "DescribeActivityType";
|
|
299
|
-
const _DC = "DomainConfiguration";
|
|
300
|
-
const _DD = "DomainDetail";
|
|
301
|
-
const _DDF = "DomainDeprecatedFault";
|
|
302
|
-
const _DDI = "DeprecateDomainInput";
|
|
303
|
-
const _DDIe = "DescribeDomainInput";
|
|
304
|
-
const _DDe = "DeprecateDomain";
|
|
305
|
-
const _DDes = "DescribeDomain";
|
|
306
|
-
const _DI = "DomainInfo";
|
|
307
|
-
const _DIL = "DomainInfoList";
|
|
308
|
-
const _DIo = "DomainInfos";
|
|
309
|
-
const _DL = "DecisionList";
|
|
310
|
-
const _DT = "DecisionTask";
|
|
311
|
-
const _DTCEA = "DecisionTaskCompletedEventAttributes";
|
|
312
|
-
const _DTSEA = "DecisionTaskScheduledEventAttributes";
|
|
313
|
-
const _DTSEAe = "DecisionTaskStartedEventAttributes";
|
|
314
|
-
const _DTTOEA = "DecisionTaskTimedOutEventAttributes";
|
|
315
|
-
const _DUF = "DefaultUndefinedFault";
|
|
316
|
-
const _DWE = "DescribeWorkflowExecution";
|
|
317
|
-
const _DWEI = "DescribeWorkflowExecutionInput";
|
|
318
|
-
const _DWT = "DeleteWorkflowType";
|
|
319
|
-
const _DWTI = "DeleteWorkflowTypeInput";
|
|
320
|
-
const _DWTIe = "DeprecateWorkflowTypeInput";
|
|
321
|
-
const _DWTIes = "DescribeWorkflowTypeInput";
|
|
322
|
-
const _DWTe = "DeprecateWorkflowType";
|
|
323
|
-
const _DWTes = "DescribeWorkflowType";
|
|
324
|
-
const _ETF = "ExecutionTimeFilter";
|
|
325
|
-
const _EWECREA = "ExternalWorkflowExecutionCancelRequestedEventAttributes";
|
|
326
|
-
const _EWESEA = "ExternalWorkflowExecutionSignaledEventAttributes";
|
|
327
|
-
const _FWEDA = "FailWorkflowExecutionDecisionAttributes";
|
|
328
|
-
const _FWEFEA = "FailWorkflowExecutionFailedEventAttributes";
|
|
329
|
-
const _GWEH = "GetWorkflowExecutionHistory";
|
|
330
|
-
const _GWEHI = "GetWorkflowExecutionHistoryInput";
|
|
331
|
-
const _H = "History";
|
|
332
|
-
const _HE = "HistoryEvent";
|
|
333
|
-
const _HEL = "HistoryEventList";
|
|
334
|
-
const _LAT = "ListActivityTypes";
|
|
335
|
-
const _LATI = "ListActivityTypesInput";
|
|
336
|
-
const _LCWE = "ListClosedWorkflowExecutions";
|
|
337
|
-
const _LCWEI = "ListClosedWorkflowExecutionsInput";
|
|
338
|
-
const _LD = "ListDomains";
|
|
339
|
-
const _LDI = "ListDomainsInput";
|
|
340
|
-
const _LEF = "LimitExceededFault";
|
|
341
|
-
const _LFCEA = "LambdaFunctionCompletedEventAttributes";
|
|
342
|
-
const _LFFEA = "LambdaFunctionFailedEventAttributes";
|
|
343
|
-
const _LFSEA = "LambdaFunctionScheduledEventAttributes";
|
|
344
|
-
const _LFSEAa = "LambdaFunctionStartedEventAttributes";
|
|
345
|
-
const _LFTOEA = "LambdaFunctionTimedOutEventAttributes";
|
|
346
|
-
const _LOWE = "ListOpenWorkflowExecutions";
|
|
347
|
-
const _LOWEI = "ListOpenWorkflowExecutionsInput";
|
|
348
|
-
const _LTFR = "ListTagsForResource";
|
|
349
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
350
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
351
|
-
const _LWT = "ListWorkflowTypes";
|
|
352
|
-
const _LWTI = "ListWorkflowTypesInput";
|
|
353
|
-
const _MREA = "MarkerRecordedEventAttributes";
|
|
354
|
-
const _ONPF = "OperationNotPermittedFault";
|
|
355
|
-
const _PFAT = "PollForActivityTask";
|
|
356
|
-
const _PFATI = "PollForActivityTaskInput";
|
|
357
|
-
const _PFDT = "PollForDecisionTask";
|
|
358
|
-
const _PFDTI = "PollForDecisionTaskInput";
|
|
359
|
-
const _PTC = "PendingTaskCount";
|
|
360
|
-
const _R = "Run";
|
|
361
|
-
const _RAT = "RegisterActivityType";
|
|
362
|
-
const _RATC = "RespondActivityTaskCanceled";
|
|
363
|
-
const _RATCI = "RespondActivityTaskCanceledInput";
|
|
364
|
-
const _RATCIe = "RespondActivityTaskCompletedInput";
|
|
365
|
-
const _RATCe = "RespondActivityTaskCompleted";
|
|
366
|
-
const _RATF = "RespondActivityTaskFailed";
|
|
367
|
-
const _RATFI = "RespondActivityTaskFailedInput";
|
|
368
|
-
const _RATH = "RecordActivityTaskHeartbeat";
|
|
369
|
-
const _RATHI = "RecordActivityTaskHeartbeatInput";
|
|
370
|
-
const _RATI = "RegisterActivityTypeInput";
|
|
371
|
-
const _RCATDA = "RequestCancelActivityTaskDecisionAttributes";
|
|
372
|
-
const _RCATFEA = "RequestCancelActivityTaskFailedEventAttributes";
|
|
373
|
-
const _RCEWEDA = "RequestCancelExternalWorkflowExecutionDecisionAttributes";
|
|
374
|
-
const _RCEWEFEA = "RequestCancelExternalWorkflowExecutionFailedEventAttributes";
|
|
375
|
-
const _RCEWEIEA = "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes";
|
|
376
|
-
const _RCWE = "RequestCancelWorkflowExecution";
|
|
377
|
-
const _RCWEI = "RequestCancelWorkflowExecutionInput";
|
|
378
|
-
const _RD = "RegisterDomain";
|
|
379
|
-
const _RDI = "RegisterDomainInput";
|
|
380
|
-
const _RDTC = "RespondDecisionTaskCompleted";
|
|
381
|
-
const _RDTCI = "RespondDecisionTaskCompletedInput";
|
|
382
|
-
const _RMDA = "RecordMarkerDecisionAttributes";
|
|
383
|
-
const _RMFEA = "RecordMarkerFailedEventAttributes";
|
|
384
|
-
const _RT = "ResourceTag";
|
|
385
|
-
const _RTL = "ResourceTagList";
|
|
386
|
-
const _RWT = "RegisterWorkflowType";
|
|
387
|
-
const _RWTI = "RegisterWorkflowTypeInput";
|
|
388
|
-
const _SATDA = "ScheduleActivityTaskDecisionAttributes";
|
|
389
|
-
const _SATFEA = "ScheduleActivityTaskFailedEventAttributes";
|
|
390
|
-
const _SCWEDA = "StartChildWorkflowExecutionDecisionAttributes";
|
|
391
|
-
const _SCWEFEA = "StartChildWorkflowExecutionFailedEventAttributes";
|
|
392
|
-
const _SCWEIEA = "StartChildWorkflowExecutionInitiatedEventAttributes";
|
|
393
|
-
const _SEWEDA = "SignalExternalWorkflowExecutionDecisionAttributes";
|
|
394
|
-
const _SEWEFEA = "SignalExternalWorkflowExecutionFailedEventAttributes";
|
|
395
|
-
const _SEWEIEA = "SignalExternalWorkflowExecutionInitiatedEventAttributes";
|
|
396
|
-
const _SLFDA = "ScheduleLambdaFunctionDecisionAttributes";
|
|
397
|
-
const _SLFFEA = "ScheduleLambdaFunctionFailedEventAttributes";
|
|
398
|
-
const _SLFFEAt = "StartLambdaFunctionFailedEventAttributes";
|
|
399
|
-
const _STDA = "StartTimerDecisionAttributes";
|
|
400
|
-
const _STFEA = "StartTimerFailedEventAttributes";
|
|
401
|
-
const _SWE = "SignalWorkflowExecution";
|
|
402
|
-
const _SWEI = "SignalWorkflowExecutionInput";
|
|
403
|
-
const _SWEIt = "StartWorkflowExecutionInput";
|
|
404
|
-
const _SWEt = "StartWorkflowExecution";
|
|
405
|
-
const _TAEF = "TypeAlreadyExistsFault";
|
|
406
|
-
const _TCEA = "TimerCanceledEventAttributes";
|
|
407
|
-
const _TDF = "TypeDeprecatedFault";
|
|
408
|
-
const _TF = "TagFilter";
|
|
409
|
-
const _TFEA = "TimerFiredEventAttributes";
|
|
410
|
-
const _TL = "TaskList";
|
|
411
|
-
const _TMTF = "TooManyTagsFault";
|
|
412
|
-
const _TNDF = "TypeNotDeprecatedFault";
|
|
413
|
-
const _TR = "TagResource";
|
|
414
|
-
const _TRI = "TagResourceInput";
|
|
415
|
-
const _TSEA = "TimerStartedEventAttributes";
|
|
416
|
-
const _TWE = "TerminateWorkflowExecution";
|
|
417
|
-
const _TWEI = "TerminateWorkflowExecutionInput";
|
|
418
|
-
const _UAT = "UndeprecateActivityType";
|
|
419
|
-
const _UATI = "UndeprecateActivityTypeInput";
|
|
420
|
-
const _UD = "UndeprecateDomain";
|
|
421
|
-
const _UDI = "UndeprecateDomainInput";
|
|
422
|
-
const _UR = "UntagResource";
|
|
423
|
-
const _URF = "UnknownResourceFault";
|
|
424
|
-
const _URI = "UntagResourceInput";
|
|
425
|
-
const _UWT = "UndeprecateWorkflowType";
|
|
426
|
-
const _UWTI = "UndeprecateWorkflowTypeInput";
|
|
427
|
-
const _WE = "WorkflowExecution";
|
|
428
|
-
const _WEASF = "WorkflowExecutionAlreadyStartedFault";
|
|
429
|
-
const _WEC = "WorkflowExecutionConfiguration";
|
|
430
|
-
const _WECANEA = "WorkflowExecutionContinuedAsNewEventAttributes";
|
|
431
|
-
const _WECEA = "WorkflowExecutionCanceledEventAttributes";
|
|
432
|
-
const _WECEAo = "WorkflowExecutionCompletedEventAttributes";
|
|
433
|
-
const _WECREA = "WorkflowExecutionCancelRequestedEventAttributes";
|
|
434
|
-
const _WECo = "WorkflowExecutionCount";
|
|
435
|
-
const _WED = "WorkflowExecutionDetail";
|
|
436
|
-
const _WEF = "WorkflowExecutionFilter";
|
|
437
|
-
const _WEFEA = "WorkflowExecutionFailedEventAttributes";
|
|
438
|
-
const _WEI = "WorkflowExecutionInfo";
|
|
439
|
-
const _WEIL = "WorkflowExecutionInfoList";
|
|
440
|
-
const _WEIo = "WorkflowExecutionInfos";
|
|
441
|
-
const _WEOC = "WorkflowExecutionOpenCounts";
|
|
442
|
-
const _WESEA = "WorkflowExecutionSignaledEventAttributes";
|
|
443
|
-
const _WESEAo = "WorkflowExecutionStartedEventAttributes";
|
|
444
|
-
const _WETEA = "WorkflowExecutionTerminatedEventAttributes";
|
|
445
|
-
const _WETOEA = "WorkflowExecutionTimedOutEventAttributes";
|
|
446
|
-
const _WT = "WorkflowType";
|
|
447
|
-
const _WTC = "WorkflowTypeConfiguration";
|
|
448
|
-
const _WTD = "WorkflowTypeDetail";
|
|
449
|
-
const _WTF = "WorkflowTypeFilter";
|
|
450
|
-
const _WTI = "WorkflowTypeInfo";
|
|
451
|
-
const _WTIL = "WorkflowTypeInfoList";
|
|
452
|
-
const _WTIo = "WorkflowTypeInfos";
|
|
453
|
-
const _a = "arn";
|
|
454
|
-
const _aI = "activityId";
|
|
455
|
-
const _aT = "activityType";
|
|
456
|
-
const _aTCEA = "activityTaskCompletedEventAttributes";
|
|
457
|
-
const _aTCEAc = "activityTaskCanceledEventAttributes";
|
|
458
|
-
const _aTCREA = "activityTaskCancelRequestedEventAttributes";
|
|
459
|
-
const _aTFEA = "activityTaskFailedEventAttributes";
|
|
460
|
-
const _aTSEA = "activityTaskScheduledEventAttributes";
|
|
461
|
-
const _aTSEAc = "activityTaskStartedEventAttributes";
|
|
462
|
-
const _aTTOEA = "activityTaskTimedOutEventAttributes";
|
|
463
|
-
const _c = "control";
|
|
464
|
-
const _cANWEDA = "continueAsNewWorkflowExecutionDecisionAttributes";
|
|
465
|
-
const _cANWEFEA = "continueAsNewWorkflowExecutionFailedEventAttributes";
|
|
466
|
-
const _cD = "creationDate";
|
|
467
|
-
const _cERI = "continuedExecutionRunId";
|
|
468
|
-
const _cP = "childPolicy";
|
|
469
|
-
const _cR = "cancelRequested";
|
|
470
|
-
const _cS = "closeStatus";
|
|
471
|
-
const _cSF = "closeStatusFilter";
|
|
472
|
-
const _cT = "closeTimestamp";
|
|
473
|
-
const _cTDA = "cancelTimerDecisionAttributes";
|
|
474
|
-
const _cTF = "closeTimeFilter";
|
|
475
|
-
const _cTFEA = "cancelTimerFailedEventAttributes";
|
|
476
|
-
const _cWECEA = "childWorkflowExecutionCompletedEventAttributes";
|
|
477
|
-
const _cWECEAh = "childWorkflowExecutionCanceledEventAttributes";
|
|
478
|
-
const _cWEDA = "completeWorkflowExecutionDecisionAttributes";
|
|
479
|
-
const _cWEDAa = "cancelWorkflowExecutionDecisionAttributes";
|
|
480
|
-
const _cWEFEA = "completeWorkflowExecutionFailedEventAttributes";
|
|
481
|
-
const _cWEFEAa = "cancelWorkflowExecutionFailedEventAttributes";
|
|
482
|
-
const _cWEFEAh = "childWorkflowExecutionFailedEventAttributes";
|
|
483
|
-
const _cWESEA = "childWorkflowExecutionStartedEventAttributes";
|
|
484
|
-
const _cWETEA = "childWorkflowExecutionTerminatedEventAttributes";
|
|
485
|
-
const _cWETOEA = "childWorkflowExecutionTimedOutEventAttributes";
|
|
486
|
-
const _ca = "cause";
|
|
487
|
-
const _cl = "client";
|
|
488
|
-
const _co = "configuration";
|
|
489
|
-
const _cou = "count";
|
|
490
|
-
const _d = "details";
|
|
491
|
-
const _dCP = "defaultChildPolicy";
|
|
492
|
-
const _dD = "deprecationDate";
|
|
493
|
-
const _dESTCT = "defaultExecutionStartToCloseTimeout";
|
|
494
|
-
const _dI = "domainInfo";
|
|
495
|
-
const _dIo = "domainInfos";
|
|
496
|
-
const _dLR = "defaultLambdaRole";
|
|
497
|
-
const _dT = "decisionType";
|
|
498
|
-
const _dTCEA = "decisionTaskCompletedEventAttributes";
|
|
499
|
-
const _dTCEI = "decisionTaskCompletedEventId";
|
|
500
|
-
const _dTHT = "defaultTaskHeartbeatTimeout";
|
|
501
|
-
const _dTL = "defaultTaskList";
|
|
502
|
-
const _dTP = "defaultTaskPriority";
|
|
503
|
-
const _dTSEA = "decisionTaskScheduledEventAttributes";
|
|
504
|
-
const _dTSEAe = "decisionTaskStartedEventAttributes";
|
|
505
|
-
const _dTSTCT = "defaultTaskStartToCloseTimeout";
|
|
506
|
-
const _dTSTCTe = "defaultTaskScheduleToCloseTimeout";
|
|
507
|
-
const _dTSTST = "defaultTaskScheduleToStartTimeout";
|
|
508
|
-
const _dTTOEA = "decisionTaskTimedOutEventAttributes";
|
|
509
|
-
const _de = "description";
|
|
510
|
-
const _dec = "decisions";
|
|
511
|
-
const _do = "domain";
|
|
512
|
-
const _e = "events";
|
|
513
|
-
const _eC = "executionContext";
|
|
514
|
-
const _eCx = "executionConfiguration";
|
|
515
|
-
const _eF = "executionFilter";
|
|
516
|
-
const _eI = "eventId";
|
|
517
|
-
const _eIEI = "externalInitiatedEventId";
|
|
518
|
-
const _eIx = "executionInfo";
|
|
519
|
-
const _eIxe = "executionInfos";
|
|
520
|
-
const _eS = "executionStatus";
|
|
521
|
-
const _eSTCT = "executionStartToCloseTimeout";
|
|
522
|
-
const _eT = "eventTimestamp";
|
|
523
|
-
const _eTv = "eventType";
|
|
524
|
-
const _eWE = "externalWorkflowExecution";
|
|
525
|
-
const _eWECREA = "externalWorkflowExecutionCancelRequestedEventAttributes";
|
|
526
|
-
const _eWESEA = "externalWorkflowExecutionSignaledEventAttributes";
|
|
527
|
-
const _er = "error";
|
|
528
|
-
const _ex = "execution";
|
|
529
|
-
const _fWEDA = "failWorkflowExecutionDecisionAttributes";
|
|
530
|
-
const _fWEFEA = "failWorkflowExecutionFailedEventAttributes";
|
|
531
|
-
const _hE = "httpError";
|
|
532
|
-
const _hT = "heartbeatTimeout";
|
|
533
|
-
const _i = "input";
|
|
534
|
-
const _iEI = "initiatedEventId";
|
|
535
|
-
const _id = "identity";
|
|
536
|
-
const _id_ = "id";
|
|
537
|
-
const _k = "key";
|
|
538
|
-
const _lATT = "latestActivityTaskTimestamp";
|
|
539
|
-
const _lCREI = "latestCancelRequestedEventId";
|
|
540
|
-
const _lD = "latestDate";
|
|
541
|
-
const _lEC = "latestExecutionContext";
|
|
542
|
-
const _lFCEA = "lambdaFunctionCompletedEventAttributes";
|
|
543
|
-
const _lFFEA = "lambdaFunctionFailedEventAttributes";
|
|
544
|
-
const _lFSEA = "lambdaFunctionScheduledEventAttributes";
|
|
545
|
-
const _lFSEAa = "lambdaFunctionStartedEventAttributes";
|
|
546
|
-
const _lFTOEA = "lambdaFunctionTimedOutEventAttributes";
|
|
547
|
-
const _lR = "lambdaRole";
|
|
548
|
-
const _m = "message";
|
|
549
|
-
const _mN = "markerName";
|
|
550
|
-
const _mPS = "maximumPageSize";
|
|
551
|
-
const _mREA = "markerRecordedEventAttributes";
|
|
552
|
-
const _n = "name";
|
|
553
|
-
const _nERI = "newExecutionRunId";
|
|
554
|
-
const _nPT = "nextPageToken";
|
|
555
|
-
const _oAT = "openActivityTasks";
|
|
556
|
-
const _oC = "openCounts";
|
|
557
|
-
const _oCWE = "openChildWorkflowExecutions";
|
|
558
|
-
const _oD = "oldestDate";
|
|
559
|
-
const _oDT = "openDecisionTasks";
|
|
560
|
-
const _oLF = "openLambdaFunctions";
|
|
561
|
-
const _oT = "openTimers";
|
|
562
|
-
const _p = "parent";
|
|
563
|
-
const _pIEI = "parentInitiatedEventId";
|
|
564
|
-
const _pSEI = "previousStartedEventId";
|
|
565
|
-
const _pWE = "parentWorkflowExecution";
|
|
566
|
-
const _r = "result";
|
|
567
|
-
const _rA = "resourceArn";
|
|
568
|
-
const _rCATDA = "requestCancelActivityTaskDecisionAttributes";
|
|
569
|
-
const _rCATFEA = "requestCancelActivityTaskFailedEventAttributes";
|
|
570
|
-
const _rCEWEDA = "requestCancelExternalWorkflowExecutionDecisionAttributes";
|
|
571
|
-
const _rCEWEFEA = "requestCancelExternalWorkflowExecutionFailedEventAttributes";
|
|
572
|
-
const _rCEWEIEA = "requestCancelExternalWorkflowExecutionInitiatedEventAttributes";
|
|
573
|
-
const _rI = "runId";
|
|
574
|
-
const _rMDA = "recordMarkerDecisionAttributes";
|
|
575
|
-
const _rMFEA = "recordMarkerFailedEventAttributes";
|
|
576
|
-
const _rO = "reverseOrder";
|
|
577
|
-
const _rS = "registrationStatus";
|
|
578
|
-
const _re = "reason";
|
|
579
|
-
const _s = "status";
|
|
580
|
-
const _sAPSE = "startAtPreviousStartedEvent";
|
|
581
|
-
const _sATDA = "scheduleActivityTaskDecisionAttributes";
|
|
582
|
-
const _sATFEA = "scheduleActivityTaskFailedEventAttributes";
|
|
583
|
-
const _sCWEDA = "startChildWorkflowExecutionDecisionAttributes";
|
|
584
|
-
const _sCWEFEA = "startChildWorkflowExecutionFailedEventAttributes";
|
|
585
|
-
const _sCWEIEA = "startChildWorkflowExecutionInitiatedEventAttributes";
|
|
586
|
-
const _sEI = "startedEventId";
|
|
587
|
-
const _sEIc = "scheduledEventId";
|
|
588
|
-
const _sEWEDA = "signalExternalWorkflowExecutionDecisionAttributes";
|
|
589
|
-
const _sEWEFEA = "signalExternalWorkflowExecutionFailedEventAttributes";
|
|
590
|
-
const _sEWEIEA = "signalExternalWorkflowExecutionInitiatedEventAttributes";
|
|
591
|
-
const _sLFDA = "scheduleLambdaFunctionDecisionAttributes";
|
|
592
|
-
const _sLFFEA = "scheduleLambdaFunctionFailedEventAttributes";
|
|
593
|
-
const _sLFFEAt = "startLambdaFunctionFailedEventAttributes";
|
|
594
|
-
const _sN = "signalName";
|
|
595
|
-
const _sT = "startTimestamp";
|
|
596
|
-
const _sTCT = "scheduleToCloseTimeout";
|
|
597
|
-
const _sTCTt = "startToCloseTimeout";
|
|
598
|
-
const _sTDA = "startTimerDecisionAttributes";
|
|
599
|
-
const _sTF = "startTimeFilter";
|
|
600
|
-
const _sTFEA = "startTimerFailedEventAttributes";
|
|
601
|
-
const _sTFT = "startToFireTimeout";
|
|
602
|
-
const _sTST = "scheduleToStartTimeout";
|
|
603
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.swf";
|
|
604
|
-
const _t = "tags";
|
|
605
|
-
const _tCEA = "timerCanceledEventAttributes";
|
|
606
|
-
const _tF = "typeFilter";
|
|
607
|
-
const _tFEA = "timerFiredEventAttributes";
|
|
608
|
-
const _tFa = "tagFilter";
|
|
609
|
-
const _tI = "typeInfo";
|
|
610
|
-
const _tIi = "timerId";
|
|
611
|
-
const _tIy = "typeInfos";
|
|
612
|
-
const _tK = "tagKeys";
|
|
613
|
-
const _tL = "taskList";
|
|
614
|
-
const _tLSTST = "taskListScheduleToStartTimeout";
|
|
615
|
-
const _tLa = "tagList";
|
|
616
|
-
const _tP = "taskPriority";
|
|
617
|
-
const _tSEA = "timerStartedEventAttributes";
|
|
618
|
-
const _tSTCT = "taskStartToCloseTimeout";
|
|
619
|
-
const _tT = "taskToken";
|
|
620
|
-
const _tTi = "timeoutType";
|
|
621
|
-
const _ta = "tag";
|
|
622
|
-
const _tr = "truncated";
|
|
623
|
-
const _v = "version";
|
|
624
|
-
const _va = "value";
|
|
625
|
-
const _wE = "workflowExecution";
|
|
626
|
-
const _wECANEA = "workflowExecutionContinuedAsNewEventAttributes";
|
|
627
|
-
const _wECEA = "workflowExecutionCompletedEventAttributes";
|
|
628
|
-
const _wECEAo = "workflowExecutionCanceledEventAttributes";
|
|
629
|
-
const _wECREA = "workflowExecutionCancelRequestedEventAttributes";
|
|
630
|
-
const _wEFEA = "workflowExecutionFailedEventAttributes";
|
|
631
|
-
const _wERPID = "workflowExecutionRetentionPeriodInDays";
|
|
632
|
-
const _wESEA = "workflowExecutionStartedEventAttributes";
|
|
633
|
-
const _wESEAo = "workflowExecutionSignaledEventAttributes";
|
|
634
|
-
const _wETEA = "workflowExecutionTerminatedEventAttributes";
|
|
635
|
-
const _wETOEA = "workflowExecutionTimedOutEventAttributes";
|
|
636
|
-
const _wI = "workflowId";
|
|
637
|
-
const _wT = "workflowType";
|
|
638
|
-
const _wTV = "workflowTypeVersion";
|
|
639
|
-
const n0 = "com.amazonaws.swf";
|
|
640
|
-
var ActivityTask$ = [3, n0, _AT,
|
|
641
|
-
0,
|
|
642
|
-
[_tT, _aI, _sEI, _wE, _aT, _i],
|
|
643
|
-
[0, 0, 1, () => WorkflowExecution$, () => ActivityType$, 0], 5
|
|
644
|
-
];
|
|
645
|
-
var ActivityTaskCanceledEventAttributes$ = [3, n0, _ATCEA,
|
|
646
|
-
0,
|
|
647
|
-
[_sEIc, _sEI, _d, _lCREI],
|
|
648
|
-
[1, 1, 0, 1], 2
|
|
649
|
-
];
|
|
650
|
-
var ActivityTaskCancelRequestedEventAttributes$ = [3, n0, _ATCREA,
|
|
651
|
-
0,
|
|
652
|
-
[_dTCEI, _aI],
|
|
653
|
-
[1, 0], 2
|
|
654
|
-
];
|
|
655
|
-
var ActivityTaskCompletedEventAttributes$ = [3, n0, _ATCEAc,
|
|
656
|
-
0,
|
|
657
|
-
[_sEIc, _sEI, _r],
|
|
658
|
-
[1, 1, 0], 2
|
|
659
|
-
];
|
|
660
|
-
var ActivityTaskFailedEventAttributes$ = [3, n0, _ATFEA,
|
|
661
|
-
0,
|
|
662
|
-
[_sEIc, _sEI, _re, _d],
|
|
663
|
-
[1, 1, 0, 0], 2
|
|
664
|
-
];
|
|
665
|
-
var ActivityTaskScheduledEventAttributes$ = [3, n0, _ATSEA,
|
|
666
|
-
0,
|
|
667
|
-
[_aT, _aI, _tL, _dTCEI, _i, _c, _sTST, _sTCT, _sTCTt, _tP, _hT],
|
|
668
|
-
[() => ActivityType$, 0, () => TaskList$, 1, 0, 0, 0, 0, 0, 0, 0], 4
|
|
669
|
-
];
|
|
670
|
-
var ActivityTaskStartedEventAttributes$ = [3, n0, _ATSEAc,
|
|
671
|
-
0,
|
|
672
|
-
[_sEIc, _id],
|
|
673
|
-
[1, 0], 1
|
|
674
|
-
];
|
|
675
|
-
var ActivityTaskStatus$ = [3, n0, _ATS,
|
|
676
|
-
0,
|
|
677
|
-
[_cR],
|
|
678
|
-
[2], 1
|
|
679
|
-
];
|
|
680
|
-
var ActivityTaskTimedOutEventAttributes$ = [3, n0, _ATTOEA,
|
|
681
|
-
0,
|
|
682
|
-
[_tTi, _sEIc, _sEI, _d],
|
|
683
|
-
[0, 1, 1, 0], 3
|
|
684
|
-
];
|
|
685
|
-
var ActivityType$ = [3, n0, _ATc,
|
|
686
|
-
0,
|
|
687
|
-
[_n, _v],
|
|
688
|
-
[0, 0], 2
|
|
689
|
-
];
|
|
690
|
-
var ActivityTypeConfiguration$ = [3, n0, _ATC,
|
|
691
|
-
0,
|
|
692
|
-
[_dTSTCT, _dTHT, _dTL, _dTP, _dTSTST, _dTSTCTe],
|
|
693
|
-
[0, 0, () => TaskList$, 0, 0, 0]
|
|
694
|
-
];
|
|
695
|
-
var ActivityTypeDetail$ = [3, n0, _ATD,
|
|
696
|
-
0,
|
|
697
|
-
[_tI, _co],
|
|
698
|
-
[() => ActivityTypeInfo$, () => ActivityTypeConfiguration$], 2
|
|
699
|
-
];
|
|
700
|
-
var ActivityTypeInfo$ = [3, n0, _ATI,
|
|
701
|
-
0,
|
|
702
|
-
[_aT, _s, _cD, _de, _dD],
|
|
703
|
-
[() => ActivityType$, 0, 4, 0, 4], 3
|
|
704
|
-
];
|
|
705
|
-
var ActivityTypeInfos$ = [3, n0, _ATIc,
|
|
706
|
-
0,
|
|
707
|
-
[_tIy, _nPT],
|
|
708
|
-
[() => ActivityTypeInfoList, 0], 1
|
|
709
|
-
];
|
|
710
|
-
var CancelTimerDecisionAttributes$ = [3, n0, _CTDA,
|
|
711
|
-
0,
|
|
712
|
-
[_tIi],
|
|
713
|
-
[0], 1
|
|
714
|
-
];
|
|
715
|
-
var CancelTimerFailedEventAttributes$ = [3, n0, _CTFEA,
|
|
716
|
-
0,
|
|
717
|
-
[_tIi, _ca, _dTCEI],
|
|
718
|
-
[0, 0, 1], 3
|
|
719
|
-
];
|
|
720
|
-
var CancelWorkflowExecutionDecisionAttributes$ = [3, n0, _CWEDA,
|
|
721
|
-
0,
|
|
722
|
-
[_d],
|
|
723
|
-
[0]
|
|
724
|
-
];
|
|
725
|
-
var CancelWorkflowExecutionFailedEventAttributes$ = [3, n0, _CWEFEA,
|
|
726
|
-
0,
|
|
727
|
-
[_ca, _dTCEI],
|
|
728
|
-
[0, 1], 2
|
|
729
|
-
];
|
|
730
|
-
var ChildWorkflowExecutionCanceledEventAttributes$ = [3, n0, _CWECEA,
|
|
731
|
-
0,
|
|
732
|
-
[_wE, _wT, _iEI, _sEI, _d],
|
|
733
|
-
[() => WorkflowExecution$, () => WorkflowType$, 1, 1, 0], 4
|
|
734
|
-
];
|
|
735
|
-
var ChildWorkflowExecutionCompletedEventAttributes$ = [3, n0, _CWECEAh,
|
|
736
|
-
0,
|
|
737
|
-
[_wE, _wT, _iEI, _sEI, _r],
|
|
738
|
-
[() => WorkflowExecution$, () => WorkflowType$, 1, 1, 0], 4
|
|
739
|
-
];
|
|
740
|
-
var ChildWorkflowExecutionFailedEventAttributes$ = [3, n0, _CWEFEAh,
|
|
741
|
-
0,
|
|
742
|
-
[_wE, _wT, _iEI, _sEI, _re, _d],
|
|
743
|
-
[() => WorkflowExecution$, () => WorkflowType$, 1, 1, 0, 0], 4
|
|
744
|
-
];
|
|
745
|
-
var ChildWorkflowExecutionStartedEventAttributes$ = [3, n0, _CWESEA,
|
|
746
|
-
0,
|
|
747
|
-
[_wE, _wT, _iEI],
|
|
748
|
-
[() => WorkflowExecution$, () => WorkflowType$, 1], 3
|
|
749
|
-
];
|
|
750
|
-
var ChildWorkflowExecutionTerminatedEventAttributes$ = [3, n0, _CWETEA,
|
|
751
|
-
0,
|
|
752
|
-
[_wE, _wT, _iEI, _sEI],
|
|
753
|
-
[() => WorkflowExecution$, () => WorkflowType$, 1, 1], 4
|
|
754
|
-
];
|
|
755
|
-
var ChildWorkflowExecutionTimedOutEventAttributes$ = [3, n0, _CWETOEA,
|
|
756
|
-
0,
|
|
757
|
-
[_wE, _wT, _tTi, _iEI, _sEI],
|
|
758
|
-
[() => WorkflowExecution$, () => WorkflowType$, 0, 1, 1], 5
|
|
759
|
-
];
|
|
760
|
-
var CloseStatusFilter$ = [3, n0, _CSF,
|
|
761
|
-
0,
|
|
762
|
-
[_s],
|
|
763
|
-
[0], 1
|
|
764
|
-
];
|
|
765
|
-
var CompleteWorkflowExecutionDecisionAttributes$ = [3, n0, _CWEDAo,
|
|
766
|
-
0,
|
|
767
|
-
[_r],
|
|
768
|
-
[0]
|
|
769
|
-
];
|
|
770
|
-
var CompleteWorkflowExecutionFailedEventAttributes$ = [3, n0, _CWEFEAo,
|
|
771
|
-
0,
|
|
772
|
-
[_ca, _dTCEI],
|
|
773
|
-
[0, 1], 2
|
|
774
|
-
];
|
|
775
|
-
var ContinueAsNewWorkflowExecutionDecisionAttributes$ = [3, n0, _CANWEDA,
|
|
776
|
-
0,
|
|
777
|
-
[_i, _eSTCT, _tL, _tP, _tSTCT, _cP, _tLa, _wTV, _lR],
|
|
778
|
-
[0, 0, () => TaskList$, 0, 0, 0, 64 | 0, 0, 0]
|
|
779
|
-
];
|
|
780
|
-
var ContinueAsNewWorkflowExecutionFailedEventAttributes$ = [3, n0, _CANWEFEA,
|
|
781
|
-
0,
|
|
782
|
-
[_ca, _dTCEI],
|
|
783
|
-
[0, 1], 2
|
|
784
|
-
];
|
|
785
|
-
var CountClosedWorkflowExecutionsInput$ = [3, n0, _CCWEI,
|
|
786
|
-
0,
|
|
787
|
-
[_do, _sTF, _cTF, _eF, _tF, _tFa, _cSF],
|
|
788
|
-
[0, () => ExecutionTimeFilter$, () => ExecutionTimeFilter$, () => WorkflowExecutionFilter$, () => WorkflowTypeFilter$, () => TagFilter$, () => CloseStatusFilter$], 1
|
|
789
|
-
];
|
|
790
|
-
var CountOpenWorkflowExecutionsInput$ = [3, n0, _COWEI,
|
|
791
|
-
0,
|
|
792
|
-
[_do, _sTF, _tF, _tFa, _eF],
|
|
793
|
-
[0, () => ExecutionTimeFilter$, () => WorkflowTypeFilter$, () => TagFilter$, () => WorkflowExecutionFilter$], 2
|
|
794
|
-
];
|
|
795
|
-
var CountPendingActivityTasksInput$ = [3, n0, _CPATI,
|
|
796
|
-
0,
|
|
797
|
-
[_do, _tL],
|
|
798
|
-
[0, () => TaskList$], 2
|
|
799
|
-
];
|
|
800
|
-
var CountPendingDecisionTasksInput$ = [3, n0, _CPDTI,
|
|
801
|
-
0,
|
|
802
|
-
[_do, _tL],
|
|
803
|
-
[0, () => TaskList$], 2
|
|
804
|
-
];
|
|
805
|
-
var Decision$ = [3, n0, _D,
|
|
806
|
-
0,
|
|
807
|
-
[_dT, _sATDA, _rCATDA, _cWEDA, _fWEDA, _cWEDAa, _cANWEDA, _rMDA, _sTDA, _cTDA, _sEWEDA, _rCEWEDA, _sCWEDA, _sLFDA],
|
|
808
|
-
[0, () => ScheduleActivityTaskDecisionAttributes$, () => RequestCancelActivityTaskDecisionAttributes$, () => CompleteWorkflowExecutionDecisionAttributes$, () => FailWorkflowExecutionDecisionAttributes$, () => CancelWorkflowExecutionDecisionAttributes$, () => ContinueAsNewWorkflowExecutionDecisionAttributes$, () => RecordMarkerDecisionAttributes$, () => StartTimerDecisionAttributes$, () => CancelTimerDecisionAttributes$, () => SignalExternalWorkflowExecutionDecisionAttributes$, () => RequestCancelExternalWorkflowExecutionDecisionAttributes$, () => StartChildWorkflowExecutionDecisionAttributes$, () => ScheduleLambdaFunctionDecisionAttributes$], 1
|
|
809
|
-
];
|
|
810
|
-
var DecisionTask$ = [3, n0, _DT,
|
|
811
|
-
0,
|
|
812
|
-
[_tT, _sEI, _wE, _wT, _e, _nPT, _pSEI],
|
|
813
|
-
[0, 1, () => WorkflowExecution$, () => WorkflowType$, () => HistoryEventList, 0, 1], 5
|
|
814
|
-
];
|
|
815
|
-
var DecisionTaskCompletedEventAttributes$ = [3, n0, _DTCEA,
|
|
816
|
-
0,
|
|
817
|
-
[_sEIc, _sEI, _eC, _tL, _tLSTST],
|
|
818
|
-
[1, 1, 0, () => TaskList$, 0], 2
|
|
819
|
-
];
|
|
820
|
-
var DecisionTaskScheduledEventAttributes$ = [3, n0, _DTSEA,
|
|
821
|
-
0,
|
|
822
|
-
[_tL, _tP, _sTCTt, _sTST],
|
|
823
|
-
[() => TaskList$, 0, 0, 0], 1
|
|
824
|
-
];
|
|
825
|
-
var DecisionTaskStartedEventAttributes$ = [3, n0, _DTSEAe,
|
|
826
|
-
0,
|
|
827
|
-
[_sEIc, _id],
|
|
828
|
-
[1, 0], 1
|
|
829
|
-
];
|
|
830
|
-
var DecisionTaskTimedOutEventAttributes$ = [3, n0, _DTTOEA,
|
|
831
|
-
0,
|
|
832
|
-
[_tTi, _sEIc, _sEI],
|
|
833
|
-
[0, 1, 1], 3
|
|
834
|
-
];
|
|
835
|
-
var DefaultUndefinedFault$ = [-3, n0, _DUF,
|
|
836
|
-
{ [_er]: _cl },
|
|
837
|
-
[_m],
|
|
838
|
-
[0]
|
|
839
|
-
];
|
|
840
|
-
schema.TypeRegistry.for(n0).registerError(DefaultUndefinedFault$, DefaultUndefinedFault);
|
|
841
|
-
var DeleteActivityTypeInput$ = [3, n0, _DATI,
|
|
842
|
-
0,
|
|
843
|
-
[_do, _aT],
|
|
844
|
-
[0, () => ActivityType$], 2
|
|
845
|
-
];
|
|
846
|
-
var DeleteWorkflowTypeInput$ = [3, n0, _DWTI,
|
|
847
|
-
0,
|
|
848
|
-
[_do, _wT],
|
|
849
|
-
[0, () => WorkflowType$], 2
|
|
850
|
-
];
|
|
851
|
-
var DeprecateActivityTypeInput$ = [3, n0, _DATIe,
|
|
852
|
-
0,
|
|
853
|
-
[_do, _aT],
|
|
854
|
-
[0, () => ActivityType$], 2
|
|
855
|
-
];
|
|
856
|
-
var DeprecateDomainInput$ = [3, n0, _DDI,
|
|
857
|
-
0,
|
|
858
|
-
[_n],
|
|
859
|
-
[0], 1
|
|
860
|
-
];
|
|
861
|
-
var DeprecateWorkflowTypeInput$ = [3, n0, _DWTIe,
|
|
862
|
-
0,
|
|
863
|
-
[_do, _wT],
|
|
864
|
-
[0, () => WorkflowType$], 2
|
|
865
|
-
];
|
|
866
|
-
var DescribeActivityTypeInput$ = [3, n0, _DATIes,
|
|
867
|
-
0,
|
|
868
|
-
[_do, _aT],
|
|
869
|
-
[0, () => ActivityType$], 2
|
|
870
|
-
];
|
|
871
|
-
var DescribeDomainInput$ = [3, n0, _DDIe,
|
|
872
|
-
0,
|
|
873
|
-
[_n],
|
|
874
|
-
[0], 1
|
|
875
|
-
];
|
|
876
|
-
var DescribeWorkflowExecutionInput$ = [3, n0, _DWEI,
|
|
877
|
-
0,
|
|
878
|
-
[_do, _ex],
|
|
879
|
-
[0, () => WorkflowExecution$], 2
|
|
880
|
-
];
|
|
881
|
-
var DescribeWorkflowTypeInput$ = [3, n0, _DWTIes,
|
|
882
|
-
0,
|
|
883
|
-
[_do, _wT],
|
|
884
|
-
[0, () => WorkflowType$], 2
|
|
885
|
-
];
|
|
886
|
-
var DomainAlreadyExistsFault$ = [-3, n0, _DAEF,
|
|
887
|
-
{ [_er]: _cl },
|
|
888
|
-
[_m],
|
|
889
|
-
[0]
|
|
890
|
-
];
|
|
891
|
-
schema.TypeRegistry.for(n0).registerError(DomainAlreadyExistsFault$, DomainAlreadyExistsFault);
|
|
892
|
-
var DomainConfiguration$ = [3, n0, _DC,
|
|
893
|
-
0,
|
|
894
|
-
[_wERPID],
|
|
895
|
-
[0], 1
|
|
896
|
-
];
|
|
897
|
-
var DomainDeprecatedFault$ = [-3, n0, _DDF,
|
|
898
|
-
{ [_er]: _cl },
|
|
899
|
-
[_m],
|
|
900
|
-
[0]
|
|
901
|
-
];
|
|
902
|
-
schema.TypeRegistry.for(n0).registerError(DomainDeprecatedFault$, DomainDeprecatedFault);
|
|
903
|
-
var DomainDetail$ = [3, n0, _DD,
|
|
904
|
-
0,
|
|
905
|
-
[_dI, _co],
|
|
906
|
-
[() => DomainInfo$, () => DomainConfiguration$], 2
|
|
907
|
-
];
|
|
908
|
-
var DomainInfo$ = [3, n0, _DI,
|
|
909
|
-
0,
|
|
910
|
-
[_n, _s, _de, _a],
|
|
911
|
-
[0, 0, 0, 0], 2
|
|
912
|
-
];
|
|
913
|
-
var DomainInfos$ = [3, n0, _DIo,
|
|
914
|
-
0,
|
|
915
|
-
[_dIo, _nPT],
|
|
916
|
-
[() => DomainInfoList, 0], 1
|
|
917
|
-
];
|
|
918
|
-
var ExecutionTimeFilter$ = [3, n0, _ETF,
|
|
919
|
-
0,
|
|
920
|
-
[_oD, _lD],
|
|
921
|
-
[4, 4], 1
|
|
922
|
-
];
|
|
923
|
-
var ExternalWorkflowExecutionCancelRequestedEventAttributes$ = [3, n0, _EWECREA,
|
|
924
|
-
0,
|
|
925
|
-
[_wE, _iEI],
|
|
926
|
-
[() => WorkflowExecution$, 1], 2
|
|
927
|
-
];
|
|
928
|
-
var ExternalWorkflowExecutionSignaledEventAttributes$ = [3, n0, _EWESEA,
|
|
929
|
-
0,
|
|
930
|
-
[_wE, _iEI],
|
|
931
|
-
[() => WorkflowExecution$, 1], 2
|
|
932
|
-
];
|
|
933
|
-
var FailWorkflowExecutionDecisionAttributes$ = [3, n0, _FWEDA,
|
|
934
|
-
0,
|
|
935
|
-
[_re, _d],
|
|
936
|
-
[0, 0]
|
|
937
|
-
];
|
|
938
|
-
var FailWorkflowExecutionFailedEventAttributes$ = [3, n0, _FWEFEA,
|
|
939
|
-
0,
|
|
940
|
-
[_ca, _dTCEI],
|
|
941
|
-
[0, 1], 2
|
|
942
|
-
];
|
|
943
|
-
var GetWorkflowExecutionHistoryInput$ = [3, n0, _GWEHI,
|
|
944
|
-
0,
|
|
945
|
-
[_do, _ex, _nPT, _mPS, _rO],
|
|
946
|
-
[0, () => WorkflowExecution$, 0, 1, 2], 2
|
|
947
|
-
];
|
|
948
|
-
var History$ = [3, n0, _H,
|
|
949
|
-
0,
|
|
950
|
-
[_e, _nPT],
|
|
951
|
-
[() => HistoryEventList, 0], 1
|
|
952
|
-
];
|
|
953
|
-
var HistoryEvent$ = [3, n0, _HE,
|
|
954
|
-
0,
|
|
955
|
-
[_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],
|
|
956
|
-
[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
|
|
957
|
-
];
|
|
958
|
-
var LambdaFunctionCompletedEventAttributes$ = [3, n0, _LFCEA,
|
|
959
|
-
0,
|
|
960
|
-
[_sEIc, _sEI, _r],
|
|
961
|
-
[1, 1, 0], 2
|
|
962
|
-
];
|
|
963
|
-
var LambdaFunctionFailedEventAttributes$ = [3, n0, _LFFEA,
|
|
964
|
-
0,
|
|
965
|
-
[_sEIc, _sEI, _re, _d],
|
|
966
|
-
[1, 1, 0, 0], 2
|
|
967
|
-
];
|
|
968
|
-
var LambdaFunctionScheduledEventAttributes$ = [3, n0, _LFSEA,
|
|
969
|
-
0,
|
|
970
|
-
[_id_, _n, _dTCEI, _c, _i, _sTCTt],
|
|
971
|
-
[0, 0, 1, 0, 0, 0], 3
|
|
972
|
-
];
|
|
973
|
-
var LambdaFunctionStartedEventAttributes$ = [3, n0, _LFSEAa,
|
|
974
|
-
0,
|
|
975
|
-
[_sEIc],
|
|
976
|
-
[1], 1
|
|
977
|
-
];
|
|
978
|
-
var LambdaFunctionTimedOutEventAttributes$ = [3, n0, _LFTOEA,
|
|
979
|
-
0,
|
|
980
|
-
[_sEIc, _sEI, _tTi],
|
|
981
|
-
[1, 1, 0], 2
|
|
982
|
-
];
|
|
983
|
-
var LimitExceededFault$ = [-3, n0, _LEF,
|
|
984
|
-
{ [_er]: _cl },
|
|
985
|
-
[_m],
|
|
986
|
-
[0]
|
|
987
|
-
];
|
|
988
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededFault$, LimitExceededFault);
|
|
989
|
-
var ListActivityTypesInput$ = [3, n0, _LATI,
|
|
990
|
-
0,
|
|
991
|
-
[_do, _rS, _n, _nPT, _mPS, _rO],
|
|
992
|
-
[0, 0, 0, 0, 1, 2], 2
|
|
993
|
-
];
|
|
994
|
-
var ListClosedWorkflowExecutionsInput$ = [3, n0, _LCWEI,
|
|
995
|
-
0,
|
|
996
|
-
[_do, _sTF, _cTF, _eF, _cSF, _tF, _tFa, _nPT, _mPS, _rO],
|
|
997
|
-
[0, () => ExecutionTimeFilter$, () => ExecutionTimeFilter$, () => WorkflowExecutionFilter$, () => CloseStatusFilter$, () => WorkflowTypeFilter$, () => TagFilter$, 0, 1, 2], 1
|
|
998
|
-
];
|
|
999
|
-
var ListDomainsInput$ = [3, n0, _LDI,
|
|
1000
|
-
0,
|
|
1001
|
-
[_rS, _nPT, _mPS, _rO],
|
|
1002
|
-
[0, 0, 1, 2], 1
|
|
1003
|
-
];
|
|
1004
|
-
var ListOpenWorkflowExecutionsInput$ = [3, n0, _LOWEI,
|
|
1005
|
-
0,
|
|
1006
|
-
[_do, _sTF, _tF, _tFa, _nPT, _mPS, _rO, _eF],
|
|
1007
|
-
[0, () => ExecutionTimeFilter$, () => WorkflowTypeFilter$, () => TagFilter$, 0, 1, 2, () => WorkflowExecutionFilter$], 2
|
|
1008
|
-
];
|
|
1009
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1010
|
-
0,
|
|
1011
|
-
[_rA],
|
|
1012
|
-
[0], 1
|
|
1013
|
-
];
|
|
1014
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1015
|
-
0,
|
|
1016
|
-
[_t],
|
|
1017
|
-
[() => ResourceTagList]
|
|
1018
|
-
];
|
|
1019
|
-
var ListWorkflowTypesInput$ = [3, n0, _LWTI,
|
|
1020
|
-
0,
|
|
1021
|
-
[_do, _rS, _n, _nPT, _mPS, _rO],
|
|
1022
|
-
[0, 0, 0, 0, 1, 2], 2
|
|
1023
|
-
];
|
|
1024
|
-
var MarkerRecordedEventAttributes$ = [3, n0, _MREA,
|
|
1025
|
-
0,
|
|
1026
|
-
[_mN, _dTCEI, _d],
|
|
1027
|
-
[0, 1, 0], 2
|
|
1028
|
-
];
|
|
1029
|
-
var OperationNotPermittedFault$ = [-3, n0, _ONPF,
|
|
1030
|
-
{ [_er]: _cl },
|
|
1031
|
-
[_m],
|
|
1032
|
-
[0]
|
|
1033
|
-
];
|
|
1034
|
-
schema.TypeRegistry.for(n0).registerError(OperationNotPermittedFault$, OperationNotPermittedFault);
|
|
1035
|
-
var PendingTaskCount$ = [3, n0, _PTC,
|
|
1036
|
-
0,
|
|
1037
|
-
[_cou, _tr],
|
|
1038
|
-
[1, 2], 1
|
|
1039
|
-
];
|
|
1040
|
-
var PollForActivityTaskInput$ = [3, n0, _PFATI,
|
|
1041
|
-
0,
|
|
1042
|
-
[_do, _tL, _id],
|
|
1043
|
-
[0, () => TaskList$, 0], 2
|
|
1044
|
-
];
|
|
1045
|
-
var PollForDecisionTaskInput$ = [3, n0, _PFDTI,
|
|
1046
|
-
0,
|
|
1047
|
-
[_do, _tL, _id, _nPT, _mPS, _rO, _sAPSE],
|
|
1048
|
-
[0, () => TaskList$, 0, 0, 1, 2, 2], 2
|
|
1049
|
-
];
|
|
1050
|
-
var RecordActivityTaskHeartbeatInput$ = [3, n0, _RATHI,
|
|
1051
|
-
0,
|
|
1052
|
-
[_tT, _d],
|
|
1053
|
-
[0, 0], 1
|
|
1054
|
-
];
|
|
1055
|
-
var RecordMarkerDecisionAttributes$ = [3, n0, _RMDA,
|
|
1056
|
-
0,
|
|
1057
|
-
[_mN, _d],
|
|
1058
|
-
[0, 0], 1
|
|
1059
|
-
];
|
|
1060
|
-
var RecordMarkerFailedEventAttributes$ = [3, n0, _RMFEA,
|
|
1061
|
-
0,
|
|
1062
|
-
[_mN, _ca, _dTCEI],
|
|
1063
|
-
[0, 0, 1], 3
|
|
1064
|
-
];
|
|
1065
|
-
var RegisterActivityTypeInput$ = [3, n0, _RATI,
|
|
1066
|
-
0,
|
|
1067
|
-
[_do, _n, _v, _de, _dTSTCT, _dTHT, _dTL, _dTP, _dTSTST, _dTSTCTe],
|
|
1068
|
-
[0, 0, 0, 0, 0, 0, () => TaskList$, 0, 0, 0], 3
|
|
1069
|
-
];
|
|
1070
|
-
var RegisterDomainInput$ = [3, n0, _RDI,
|
|
1071
|
-
0,
|
|
1072
|
-
[_n, _wERPID, _de, _t],
|
|
1073
|
-
[0, 0, 0, () => ResourceTagList], 2
|
|
1074
|
-
];
|
|
1075
|
-
var RegisterWorkflowTypeInput$ = [3, n0, _RWTI,
|
|
1076
|
-
0,
|
|
1077
|
-
[_do, _n, _v, _de, _dTSTCT, _dESTCT, _dTL, _dTP, _dCP, _dLR],
|
|
1078
|
-
[0, 0, 0, 0, 0, 0, () => TaskList$, 0, 0, 0], 3
|
|
1079
|
-
];
|
|
1080
|
-
var RequestCancelActivityTaskDecisionAttributes$ = [3, n0, _RCATDA,
|
|
1081
|
-
0,
|
|
1082
|
-
[_aI],
|
|
1083
|
-
[0], 1
|
|
1084
|
-
];
|
|
1085
|
-
var RequestCancelActivityTaskFailedEventAttributes$ = [3, n0, _RCATFEA,
|
|
1086
|
-
0,
|
|
1087
|
-
[_aI, _ca, _dTCEI],
|
|
1088
|
-
[0, 0, 1], 3
|
|
1089
|
-
];
|
|
1090
|
-
var RequestCancelExternalWorkflowExecutionDecisionAttributes$ = [3, n0, _RCEWEDA,
|
|
1091
|
-
0,
|
|
1092
|
-
[_wI, _rI, _c],
|
|
1093
|
-
[0, 0, 0], 1
|
|
1094
|
-
];
|
|
1095
|
-
var RequestCancelExternalWorkflowExecutionFailedEventAttributes$ = [3, n0, _RCEWEFEA,
|
|
1096
|
-
0,
|
|
1097
|
-
[_wI, _ca, _iEI, _dTCEI, _rI, _c],
|
|
1098
|
-
[0, 0, 1, 1, 0, 0], 4
|
|
1099
|
-
];
|
|
1100
|
-
var RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$ = [3, n0, _RCEWEIEA,
|
|
1101
|
-
0,
|
|
1102
|
-
[_wI, _dTCEI, _rI, _c],
|
|
1103
|
-
[0, 1, 0, 0], 2
|
|
1104
|
-
];
|
|
1105
|
-
var RequestCancelWorkflowExecutionInput$ = [3, n0, _RCWEI,
|
|
1106
|
-
0,
|
|
1107
|
-
[_do, _wI, _rI],
|
|
1108
|
-
[0, 0, 0], 2
|
|
1109
|
-
];
|
|
1110
|
-
var ResourceTag$ = [3, n0, _RT,
|
|
1111
|
-
0,
|
|
1112
|
-
[_k, _va],
|
|
1113
|
-
[0, 0], 1
|
|
1114
|
-
];
|
|
1115
|
-
var RespondActivityTaskCanceledInput$ = [3, n0, _RATCI,
|
|
1116
|
-
0,
|
|
1117
|
-
[_tT, _d],
|
|
1118
|
-
[0, 0], 1
|
|
1119
|
-
];
|
|
1120
|
-
var RespondActivityTaskCompletedInput$ = [3, n0, _RATCIe,
|
|
1121
|
-
0,
|
|
1122
|
-
[_tT, _r],
|
|
1123
|
-
[0, 0], 1
|
|
1124
|
-
];
|
|
1125
|
-
var RespondActivityTaskFailedInput$ = [3, n0, _RATFI,
|
|
1126
|
-
0,
|
|
1127
|
-
[_tT, _re, _d],
|
|
1128
|
-
[0, 0, 0], 1
|
|
1129
|
-
];
|
|
1130
|
-
var RespondDecisionTaskCompletedInput$ = [3, n0, _RDTCI,
|
|
1131
|
-
0,
|
|
1132
|
-
[_tT, _dec, _eC, _tL, _tLSTST],
|
|
1133
|
-
[0, () => DecisionList, 0, () => TaskList$, 0], 1
|
|
1134
|
-
];
|
|
1135
|
-
var Run$ = [3, n0, _R,
|
|
1136
|
-
0,
|
|
1137
|
-
[_rI],
|
|
1138
|
-
[0]
|
|
1139
|
-
];
|
|
1140
|
-
var ScheduleActivityTaskDecisionAttributes$ = [3, n0, _SATDA,
|
|
1141
|
-
0,
|
|
1142
|
-
[_aT, _aI, _c, _i, _sTCT, _tL, _tP, _sTST, _sTCTt, _hT],
|
|
1143
|
-
[() => ActivityType$, 0, 0, 0, 0, () => TaskList$, 0, 0, 0, 0], 2
|
|
1144
|
-
];
|
|
1145
|
-
var ScheduleActivityTaskFailedEventAttributes$ = [3, n0, _SATFEA,
|
|
1146
|
-
0,
|
|
1147
|
-
[_aT, _aI, _ca, _dTCEI],
|
|
1148
|
-
[() => ActivityType$, 0, 0, 1], 4
|
|
1149
|
-
];
|
|
1150
|
-
var ScheduleLambdaFunctionDecisionAttributes$ = [3, n0, _SLFDA,
|
|
1151
|
-
0,
|
|
1152
|
-
[_id_, _n, _c, _i, _sTCTt],
|
|
1153
|
-
[0, 0, 0, 0, 0], 2
|
|
1154
|
-
];
|
|
1155
|
-
var ScheduleLambdaFunctionFailedEventAttributes$ = [3, n0, _SLFFEA,
|
|
1156
|
-
0,
|
|
1157
|
-
[_id_, _n, _ca, _dTCEI],
|
|
1158
|
-
[0, 0, 0, 1], 4
|
|
1159
|
-
];
|
|
1160
|
-
var SignalExternalWorkflowExecutionDecisionAttributes$ = [3, n0, _SEWEDA,
|
|
1161
|
-
0,
|
|
1162
|
-
[_wI, _sN, _rI, _i, _c],
|
|
1163
|
-
[0, 0, 0, 0, 0], 2
|
|
1164
|
-
];
|
|
1165
|
-
var SignalExternalWorkflowExecutionFailedEventAttributes$ = [3, n0, _SEWEFEA,
|
|
1166
|
-
0,
|
|
1167
|
-
[_wI, _ca, _iEI, _dTCEI, _rI, _c],
|
|
1168
|
-
[0, 0, 1, 1, 0, 0], 4
|
|
1169
|
-
];
|
|
1170
|
-
var SignalExternalWorkflowExecutionInitiatedEventAttributes$ = [3, n0, _SEWEIEA,
|
|
1171
|
-
0,
|
|
1172
|
-
[_wI, _sN, _dTCEI, _rI, _i, _c],
|
|
1173
|
-
[0, 0, 1, 0, 0, 0], 3
|
|
1174
|
-
];
|
|
1175
|
-
var SignalWorkflowExecutionInput$ = [3, n0, _SWEI,
|
|
1176
|
-
0,
|
|
1177
|
-
[_do, _wI, _sN, _rI, _i],
|
|
1178
|
-
[0, 0, 0, 0, 0], 3
|
|
1179
|
-
];
|
|
1180
|
-
var StartChildWorkflowExecutionDecisionAttributes$ = [3, n0, _SCWEDA,
|
|
1181
|
-
0,
|
|
1182
|
-
[_wT, _wI, _c, _i, _eSTCT, _tL, _tP, _tSTCT, _cP, _tLa, _lR],
|
|
1183
|
-
[() => WorkflowType$, 0, 0, 0, 0, () => TaskList$, 0, 0, 0, 64 | 0, 0], 2
|
|
1184
|
-
];
|
|
1185
|
-
var StartChildWorkflowExecutionFailedEventAttributes$ = [3, n0, _SCWEFEA,
|
|
1186
|
-
0,
|
|
1187
|
-
[_wT, _ca, _wI, _iEI, _dTCEI, _c],
|
|
1188
|
-
[() => WorkflowType$, 0, 0, 1, 1, 0], 5
|
|
1189
|
-
];
|
|
1190
|
-
var StartChildWorkflowExecutionInitiatedEventAttributes$ = [3, n0, _SCWEIEA,
|
|
1191
|
-
0,
|
|
1192
|
-
[_wI, _wT, _tL, _dTCEI, _cP, _c, _i, _eSTCT, _tP, _tSTCT, _tLa, _lR],
|
|
1193
|
-
[0, () => WorkflowType$, () => TaskList$, 1, 0, 0, 0, 0, 0, 0, 64 | 0, 0], 5
|
|
1194
|
-
];
|
|
1195
|
-
var StartLambdaFunctionFailedEventAttributes$ = [3, n0, _SLFFEAt,
|
|
1196
|
-
0,
|
|
1197
|
-
[_sEIc, _ca, _m],
|
|
1198
|
-
[1, 0, 0]
|
|
1199
|
-
];
|
|
1200
|
-
var StartTimerDecisionAttributes$ = [3, n0, _STDA,
|
|
1201
|
-
0,
|
|
1202
|
-
[_tIi, _sTFT, _c],
|
|
1203
|
-
[0, 0, 0], 2
|
|
1204
|
-
];
|
|
1205
|
-
var StartTimerFailedEventAttributes$ = [3, n0, _STFEA,
|
|
1206
|
-
0,
|
|
1207
|
-
[_tIi, _ca, _dTCEI],
|
|
1208
|
-
[0, 0, 1], 3
|
|
1209
|
-
];
|
|
1210
|
-
var StartWorkflowExecutionInput$ = [3, n0, _SWEIt,
|
|
1211
|
-
0,
|
|
1212
|
-
[_do, _wI, _wT, _tL, _tP, _i, _eSTCT, _tLa, _tSTCT, _cP, _lR],
|
|
1213
|
-
[0, 0, () => WorkflowType$, () => TaskList$, 0, 0, 0, 64 | 0, 0, 0, 0], 3
|
|
1214
|
-
];
|
|
1215
|
-
var TagFilter$ = [3, n0, _TF,
|
|
1216
|
-
0,
|
|
1217
|
-
[_ta],
|
|
1218
|
-
[0], 1
|
|
1219
|
-
];
|
|
1220
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
1221
|
-
0,
|
|
1222
|
-
[_rA, _t],
|
|
1223
|
-
[0, () => ResourceTagList], 2
|
|
1224
|
-
];
|
|
1225
|
-
var TaskList$ = [3, n0, _TL,
|
|
1226
|
-
0,
|
|
1227
|
-
[_n],
|
|
1228
|
-
[0], 1
|
|
1229
|
-
];
|
|
1230
|
-
var TerminateWorkflowExecutionInput$ = [3, n0, _TWEI,
|
|
1231
|
-
0,
|
|
1232
|
-
[_do, _wI, _rI, _re, _d, _cP],
|
|
1233
|
-
[0, 0, 0, 0, 0, 0], 2
|
|
1234
|
-
];
|
|
1235
|
-
var TimerCanceledEventAttributes$ = [3, n0, _TCEA,
|
|
1236
|
-
0,
|
|
1237
|
-
[_tIi, _sEI, _dTCEI],
|
|
1238
|
-
[0, 1, 1], 3
|
|
1239
|
-
];
|
|
1240
|
-
var TimerFiredEventAttributes$ = [3, n0, _TFEA,
|
|
1241
|
-
0,
|
|
1242
|
-
[_tIi, _sEI],
|
|
1243
|
-
[0, 1], 2
|
|
1244
|
-
];
|
|
1245
|
-
var TimerStartedEventAttributes$ = [3, n0, _TSEA,
|
|
1246
|
-
0,
|
|
1247
|
-
[_tIi, _sTFT, _dTCEI, _c],
|
|
1248
|
-
[0, 0, 1, 0], 3
|
|
1249
|
-
];
|
|
1250
|
-
var TooManyTagsFault$ = [-3, n0, _TMTF,
|
|
1251
|
-
{ [_er]: _cl, [_hE]: 400 },
|
|
1252
|
-
[_m],
|
|
1253
|
-
[0]
|
|
1254
|
-
];
|
|
1255
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsFault$, TooManyTagsFault);
|
|
1256
|
-
var TypeAlreadyExistsFault$ = [-3, n0, _TAEF,
|
|
1257
|
-
{ [_er]: _cl },
|
|
1258
|
-
[_m],
|
|
1259
|
-
[0]
|
|
1260
|
-
];
|
|
1261
|
-
schema.TypeRegistry.for(n0).registerError(TypeAlreadyExistsFault$, TypeAlreadyExistsFault);
|
|
1262
|
-
var TypeDeprecatedFault$ = [-3, n0, _TDF,
|
|
1263
|
-
{ [_er]: _cl },
|
|
1264
|
-
[_m],
|
|
1265
|
-
[0]
|
|
1266
|
-
];
|
|
1267
|
-
schema.TypeRegistry.for(n0).registerError(TypeDeprecatedFault$, TypeDeprecatedFault);
|
|
1268
|
-
var TypeNotDeprecatedFault$ = [-3, n0, _TNDF,
|
|
1269
|
-
{ [_er]: _cl },
|
|
1270
|
-
[_m],
|
|
1271
|
-
[0]
|
|
1272
|
-
];
|
|
1273
|
-
schema.TypeRegistry.for(n0).registerError(TypeNotDeprecatedFault$, TypeNotDeprecatedFault);
|
|
1274
|
-
var UndeprecateActivityTypeInput$ = [3, n0, _UATI,
|
|
1275
|
-
0,
|
|
1276
|
-
[_do, _aT],
|
|
1277
|
-
[0, () => ActivityType$], 2
|
|
1278
|
-
];
|
|
1279
|
-
var UndeprecateDomainInput$ = [3, n0, _UDI,
|
|
1280
|
-
0,
|
|
1281
|
-
[_n],
|
|
1282
|
-
[0], 1
|
|
1283
|
-
];
|
|
1284
|
-
var UndeprecateWorkflowTypeInput$ = [3, n0, _UWTI,
|
|
1285
|
-
0,
|
|
1286
|
-
[_do, _wT],
|
|
1287
|
-
[0, () => WorkflowType$], 2
|
|
1288
|
-
];
|
|
1289
|
-
var UnknownResourceFault$ = [-3, n0, _URF,
|
|
1290
|
-
{ [_er]: _cl },
|
|
1291
|
-
[_m],
|
|
1292
|
-
[0]
|
|
1293
|
-
];
|
|
1294
|
-
schema.TypeRegistry.for(n0).registerError(UnknownResourceFault$, UnknownResourceFault);
|
|
1295
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
1296
|
-
0,
|
|
1297
|
-
[_rA, _tK],
|
|
1298
|
-
[0, 64 | 0], 2
|
|
1299
|
-
];
|
|
1300
|
-
var WorkflowExecution$ = [3, n0, _WE,
|
|
1301
|
-
0,
|
|
1302
|
-
[_wI, _rI],
|
|
1303
|
-
[0, 0], 2
|
|
1304
|
-
];
|
|
1305
|
-
var WorkflowExecutionAlreadyStartedFault$ = [-3, n0, _WEASF,
|
|
1306
|
-
{ [_er]: _cl },
|
|
1307
|
-
[_m],
|
|
1308
|
-
[0]
|
|
1309
|
-
];
|
|
1310
|
-
schema.TypeRegistry.for(n0).registerError(WorkflowExecutionAlreadyStartedFault$, WorkflowExecutionAlreadyStartedFault);
|
|
1311
|
-
var WorkflowExecutionCanceledEventAttributes$ = [3, n0, _WECEA,
|
|
1312
|
-
0,
|
|
1313
|
-
[_dTCEI, _d],
|
|
1314
|
-
[1, 0], 1
|
|
1315
|
-
];
|
|
1316
|
-
var WorkflowExecutionCancelRequestedEventAttributes$ = [3, n0, _WECREA,
|
|
1317
|
-
0,
|
|
1318
|
-
[_eWE, _eIEI, _ca],
|
|
1319
|
-
[() => WorkflowExecution$, 1, 0]
|
|
1320
|
-
];
|
|
1321
|
-
var WorkflowExecutionCompletedEventAttributes$ = [3, n0, _WECEAo,
|
|
1322
|
-
0,
|
|
1323
|
-
[_dTCEI, _r],
|
|
1324
|
-
[1, 0], 1
|
|
1325
|
-
];
|
|
1326
|
-
var WorkflowExecutionConfiguration$ = [3, n0, _WEC,
|
|
1327
|
-
0,
|
|
1328
|
-
[_tSTCT, _eSTCT, _tL, _cP, _tP, _lR],
|
|
1329
|
-
[0, 0, () => TaskList$, 0, 0, 0], 4
|
|
1330
|
-
];
|
|
1331
|
-
var WorkflowExecutionContinuedAsNewEventAttributes$ = [3, n0, _WECANEA,
|
|
1332
|
-
0,
|
|
1333
|
-
[_dTCEI, _nERI, _tL, _cP, _wT, _i, _eSTCT, _tP, _tSTCT, _tLa, _lR],
|
|
1334
|
-
[1, 0, () => TaskList$, 0, () => WorkflowType$, 0, 0, 0, 0, 64 | 0, 0], 5
|
|
1335
|
-
];
|
|
1336
|
-
var WorkflowExecutionCount$ = [3, n0, _WECo,
|
|
1337
|
-
0,
|
|
1338
|
-
[_cou, _tr],
|
|
1339
|
-
[1, 2], 1
|
|
1340
|
-
];
|
|
1341
|
-
var WorkflowExecutionDetail$ = [3, n0, _WED,
|
|
1342
|
-
0,
|
|
1343
|
-
[_eIx, _eCx, _oC, _lATT, _lEC],
|
|
1344
|
-
[() => WorkflowExecutionInfo$, () => WorkflowExecutionConfiguration$, () => WorkflowExecutionOpenCounts$, 4, 0], 3
|
|
1345
|
-
];
|
|
1346
|
-
var WorkflowExecutionFailedEventAttributes$ = [3, n0, _WEFEA,
|
|
1347
|
-
0,
|
|
1348
|
-
[_dTCEI, _re, _d],
|
|
1349
|
-
[1, 0, 0], 1
|
|
1350
|
-
];
|
|
1351
|
-
var WorkflowExecutionFilter$ = [3, n0, _WEF,
|
|
1352
|
-
0,
|
|
1353
|
-
[_wI],
|
|
1354
|
-
[0], 1
|
|
1355
|
-
];
|
|
1356
|
-
var WorkflowExecutionInfo$ = [3, n0, _WEI,
|
|
1357
|
-
0,
|
|
1358
|
-
[_ex, _wT, _sT, _eS, _cT, _cS, _p, _tLa, _cR],
|
|
1359
|
-
[() => WorkflowExecution$, () => WorkflowType$, 4, 0, 4, 0, () => WorkflowExecution$, 64 | 0, 2], 4
|
|
1360
|
-
];
|
|
1361
|
-
var WorkflowExecutionInfos$ = [3, n0, _WEIo,
|
|
1362
|
-
0,
|
|
1363
|
-
[_eIxe, _nPT],
|
|
1364
|
-
[() => WorkflowExecutionInfoList, 0], 1
|
|
1365
|
-
];
|
|
1366
|
-
var WorkflowExecutionOpenCounts$ = [3, n0, _WEOC,
|
|
1367
|
-
0,
|
|
1368
|
-
[_oAT, _oDT, _oT, _oCWE, _oLF],
|
|
1369
|
-
[1, 1, 1, 1, 1], 4
|
|
1370
|
-
];
|
|
1371
|
-
var WorkflowExecutionSignaledEventAttributes$ = [3, n0, _WESEA,
|
|
1372
|
-
0,
|
|
1373
|
-
[_sN, _i, _eWE, _eIEI],
|
|
1374
|
-
[0, 0, () => WorkflowExecution$, 1], 1
|
|
1375
|
-
];
|
|
1376
|
-
var WorkflowExecutionStartedEventAttributes$ = [3, n0, _WESEAo,
|
|
1377
|
-
0,
|
|
1378
|
-
[_cP, _tL, _wT, _i, _eSTCT, _tSTCT, _tP, _tLa, _cERI, _pWE, _pIEI, _lR],
|
|
1379
|
-
[0, () => TaskList$, () => WorkflowType$, 0, 0, 0, 0, 64 | 0, 0, () => WorkflowExecution$, 1, 0], 3
|
|
1380
|
-
];
|
|
1381
|
-
var WorkflowExecutionTerminatedEventAttributes$ = [3, n0, _WETEA,
|
|
1382
|
-
0,
|
|
1383
|
-
[_cP, _re, _d, _ca],
|
|
1384
|
-
[0, 0, 0, 0], 1
|
|
1385
|
-
];
|
|
1386
|
-
var WorkflowExecutionTimedOutEventAttributes$ = [3, n0, _WETOEA,
|
|
1387
|
-
0,
|
|
1388
|
-
[_tTi, _cP],
|
|
1389
|
-
[0, 0], 2
|
|
1390
|
-
];
|
|
1391
|
-
var WorkflowType$ = [3, n0, _WT,
|
|
1392
|
-
0,
|
|
1393
|
-
[_n, _v],
|
|
1394
|
-
[0, 0], 2
|
|
1395
|
-
];
|
|
1396
|
-
var WorkflowTypeConfiguration$ = [3, n0, _WTC,
|
|
1397
|
-
0,
|
|
1398
|
-
[_dTSTCT, _dESTCT, _dTL, _dTP, _dCP, _dLR],
|
|
1399
|
-
[0, 0, () => TaskList$, 0, 0, 0]
|
|
1400
|
-
];
|
|
1401
|
-
var WorkflowTypeDetail$ = [3, n0, _WTD,
|
|
1402
|
-
0,
|
|
1403
|
-
[_tI, _co],
|
|
1404
|
-
[() => WorkflowTypeInfo$, () => WorkflowTypeConfiguration$], 2
|
|
1405
|
-
];
|
|
1406
|
-
var WorkflowTypeFilter$ = [3, n0, _WTF,
|
|
1407
|
-
0,
|
|
1408
|
-
[_n, _v],
|
|
1409
|
-
[0, 0], 1
|
|
1410
|
-
];
|
|
1411
|
-
var WorkflowTypeInfo$ = [3, n0, _WTI,
|
|
1412
|
-
0,
|
|
1413
|
-
[_wT, _s, _cD, _de, _dD],
|
|
1414
|
-
[() => WorkflowType$, 0, 4, 0, 4], 3
|
|
1415
|
-
];
|
|
1416
|
-
var WorkflowTypeInfos$ = [3, n0, _WTIo,
|
|
1417
|
-
0,
|
|
1418
|
-
[_tIy, _nPT],
|
|
1419
|
-
[() => WorkflowTypeInfoList, 0], 1
|
|
1420
|
-
];
|
|
1421
|
-
var __Unit = "unit";
|
|
1422
|
-
var SWFServiceException$ = [-3, _sm, "SWFServiceException", 0, [], []];
|
|
1423
|
-
schema.TypeRegistry.for(_sm).registerError(SWFServiceException$, SWFServiceException);
|
|
1424
|
-
var ActivityTypeInfoList = [1, n0, _ATIL,
|
|
1425
|
-
0, () => ActivityTypeInfo$
|
|
1426
|
-
];
|
|
1427
|
-
var DecisionList = [1, n0, _DL,
|
|
1428
|
-
0, () => Decision$
|
|
1429
|
-
];
|
|
1430
|
-
var DomainInfoList = [1, n0, _DIL,
|
|
1431
|
-
0, () => DomainInfo$
|
|
1432
|
-
];
|
|
1433
|
-
var HistoryEventList = [1, n0, _HEL,
|
|
1434
|
-
0, () => HistoryEvent$
|
|
1435
|
-
];
|
|
1436
|
-
var ResourceTagList = [1, n0, _RTL,
|
|
1437
|
-
0, () => ResourceTag$
|
|
1438
|
-
];
|
|
1439
|
-
var WorkflowExecutionInfoList = [1, n0, _WEIL,
|
|
1440
|
-
0, () => WorkflowExecutionInfo$
|
|
1441
|
-
];
|
|
1442
|
-
var WorkflowTypeInfoList = [1, n0, _WTIL,
|
|
1443
|
-
0, () => WorkflowTypeInfo$
|
|
1444
|
-
];
|
|
1445
|
-
var CountClosedWorkflowExecutions$ = [9, n0, _CCWE,
|
|
1446
|
-
0, () => CountClosedWorkflowExecutionsInput$, () => WorkflowExecutionCount$
|
|
1447
|
-
];
|
|
1448
|
-
var CountOpenWorkflowExecutions$ = [9, n0, _COWE,
|
|
1449
|
-
0, () => CountOpenWorkflowExecutionsInput$, () => WorkflowExecutionCount$
|
|
1450
|
-
];
|
|
1451
|
-
var CountPendingActivityTasks$ = [9, n0, _CPAT,
|
|
1452
|
-
0, () => CountPendingActivityTasksInput$, () => PendingTaskCount$
|
|
1453
|
-
];
|
|
1454
|
-
var CountPendingDecisionTasks$ = [9, n0, _CPDT,
|
|
1455
|
-
0, () => CountPendingDecisionTasksInput$, () => PendingTaskCount$
|
|
1456
|
-
];
|
|
1457
|
-
var DeleteActivityType$ = [9, n0, _DAT,
|
|
1458
|
-
0, () => DeleteActivityTypeInput$, () => __Unit
|
|
1459
|
-
];
|
|
1460
|
-
var DeleteWorkflowType$ = [9, n0, _DWT,
|
|
1461
|
-
0, () => DeleteWorkflowTypeInput$, () => __Unit
|
|
1462
|
-
];
|
|
1463
|
-
var DeprecateActivityType$ = [9, n0, _DATe,
|
|
1464
|
-
0, () => DeprecateActivityTypeInput$, () => __Unit
|
|
1465
|
-
];
|
|
1466
|
-
var DeprecateDomain$ = [9, n0, _DDe,
|
|
1467
|
-
0, () => DeprecateDomainInput$, () => __Unit
|
|
1468
|
-
];
|
|
1469
|
-
var DeprecateWorkflowType$ = [9, n0, _DWTe,
|
|
1470
|
-
0, () => DeprecateWorkflowTypeInput$, () => __Unit
|
|
1471
|
-
];
|
|
1472
|
-
var DescribeActivityType$ = [9, n0, _DATes,
|
|
1473
|
-
0, () => DescribeActivityTypeInput$, () => ActivityTypeDetail$
|
|
1474
|
-
];
|
|
1475
|
-
var DescribeDomain$ = [9, n0, _DDes,
|
|
1476
|
-
0, () => DescribeDomainInput$, () => DomainDetail$
|
|
1477
|
-
];
|
|
1478
|
-
var DescribeWorkflowExecution$ = [9, n0, _DWE,
|
|
1479
|
-
0, () => DescribeWorkflowExecutionInput$, () => WorkflowExecutionDetail$
|
|
1480
|
-
];
|
|
1481
|
-
var DescribeWorkflowType$ = [9, n0, _DWTes,
|
|
1482
|
-
0, () => DescribeWorkflowTypeInput$, () => WorkflowTypeDetail$
|
|
1483
|
-
];
|
|
1484
|
-
var GetWorkflowExecutionHistory$ = [9, n0, _GWEH,
|
|
1485
|
-
0, () => GetWorkflowExecutionHistoryInput$, () => History$
|
|
1486
|
-
];
|
|
1487
|
-
var ListActivityTypes$ = [9, n0, _LAT,
|
|
1488
|
-
0, () => ListActivityTypesInput$, () => ActivityTypeInfos$
|
|
1489
|
-
];
|
|
1490
|
-
var ListClosedWorkflowExecutions$ = [9, n0, _LCWE,
|
|
1491
|
-
0, () => ListClosedWorkflowExecutionsInput$, () => WorkflowExecutionInfos$
|
|
1492
|
-
];
|
|
1493
|
-
var ListDomains$ = [9, n0, _LD,
|
|
1494
|
-
0, () => ListDomainsInput$, () => DomainInfos$
|
|
1495
|
-
];
|
|
1496
|
-
var ListOpenWorkflowExecutions$ = [9, n0, _LOWE,
|
|
1497
|
-
0, () => ListOpenWorkflowExecutionsInput$, () => WorkflowExecutionInfos$
|
|
1498
|
-
];
|
|
1499
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1500
|
-
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1501
|
-
];
|
|
1502
|
-
var ListWorkflowTypes$ = [9, n0, _LWT,
|
|
1503
|
-
0, () => ListWorkflowTypesInput$, () => WorkflowTypeInfos$
|
|
1504
|
-
];
|
|
1505
|
-
var PollForActivityTask$ = [9, n0, _PFAT,
|
|
1506
|
-
0, () => PollForActivityTaskInput$, () => ActivityTask$
|
|
1507
|
-
];
|
|
1508
|
-
var PollForDecisionTask$ = [9, n0, _PFDT,
|
|
1509
|
-
0, () => PollForDecisionTaskInput$, () => DecisionTask$
|
|
1510
|
-
];
|
|
1511
|
-
var RecordActivityTaskHeartbeat$ = [9, n0, _RATH,
|
|
1512
|
-
0, () => RecordActivityTaskHeartbeatInput$, () => ActivityTaskStatus$
|
|
1513
|
-
];
|
|
1514
|
-
var RegisterActivityType$ = [9, n0, _RAT,
|
|
1515
|
-
0, () => RegisterActivityTypeInput$, () => __Unit
|
|
1516
|
-
];
|
|
1517
|
-
var RegisterDomain$ = [9, n0, _RD,
|
|
1518
|
-
0, () => RegisterDomainInput$, () => __Unit
|
|
1519
|
-
];
|
|
1520
|
-
var RegisterWorkflowType$ = [9, n0, _RWT,
|
|
1521
|
-
0, () => RegisterWorkflowTypeInput$, () => __Unit
|
|
1522
|
-
];
|
|
1523
|
-
var RequestCancelWorkflowExecution$ = [9, n0, _RCWE,
|
|
1524
|
-
0, () => RequestCancelWorkflowExecutionInput$, () => __Unit
|
|
1525
|
-
];
|
|
1526
|
-
var RespondActivityTaskCanceled$ = [9, n0, _RATC,
|
|
1527
|
-
0, () => RespondActivityTaskCanceledInput$, () => __Unit
|
|
1528
|
-
];
|
|
1529
|
-
var RespondActivityTaskCompleted$ = [9, n0, _RATCe,
|
|
1530
|
-
0, () => RespondActivityTaskCompletedInput$, () => __Unit
|
|
1531
|
-
];
|
|
1532
|
-
var RespondActivityTaskFailed$ = [9, n0, _RATF,
|
|
1533
|
-
0, () => RespondActivityTaskFailedInput$, () => __Unit
|
|
1534
|
-
];
|
|
1535
|
-
var RespondDecisionTaskCompleted$ = [9, n0, _RDTC,
|
|
1536
|
-
0, () => RespondDecisionTaskCompletedInput$, () => __Unit
|
|
1537
|
-
];
|
|
1538
|
-
var SignalWorkflowExecution$ = [9, n0, _SWE,
|
|
1539
|
-
0, () => SignalWorkflowExecutionInput$, () => __Unit
|
|
1540
|
-
];
|
|
1541
|
-
var StartWorkflowExecution$ = [9, n0, _SWEt,
|
|
1542
|
-
0, () => StartWorkflowExecutionInput$, () => Run$
|
|
1543
|
-
];
|
|
1544
|
-
var TagResource$ = [9, n0, _TR,
|
|
1545
|
-
0, () => TagResourceInput$, () => __Unit
|
|
1546
|
-
];
|
|
1547
|
-
var TerminateWorkflowExecution$ = [9, n0, _TWE,
|
|
1548
|
-
0, () => TerminateWorkflowExecutionInput$, () => __Unit
|
|
1549
|
-
];
|
|
1550
|
-
var UndeprecateActivityType$ = [9, n0, _UAT,
|
|
1551
|
-
0, () => UndeprecateActivityTypeInput$, () => __Unit
|
|
1552
|
-
];
|
|
1553
|
-
var UndeprecateDomain$ = [9, n0, _UD,
|
|
1554
|
-
0, () => UndeprecateDomainInput$, () => __Unit
|
|
1555
|
-
];
|
|
1556
|
-
var UndeprecateWorkflowType$ = [9, n0, _UWT,
|
|
1557
|
-
0, () => UndeprecateWorkflowTypeInput$, () => __Unit
|
|
1558
|
-
];
|
|
1559
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1560
|
-
0, () => UntagResourceInput$, () => __Unit
|
|
1561
|
-
];
|
|
1562
|
-
|
|
1563
116
|
class CountClosedWorkflowExecutionsCommand extends smithyClient.Command
|
|
1564
117
|
.classBuilder()
|
|
1565
118
|
.ep(commonParams)
|
|
@@ -1568,7 +121,7 @@ class CountClosedWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
1568
121
|
})
|
|
1569
122
|
.s("SimpleWorkflowService", "CountClosedWorkflowExecutions", {})
|
|
1570
123
|
.n("SWFClient", "CountClosedWorkflowExecutionsCommand")
|
|
1571
|
-
.sc(CountClosedWorkflowExecutions$)
|
|
124
|
+
.sc(schemas_0.CountClosedWorkflowExecutions$)
|
|
1572
125
|
.build() {
|
|
1573
126
|
}
|
|
1574
127
|
|
|
@@ -1580,7 +133,7 @@ class CountOpenWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
1580
133
|
})
|
|
1581
134
|
.s("SimpleWorkflowService", "CountOpenWorkflowExecutions", {})
|
|
1582
135
|
.n("SWFClient", "CountOpenWorkflowExecutionsCommand")
|
|
1583
|
-
.sc(CountOpenWorkflowExecutions$)
|
|
136
|
+
.sc(schemas_0.CountOpenWorkflowExecutions$)
|
|
1584
137
|
.build() {
|
|
1585
138
|
}
|
|
1586
139
|
|
|
@@ -1592,7 +145,7 @@ class CountPendingActivityTasksCommand extends smithyClient.Command
|
|
|
1592
145
|
})
|
|
1593
146
|
.s("SimpleWorkflowService", "CountPendingActivityTasks", {})
|
|
1594
147
|
.n("SWFClient", "CountPendingActivityTasksCommand")
|
|
1595
|
-
.sc(CountPendingActivityTasks$)
|
|
148
|
+
.sc(schemas_0.CountPendingActivityTasks$)
|
|
1596
149
|
.build() {
|
|
1597
150
|
}
|
|
1598
151
|
|
|
@@ -1604,7 +157,7 @@ class CountPendingDecisionTasksCommand extends smithyClient.Command
|
|
|
1604
157
|
})
|
|
1605
158
|
.s("SimpleWorkflowService", "CountPendingDecisionTasks", {})
|
|
1606
159
|
.n("SWFClient", "CountPendingDecisionTasksCommand")
|
|
1607
|
-
.sc(CountPendingDecisionTasks$)
|
|
160
|
+
.sc(schemas_0.CountPendingDecisionTasks$)
|
|
1608
161
|
.build() {
|
|
1609
162
|
}
|
|
1610
163
|
|
|
@@ -1616,7 +169,7 @@ class DeleteActivityTypeCommand extends smithyClient.Command
|
|
|
1616
169
|
})
|
|
1617
170
|
.s("SimpleWorkflowService", "DeleteActivityType", {})
|
|
1618
171
|
.n("SWFClient", "DeleteActivityTypeCommand")
|
|
1619
|
-
.sc(DeleteActivityType$)
|
|
172
|
+
.sc(schemas_0.DeleteActivityType$)
|
|
1620
173
|
.build() {
|
|
1621
174
|
}
|
|
1622
175
|
|
|
@@ -1628,7 +181,7 @@ class DeleteWorkflowTypeCommand extends smithyClient.Command
|
|
|
1628
181
|
})
|
|
1629
182
|
.s("SimpleWorkflowService", "DeleteWorkflowType", {})
|
|
1630
183
|
.n("SWFClient", "DeleteWorkflowTypeCommand")
|
|
1631
|
-
.sc(DeleteWorkflowType$)
|
|
184
|
+
.sc(schemas_0.DeleteWorkflowType$)
|
|
1632
185
|
.build() {
|
|
1633
186
|
}
|
|
1634
187
|
|
|
@@ -1640,7 +193,7 @@ class DeprecateActivityTypeCommand extends smithyClient.Command
|
|
|
1640
193
|
})
|
|
1641
194
|
.s("SimpleWorkflowService", "DeprecateActivityType", {})
|
|
1642
195
|
.n("SWFClient", "DeprecateActivityTypeCommand")
|
|
1643
|
-
.sc(DeprecateActivityType$)
|
|
196
|
+
.sc(schemas_0.DeprecateActivityType$)
|
|
1644
197
|
.build() {
|
|
1645
198
|
}
|
|
1646
199
|
|
|
@@ -1652,7 +205,7 @@ class DeprecateDomainCommand extends smithyClient.Command
|
|
|
1652
205
|
})
|
|
1653
206
|
.s("SimpleWorkflowService", "DeprecateDomain", {})
|
|
1654
207
|
.n("SWFClient", "DeprecateDomainCommand")
|
|
1655
|
-
.sc(DeprecateDomain$)
|
|
208
|
+
.sc(schemas_0.DeprecateDomain$)
|
|
1656
209
|
.build() {
|
|
1657
210
|
}
|
|
1658
211
|
|
|
@@ -1664,7 +217,7 @@ class DeprecateWorkflowTypeCommand extends smithyClient.Command
|
|
|
1664
217
|
})
|
|
1665
218
|
.s("SimpleWorkflowService", "DeprecateWorkflowType", {})
|
|
1666
219
|
.n("SWFClient", "DeprecateWorkflowTypeCommand")
|
|
1667
|
-
.sc(DeprecateWorkflowType$)
|
|
220
|
+
.sc(schemas_0.DeprecateWorkflowType$)
|
|
1668
221
|
.build() {
|
|
1669
222
|
}
|
|
1670
223
|
|
|
@@ -1676,7 +229,7 @@ class DescribeActivityTypeCommand extends smithyClient.Command
|
|
|
1676
229
|
})
|
|
1677
230
|
.s("SimpleWorkflowService", "DescribeActivityType", {})
|
|
1678
231
|
.n("SWFClient", "DescribeActivityTypeCommand")
|
|
1679
|
-
.sc(DescribeActivityType$)
|
|
232
|
+
.sc(schemas_0.DescribeActivityType$)
|
|
1680
233
|
.build() {
|
|
1681
234
|
}
|
|
1682
235
|
|
|
@@ -1688,7 +241,7 @@ class DescribeDomainCommand extends smithyClient.Command
|
|
|
1688
241
|
})
|
|
1689
242
|
.s("SimpleWorkflowService", "DescribeDomain", {})
|
|
1690
243
|
.n("SWFClient", "DescribeDomainCommand")
|
|
1691
|
-
.sc(DescribeDomain$)
|
|
244
|
+
.sc(schemas_0.DescribeDomain$)
|
|
1692
245
|
.build() {
|
|
1693
246
|
}
|
|
1694
247
|
|
|
@@ -1700,7 +253,7 @@ class DescribeWorkflowExecutionCommand extends smithyClient.Command
|
|
|
1700
253
|
})
|
|
1701
254
|
.s("SimpleWorkflowService", "DescribeWorkflowExecution", {})
|
|
1702
255
|
.n("SWFClient", "DescribeWorkflowExecutionCommand")
|
|
1703
|
-
.sc(DescribeWorkflowExecution$)
|
|
256
|
+
.sc(schemas_0.DescribeWorkflowExecution$)
|
|
1704
257
|
.build() {
|
|
1705
258
|
}
|
|
1706
259
|
|
|
@@ -1712,7 +265,7 @@ class DescribeWorkflowTypeCommand extends smithyClient.Command
|
|
|
1712
265
|
})
|
|
1713
266
|
.s("SimpleWorkflowService", "DescribeWorkflowType", {})
|
|
1714
267
|
.n("SWFClient", "DescribeWorkflowTypeCommand")
|
|
1715
|
-
.sc(DescribeWorkflowType$)
|
|
268
|
+
.sc(schemas_0.DescribeWorkflowType$)
|
|
1716
269
|
.build() {
|
|
1717
270
|
}
|
|
1718
271
|
|
|
@@ -1724,7 +277,7 @@ class GetWorkflowExecutionHistoryCommand extends smithyClient.Command
|
|
|
1724
277
|
})
|
|
1725
278
|
.s("SimpleWorkflowService", "GetWorkflowExecutionHistory", {})
|
|
1726
279
|
.n("SWFClient", "GetWorkflowExecutionHistoryCommand")
|
|
1727
|
-
.sc(GetWorkflowExecutionHistory$)
|
|
280
|
+
.sc(schemas_0.GetWorkflowExecutionHistory$)
|
|
1728
281
|
.build() {
|
|
1729
282
|
}
|
|
1730
283
|
|
|
@@ -1736,7 +289,7 @@ class ListActivityTypesCommand extends smithyClient.Command
|
|
|
1736
289
|
})
|
|
1737
290
|
.s("SimpleWorkflowService", "ListActivityTypes", {})
|
|
1738
291
|
.n("SWFClient", "ListActivityTypesCommand")
|
|
1739
|
-
.sc(ListActivityTypes$)
|
|
292
|
+
.sc(schemas_0.ListActivityTypes$)
|
|
1740
293
|
.build() {
|
|
1741
294
|
}
|
|
1742
295
|
|
|
@@ -1748,7 +301,7 @@ class ListClosedWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
1748
301
|
})
|
|
1749
302
|
.s("SimpleWorkflowService", "ListClosedWorkflowExecutions", {})
|
|
1750
303
|
.n("SWFClient", "ListClosedWorkflowExecutionsCommand")
|
|
1751
|
-
.sc(ListClosedWorkflowExecutions$)
|
|
304
|
+
.sc(schemas_0.ListClosedWorkflowExecutions$)
|
|
1752
305
|
.build() {
|
|
1753
306
|
}
|
|
1754
307
|
|
|
@@ -1760,7 +313,7 @@ class ListDomainsCommand extends smithyClient.Command
|
|
|
1760
313
|
})
|
|
1761
314
|
.s("SimpleWorkflowService", "ListDomains", {})
|
|
1762
315
|
.n("SWFClient", "ListDomainsCommand")
|
|
1763
|
-
.sc(ListDomains$)
|
|
316
|
+
.sc(schemas_0.ListDomains$)
|
|
1764
317
|
.build() {
|
|
1765
318
|
}
|
|
1766
319
|
|
|
@@ -1772,7 +325,7 @@ class ListOpenWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
1772
325
|
})
|
|
1773
326
|
.s("SimpleWorkflowService", "ListOpenWorkflowExecutions", {})
|
|
1774
327
|
.n("SWFClient", "ListOpenWorkflowExecutionsCommand")
|
|
1775
|
-
.sc(ListOpenWorkflowExecutions$)
|
|
328
|
+
.sc(schemas_0.ListOpenWorkflowExecutions$)
|
|
1776
329
|
.build() {
|
|
1777
330
|
}
|
|
1778
331
|
|
|
@@ -1784,7 +337,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1784
337
|
})
|
|
1785
338
|
.s("SimpleWorkflowService", "ListTagsForResource", {})
|
|
1786
339
|
.n("SWFClient", "ListTagsForResourceCommand")
|
|
1787
|
-
.sc(ListTagsForResource$)
|
|
340
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1788
341
|
.build() {
|
|
1789
342
|
}
|
|
1790
343
|
|
|
@@ -1796,7 +349,7 @@ class ListWorkflowTypesCommand extends smithyClient.Command
|
|
|
1796
349
|
})
|
|
1797
350
|
.s("SimpleWorkflowService", "ListWorkflowTypes", {})
|
|
1798
351
|
.n("SWFClient", "ListWorkflowTypesCommand")
|
|
1799
|
-
.sc(ListWorkflowTypes$)
|
|
352
|
+
.sc(schemas_0.ListWorkflowTypes$)
|
|
1800
353
|
.build() {
|
|
1801
354
|
}
|
|
1802
355
|
|
|
@@ -1808,7 +361,7 @@ class PollForActivityTaskCommand extends smithyClient.Command
|
|
|
1808
361
|
})
|
|
1809
362
|
.s("SimpleWorkflowService", "PollForActivityTask", {})
|
|
1810
363
|
.n("SWFClient", "PollForActivityTaskCommand")
|
|
1811
|
-
.sc(PollForActivityTask$)
|
|
364
|
+
.sc(schemas_0.PollForActivityTask$)
|
|
1812
365
|
.build() {
|
|
1813
366
|
}
|
|
1814
367
|
|
|
@@ -1820,7 +373,7 @@ class PollForDecisionTaskCommand extends smithyClient.Command
|
|
|
1820
373
|
})
|
|
1821
374
|
.s("SimpleWorkflowService", "PollForDecisionTask", {})
|
|
1822
375
|
.n("SWFClient", "PollForDecisionTaskCommand")
|
|
1823
|
-
.sc(PollForDecisionTask$)
|
|
376
|
+
.sc(schemas_0.PollForDecisionTask$)
|
|
1824
377
|
.build() {
|
|
1825
378
|
}
|
|
1826
379
|
|
|
@@ -1832,7 +385,7 @@ class RecordActivityTaskHeartbeatCommand extends smithyClient.Command
|
|
|
1832
385
|
})
|
|
1833
386
|
.s("SimpleWorkflowService", "RecordActivityTaskHeartbeat", {})
|
|
1834
387
|
.n("SWFClient", "RecordActivityTaskHeartbeatCommand")
|
|
1835
|
-
.sc(RecordActivityTaskHeartbeat$)
|
|
388
|
+
.sc(schemas_0.RecordActivityTaskHeartbeat$)
|
|
1836
389
|
.build() {
|
|
1837
390
|
}
|
|
1838
391
|
|
|
@@ -1844,7 +397,7 @@ class RegisterActivityTypeCommand extends smithyClient.Command
|
|
|
1844
397
|
})
|
|
1845
398
|
.s("SimpleWorkflowService", "RegisterActivityType", {})
|
|
1846
399
|
.n("SWFClient", "RegisterActivityTypeCommand")
|
|
1847
|
-
.sc(RegisterActivityType$)
|
|
400
|
+
.sc(schemas_0.RegisterActivityType$)
|
|
1848
401
|
.build() {
|
|
1849
402
|
}
|
|
1850
403
|
|
|
@@ -1856,7 +409,7 @@ class RegisterDomainCommand extends smithyClient.Command
|
|
|
1856
409
|
})
|
|
1857
410
|
.s("SimpleWorkflowService", "RegisterDomain", {})
|
|
1858
411
|
.n("SWFClient", "RegisterDomainCommand")
|
|
1859
|
-
.sc(RegisterDomain$)
|
|
412
|
+
.sc(schemas_0.RegisterDomain$)
|
|
1860
413
|
.build() {
|
|
1861
414
|
}
|
|
1862
415
|
|
|
@@ -1868,7 +421,7 @@ class RegisterWorkflowTypeCommand extends smithyClient.Command
|
|
|
1868
421
|
})
|
|
1869
422
|
.s("SimpleWorkflowService", "RegisterWorkflowType", {})
|
|
1870
423
|
.n("SWFClient", "RegisterWorkflowTypeCommand")
|
|
1871
|
-
.sc(RegisterWorkflowType$)
|
|
424
|
+
.sc(schemas_0.RegisterWorkflowType$)
|
|
1872
425
|
.build() {
|
|
1873
426
|
}
|
|
1874
427
|
|
|
@@ -1880,7 +433,7 @@ class RequestCancelWorkflowExecutionCommand extends smithyClient.Command
|
|
|
1880
433
|
})
|
|
1881
434
|
.s("SimpleWorkflowService", "RequestCancelWorkflowExecution", {})
|
|
1882
435
|
.n("SWFClient", "RequestCancelWorkflowExecutionCommand")
|
|
1883
|
-
.sc(RequestCancelWorkflowExecution$)
|
|
436
|
+
.sc(schemas_0.RequestCancelWorkflowExecution$)
|
|
1884
437
|
.build() {
|
|
1885
438
|
}
|
|
1886
439
|
|
|
@@ -1892,7 +445,7 @@ class RespondActivityTaskCanceledCommand extends smithyClient.Command
|
|
|
1892
445
|
})
|
|
1893
446
|
.s("SimpleWorkflowService", "RespondActivityTaskCanceled", {})
|
|
1894
447
|
.n("SWFClient", "RespondActivityTaskCanceledCommand")
|
|
1895
|
-
.sc(RespondActivityTaskCanceled$)
|
|
448
|
+
.sc(schemas_0.RespondActivityTaskCanceled$)
|
|
1896
449
|
.build() {
|
|
1897
450
|
}
|
|
1898
451
|
|
|
@@ -1904,7 +457,7 @@ class RespondActivityTaskCompletedCommand extends smithyClient.Command
|
|
|
1904
457
|
})
|
|
1905
458
|
.s("SimpleWorkflowService", "RespondActivityTaskCompleted", {})
|
|
1906
459
|
.n("SWFClient", "RespondActivityTaskCompletedCommand")
|
|
1907
|
-
.sc(RespondActivityTaskCompleted$)
|
|
460
|
+
.sc(schemas_0.RespondActivityTaskCompleted$)
|
|
1908
461
|
.build() {
|
|
1909
462
|
}
|
|
1910
463
|
|
|
@@ -1916,7 +469,7 @@ class RespondActivityTaskFailedCommand extends smithyClient.Command
|
|
|
1916
469
|
})
|
|
1917
470
|
.s("SimpleWorkflowService", "RespondActivityTaskFailed", {})
|
|
1918
471
|
.n("SWFClient", "RespondActivityTaskFailedCommand")
|
|
1919
|
-
.sc(RespondActivityTaskFailed$)
|
|
472
|
+
.sc(schemas_0.RespondActivityTaskFailed$)
|
|
1920
473
|
.build() {
|
|
1921
474
|
}
|
|
1922
475
|
|
|
@@ -1928,7 +481,7 @@ class RespondDecisionTaskCompletedCommand extends smithyClient.Command
|
|
|
1928
481
|
})
|
|
1929
482
|
.s("SimpleWorkflowService", "RespondDecisionTaskCompleted", {})
|
|
1930
483
|
.n("SWFClient", "RespondDecisionTaskCompletedCommand")
|
|
1931
|
-
.sc(RespondDecisionTaskCompleted$)
|
|
484
|
+
.sc(schemas_0.RespondDecisionTaskCompleted$)
|
|
1932
485
|
.build() {
|
|
1933
486
|
}
|
|
1934
487
|
|
|
@@ -1940,7 +493,7 @@ class SignalWorkflowExecutionCommand extends smithyClient.Command
|
|
|
1940
493
|
})
|
|
1941
494
|
.s("SimpleWorkflowService", "SignalWorkflowExecution", {})
|
|
1942
495
|
.n("SWFClient", "SignalWorkflowExecutionCommand")
|
|
1943
|
-
.sc(SignalWorkflowExecution$)
|
|
496
|
+
.sc(schemas_0.SignalWorkflowExecution$)
|
|
1944
497
|
.build() {
|
|
1945
498
|
}
|
|
1946
499
|
|
|
@@ -1952,7 +505,7 @@ class StartWorkflowExecutionCommand extends smithyClient.Command
|
|
|
1952
505
|
})
|
|
1953
506
|
.s("SimpleWorkflowService", "StartWorkflowExecution", {})
|
|
1954
507
|
.n("SWFClient", "StartWorkflowExecutionCommand")
|
|
1955
|
-
.sc(StartWorkflowExecution$)
|
|
508
|
+
.sc(schemas_0.StartWorkflowExecution$)
|
|
1956
509
|
.build() {
|
|
1957
510
|
}
|
|
1958
511
|
|
|
@@ -1964,7 +517,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1964
517
|
})
|
|
1965
518
|
.s("SimpleWorkflowService", "TagResource", {})
|
|
1966
519
|
.n("SWFClient", "TagResourceCommand")
|
|
1967
|
-
.sc(TagResource$)
|
|
520
|
+
.sc(schemas_0.TagResource$)
|
|
1968
521
|
.build() {
|
|
1969
522
|
}
|
|
1970
523
|
|
|
@@ -1976,7 +529,7 @@ class TerminateWorkflowExecutionCommand extends smithyClient.Command
|
|
|
1976
529
|
})
|
|
1977
530
|
.s("SimpleWorkflowService", "TerminateWorkflowExecution", {})
|
|
1978
531
|
.n("SWFClient", "TerminateWorkflowExecutionCommand")
|
|
1979
|
-
.sc(TerminateWorkflowExecution$)
|
|
532
|
+
.sc(schemas_0.TerminateWorkflowExecution$)
|
|
1980
533
|
.build() {
|
|
1981
534
|
}
|
|
1982
535
|
|
|
@@ -1988,7 +541,7 @@ class UndeprecateActivityTypeCommand extends smithyClient.Command
|
|
|
1988
541
|
})
|
|
1989
542
|
.s("SimpleWorkflowService", "UndeprecateActivityType", {})
|
|
1990
543
|
.n("SWFClient", "UndeprecateActivityTypeCommand")
|
|
1991
|
-
.sc(UndeprecateActivityType$)
|
|
544
|
+
.sc(schemas_0.UndeprecateActivityType$)
|
|
1992
545
|
.build() {
|
|
1993
546
|
}
|
|
1994
547
|
|
|
@@ -2000,7 +553,7 @@ class UndeprecateDomainCommand extends smithyClient.Command
|
|
|
2000
553
|
})
|
|
2001
554
|
.s("SimpleWorkflowService", "UndeprecateDomain", {})
|
|
2002
555
|
.n("SWFClient", "UndeprecateDomainCommand")
|
|
2003
|
-
.sc(UndeprecateDomain$)
|
|
556
|
+
.sc(schemas_0.UndeprecateDomain$)
|
|
2004
557
|
.build() {
|
|
2005
558
|
}
|
|
2006
559
|
|
|
@@ -2012,7 +565,7 @@ class UndeprecateWorkflowTypeCommand extends smithyClient.Command
|
|
|
2012
565
|
})
|
|
2013
566
|
.s("SimpleWorkflowService", "UndeprecateWorkflowType", {})
|
|
2014
567
|
.n("SWFClient", "UndeprecateWorkflowTypeCommand")
|
|
2015
|
-
.sc(UndeprecateWorkflowType$)
|
|
568
|
+
.sc(schemas_0.UndeprecateWorkflowType$)
|
|
2016
569
|
.build() {
|
|
2017
570
|
}
|
|
2018
571
|
|
|
@@ -2024,7 +577,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2024
577
|
})
|
|
2025
578
|
.s("SimpleWorkflowService", "UntagResource", {})
|
|
2026
579
|
.n("SWFClient", "UntagResourceCommand")
|
|
2027
|
-
.sc(UntagResource$)
|
|
580
|
+
.sc(schemas_0.UntagResource$)
|
|
2028
581
|
.build() {
|
|
2029
582
|
}
|
|
2030
583
|
|
|
@@ -2306,279 +859,77 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2306
859
|
enumerable: true,
|
|
2307
860
|
get: function () { return smithyClient.Client; }
|
|
2308
861
|
});
|
|
2309
|
-
exports
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
exports.ActivityTaskFailedEventAttributes$ = ActivityTaskFailedEventAttributes$;
|
|
2314
|
-
exports.ActivityTaskScheduledEventAttributes$ = ActivityTaskScheduledEventAttributes$;
|
|
2315
|
-
exports.ActivityTaskStartedEventAttributes$ = ActivityTaskStartedEventAttributes$;
|
|
2316
|
-
exports.ActivityTaskStatus$ = ActivityTaskStatus$;
|
|
2317
|
-
exports.ActivityTaskTimedOutEventAttributes$ = ActivityTaskTimedOutEventAttributes$;
|
|
862
|
+
Object.defineProperty(exports, "SWFServiceException", {
|
|
863
|
+
enumerable: true,
|
|
864
|
+
get: function () { return SWFServiceException.SWFServiceException; }
|
|
865
|
+
});
|
|
2318
866
|
exports.ActivityTaskTimeoutType = ActivityTaskTimeoutType;
|
|
2319
|
-
exports.ActivityType$ = ActivityType$;
|
|
2320
|
-
exports.ActivityTypeConfiguration$ = ActivityTypeConfiguration$;
|
|
2321
|
-
exports.ActivityTypeDetail$ = ActivityTypeDetail$;
|
|
2322
|
-
exports.ActivityTypeInfo$ = ActivityTypeInfo$;
|
|
2323
|
-
exports.ActivityTypeInfos$ = ActivityTypeInfos$;
|
|
2324
|
-
exports.CancelTimerDecisionAttributes$ = CancelTimerDecisionAttributes$;
|
|
2325
867
|
exports.CancelTimerFailedCause = CancelTimerFailedCause;
|
|
2326
|
-
exports.CancelTimerFailedEventAttributes$ = CancelTimerFailedEventAttributes$;
|
|
2327
|
-
exports.CancelWorkflowExecutionDecisionAttributes$ = CancelWorkflowExecutionDecisionAttributes$;
|
|
2328
868
|
exports.CancelWorkflowExecutionFailedCause = CancelWorkflowExecutionFailedCause;
|
|
2329
|
-
exports.CancelWorkflowExecutionFailedEventAttributes$ = CancelWorkflowExecutionFailedEventAttributes$;
|
|
2330
869
|
exports.ChildPolicy = ChildPolicy;
|
|
2331
|
-
exports.ChildWorkflowExecutionCanceledEventAttributes$ = ChildWorkflowExecutionCanceledEventAttributes$;
|
|
2332
|
-
exports.ChildWorkflowExecutionCompletedEventAttributes$ = ChildWorkflowExecutionCompletedEventAttributes$;
|
|
2333
|
-
exports.ChildWorkflowExecutionFailedEventAttributes$ = ChildWorkflowExecutionFailedEventAttributes$;
|
|
2334
|
-
exports.ChildWorkflowExecutionStartedEventAttributes$ = ChildWorkflowExecutionStartedEventAttributes$;
|
|
2335
|
-
exports.ChildWorkflowExecutionTerminatedEventAttributes$ = ChildWorkflowExecutionTerminatedEventAttributes$;
|
|
2336
|
-
exports.ChildWorkflowExecutionTimedOutEventAttributes$ = ChildWorkflowExecutionTimedOutEventAttributes$;
|
|
2337
870
|
exports.CloseStatus = CloseStatus;
|
|
2338
|
-
exports.CloseStatusFilter$ = CloseStatusFilter$;
|
|
2339
|
-
exports.CompleteWorkflowExecutionDecisionAttributes$ = CompleteWorkflowExecutionDecisionAttributes$;
|
|
2340
871
|
exports.CompleteWorkflowExecutionFailedCause = CompleteWorkflowExecutionFailedCause;
|
|
2341
|
-
exports.CompleteWorkflowExecutionFailedEventAttributes$ = CompleteWorkflowExecutionFailedEventAttributes$;
|
|
2342
|
-
exports.ContinueAsNewWorkflowExecutionDecisionAttributes$ = ContinueAsNewWorkflowExecutionDecisionAttributes$;
|
|
2343
872
|
exports.ContinueAsNewWorkflowExecutionFailedCause = ContinueAsNewWorkflowExecutionFailedCause;
|
|
2344
|
-
exports.ContinueAsNewWorkflowExecutionFailedEventAttributes$ = ContinueAsNewWorkflowExecutionFailedEventAttributes$;
|
|
2345
|
-
exports.CountClosedWorkflowExecutions$ = CountClosedWorkflowExecutions$;
|
|
2346
873
|
exports.CountClosedWorkflowExecutionsCommand = CountClosedWorkflowExecutionsCommand;
|
|
2347
|
-
exports.CountClosedWorkflowExecutionsInput$ = CountClosedWorkflowExecutionsInput$;
|
|
2348
|
-
exports.CountOpenWorkflowExecutions$ = CountOpenWorkflowExecutions$;
|
|
2349
874
|
exports.CountOpenWorkflowExecutionsCommand = CountOpenWorkflowExecutionsCommand;
|
|
2350
|
-
exports.CountOpenWorkflowExecutionsInput$ = CountOpenWorkflowExecutionsInput$;
|
|
2351
|
-
exports.CountPendingActivityTasks$ = CountPendingActivityTasks$;
|
|
2352
875
|
exports.CountPendingActivityTasksCommand = CountPendingActivityTasksCommand;
|
|
2353
|
-
exports.CountPendingActivityTasksInput$ = CountPendingActivityTasksInput$;
|
|
2354
|
-
exports.CountPendingDecisionTasks$ = CountPendingDecisionTasks$;
|
|
2355
876
|
exports.CountPendingDecisionTasksCommand = CountPendingDecisionTasksCommand;
|
|
2356
|
-
exports.CountPendingDecisionTasksInput$ = CountPendingDecisionTasksInput$;
|
|
2357
|
-
exports.Decision$ = Decision$;
|
|
2358
|
-
exports.DecisionTask$ = DecisionTask$;
|
|
2359
|
-
exports.DecisionTaskCompletedEventAttributes$ = DecisionTaskCompletedEventAttributes$;
|
|
2360
|
-
exports.DecisionTaskScheduledEventAttributes$ = DecisionTaskScheduledEventAttributes$;
|
|
2361
|
-
exports.DecisionTaskStartedEventAttributes$ = DecisionTaskStartedEventAttributes$;
|
|
2362
|
-
exports.DecisionTaskTimedOutEventAttributes$ = DecisionTaskTimedOutEventAttributes$;
|
|
2363
877
|
exports.DecisionTaskTimeoutType = DecisionTaskTimeoutType;
|
|
2364
878
|
exports.DecisionType = DecisionType;
|
|
2365
|
-
exports.DefaultUndefinedFault = DefaultUndefinedFault;
|
|
2366
|
-
exports.DefaultUndefinedFault$ = DefaultUndefinedFault$;
|
|
2367
|
-
exports.DeleteActivityType$ = DeleteActivityType$;
|
|
2368
879
|
exports.DeleteActivityTypeCommand = DeleteActivityTypeCommand;
|
|
2369
|
-
exports.DeleteActivityTypeInput$ = DeleteActivityTypeInput$;
|
|
2370
|
-
exports.DeleteWorkflowType$ = DeleteWorkflowType$;
|
|
2371
880
|
exports.DeleteWorkflowTypeCommand = DeleteWorkflowTypeCommand;
|
|
2372
|
-
exports.DeleteWorkflowTypeInput$ = DeleteWorkflowTypeInput$;
|
|
2373
|
-
exports.DeprecateActivityType$ = DeprecateActivityType$;
|
|
2374
881
|
exports.DeprecateActivityTypeCommand = DeprecateActivityTypeCommand;
|
|
2375
|
-
exports.DeprecateActivityTypeInput$ = DeprecateActivityTypeInput$;
|
|
2376
|
-
exports.DeprecateDomain$ = DeprecateDomain$;
|
|
2377
882
|
exports.DeprecateDomainCommand = DeprecateDomainCommand;
|
|
2378
|
-
exports.DeprecateDomainInput$ = DeprecateDomainInput$;
|
|
2379
|
-
exports.DeprecateWorkflowType$ = DeprecateWorkflowType$;
|
|
2380
883
|
exports.DeprecateWorkflowTypeCommand = DeprecateWorkflowTypeCommand;
|
|
2381
|
-
exports.DeprecateWorkflowTypeInput$ = DeprecateWorkflowTypeInput$;
|
|
2382
|
-
exports.DescribeActivityType$ = DescribeActivityType$;
|
|
2383
884
|
exports.DescribeActivityTypeCommand = DescribeActivityTypeCommand;
|
|
2384
|
-
exports.DescribeActivityTypeInput$ = DescribeActivityTypeInput$;
|
|
2385
|
-
exports.DescribeDomain$ = DescribeDomain$;
|
|
2386
885
|
exports.DescribeDomainCommand = DescribeDomainCommand;
|
|
2387
|
-
exports.DescribeDomainInput$ = DescribeDomainInput$;
|
|
2388
|
-
exports.DescribeWorkflowExecution$ = DescribeWorkflowExecution$;
|
|
2389
886
|
exports.DescribeWorkflowExecutionCommand = DescribeWorkflowExecutionCommand;
|
|
2390
|
-
exports.DescribeWorkflowExecutionInput$ = DescribeWorkflowExecutionInput$;
|
|
2391
|
-
exports.DescribeWorkflowType$ = DescribeWorkflowType$;
|
|
2392
887
|
exports.DescribeWorkflowTypeCommand = DescribeWorkflowTypeCommand;
|
|
2393
|
-
exports.DescribeWorkflowTypeInput$ = DescribeWorkflowTypeInput$;
|
|
2394
|
-
exports.DomainAlreadyExistsFault = DomainAlreadyExistsFault;
|
|
2395
|
-
exports.DomainAlreadyExistsFault$ = DomainAlreadyExistsFault$;
|
|
2396
|
-
exports.DomainConfiguration$ = DomainConfiguration$;
|
|
2397
|
-
exports.DomainDeprecatedFault = DomainDeprecatedFault;
|
|
2398
|
-
exports.DomainDeprecatedFault$ = DomainDeprecatedFault$;
|
|
2399
|
-
exports.DomainDetail$ = DomainDetail$;
|
|
2400
|
-
exports.DomainInfo$ = DomainInfo$;
|
|
2401
|
-
exports.DomainInfos$ = DomainInfos$;
|
|
2402
888
|
exports.EventType = EventType;
|
|
2403
889
|
exports.ExecutionStatus = ExecutionStatus;
|
|
2404
|
-
exports.ExecutionTimeFilter$ = ExecutionTimeFilter$;
|
|
2405
|
-
exports.ExternalWorkflowExecutionCancelRequestedEventAttributes$ = ExternalWorkflowExecutionCancelRequestedEventAttributes$;
|
|
2406
|
-
exports.ExternalWorkflowExecutionSignaledEventAttributes$ = ExternalWorkflowExecutionSignaledEventAttributes$;
|
|
2407
|
-
exports.FailWorkflowExecutionDecisionAttributes$ = FailWorkflowExecutionDecisionAttributes$;
|
|
2408
890
|
exports.FailWorkflowExecutionFailedCause = FailWorkflowExecutionFailedCause;
|
|
2409
|
-
exports.FailWorkflowExecutionFailedEventAttributes$ = FailWorkflowExecutionFailedEventAttributes$;
|
|
2410
|
-
exports.GetWorkflowExecutionHistory$ = GetWorkflowExecutionHistory$;
|
|
2411
891
|
exports.GetWorkflowExecutionHistoryCommand = GetWorkflowExecutionHistoryCommand;
|
|
2412
|
-
exports.GetWorkflowExecutionHistoryInput$ = GetWorkflowExecutionHistoryInput$;
|
|
2413
|
-
exports.History$ = History$;
|
|
2414
|
-
exports.HistoryEvent$ = HistoryEvent$;
|
|
2415
|
-
exports.LambdaFunctionCompletedEventAttributes$ = LambdaFunctionCompletedEventAttributes$;
|
|
2416
|
-
exports.LambdaFunctionFailedEventAttributes$ = LambdaFunctionFailedEventAttributes$;
|
|
2417
|
-
exports.LambdaFunctionScheduledEventAttributes$ = LambdaFunctionScheduledEventAttributes$;
|
|
2418
|
-
exports.LambdaFunctionStartedEventAttributes$ = LambdaFunctionStartedEventAttributes$;
|
|
2419
|
-
exports.LambdaFunctionTimedOutEventAttributes$ = LambdaFunctionTimedOutEventAttributes$;
|
|
2420
892
|
exports.LambdaFunctionTimeoutType = LambdaFunctionTimeoutType;
|
|
2421
|
-
exports.LimitExceededFault = LimitExceededFault;
|
|
2422
|
-
exports.LimitExceededFault$ = LimitExceededFault$;
|
|
2423
|
-
exports.ListActivityTypes$ = ListActivityTypes$;
|
|
2424
893
|
exports.ListActivityTypesCommand = ListActivityTypesCommand;
|
|
2425
|
-
exports.ListActivityTypesInput$ = ListActivityTypesInput$;
|
|
2426
|
-
exports.ListClosedWorkflowExecutions$ = ListClosedWorkflowExecutions$;
|
|
2427
894
|
exports.ListClosedWorkflowExecutionsCommand = ListClosedWorkflowExecutionsCommand;
|
|
2428
|
-
exports.ListClosedWorkflowExecutionsInput$ = ListClosedWorkflowExecutionsInput$;
|
|
2429
|
-
exports.ListDomains$ = ListDomains$;
|
|
2430
895
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
2431
|
-
exports.ListDomainsInput$ = ListDomainsInput$;
|
|
2432
|
-
exports.ListOpenWorkflowExecutions$ = ListOpenWorkflowExecutions$;
|
|
2433
896
|
exports.ListOpenWorkflowExecutionsCommand = ListOpenWorkflowExecutionsCommand;
|
|
2434
|
-
exports.ListOpenWorkflowExecutionsInput$ = ListOpenWorkflowExecutionsInput$;
|
|
2435
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2436
897
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2437
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2438
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2439
|
-
exports.ListWorkflowTypes$ = ListWorkflowTypes$;
|
|
2440
898
|
exports.ListWorkflowTypesCommand = ListWorkflowTypesCommand;
|
|
2441
|
-
exports.ListWorkflowTypesInput$ = ListWorkflowTypesInput$;
|
|
2442
|
-
exports.MarkerRecordedEventAttributes$ = MarkerRecordedEventAttributes$;
|
|
2443
|
-
exports.OperationNotPermittedFault = OperationNotPermittedFault;
|
|
2444
|
-
exports.OperationNotPermittedFault$ = OperationNotPermittedFault$;
|
|
2445
|
-
exports.PendingTaskCount$ = PendingTaskCount$;
|
|
2446
|
-
exports.PollForActivityTask$ = PollForActivityTask$;
|
|
2447
899
|
exports.PollForActivityTaskCommand = PollForActivityTaskCommand;
|
|
2448
|
-
exports.PollForActivityTaskInput$ = PollForActivityTaskInput$;
|
|
2449
|
-
exports.PollForDecisionTask$ = PollForDecisionTask$;
|
|
2450
900
|
exports.PollForDecisionTaskCommand = PollForDecisionTaskCommand;
|
|
2451
|
-
exports.PollForDecisionTaskInput$ = PollForDecisionTaskInput$;
|
|
2452
|
-
exports.RecordActivityTaskHeartbeat$ = RecordActivityTaskHeartbeat$;
|
|
2453
901
|
exports.RecordActivityTaskHeartbeatCommand = RecordActivityTaskHeartbeatCommand;
|
|
2454
|
-
exports.RecordActivityTaskHeartbeatInput$ = RecordActivityTaskHeartbeatInput$;
|
|
2455
|
-
exports.RecordMarkerDecisionAttributes$ = RecordMarkerDecisionAttributes$;
|
|
2456
902
|
exports.RecordMarkerFailedCause = RecordMarkerFailedCause;
|
|
2457
|
-
exports.RecordMarkerFailedEventAttributes$ = RecordMarkerFailedEventAttributes$;
|
|
2458
|
-
exports.RegisterActivityType$ = RegisterActivityType$;
|
|
2459
903
|
exports.RegisterActivityTypeCommand = RegisterActivityTypeCommand;
|
|
2460
|
-
exports.RegisterActivityTypeInput$ = RegisterActivityTypeInput$;
|
|
2461
|
-
exports.RegisterDomain$ = RegisterDomain$;
|
|
2462
904
|
exports.RegisterDomainCommand = RegisterDomainCommand;
|
|
2463
|
-
exports.RegisterDomainInput$ = RegisterDomainInput$;
|
|
2464
|
-
exports.RegisterWorkflowType$ = RegisterWorkflowType$;
|
|
2465
905
|
exports.RegisterWorkflowTypeCommand = RegisterWorkflowTypeCommand;
|
|
2466
|
-
exports.RegisterWorkflowTypeInput$ = RegisterWorkflowTypeInput$;
|
|
2467
906
|
exports.RegistrationStatus = RegistrationStatus;
|
|
2468
|
-
exports.RequestCancelActivityTaskDecisionAttributes$ = RequestCancelActivityTaskDecisionAttributes$;
|
|
2469
907
|
exports.RequestCancelActivityTaskFailedCause = RequestCancelActivityTaskFailedCause;
|
|
2470
|
-
exports.RequestCancelActivityTaskFailedEventAttributes$ = RequestCancelActivityTaskFailedEventAttributes$;
|
|
2471
|
-
exports.RequestCancelExternalWorkflowExecutionDecisionAttributes$ = RequestCancelExternalWorkflowExecutionDecisionAttributes$;
|
|
2472
908
|
exports.RequestCancelExternalWorkflowExecutionFailedCause = RequestCancelExternalWorkflowExecutionFailedCause;
|
|
2473
|
-
exports.RequestCancelExternalWorkflowExecutionFailedEventAttributes$ = RequestCancelExternalWorkflowExecutionFailedEventAttributes$;
|
|
2474
|
-
exports.RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$ = RequestCancelExternalWorkflowExecutionInitiatedEventAttributes$;
|
|
2475
|
-
exports.RequestCancelWorkflowExecution$ = RequestCancelWorkflowExecution$;
|
|
2476
909
|
exports.RequestCancelWorkflowExecutionCommand = RequestCancelWorkflowExecutionCommand;
|
|
2477
|
-
exports.RequestCancelWorkflowExecutionInput$ = RequestCancelWorkflowExecutionInput$;
|
|
2478
|
-
exports.ResourceTag$ = ResourceTag$;
|
|
2479
|
-
exports.RespondActivityTaskCanceled$ = RespondActivityTaskCanceled$;
|
|
2480
910
|
exports.RespondActivityTaskCanceledCommand = RespondActivityTaskCanceledCommand;
|
|
2481
|
-
exports.RespondActivityTaskCanceledInput$ = RespondActivityTaskCanceledInput$;
|
|
2482
|
-
exports.RespondActivityTaskCompleted$ = RespondActivityTaskCompleted$;
|
|
2483
911
|
exports.RespondActivityTaskCompletedCommand = RespondActivityTaskCompletedCommand;
|
|
2484
|
-
exports.RespondActivityTaskCompletedInput$ = RespondActivityTaskCompletedInput$;
|
|
2485
|
-
exports.RespondActivityTaskFailed$ = RespondActivityTaskFailed$;
|
|
2486
912
|
exports.RespondActivityTaskFailedCommand = RespondActivityTaskFailedCommand;
|
|
2487
|
-
exports.RespondActivityTaskFailedInput$ = RespondActivityTaskFailedInput$;
|
|
2488
|
-
exports.RespondDecisionTaskCompleted$ = RespondDecisionTaskCompleted$;
|
|
2489
913
|
exports.RespondDecisionTaskCompletedCommand = RespondDecisionTaskCompletedCommand;
|
|
2490
|
-
exports.RespondDecisionTaskCompletedInput$ = RespondDecisionTaskCompletedInput$;
|
|
2491
|
-
exports.Run$ = Run$;
|
|
2492
914
|
exports.SWF = SWF;
|
|
2493
915
|
exports.SWFClient = SWFClient;
|
|
2494
|
-
exports.SWFServiceException = SWFServiceException;
|
|
2495
|
-
exports.SWFServiceException$ = SWFServiceException$;
|
|
2496
|
-
exports.ScheduleActivityTaskDecisionAttributes$ = ScheduleActivityTaskDecisionAttributes$;
|
|
2497
916
|
exports.ScheduleActivityTaskFailedCause = ScheduleActivityTaskFailedCause;
|
|
2498
|
-
exports.ScheduleActivityTaskFailedEventAttributes$ = ScheduleActivityTaskFailedEventAttributes$;
|
|
2499
|
-
exports.ScheduleLambdaFunctionDecisionAttributes$ = ScheduleLambdaFunctionDecisionAttributes$;
|
|
2500
917
|
exports.ScheduleLambdaFunctionFailedCause = ScheduleLambdaFunctionFailedCause;
|
|
2501
|
-
exports.ScheduleLambdaFunctionFailedEventAttributes$ = ScheduleLambdaFunctionFailedEventAttributes$;
|
|
2502
|
-
exports.SignalExternalWorkflowExecutionDecisionAttributes$ = SignalExternalWorkflowExecutionDecisionAttributes$;
|
|
2503
918
|
exports.SignalExternalWorkflowExecutionFailedCause = SignalExternalWorkflowExecutionFailedCause;
|
|
2504
|
-
exports.SignalExternalWorkflowExecutionFailedEventAttributes$ = SignalExternalWorkflowExecutionFailedEventAttributes$;
|
|
2505
|
-
exports.SignalExternalWorkflowExecutionInitiatedEventAttributes$ = SignalExternalWorkflowExecutionInitiatedEventAttributes$;
|
|
2506
|
-
exports.SignalWorkflowExecution$ = SignalWorkflowExecution$;
|
|
2507
919
|
exports.SignalWorkflowExecutionCommand = SignalWorkflowExecutionCommand;
|
|
2508
|
-
exports.SignalWorkflowExecutionInput$ = SignalWorkflowExecutionInput$;
|
|
2509
|
-
exports.StartChildWorkflowExecutionDecisionAttributes$ = StartChildWorkflowExecutionDecisionAttributes$;
|
|
2510
920
|
exports.StartChildWorkflowExecutionFailedCause = StartChildWorkflowExecutionFailedCause;
|
|
2511
|
-
exports.StartChildWorkflowExecutionFailedEventAttributes$ = StartChildWorkflowExecutionFailedEventAttributes$;
|
|
2512
|
-
exports.StartChildWorkflowExecutionInitiatedEventAttributes$ = StartChildWorkflowExecutionInitiatedEventAttributes$;
|
|
2513
921
|
exports.StartLambdaFunctionFailedCause = StartLambdaFunctionFailedCause;
|
|
2514
|
-
exports.StartLambdaFunctionFailedEventAttributes$ = StartLambdaFunctionFailedEventAttributes$;
|
|
2515
|
-
exports.StartTimerDecisionAttributes$ = StartTimerDecisionAttributes$;
|
|
2516
922
|
exports.StartTimerFailedCause = StartTimerFailedCause;
|
|
2517
|
-
exports.StartTimerFailedEventAttributes$ = StartTimerFailedEventAttributes$;
|
|
2518
|
-
exports.StartWorkflowExecution$ = StartWorkflowExecution$;
|
|
2519
923
|
exports.StartWorkflowExecutionCommand = StartWorkflowExecutionCommand;
|
|
2520
|
-
exports.StartWorkflowExecutionInput$ = StartWorkflowExecutionInput$;
|
|
2521
|
-
exports.TagFilter$ = TagFilter$;
|
|
2522
|
-
exports.TagResource$ = TagResource$;
|
|
2523
924
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2524
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
2525
|
-
exports.TaskList$ = TaskList$;
|
|
2526
|
-
exports.TerminateWorkflowExecution$ = TerminateWorkflowExecution$;
|
|
2527
925
|
exports.TerminateWorkflowExecutionCommand = TerminateWorkflowExecutionCommand;
|
|
2528
|
-
exports.TerminateWorkflowExecutionInput$ = TerminateWorkflowExecutionInput$;
|
|
2529
|
-
exports.TimerCanceledEventAttributes$ = TimerCanceledEventAttributes$;
|
|
2530
|
-
exports.TimerFiredEventAttributes$ = TimerFiredEventAttributes$;
|
|
2531
|
-
exports.TimerStartedEventAttributes$ = TimerStartedEventAttributes$;
|
|
2532
|
-
exports.TooManyTagsFault = TooManyTagsFault;
|
|
2533
|
-
exports.TooManyTagsFault$ = TooManyTagsFault$;
|
|
2534
|
-
exports.TypeAlreadyExistsFault = TypeAlreadyExistsFault;
|
|
2535
|
-
exports.TypeAlreadyExistsFault$ = TypeAlreadyExistsFault$;
|
|
2536
|
-
exports.TypeDeprecatedFault = TypeDeprecatedFault;
|
|
2537
|
-
exports.TypeDeprecatedFault$ = TypeDeprecatedFault$;
|
|
2538
|
-
exports.TypeNotDeprecatedFault = TypeNotDeprecatedFault;
|
|
2539
|
-
exports.TypeNotDeprecatedFault$ = TypeNotDeprecatedFault$;
|
|
2540
|
-
exports.UndeprecateActivityType$ = UndeprecateActivityType$;
|
|
2541
926
|
exports.UndeprecateActivityTypeCommand = UndeprecateActivityTypeCommand;
|
|
2542
|
-
exports.UndeprecateActivityTypeInput$ = UndeprecateActivityTypeInput$;
|
|
2543
|
-
exports.UndeprecateDomain$ = UndeprecateDomain$;
|
|
2544
927
|
exports.UndeprecateDomainCommand = UndeprecateDomainCommand;
|
|
2545
|
-
exports.UndeprecateDomainInput$ = UndeprecateDomainInput$;
|
|
2546
|
-
exports.UndeprecateWorkflowType$ = UndeprecateWorkflowType$;
|
|
2547
928
|
exports.UndeprecateWorkflowTypeCommand = UndeprecateWorkflowTypeCommand;
|
|
2548
|
-
exports.UndeprecateWorkflowTypeInput$ = UndeprecateWorkflowTypeInput$;
|
|
2549
|
-
exports.UnknownResourceFault = UnknownResourceFault;
|
|
2550
|
-
exports.UnknownResourceFault$ = UnknownResourceFault$;
|
|
2551
|
-
exports.UntagResource$ = UntagResource$;
|
|
2552
929
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2553
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2554
|
-
exports.WorkflowExecution$ = WorkflowExecution$;
|
|
2555
|
-
exports.WorkflowExecutionAlreadyStartedFault = WorkflowExecutionAlreadyStartedFault;
|
|
2556
|
-
exports.WorkflowExecutionAlreadyStartedFault$ = WorkflowExecutionAlreadyStartedFault$;
|
|
2557
930
|
exports.WorkflowExecutionCancelRequestedCause = WorkflowExecutionCancelRequestedCause;
|
|
2558
|
-
exports.WorkflowExecutionCancelRequestedEventAttributes$ = WorkflowExecutionCancelRequestedEventAttributes$;
|
|
2559
|
-
exports.WorkflowExecutionCanceledEventAttributes$ = WorkflowExecutionCanceledEventAttributes$;
|
|
2560
|
-
exports.WorkflowExecutionCompletedEventAttributes$ = WorkflowExecutionCompletedEventAttributes$;
|
|
2561
|
-
exports.WorkflowExecutionConfiguration$ = WorkflowExecutionConfiguration$;
|
|
2562
|
-
exports.WorkflowExecutionContinuedAsNewEventAttributes$ = WorkflowExecutionContinuedAsNewEventAttributes$;
|
|
2563
|
-
exports.WorkflowExecutionCount$ = WorkflowExecutionCount$;
|
|
2564
|
-
exports.WorkflowExecutionDetail$ = WorkflowExecutionDetail$;
|
|
2565
|
-
exports.WorkflowExecutionFailedEventAttributes$ = WorkflowExecutionFailedEventAttributes$;
|
|
2566
|
-
exports.WorkflowExecutionFilter$ = WorkflowExecutionFilter$;
|
|
2567
|
-
exports.WorkflowExecutionInfo$ = WorkflowExecutionInfo$;
|
|
2568
|
-
exports.WorkflowExecutionInfos$ = WorkflowExecutionInfos$;
|
|
2569
|
-
exports.WorkflowExecutionOpenCounts$ = WorkflowExecutionOpenCounts$;
|
|
2570
|
-
exports.WorkflowExecutionSignaledEventAttributes$ = WorkflowExecutionSignaledEventAttributes$;
|
|
2571
|
-
exports.WorkflowExecutionStartedEventAttributes$ = WorkflowExecutionStartedEventAttributes$;
|
|
2572
931
|
exports.WorkflowExecutionTerminatedCause = WorkflowExecutionTerminatedCause;
|
|
2573
|
-
exports.WorkflowExecutionTerminatedEventAttributes$ = WorkflowExecutionTerminatedEventAttributes$;
|
|
2574
|
-
exports.WorkflowExecutionTimedOutEventAttributes$ = WorkflowExecutionTimedOutEventAttributes$;
|
|
2575
932
|
exports.WorkflowExecutionTimeoutType = WorkflowExecutionTimeoutType;
|
|
2576
|
-
exports.WorkflowType$ = WorkflowType$;
|
|
2577
|
-
exports.WorkflowTypeConfiguration$ = WorkflowTypeConfiguration$;
|
|
2578
|
-
exports.WorkflowTypeDetail$ = WorkflowTypeDetail$;
|
|
2579
|
-
exports.WorkflowTypeFilter$ = WorkflowTypeFilter$;
|
|
2580
|
-
exports.WorkflowTypeInfo$ = WorkflowTypeInfo$;
|
|
2581
|
-
exports.WorkflowTypeInfos$ = WorkflowTypeInfos$;
|
|
2582
933
|
exports.paginateGetWorkflowExecutionHistory = paginateGetWorkflowExecutionHistory;
|
|
2583
934
|
exports.paginateListActivityTypes = paginateListActivityTypes;
|
|
2584
935
|
exports.paginateListClosedWorkflowExecutions = paginateListClosedWorkflowExecutions;
|
|
@@ -2586,3 +937,15 @@ exports.paginateListDomains = paginateListDomains;
|
|
|
2586
937
|
exports.paginateListOpenWorkflowExecutions = paginateListOpenWorkflowExecutions;
|
|
2587
938
|
exports.paginateListWorkflowTypes = paginateListWorkflowTypes;
|
|
2588
939
|
exports.paginatePollForDecisionTask = paginatePollForDecisionTask;
|
|
940
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
941
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
942
|
+
enumerable: true,
|
|
943
|
+
get: function () { return schemas_0[k]; }
|
|
944
|
+
});
|
|
945
|
+
});
|
|
946
|
+
Object.keys(errors).forEach(function (k) {
|
|
947
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
948
|
+
enumerable: true,
|
|
949
|
+
get: function () { return errors[k]; }
|
|
950
|
+
});
|
|
951
|
+
});
|