@aws-sdk/client-swf 3.170.0 → 3.171.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/SWF.d.ts +633 -1549
  3. package/dist-types/ts3.4/SWFClient.d.ts +0 -25
  4. package/dist-types/ts3.4/commands/CountClosedWorkflowExecutionsCommand.d.ts +0 -2
  5. package/dist-types/ts3.4/commands/CountOpenWorkflowExecutionsCommand.d.ts +0 -2
  6. package/dist-types/ts3.4/commands/CountPendingActivityTasksCommand.d.ts +0 -2
  7. package/dist-types/ts3.4/commands/CountPendingDecisionTasksCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/DeprecateActivityTypeCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/DeprecateDomainCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DeprecateWorkflowTypeCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DescribeActivityTypeCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DescribeWorkflowExecutionCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DescribeWorkflowTypeCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetWorkflowExecutionHistoryCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/ListActivityTypesCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/ListClosedWorkflowExecutionsCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +15 -0
  19. package/dist-types/ts3.4/commands/ListOpenWorkflowExecutionsCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListWorkflowTypesCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/PollForActivityTaskCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/PollForDecisionTaskCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/RecordActivityTaskHeartbeatCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/RegisterActivityTypeCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/RegisterDomainCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/RegisterWorkflowTypeCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/RequestCancelWorkflowExecutionCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/RespondActivityTaskCanceledCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/RespondActivityTaskCompletedCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/RespondActivityTaskFailedCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/RespondDecisionTaskCompletedCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/SignalWorkflowExecutionCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/StartWorkflowExecutionCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  36. package/dist-types/ts3.4/commands/TerminateWorkflowExecutionCommand.d.ts +0 -2
  37. package/dist-types/ts3.4/commands/UndeprecateActivityTypeCommand.d.ts +0 -2
  38. package/dist-types/ts3.4/commands/UndeprecateDomainCommand.d.ts +0 -2
  39. package/dist-types/ts3.4/commands/UndeprecateWorkflowTypeCommand.d.ts +0 -2
  40. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  41. package/dist-types/ts3.4/models/SWFServiceException.d.ts +0 -1
  42. package/dist-types/ts3.4/models/models_0.d.ts +0 -716
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  47. package/package.json +26 -26
@@ -1,100 +1,62 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SWFServiceException as __BaseException } from "./SWFServiceException";
3
-
4
3
  export interface ActivityType {
5
4
  name: string | undefined;
6
-
7
5
  version: string | undefined;
8
6
  }
9
-
10
7
  export interface WorkflowExecution {
11
8
  workflowId: string | undefined;
12
-
13
9
  runId: string | undefined;
14
10
  }
15
-
16
11
  export interface ActivityTask {
17
12
  taskToken: string | undefined;
18
-
19
13
  activityId: string | undefined;
20
-
21
14
  startedEventId: number | undefined;
22
-
23
15
  workflowExecution: WorkflowExecution | undefined;
24
-
25
16
  activityType: ActivityType | undefined;
26
-
27
17
  input?: string;
28
18
  }
29
-
30
19
  export interface ActivityTaskCanceledEventAttributes {
31
20
  details?: string;
32
-
33
21
  scheduledEventId: number | undefined;
34
-
35
22
  startedEventId: number | undefined;
36
-
37
23
  latestCancelRequestedEventId?: number;
38
24
  }
39
-
40
25
  export interface ActivityTaskCancelRequestedEventAttributes {
41
26
  decisionTaskCompletedEventId: number | undefined;
42
-
43
27
  activityId: string | undefined;
44
28
  }
45
-
46
29
  export interface ActivityTaskCompletedEventAttributes {
47
30
  result?: string;
48
-
49
31
  scheduledEventId: number | undefined;
50
-
51
32
  startedEventId: number | undefined;
52
33
  }
53
-
54
34
  export interface ActivityTaskFailedEventAttributes {
55
35
  reason?: string;
56
-
57
36
  details?: string;
58
-
59
37
  scheduledEventId: number | undefined;
60
-
61
38
  startedEventId: number | undefined;
62
39
  }
63
-
64
40
  export interface TaskList {
65
41
  name: string | undefined;
66
42
  }
67
-
68
43
  export interface ActivityTaskScheduledEventAttributes {
69
44
  activityType: ActivityType | undefined;
70
-
71
45
  activityId: string | undefined;
72
-
73
46
  input?: string;
74
-
75
47
  control?: string;
76
-
77
48
  scheduleToStartTimeout?: string;
78
-
79
49
  scheduleToCloseTimeout?: string;
80
-
81
50
  startToCloseTimeout?: string;
82
-
83
51
  taskList: TaskList | undefined;
84
-
85
52
  taskPriority?: string;
86
-
87
53
  decisionTaskCompletedEventId: number | undefined;
88
-
89
54
  heartbeatTimeout?: string;
90
55
  }
91
-
92
56
  export interface ActivityTaskStartedEventAttributes {
93
57
  identity?: string;
94
-
95
58
  scheduledEventId: number | undefined;
96
59
  }
97
-
98
60
  export interface ActivityTaskStatus {
99
61
  cancelRequested: boolean | undefined;
100
62
  }
@@ -103,157 +65,101 @@ export declare type ActivityTaskTimeoutType =
103
65
  | "SCHEDULE_TO_CLOSE"
104
66
  | "SCHEDULE_TO_START"
105
67
  | "START_TO_CLOSE";
106
-
107
68
  export interface ActivityTaskTimedOutEventAttributes {
108
69
  timeoutType: ActivityTaskTimeoutType | string | undefined;
109
-
110
70
  scheduledEventId: number | undefined;
111
-
112
71
  startedEventId: number | undefined;
113
-
114
72
  details?: string;
115
73
  }
116
-
117
74
  export interface ActivityTypeConfiguration {
118
75
  defaultTaskStartToCloseTimeout?: string;
119
-
120
76
  defaultTaskHeartbeatTimeout?: string;
121
-
122
77
  defaultTaskList?: TaskList;
123
-
124
78
  defaultTaskPriority?: string;
125
-
126
79
  defaultTaskScheduleToStartTimeout?: string;
127
-
128
80
  defaultTaskScheduleToCloseTimeout?: string;
129
81
  }
130
82
  export declare type RegistrationStatus = "DEPRECATED" | "REGISTERED";
131
-
132
83
  export interface ActivityTypeInfo {
133
84
  activityType: ActivityType | undefined;
134
-
135
85
  status: RegistrationStatus | string | undefined;
136
-
137
86
  description?: string;
138
-
139
87
  creationDate: Date | undefined;
140
-
141
88
  deprecationDate?: Date;
142
89
  }
143
-
144
90
  export interface ActivityTypeDetail {
145
91
  typeInfo: ActivityTypeInfo | undefined;
146
-
147
92
  configuration: ActivityTypeConfiguration | undefined;
148
93
  }
149
-
150
94
  export interface ActivityTypeInfos {
151
95
  typeInfos: ActivityTypeInfo[] | undefined;
152
-
153
96
  nextPageToken?: string;
154
97
  }
155
-
156
98
  export interface CancelTimerDecisionAttributes {
157
99
  timerId: string | undefined;
158
100
  }
159
101
  export declare type CancelTimerFailedCause =
160
102
  | "OPERATION_NOT_PERMITTED"
161
103
  | "TIMER_ID_UNKNOWN";
162
-
163
104
  export interface CancelTimerFailedEventAttributes {
164
105
  timerId: string | undefined;
165
-
166
106
  cause: CancelTimerFailedCause | string | undefined;
167
-
168
107
  decisionTaskCompletedEventId: number | undefined;
169
108
  }
170
-
171
109
  export interface CancelWorkflowExecutionDecisionAttributes {
172
110
  details?: string;
173
111
  }
174
112
  export declare type CancelWorkflowExecutionFailedCause =
175
113
  | "OPERATION_NOT_PERMITTED"
176
114
  | "UNHANDLED_DECISION";
177
-
178
115
  export interface CancelWorkflowExecutionFailedEventAttributes {
179
116
  cause: CancelWorkflowExecutionFailedCause | string | undefined;
180
-
181
117
  decisionTaskCompletedEventId: number | undefined;
182
118
  }
183
119
  export declare type ChildPolicy = "ABANDON" | "REQUEST_CANCEL" | "TERMINATE";
184
-
185
120
  export interface WorkflowType {
186
121
  name: string | undefined;
187
-
188
122
  version: string | undefined;
189
123
  }
190
-
191
124
  export interface ChildWorkflowExecutionCanceledEventAttributes {
192
125
  workflowExecution: WorkflowExecution | undefined;
193
-
194
126
  workflowType: WorkflowType | undefined;
195
-
196
127
  details?: string;
197
-
198
128
  initiatedEventId: number | undefined;
199
-
200
129
  startedEventId: number | undefined;
201
130
  }
202
-
203
131
  export interface ChildWorkflowExecutionCompletedEventAttributes {
204
132
  workflowExecution: WorkflowExecution | undefined;
205
-
206
133
  workflowType: WorkflowType | undefined;
207
-
208
134
  result?: string;
209
-
210
135
  initiatedEventId: number | undefined;
211
-
212
136
  startedEventId: number | undefined;
213
137
  }
214
-
215
138
  export interface ChildWorkflowExecutionFailedEventAttributes {
216
139
  workflowExecution: WorkflowExecution | undefined;
217
-
218
140
  workflowType: WorkflowType | undefined;
219
-
220
141
  reason?: string;
221
-
222
142
  details?: string;
223
-
224
143
  initiatedEventId: number | undefined;
225
-
226
144
  startedEventId: number | undefined;
227
145
  }
228
-
229
146
  export interface ChildWorkflowExecutionStartedEventAttributes {
230
147
  workflowExecution: WorkflowExecution | undefined;
231
-
232
148
  workflowType: WorkflowType | undefined;
233
-
234
149
  initiatedEventId: number | undefined;
235
150
  }
236
-
237
151
  export interface ChildWorkflowExecutionTerminatedEventAttributes {
238
152
  workflowExecution: WorkflowExecution | undefined;
239
-
240
153
  workflowType: WorkflowType | undefined;
241
-
242
154
  initiatedEventId: number | undefined;
243
-
244
155
  startedEventId: number | undefined;
245
156
  }
246
157
  export declare type WorkflowExecutionTimeoutType = "START_TO_CLOSE";
247
-
248
158
  export interface ChildWorkflowExecutionTimedOutEventAttributes {
249
159
  workflowExecution: WorkflowExecution | undefined;
250
-
251
160
  workflowType: WorkflowType | undefined;
252
-
253
161
  timeoutType: WorkflowExecutionTimeoutType | string | undefined;
254
-
255
162
  initiatedEventId: number | undefined;
256
-
257
163
  startedEventId: number | undefined;
258
164
  }
259
165
  export declare type CloseStatus =
@@ -263,41 +169,28 @@ export declare type CloseStatus =
263
169
  | "FAILED"
264
170
  | "TERMINATED"
265
171
  | "TIMED_OUT";
266
-
267
172
  export interface CloseStatusFilter {
268
173
  status: CloseStatus | string | undefined;
269
174
  }
270
-
271
175
  export interface CompleteWorkflowExecutionDecisionAttributes {
272
176
  result?: string;
273
177
  }
274
178
  export declare type CompleteWorkflowExecutionFailedCause =
275
179
  | "OPERATION_NOT_PERMITTED"
276
180
  | "UNHANDLED_DECISION";
277
-
278
181
  export interface CompleteWorkflowExecutionFailedEventAttributes {
279
182
  cause: CompleteWorkflowExecutionFailedCause | string | undefined;
280
-
281
183
  decisionTaskCompletedEventId: number | undefined;
282
184
  }
283
-
284
185
  export interface ContinueAsNewWorkflowExecutionDecisionAttributes {
285
186
  input?: string;
286
-
287
187
  executionStartToCloseTimeout?: string;
288
-
289
188
  taskList?: TaskList;
290
-
291
189
  taskPriority?: string;
292
-
293
190
  taskStartToCloseTimeout?: string;
294
-
295
191
  childPolicy?: ChildPolicy | string;
296
-
297
192
  tagList?: string[];
298
-
299
193
  workflowTypeVersion?: string;
300
-
301
194
  lambdaRole?: string;
302
195
  }
303
196
  export declare type ContinueAsNewWorkflowExecutionFailedCause =
@@ -310,96 +203,68 @@ export declare type ContinueAsNewWorkflowExecutionFailedCause =
310
203
  | "UNHANDLED_DECISION"
311
204
  | "WORKFLOW_TYPE_DEPRECATED"
312
205
  | "WORKFLOW_TYPE_DOES_NOT_EXIST";
313
-
314
206
  export interface ContinueAsNewWorkflowExecutionFailedEventAttributes {
315
207
  cause: ContinueAsNewWorkflowExecutionFailedCause | string | undefined;
316
-
317
208
  decisionTaskCompletedEventId: number | undefined;
318
209
  }
319
-
320
210
  export interface ExecutionTimeFilter {
321
211
  oldestDate: Date | undefined;
322
-
323
212
  latestDate?: Date;
324
213
  }
325
-
326
214
  export interface WorkflowExecutionFilter {
327
215
  workflowId: string | undefined;
328
216
  }
329
-
330
217
  export interface TagFilter {
331
218
  tag: string | undefined;
332
219
  }
333
-
334
220
  export interface WorkflowTypeFilter {
335
221
  name: string | undefined;
336
-
337
222
  version?: string;
338
223
  }
339
224
  export interface CountClosedWorkflowExecutionsInput {
340
225
  domain: string | undefined;
341
-
342
226
  startTimeFilter?: ExecutionTimeFilter;
343
-
344
227
  closeTimeFilter?: ExecutionTimeFilter;
345
-
346
228
  executionFilter?: WorkflowExecutionFilter;
347
-
348
229
  typeFilter?: WorkflowTypeFilter;
349
-
350
230
  tagFilter?: TagFilter;
351
-
352
231
  closeStatusFilter?: CloseStatusFilter;
353
232
  }
354
-
355
233
  export declare class OperationNotPermittedFault extends __BaseException {
356
234
  readonly name: "OperationNotPermittedFault";
357
235
  readonly $fault: "client";
358
-
359
236
  constructor(
360
237
  opts: __ExceptionOptionType<OperationNotPermittedFault, __BaseException>
361
238
  );
362
239
  }
363
-
364
240
  export declare class UnknownResourceFault extends __BaseException {
365
241
  readonly name: "UnknownResourceFault";
366
242
  readonly $fault: "client";
367
-
368
243
  constructor(
369
244
  opts: __ExceptionOptionType<UnknownResourceFault, __BaseException>
370
245
  );
371
246
  }
372
-
373
247
  export interface WorkflowExecutionCount {
374
248
  count: number | undefined;
375
-
376
249
  truncated?: boolean;
377
250
  }
378
251
  export interface CountOpenWorkflowExecutionsInput {
379
252
  domain: string | undefined;
380
-
381
253
  startTimeFilter: ExecutionTimeFilter | undefined;
382
-
383
254
  typeFilter?: WorkflowTypeFilter;
384
-
385
255
  tagFilter?: TagFilter;
386
-
387
256
  executionFilter?: WorkflowExecutionFilter;
388
257
  }
389
258
  export interface CountPendingActivityTasksInput {
390
259
  domain: string | undefined;
391
-
392
260
  taskList: TaskList | undefined;
393
261
  }
394
-
395
262
  export interface PendingTaskCount {
396
263
  count: number | undefined;
397
-
398
264
  truncated?: boolean;
399
265
  }
400
266
  export interface CountPendingDecisionTasksInput {
401
267
  domain: string | undefined;
402
-
403
268
  taskList: TaskList | undefined;
404
269
  }
405
270
  export declare type DecisionType =
@@ -416,167 +281,100 @@ export declare type DecisionType =
416
281
  | "SignalExternalWorkflowExecution"
417
282
  | "StartChildWorkflowExecution"
418
283
  | "StartTimer";
419
-
420
284
  export interface FailWorkflowExecutionDecisionAttributes {
421
285
  reason?: string;
422
-
423
286
  details?: string;
424
287
  }
425
-
426
288
  export interface RecordMarkerDecisionAttributes {
427
289
  markerName: string | undefined;
428
-
429
290
  details?: string;
430
291
  }
431
-
432
292
  export interface RequestCancelActivityTaskDecisionAttributes {
433
293
  activityId: string | undefined;
434
294
  }
435
-
436
295
  export interface RequestCancelExternalWorkflowExecutionDecisionAttributes {
437
296
  workflowId: string | undefined;
438
-
439
297
  runId?: string;
440
-
441
298
  control?: string;
442
299
  }
443
-
444
300
  export interface ScheduleActivityTaskDecisionAttributes {
445
301
  activityType: ActivityType | undefined;
446
-
447
302
  activityId: string | undefined;
448
-
449
303
  control?: string;
450
-
451
304
  input?: string;
452
-
453
305
  scheduleToCloseTimeout?: string;
454
-
455
306
  taskList?: TaskList;
456
-
457
307
  taskPriority?: string;
458
-
459
308
  scheduleToStartTimeout?: string;
460
-
461
309
  startToCloseTimeout?: string;
462
-
463
310
  heartbeatTimeout?: string;
464
311
  }
465
-
466
312
  export interface ScheduleLambdaFunctionDecisionAttributes {
467
313
  id: string | undefined;
468
-
469
314
  name: string | undefined;
470
-
471
315
  control?: string;
472
-
473
316
  input?: string;
474
-
475
317
  startToCloseTimeout?: string;
476
318
  }
477
-
478
319
  export interface SignalExternalWorkflowExecutionDecisionAttributes {
479
320
  workflowId: string | undefined;
480
-
481
321
  runId?: string;
482
-
483
322
  signalName: string | undefined;
484
-
485
323
  input?: string;
486
-
487
324
  control?: string;
488
325
  }
489
-
490
326
  export interface StartChildWorkflowExecutionDecisionAttributes {
491
327
  workflowType: WorkflowType | undefined;
492
-
493
328
  workflowId: string | undefined;
494
-
495
329
  control?: string;
496
-
497
330
  input?: string;
498
-
499
331
  executionStartToCloseTimeout?: string;
500
-
501
332
  taskList?: TaskList;
502
-
503
333
  taskPriority?: string;
504
-
505
334
  taskStartToCloseTimeout?: string;
506
-
507
335
  childPolicy?: ChildPolicy | string;
508
-
509
336
  tagList?: string[];
510
-
511
337
  lambdaRole?: string;
512
338
  }
513
-
514
339
  export interface StartTimerDecisionAttributes {
515
340
  timerId: string | undefined;
516
-
517
341
  control?: string;
518
-
519
342
  startToFireTimeout: string | undefined;
520
343
  }
521
-
522
344
  export interface Decision {
523
345
  decisionType: DecisionType | string | undefined;
524
-
525
346
  scheduleActivityTaskDecisionAttributes?: ScheduleActivityTaskDecisionAttributes;
526
-
527
347
  requestCancelActivityTaskDecisionAttributes?: RequestCancelActivityTaskDecisionAttributes;
528
-
529
348
  completeWorkflowExecutionDecisionAttributes?: CompleteWorkflowExecutionDecisionAttributes;
530
-
531
349
  failWorkflowExecutionDecisionAttributes?: FailWorkflowExecutionDecisionAttributes;
532
-
533
350
  cancelWorkflowExecutionDecisionAttributes?: CancelWorkflowExecutionDecisionAttributes;
534
-
535
351
  continueAsNewWorkflowExecutionDecisionAttributes?: ContinueAsNewWorkflowExecutionDecisionAttributes;
536
-
537
352
  recordMarkerDecisionAttributes?: RecordMarkerDecisionAttributes;
538
-
539
353
  startTimerDecisionAttributes?: StartTimerDecisionAttributes;
540
-
541
354
  cancelTimerDecisionAttributes?: CancelTimerDecisionAttributes;
542
-
543
355
  signalExternalWorkflowExecutionDecisionAttributes?: SignalExternalWorkflowExecutionDecisionAttributes;
544
-
545
356
  requestCancelExternalWorkflowExecutionDecisionAttributes?: RequestCancelExternalWorkflowExecutionDecisionAttributes;
546
-
547
357
  startChildWorkflowExecutionDecisionAttributes?: StartChildWorkflowExecutionDecisionAttributes;
548
-
549
358
  scheduleLambdaFunctionDecisionAttributes?: ScheduleLambdaFunctionDecisionAttributes;
550
359
  }
551
-
552
360
  export interface DecisionTaskCompletedEventAttributes {
553
361
  executionContext?: string;
554
-
555
362
  scheduledEventId: number | undefined;
556
-
557
363
  startedEventId: number | undefined;
558
364
  }
559
-
560
365
  export interface DecisionTaskScheduledEventAttributes {
561
366
  taskList: TaskList | undefined;
562
-
563
367
  taskPriority?: string;
564
-
565
368
  startToCloseTimeout?: string;
566
369
  }
567
-
568
370
  export interface DecisionTaskStartedEventAttributes {
569
371
  identity?: string;
570
-
571
372
  scheduledEventId: number | undefined;
572
373
  }
573
374
  export declare type DecisionTaskTimeoutType = "START_TO_CLOSE";
574
-
575
375
  export interface DecisionTaskTimedOutEventAttributes {
576
376
  timeoutType: DecisionTaskTimeoutType | string | undefined;
577
-
578
377
  scheduledEventId: number | undefined;
579
-
580
378
  startedEventId: number | undefined;
581
379
  }
582
380
  export declare type EventType =
@@ -634,126 +432,84 @@ export declare type EventType =
634
432
  | "WorkflowExecutionStarted"
635
433
  | "WorkflowExecutionTerminated"
636
434
  | "WorkflowExecutionTimedOut";
637
-
638
435
  export interface ExternalWorkflowExecutionCancelRequestedEventAttributes {
639
436
  workflowExecution: WorkflowExecution | undefined;
640
-
641
437
  initiatedEventId: number | undefined;
642
438
  }
643
-
644
439
  export interface ExternalWorkflowExecutionSignaledEventAttributes {
645
440
  workflowExecution: WorkflowExecution | undefined;
646
-
647
441
  initiatedEventId: number | undefined;
648
442
  }
649
443
  export declare type FailWorkflowExecutionFailedCause =
650
444
  | "OPERATION_NOT_PERMITTED"
651
445
  | "UNHANDLED_DECISION";
652
-
653
446
  export interface FailWorkflowExecutionFailedEventAttributes {
654
447
  cause: FailWorkflowExecutionFailedCause | string | undefined;
655
-
656
448
  decisionTaskCompletedEventId: number | undefined;
657
449
  }
658
-
659
450
  export interface LambdaFunctionCompletedEventAttributes {
660
451
  scheduledEventId: number | undefined;
661
-
662
452
  startedEventId: number | undefined;
663
-
664
453
  result?: string;
665
454
  }
666
-
667
455
  export interface LambdaFunctionFailedEventAttributes {
668
456
  scheduledEventId: number | undefined;
669
-
670
457
  startedEventId: number | undefined;
671
-
672
458
  reason?: string;
673
-
674
459
  details?: string;
675
460
  }
676
-
677
461
  export interface LambdaFunctionScheduledEventAttributes {
678
462
  id: string | undefined;
679
-
680
463
  name: string | undefined;
681
-
682
464
  control?: string;
683
-
684
465
  input?: string;
685
-
686
466
  startToCloseTimeout?: string;
687
-
688
467
  decisionTaskCompletedEventId: number | undefined;
689
468
  }
690
-
691
469
  export interface LambdaFunctionStartedEventAttributes {
692
470
  scheduledEventId: number | undefined;
693
471
  }
694
472
  export declare type LambdaFunctionTimeoutType = "START_TO_CLOSE";
695
-
696
473
  export interface LambdaFunctionTimedOutEventAttributes {
697
474
  scheduledEventId: number | undefined;
698
-
699
475
  startedEventId: number | undefined;
700
-
701
476
  timeoutType?: LambdaFunctionTimeoutType | string;
702
477
  }
703
-
704
478
  export interface MarkerRecordedEventAttributes {
705
479
  markerName: string | undefined;
706
-
707
480
  details?: string;
708
-
709
481
  decisionTaskCompletedEventId: number | undefined;
710
482
  }
711
483
  export declare type RecordMarkerFailedCause = "OPERATION_NOT_PERMITTED";
712
-
713
484
  export interface RecordMarkerFailedEventAttributes {
714
485
  markerName: string | undefined;
715
-
716
486
  cause: RecordMarkerFailedCause | string | undefined;
717
-
718
487
  decisionTaskCompletedEventId: number | undefined;
719
488
  }
720
489
  export declare type RequestCancelActivityTaskFailedCause =
721
490
  | "ACTIVITY_ID_UNKNOWN"
722
491
  | "OPERATION_NOT_PERMITTED";
723
-
724
492
  export interface RequestCancelActivityTaskFailedEventAttributes {
725
493
  activityId: string | undefined;
726
-
727
494
  cause: RequestCancelActivityTaskFailedCause | string | undefined;
728
-
729
495
  decisionTaskCompletedEventId: number | undefined;
730
496
  }
731
497
  export declare type RequestCancelExternalWorkflowExecutionFailedCause =
732
498
  | "OPERATION_NOT_PERMITTED"
733
499
  | "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED"
734
500
  | "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION";
735
-
736
501
  export interface RequestCancelExternalWorkflowExecutionFailedEventAttributes {
737
502
  workflowId: string | undefined;
738
-
739
503
  runId?: string;
740
-
741
504
  cause: RequestCancelExternalWorkflowExecutionFailedCause | string | undefined;
742
-
743
505
  initiatedEventId: number | undefined;
744
-
745
506
  decisionTaskCompletedEventId: number | undefined;
746
-
747
507
  control?: string;
748
508
  }
749
-
750
509
  export interface RequestCancelExternalWorkflowExecutionInitiatedEventAttributes {
751
510
  workflowId: string | undefined;
752
-
753
511
  runId?: string;
754
-
755
512
  decisionTaskCompletedEventId: number | undefined;
756
-
757
513
  control?: string;
758
514
  }
759
515
  export declare type ScheduleActivityTaskFailedCause =
@@ -768,14 +524,10 @@ export declare type ScheduleActivityTaskFailedCause =
768
524
  | "DEFAULT_TASK_LIST_UNDEFINED"
769
525
  | "OPEN_ACTIVITIES_LIMIT_EXCEEDED"
770
526
  | "OPERATION_NOT_PERMITTED";
771
-
772
527
  export interface ScheduleActivityTaskFailedEventAttributes {
773
528
  activityType: ActivityType | undefined;
774
-
775
529
  activityId: string | undefined;
776
-
777
530
  cause: ScheduleActivityTaskFailedCause | string | undefined;
778
-
779
531
  decisionTaskCompletedEventId: number | undefined;
780
532
  }
781
533
  export declare type ScheduleLambdaFunctionFailedCause =
@@ -783,46 +535,30 @@ export declare type ScheduleLambdaFunctionFailedCause =
783
535
  | "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED"
784
536
  | "LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION"
785
537
  | "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED";
786
-
787
538
  export interface ScheduleLambdaFunctionFailedEventAttributes {
788
539
  id: string | undefined;
789
-
790
540
  name: string | undefined;
791
-
792
541
  cause: ScheduleLambdaFunctionFailedCause | string | undefined;
793
-
794
542
  decisionTaskCompletedEventId: number | undefined;
795
543
  }
796
544
  export declare type SignalExternalWorkflowExecutionFailedCause =
797
545
  | "OPERATION_NOT_PERMITTED"
798
546
  | "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED"
799
547
  | "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION";
800
-
801
548
  export interface SignalExternalWorkflowExecutionFailedEventAttributes {
802
549
  workflowId: string | undefined;
803
-
804
550
  runId?: string;
805
-
806
551
  cause: SignalExternalWorkflowExecutionFailedCause | string | undefined;
807
-
808
552
  initiatedEventId: number | undefined;
809
-
810
553
  decisionTaskCompletedEventId: number | undefined;
811
-
812
554
  control?: string;
813
555
  }
814
-
815
556
  export interface SignalExternalWorkflowExecutionInitiatedEventAttributes {
816
557
  workflowId: string | undefined;
817
-
818
558
  runId?: string;
819
-
820
559
  signalName: string | undefined;
821
-
822
560
  input?: string;
823
-
824
561
  decisionTaskCompletedEventId: number | undefined;
825
-
826
562
  control?: string;
827
563
  }
828
564
  export declare type StartChildWorkflowExecutionFailedCause =
@@ -837,53 +573,32 @@ export declare type StartChildWorkflowExecutionFailedCause =
837
573
  | "WORKFLOW_ALREADY_RUNNING"
838
574
  | "WORKFLOW_TYPE_DEPRECATED"
839
575
  | "WORKFLOW_TYPE_DOES_NOT_EXIST";
840
-
841
576
  export interface StartChildWorkflowExecutionFailedEventAttributes {
842
577
  workflowType: WorkflowType | undefined;
843
-
844
578
  cause: StartChildWorkflowExecutionFailedCause | string | undefined;
845
-
846
579
  workflowId: string | undefined;
847
-
848
580
  initiatedEventId: number | undefined;
849
-
850
581
  decisionTaskCompletedEventId: number | undefined;
851
-
852
582
  control?: string;
853
583
  }
854
-
855
584
  export interface StartChildWorkflowExecutionInitiatedEventAttributes {
856
585
  workflowId: string | undefined;
857
-
858
586
  workflowType: WorkflowType | undefined;
859
-
860
587
  control?: string;
861
-
862
588
  input?: string;
863
-
864
589
  executionStartToCloseTimeout?: string;
865
-
866
590
  taskList: TaskList | undefined;
867
-
868
591
  taskPriority?: string;
869
-
870
592
  decisionTaskCompletedEventId: number | undefined;
871
-
872
593
  childPolicy: ChildPolicy | string | undefined;
873
-
874
594
  taskStartToCloseTimeout?: string;
875
-
876
595
  tagList?: string[];
877
-
878
596
  lambdaRole?: string;
879
597
  }
880
598
  export declare type StartLambdaFunctionFailedCause = "ASSUME_ROLE_FAILED";
881
-
882
599
  export interface StartLambdaFunctionFailedEventAttributes {
883
600
  scheduledEventId?: number;
884
-
885
601
  cause?: StartLambdaFunctionFailedCause | string;
886
-
887
602
  message?: string;
888
603
  }
889
604
  export declare type StartTimerFailedCause =
@@ -891,299 +606,175 @@ export declare type StartTimerFailedCause =
891
606
  | "OPERATION_NOT_PERMITTED"
892
607
  | "TIMER_CREATION_RATE_EXCEEDED"
893
608
  | "TIMER_ID_ALREADY_IN_USE";
894
-
895
609
  export interface StartTimerFailedEventAttributes {
896
610
  timerId: string | undefined;
897
-
898
611
  cause: StartTimerFailedCause | string | undefined;
899
-
900
612
  decisionTaskCompletedEventId: number | undefined;
901
613
  }
902
-
903
614
  export interface TimerCanceledEventAttributes {
904
615
  timerId: string | undefined;
905
-
906
616
  startedEventId: number | undefined;
907
-
908
617
  decisionTaskCompletedEventId: number | undefined;
909
618
  }
910
-
911
619
  export interface TimerFiredEventAttributes {
912
620
  timerId: string | undefined;
913
-
914
621
  startedEventId: number | undefined;
915
622
  }
916
-
917
623
  export interface TimerStartedEventAttributes {
918
624
  timerId: string | undefined;
919
-
920
625
  control?: string;
921
-
922
626
  startToFireTimeout: string | undefined;
923
-
924
627
  decisionTaskCompletedEventId: number | undefined;
925
628
  }
926
-
927
629
  export interface WorkflowExecutionCanceledEventAttributes {
928
630
  details?: string;
929
-
930
631
  decisionTaskCompletedEventId: number | undefined;
931
632
  }
932
633
  export declare type WorkflowExecutionCancelRequestedCause =
933
634
  "CHILD_POLICY_APPLIED";
934
-
935
635
  export interface WorkflowExecutionCancelRequestedEventAttributes {
936
636
  externalWorkflowExecution?: WorkflowExecution;
937
-
938
637
  externalInitiatedEventId?: number;
939
-
940
638
  cause?: WorkflowExecutionCancelRequestedCause | string;
941
639
  }
942
-
943
640
  export interface WorkflowExecutionCompletedEventAttributes {
944
641
  result?: string;
945
-
946
642
  decisionTaskCompletedEventId: number | undefined;
947
643
  }
948
-
949
644
  export interface WorkflowExecutionContinuedAsNewEventAttributes {
950
645
  input?: string;
951
-
952
646
  decisionTaskCompletedEventId: number | undefined;
953
-
954
647
  newExecutionRunId: string | undefined;
955
-
956
648
  executionStartToCloseTimeout?: string;
957
-
958
649
  taskList: TaskList | undefined;
959
-
960
650
  taskPriority?: string;
961
-
962
651
  taskStartToCloseTimeout?: string;
963
-
964
652
  childPolicy: ChildPolicy | string | undefined;
965
-
966
653
  tagList?: string[];
967
-
968
654
  workflowType: WorkflowType | undefined;
969
-
970
655
  lambdaRole?: string;
971
656
  }
972
-
973
657
  export interface WorkflowExecutionFailedEventAttributes {
974
658
  reason?: string;
975
-
976
659
  details?: string;
977
-
978
660
  decisionTaskCompletedEventId: number | undefined;
979
661
  }
980
-
981
662
  export interface WorkflowExecutionSignaledEventAttributes {
982
663
  signalName: string | undefined;
983
-
984
664
  input?: string;
985
-
986
665
  externalWorkflowExecution?: WorkflowExecution;
987
-
988
666
  externalInitiatedEventId?: number;
989
667
  }
990
-
991
668
  export interface WorkflowExecutionStartedEventAttributes {
992
669
  input?: string;
993
-
994
670
  executionStartToCloseTimeout?: string;
995
-
996
671
  taskStartToCloseTimeout?: string;
997
-
998
672
  childPolicy: ChildPolicy | string | undefined;
999
-
1000
673
  taskList: TaskList | undefined;
1001
-
1002
674
  taskPriority?: string;
1003
-
1004
675
  workflowType: WorkflowType | undefined;
1005
-
1006
676
  tagList?: string[];
1007
-
1008
677
  continuedExecutionRunId?: string;
1009
-
1010
678
  parentWorkflowExecution?: WorkflowExecution;
1011
-
1012
679
  parentInitiatedEventId?: number;
1013
-
1014
680
  lambdaRole?: string;
1015
681
  }
1016
682
  export declare type WorkflowExecutionTerminatedCause =
1017
683
  | "CHILD_POLICY_APPLIED"
1018
684
  | "EVENT_LIMIT_EXCEEDED"
1019
685
  | "OPERATOR_INITIATED";
1020
-
1021
686
  export interface WorkflowExecutionTerminatedEventAttributes {
1022
687
  reason?: string;
1023
-
1024
688
  details?: string;
1025
-
1026
689
  childPolicy: ChildPolicy | string | undefined;
1027
-
1028
690
  cause?: WorkflowExecutionTerminatedCause | string;
1029
691
  }
1030
-
1031
692
  export interface WorkflowExecutionTimedOutEventAttributes {
1032
693
  timeoutType: WorkflowExecutionTimeoutType | string | undefined;
1033
-
1034
694
  childPolicy: ChildPolicy | string | undefined;
1035
695
  }
1036
-
1037
696
  export interface HistoryEvent {
1038
697
  eventTimestamp: Date | undefined;
1039
-
1040
698
  eventType: EventType | string | undefined;
1041
-
1042
699
  eventId: number | undefined;
1043
-
1044
700
  workflowExecutionStartedEventAttributes?: WorkflowExecutionStartedEventAttributes;
1045
-
1046
701
  workflowExecutionCompletedEventAttributes?: WorkflowExecutionCompletedEventAttributes;
1047
-
1048
702
  completeWorkflowExecutionFailedEventAttributes?: CompleteWorkflowExecutionFailedEventAttributes;
1049
-
1050
703
  workflowExecutionFailedEventAttributes?: WorkflowExecutionFailedEventAttributes;
1051
-
1052
704
  failWorkflowExecutionFailedEventAttributes?: FailWorkflowExecutionFailedEventAttributes;
1053
-
1054
705
  workflowExecutionTimedOutEventAttributes?: WorkflowExecutionTimedOutEventAttributes;
1055
-
1056
706
  workflowExecutionCanceledEventAttributes?: WorkflowExecutionCanceledEventAttributes;
1057
-
1058
707
  cancelWorkflowExecutionFailedEventAttributes?: CancelWorkflowExecutionFailedEventAttributes;
1059
-
1060
708
  workflowExecutionContinuedAsNewEventAttributes?: WorkflowExecutionContinuedAsNewEventAttributes;
1061
-
1062
709
  continueAsNewWorkflowExecutionFailedEventAttributes?: ContinueAsNewWorkflowExecutionFailedEventAttributes;
1063
-
1064
710
  workflowExecutionTerminatedEventAttributes?: WorkflowExecutionTerminatedEventAttributes;
1065
-
1066
711
  workflowExecutionCancelRequestedEventAttributes?: WorkflowExecutionCancelRequestedEventAttributes;
1067
-
1068
712
  decisionTaskScheduledEventAttributes?: DecisionTaskScheduledEventAttributes;
1069
-
1070
713
  decisionTaskStartedEventAttributes?: DecisionTaskStartedEventAttributes;
1071
-
1072
714
  decisionTaskCompletedEventAttributes?: DecisionTaskCompletedEventAttributes;
1073
-
1074
715
  decisionTaskTimedOutEventAttributes?: DecisionTaskTimedOutEventAttributes;
1075
-
1076
716
  activityTaskScheduledEventAttributes?: ActivityTaskScheduledEventAttributes;
1077
-
1078
717
  activityTaskStartedEventAttributes?: ActivityTaskStartedEventAttributes;
1079
-
1080
718
  activityTaskCompletedEventAttributes?: ActivityTaskCompletedEventAttributes;
1081
-
1082
719
  activityTaskFailedEventAttributes?: ActivityTaskFailedEventAttributes;
1083
-
1084
720
  activityTaskTimedOutEventAttributes?: ActivityTaskTimedOutEventAttributes;
1085
-
1086
721
  activityTaskCanceledEventAttributes?: ActivityTaskCanceledEventAttributes;
1087
-
1088
722
  activityTaskCancelRequestedEventAttributes?: ActivityTaskCancelRequestedEventAttributes;
1089
-
1090
723
  workflowExecutionSignaledEventAttributes?: WorkflowExecutionSignaledEventAttributes;
1091
-
1092
724
  markerRecordedEventAttributes?: MarkerRecordedEventAttributes;
1093
-
1094
725
  recordMarkerFailedEventAttributes?: RecordMarkerFailedEventAttributes;
1095
-
1096
726
  timerStartedEventAttributes?: TimerStartedEventAttributes;
1097
-
1098
727
  timerFiredEventAttributes?: TimerFiredEventAttributes;
1099
-
1100
728
  timerCanceledEventAttributes?: TimerCanceledEventAttributes;
1101
-
1102
729
  startChildWorkflowExecutionInitiatedEventAttributes?: StartChildWorkflowExecutionInitiatedEventAttributes;
1103
-
1104
730
  childWorkflowExecutionStartedEventAttributes?: ChildWorkflowExecutionStartedEventAttributes;
1105
-
1106
731
  childWorkflowExecutionCompletedEventAttributes?: ChildWorkflowExecutionCompletedEventAttributes;
1107
-
1108
732
  childWorkflowExecutionFailedEventAttributes?: ChildWorkflowExecutionFailedEventAttributes;
1109
-
1110
733
  childWorkflowExecutionTimedOutEventAttributes?: ChildWorkflowExecutionTimedOutEventAttributes;
1111
-
1112
734
  childWorkflowExecutionCanceledEventAttributes?: ChildWorkflowExecutionCanceledEventAttributes;
1113
-
1114
735
  childWorkflowExecutionTerminatedEventAttributes?: ChildWorkflowExecutionTerminatedEventAttributes;
1115
-
1116
736
  signalExternalWorkflowExecutionInitiatedEventAttributes?: SignalExternalWorkflowExecutionInitiatedEventAttributes;
1117
-
1118
737
  externalWorkflowExecutionSignaledEventAttributes?: ExternalWorkflowExecutionSignaledEventAttributes;
1119
-
1120
738
  signalExternalWorkflowExecutionFailedEventAttributes?: SignalExternalWorkflowExecutionFailedEventAttributes;
1121
-
1122
739
  externalWorkflowExecutionCancelRequestedEventAttributes?: ExternalWorkflowExecutionCancelRequestedEventAttributes;
1123
-
1124
740
  requestCancelExternalWorkflowExecutionInitiatedEventAttributes?: RequestCancelExternalWorkflowExecutionInitiatedEventAttributes;
1125
-
1126
741
  requestCancelExternalWorkflowExecutionFailedEventAttributes?: RequestCancelExternalWorkflowExecutionFailedEventAttributes;
1127
-
1128
742
  scheduleActivityTaskFailedEventAttributes?: ScheduleActivityTaskFailedEventAttributes;
1129
-
1130
743
  requestCancelActivityTaskFailedEventAttributes?: RequestCancelActivityTaskFailedEventAttributes;
1131
-
1132
744
  startTimerFailedEventAttributes?: StartTimerFailedEventAttributes;
1133
-
1134
745
  cancelTimerFailedEventAttributes?: CancelTimerFailedEventAttributes;
1135
-
1136
746
  startChildWorkflowExecutionFailedEventAttributes?: StartChildWorkflowExecutionFailedEventAttributes;
1137
-
1138
747
  lambdaFunctionScheduledEventAttributes?: LambdaFunctionScheduledEventAttributes;
1139
-
1140
748
  lambdaFunctionStartedEventAttributes?: LambdaFunctionStartedEventAttributes;
1141
-
1142
749
  lambdaFunctionCompletedEventAttributes?: LambdaFunctionCompletedEventAttributes;
1143
-
1144
750
  lambdaFunctionFailedEventAttributes?: LambdaFunctionFailedEventAttributes;
1145
-
1146
751
  lambdaFunctionTimedOutEventAttributes?: LambdaFunctionTimedOutEventAttributes;
1147
-
1148
752
  scheduleLambdaFunctionFailedEventAttributes?: ScheduleLambdaFunctionFailedEventAttributes;
1149
-
1150
753
  startLambdaFunctionFailedEventAttributes?: StartLambdaFunctionFailedEventAttributes;
1151
754
  }
1152
-
1153
755
  export interface DecisionTask {
1154
756
  taskToken: string | undefined;
1155
-
1156
757
  startedEventId: number | undefined;
1157
-
1158
758
  workflowExecution: WorkflowExecution | undefined;
1159
-
1160
759
  workflowType: WorkflowType | undefined;
1161
-
1162
760
  events: HistoryEvent[] | undefined;
1163
-
1164
761
  nextPageToken?: string;
1165
-
1166
762
  previousStartedEventId?: number;
1167
763
  }
1168
-
1169
764
  export declare class DefaultUndefinedFault extends __BaseException {
1170
765
  readonly name: "DefaultUndefinedFault";
1171
766
  readonly $fault: "client";
1172
-
1173
767
  constructor(
1174
768
  opts: __ExceptionOptionType<DefaultUndefinedFault, __BaseException>
1175
769
  );
1176
770
  }
1177
771
  export interface DeprecateActivityTypeInput {
1178
772
  domain: string | undefined;
1179
-
1180
773
  activityType: ActivityType | undefined;
1181
774
  }
1182
-
1183
775
  export declare class TypeDeprecatedFault extends __BaseException {
1184
776
  readonly name: "TypeDeprecatedFault";
1185
777
  readonly $fault: "client";
1186
-
1187
778
  constructor(
1188
779
  opts: __ExceptionOptionType<TypeDeprecatedFault, __BaseException>
1189
780
  );
@@ -1191,261 +782,170 @@ export declare class TypeDeprecatedFault extends __BaseException {
1191
782
  export interface DeprecateDomainInput {
1192
783
  name: string | undefined;
1193
784
  }
1194
-
1195
785
  export declare class DomainDeprecatedFault extends __BaseException {
1196
786
  readonly name: "DomainDeprecatedFault";
1197
787
  readonly $fault: "client";
1198
-
1199
788
  constructor(
1200
789
  opts: __ExceptionOptionType<DomainDeprecatedFault, __BaseException>
1201
790
  );
1202
791
  }
1203
792
  export interface DeprecateWorkflowTypeInput {
1204
793
  domain: string | undefined;
1205
-
1206
794
  workflowType: WorkflowType | undefined;
1207
795
  }
1208
796
  export interface DescribeActivityTypeInput {
1209
797
  domain: string | undefined;
1210
-
1211
798
  activityType: ActivityType | undefined;
1212
799
  }
1213
800
  export interface DescribeDomainInput {
1214
801
  name: string | undefined;
1215
802
  }
1216
-
1217
803
  export interface DomainConfiguration {
1218
804
  workflowExecutionRetentionPeriodInDays: string | undefined;
1219
805
  }
1220
-
1221
806
  export interface DomainInfo {
1222
807
  name: string | undefined;
1223
-
1224
808
  status: RegistrationStatus | string | undefined;
1225
-
1226
809
  description?: string;
1227
-
1228
810
  arn?: string;
1229
811
  }
1230
-
1231
812
  export interface DomainDetail {
1232
813
  domainInfo: DomainInfo | undefined;
1233
-
1234
814
  configuration: DomainConfiguration | undefined;
1235
815
  }
1236
816
  export interface DescribeWorkflowExecutionInput {
1237
817
  domain: string | undefined;
1238
-
1239
818
  execution: WorkflowExecution | undefined;
1240
819
  }
1241
-
1242
820
  export interface WorkflowExecutionConfiguration {
1243
821
  taskStartToCloseTimeout: string | undefined;
1244
-
1245
822
  executionStartToCloseTimeout: string | undefined;
1246
-
1247
823
  taskList: TaskList | undefined;
1248
-
1249
824
  taskPriority?: string;
1250
-
1251
825
  childPolicy: ChildPolicy | string | undefined;
1252
-
1253
826
  lambdaRole?: string;
1254
827
  }
1255
828
  export declare type ExecutionStatus = "CLOSED" | "OPEN";
1256
-
1257
829
  export interface WorkflowExecutionInfo {
1258
830
  execution: WorkflowExecution | undefined;
1259
-
1260
831
  workflowType: WorkflowType | undefined;
1261
-
1262
832
  startTimestamp: Date | undefined;
1263
-
1264
833
  closeTimestamp?: Date;
1265
-
1266
834
  executionStatus: ExecutionStatus | string | undefined;
1267
-
1268
835
  closeStatus?: CloseStatus | string;
1269
-
1270
836
  parent?: WorkflowExecution;
1271
-
1272
837
  tagList?: string[];
1273
-
1274
838
  cancelRequested?: boolean;
1275
839
  }
1276
-
1277
840
  export interface WorkflowExecutionOpenCounts {
1278
841
  openActivityTasks: number | undefined;
1279
-
1280
842
  openDecisionTasks: number | undefined;
1281
-
1282
843
  openTimers: number | undefined;
1283
-
1284
844
  openChildWorkflowExecutions: number | undefined;
1285
-
1286
845
  openLambdaFunctions?: number;
1287
846
  }
1288
-
1289
847
  export interface WorkflowExecutionDetail {
1290
848
  executionInfo: WorkflowExecutionInfo | undefined;
1291
-
1292
849
  executionConfiguration: WorkflowExecutionConfiguration | undefined;
1293
-
1294
850
  openCounts: WorkflowExecutionOpenCounts | undefined;
1295
-
1296
851
  latestActivityTaskTimestamp?: Date;
1297
-
1298
852
  latestExecutionContext?: string;
1299
853
  }
1300
854
  export interface DescribeWorkflowTypeInput {
1301
855
  domain: string | undefined;
1302
-
1303
856
  workflowType: WorkflowType | undefined;
1304
857
  }
1305
-
1306
858
  export interface WorkflowTypeConfiguration {
1307
859
  defaultTaskStartToCloseTimeout?: string;
1308
-
1309
860
  defaultExecutionStartToCloseTimeout?: string;
1310
-
1311
861
  defaultTaskList?: TaskList;
1312
-
1313
862
  defaultTaskPriority?: string;
1314
-
1315
863
  defaultChildPolicy?: ChildPolicy | string;
1316
-
1317
864
  defaultLambdaRole?: string;
1318
865
  }
1319
-
1320
866
  export interface WorkflowTypeInfo {
1321
867
  workflowType: WorkflowType | undefined;
1322
-
1323
868
  status: RegistrationStatus | string | undefined;
1324
-
1325
869
  description?: string;
1326
-
1327
870
  creationDate: Date | undefined;
1328
-
1329
871
  deprecationDate?: Date;
1330
872
  }
1331
-
1332
873
  export interface WorkflowTypeDetail {
1333
874
  typeInfo: WorkflowTypeInfo | undefined;
1334
-
1335
875
  configuration: WorkflowTypeConfiguration | undefined;
1336
876
  }
1337
-
1338
877
  export declare class DomainAlreadyExistsFault extends __BaseException {
1339
878
  readonly name: "DomainAlreadyExistsFault";
1340
879
  readonly $fault: "client";
1341
-
1342
880
  constructor(
1343
881
  opts: __ExceptionOptionType<DomainAlreadyExistsFault, __BaseException>
1344
882
  );
1345
883
  }
1346
-
1347
884
  export interface DomainInfos {
1348
885
  domainInfos: DomainInfo[] | undefined;
1349
-
1350
886
  nextPageToken?: string;
1351
887
  }
1352
888
  export interface GetWorkflowExecutionHistoryInput {
1353
889
  domain: string | undefined;
1354
-
1355
890
  execution: WorkflowExecution | undefined;
1356
-
1357
891
  nextPageToken?: string;
1358
-
1359
892
  maximumPageSize?: number;
1360
-
1361
893
  reverseOrder?: boolean;
1362
894
  }
1363
-
1364
895
  export interface History {
1365
896
  events: HistoryEvent[] | undefined;
1366
-
1367
897
  nextPageToken?: string;
1368
898
  }
1369
-
1370
899
  export declare class LimitExceededFault extends __BaseException {
1371
900
  readonly name: "LimitExceededFault";
1372
901
  readonly $fault: "client";
1373
-
1374
902
  constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
1375
903
  }
1376
904
  export interface ListActivityTypesInput {
1377
905
  domain: string | undefined;
1378
-
1379
906
  name?: string;
1380
-
1381
907
  registrationStatus: RegistrationStatus | string | undefined;
1382
-
1383
908
  nextPageToken?: string;
1384
-
1385
909
  maximumPageSize?: number;
1386
-
1387
910
  reverseOrder?: boolean;
1388
911
  }
1389
912
  export interface ListClosedWorkflowExecutionsInput {
1390
913
  domain: string | undefined;
1391
-
1392
914
  startTimeFilter?: ExecutionTimeFilter;
1393
-
1394
915
  closeTimeFilter?: ExecutionTimeFilter;
1395
-
1396
916
  executionFilter?: WorkflowExecutionFilter;
1397
-
1398
917
  closeStatusFilter?: CloseStatusFilter;
1399
-
1400
918
  typeFilter?: WorkflowTypeFilter;
1401
-
1402
919
  tagFilter?: TagFilter;
1403
-
1404
920
  nextPageToken?: string;
1405
-
1406
921
  maximumPageSize?: number;
1407
-
1408
922
  reverseOrder?: boolean;
1409
923
  }
1410
-
1411
924
  export interface WorkflowExecutionInfos {
1412
925
  executionInfos: WorkflowExecutionInfo[] | undefined;
1413
-
1414
926
  nextPageToken?: string;
1415
927
  }
1416
928
  export interface ListDomainsInput {
1417
929
  nextPageToken?: string;
1418
-
1419
930
  registrationStatus: RegistrationStatus | string | undefined;
1420
-
1421
931
  maximumPageSize?: number;
1422
-
1423
932
  reverseOrder?: boolean;
1424
933
  }
1425
934
  export interface ListOpenWorkflowExecutionsInput {
1426
935
  domain: string | undefined;
1427
-
1428
936
  startTimeFilter: ExecutionTimeFilter | undefined;
1429
-
1430
937
  typeFilter?: WorkflowTypeFilter;
1431
-
1432
938
  tagFilter?: TagFilter;
1433
-
1434
939
  nextPageToken?: string;
1435
-
1436
940
  maximumPageSize?: number;
1437
-
1438
941
  reverseOrder?: boolean;
1439
-
1440
942
  executionFilter?: WorkflowExecutionFilter;
1441
943
  }
1442
944
  export interface ListTagsForResourceInput {
1443
945
  resourceArn: string | undefined;
1444
946
  }
1445
-
1446
947
  export interface ResourceTag {
1447
948
  key: string | undefined;
1448
-
1449
949
  value?: string;
1450
950
  }
1451
951
  export interface ListTagsForResourceOutput {
@@ -1453,190 +953,124 @@ export interface ListTagsForResourceOutput {
1453
953
  }
1454
954
  export interface ListWorkflowTypesInput {
1455
955
  domain: string | undefined;
1456
-
1457
956
  name?: string;
1458
-
1459
957
  registrationStatus: RegistrationStatus | string | undefined;
1460
-
1461
958
  nextPageToken?: string;
1462
-
1463
959
  maximumPageSize?: number;
1464
-
1465
960
  reverseOrder?: boolean;
1466
961
  }
1467
-
1468
962
  export interface WorkflowTypeInfos {
1469
963
  typeInfos: WorkflowTypeInfo[] | undefined;
1470
-
1471
964
  nextPageToken?: string;
1472
965
  }
1473
966
  export interface PollForActivityTaskInput {
1474
967
  domain: string | undefined;
1475
-
1476
968
  taskList: TaskList | undefined;
1477
-
1478
969
  identity?: string;
1479
970
  }
1480
971
  export interface PollForDecisionTaskInput {
1481
972
  domain: string | undefined;
1482
-
1483
973
  taskList: TaskList | undefined;
1484
-
1485
974
  identity?: string;
1486
-
1487
975
  nextPageToken?: string;
1488
-
1489
976
  maximumPageSize?: number;
1490
-
1491
977
  reverseOrder?: boolean;
1492
978
  }
1493
979
  export interface RecordActivityTaskHeartbeatInput {
1494
980
  taskToken: string | undefined;
1495
-
1496
981
  details?: string;
1497
982
  }
1498
983
  export interface RegisterActivityTypeInput {
1499
984
  domain: string | undefined;
1500
-
1501
985
  name: string | undefined;
1502
-
1503
986
  version: string | undefined;
1504
-
1505
987
  description?: string;
1506
-
1507
988
  defaultTaskStartToCloseTimeout?: string;
1508
-
1509
989
  defaultTaskHeartbeatTimeout?: string;
1510
-
1511
990
  defaultTaskList?: TaskList;
1512
-
1513
991
  defaultTaskPriority?: string;
1514
-
1515
992
  defaultTaskScheduleToStartTimeout?: string;
1516
-
1517
993
  defaultTaskScheduleToCloseTimeout?: string;
1518
994
  }
1519
-
1520
995
  export declare class TypeAlreadyExistsFault extends __BaseException {
1521
996
  readonly name: "TypeAlreadyExistsFault";
1522
997
  readonly $fault: "client";
1523
-
1524
998
  constructor(
1525
999
  opts: __ExceptionOptionType<TypeAlreadyExistsFault, __BaseException>
1526
1000
  );
1527
1001
  }
1528
1002
  export interface RegisterDomainInput {
1529
1003
  name: string | undefined;
1530
-
1531
1004
  description?: string;
1532
-
1533
1005
  workflowExecutionRetentionPeriodInDays: string | undefined;
1534
-
1535
1006
  tags?: ResourceTag[];
1536
1007
  }
1537
-
1538
1008
  export declare class TooManyTagsFault extends __BaseException {
1539
1009
  readonly name: "TooManyTagsFault";
1540
1010
  readonly $fault: "client";
1541
-
1542
1011
  constructor(opts: __ExceptionOptionType<TooManyTagsFault, __BaseException>);
1543
1012
  }
1544
1013
  export interface RegisterWorkflowTypeInput {
1545
1014
  domain: string | undefined;
1546
-
1547
1015
  name: string | undefined;
1548
-
1549
1016
  version: string | undefined;
1550
-
1551
1017
  description?: string;
1552
-
1553
1018
  defaultTaskStartToCloseTimeout?: string;
1554
-
1555
1019
  defaultExecutionStartToCloseTimeout?: string;
1556
-
1557
1020
  defaultTaskList?: TaskList;
1558
-
1559
1021
  defaultTaskPriority?: string;
1560
-
1561
1022
  defaultChildPolicy?: ChildPolicy | string;
1562
-
1563
1023
  defaultLambdaRole?: string;
1564
1024
  }
1565
1025
  export interface RequestCancelWorkflowExecutionInput {
1566
1026
  domain: string | undefined;
1567
-
1568
1027
  workflowId: string | undefined;
1569
-
1570
1028
  runId?: string;
1571
1029
  }
1572
1030
  export interface RespondActivityTaskCanceledInput {
1573
1031
  taskToken: string | undefined;
1574
-
1575
1032
  details?: string;
1576
1033
  }
1577
1034
  export interface RespondActivityTaskCompletedInput {
1578
1035
  taskToken: string | undefined;
1579
-
1580
1036
  result?: string;
1581
1037
  }
1582
1038
  export interface RespondActivityTaskFailedInput {
1583
1039
  taskToken: string | undefined;
1584
-
1585
1040
  reason?: string;
1586
-
1587
1041
  details?: string;
1588
1042
  }
1589
-
1590
1043
  export interface RespondDecisionTaskCompletedInput {
1591
1044
  taskToken: string | undefined;
1592
-
1593
1045
  decisions?: Decision[];
1594
-
1595
1046
  executionContext?: string;
1596
1047
  }
1597
-
1598
1048
  export interface Run {
1599
1049
  runId?: string;
1600
1050
  }
1601
1051
  export interface SignalWorkflowExecutionInput {
1602
1052
  domain: string | undefined;
1603
-
1604
1053
  workflowId: string | undefined;
1605
-
1606
1054
  runId?: string;
1607
-
1608
1055
  signalName: string | undefined;
1609
-
1610
1056
  input?: string;
1611
1057
  }
1612
1058
  export interface StartWorkflowExecutionInput {
1613
1059
  domain: string | undefined;
1614
-
1615
1060
  workflowId: string | undefined;
1616
-
1617
1061
  workflowType: WorkflowType | undefined;
1618
-
1619
1062
  taskList?: TaskList;
1620
-
1621
1063
  taskPriority?: string;
1622
-
1623
1064
  input?: string;
1624
-
1625
1065
  executionStartToCloseTimeout?: string;
1626
-
1627
1066
  tagList?: string[];
1628
-
1629
1067
  taskStartToCloseTimeout?: string;
1630
-
1631
1068
  childPolicy?: ChildPolicy | string;
1632
-
1633
1069
  lambdaRole?: string;
1634
1070
  }
1635
-
1636
1071
  export declare class WorkflowExecutionAlreadyStartedFault extends __BaseException {
1637
1072
  readonly name: "WorkflowExecutionAlreadyStartedFault";
1638
1073
  readonly $fault: "client";
1639
-
1640
1074
  constructor(
1641
1075
  opts: __ExceptionOptionType<
1642
1076
  WorkflowExecutionAlreadyStartedFault,
@@ -1646,25 +1080,18 @@ export declare class WorkflowExecutionAlreadyStartedFault extends __BaseExceptio
1646
1080
  }
1647
1081
  export interface TagResourceInput {
1648
1082
  resourceArn: string | undefined;
1649
-
1650
1083
  tags: ResourceTag[] | undefined;
1651
1084
  }
1652
1085
  export interface TerminateWorkflowExecutionInput {
1653
1086
  domain: string | undefined;
1654
-
1655
1087
  workflowId: string | undefined;
1656
-
1657
1088
  runId?: string;
1658
-
1659
1089
  reason?: string;
1660
-
1661
1090
  details?: string;
1662
-
1663
1091
  childPolicy?: ChildPolicy | string;
1664
1092
  }
1665
1093
  export interface UndeprecateActivityTypeInput {
1666
1094
  domain: string | undefined;
1667
-
1668
1095
  activityType: ActivityType | undefined;
1669
1096
  }
1670
1097
  export interface UndeprecateDomainInput {
@@ -1672,547 +1099,404 @@ export interface UndeprecateDomainInput {
1672
1099
  }
1673
1100
  export interface UndeprecateWorkflowTypeInput {
1674
1101
  domain: string | undefined;
1675
-
1676
1102
  workflowType: WorkflowType | undefined;
1677
1103
  }
1678
1104
  export interface UntagResourceInput {
1679
1105
  resourceArn: string | undefined;
1680
-
1681
1106
  tagKeys: string[] | undefined;
1682
1107
  }
1683
-
1684
1108
  export declare const ActivityTypeFilterSensitiveLog: (obj: ActivityType) => any;
1685
-
1686
1109
  export declare const WorkflowExecutionFilterSensitiveLog: (
1687
1110
  obj: WorkflowExecution
1688
1111
  ) => any;
1689
-
1690
1112
  export declare const ActivityTaskFilterSensitiveLog: (obj: ActivityTask) => any;
1691
-
1692
1113
  export declare const ActivityTaskCanceledEventAttributesFilterSensitiveLog: (
1693
1114
  obj: ActivityTaskCanceledEventAttributes
1694
1115
  ) => any;
1695
-
1696
1116
  export declare const ActivityTaskCancelRequestedEventAttributesFilterSensitiveLog: (
1697
1117
  obj: ActivityTaskCancelRequestedEventAttributes
1698
1118
  ) => any;
1699
-
1700
1119
  export declare const ActivityTaskCompletedEventAttributesFilterSensitiveLog: (
1701
1120
  obj: ActivityTaskCompletedEventAttributes
1702
1121
  ) => any;
1703
-
1704
1122
  export declare const ActivityTaskFailedEventAttributesFilterSensitiveLog: (
1705
1123
  obj: ActivityTaskFailedEventAttributes
1706
1124
  ) => any;
1707
-
1708
1125
  export declare const TaskListFilterSensitiveLog: (obj: TaskList) => any;
1709
-
1710
1126
  export declare const ActivityTaskScheduledEventAttributesFilterSensitiveLog: (
1711
1127
  obj: ActivityTaskScheduledEventAttributes
1712
1128
  ) => any;
1713
-
1714
1129
  export declare const ActivityTaskStartedEventAttributesFilterSensitiveLog: (
1715
1130
  obj: ActivityTaskStartedEventAttributes
1716
1131
  ) => any;
1717
-
1718
1132
  export declare const ActivityTaskStatusFilterSensitiveLog: (
1719
1133
  obj: ActivityTaskStatus
1720
1134
  ) => any;
1721
-
1722
1135
  export declare const ActivityTaskTimedOutEventAttributesFilterSensitiveLog: (
1723
1136
  obj: ActivityTaskTimedOutEventAttributes
1724
1137
  ) => any;
1725
-
1726
1138
  export declare const ActivityTypeConfigurationFilterSensitiveLog: (
1727
1139
  obj: ActivityTypeConfiguration
1728
1140
  ) => any;
1729
-
1730
1141
  export declare const ActivityTypeInfoFilterSensitiveLog: (
1731
1142
  obj: ActivityTypeInfo
1732
1143
  ) => any;
1733
-
1734
1144
  export declare const ActivityTypeDetailFilterSensitiveLog: (
1735
1145
  obj: ActivityTypeDetail
1736
1146
  ) => any;
1737
-
1738
1147
  export declare const ActivityTypeInfosFilterSensitiveLog: (
1739
1148
  obj: ActivityTypeInfos
1740
1149
  ) => any;
1741
-
1742
1150
  export declare const CancelTimerDecisionAttributesFilterSensitiveLog: (
1743
1151
  obj: CancelTimerDecisionAttributes
1744
1152
  ) => any;
1745
-
1746
1153
  export declare const CancelTimerFailedEventAttributesFilterSensitiveLog: (
1747
1154
  obj: CancelTimerFailedEventAttributes
1748
1155
  ) => any;
1749
-
1750
1156
  export declare const CancelWorkflowExecutionDecisionAttributesFilterSensitiveLog: (
1751
1157
  obj: CancelWorkflowExecutionDecisionAttributes
1752
1158
  ) => any;
1753
-
1754
1159
  export declare const CancelWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1755
1160
  obj: CancelWorkflowExecutionFailedEventAttributes
1756
1161
  ) => any;
1757
-
1758
1162
  export declare const WorkflowTypeFilterSensitiveLog: (obj: WorkflowType) => any;
1759
-
1760
1163
  export declare const ChildWorkflowExecutionCanceledEventAttributesFilterSensitiveLog: (
1761
1164
  obj: ChildWorkflowExecutionCanceledEventAttributes
1762
1165
  ) => any;
1763
-
1764
1166
  export declare const ChildWorkflowExecutionCompletedEventAttributesFilterSensitiveLog: (
1765
1167
  obj: ChildWorkflowExecutionCompletedEventAttributes
1766
1168
  ) => any;
1767
-
1768
1169
  export declare const ChildWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1769
1170
  obj: ChildWorkflowExecutionFailedEventAttributes
1770
1171
  ) => any;
1771
-
1772
1172
  export declare const ChildWorkflowExecutionStartedEventAttributesFilterSensitiveLog: (
1773
1173
  obj: ChildWorkflowExecutionStartedEventAttributes
1774
1174
  ) => any;
1775
-
1776
1175
  export declare const ChildWorkflowExecutionTerminatedEventAttributesFilterSensitiveLog: (
1777
1176
  obj: ChildWorkflowExecutionTerminatedEventAttributes
1778
1177
  ) => any;
1779
-
1780
1178
  export declare const ChildWorkflowExecutionTimedOutEventAttributesFilterSensitiveLog: (
1781
1179
  obj: ChildWorkflowExecutionTimedOutEventAttributes
1782
1180
  ) => any;
1783
-
1784
1181
  export declare const CloseStatusFilterFilterSensitiveLog: (
1785
1182
  obj: CloseStatusFilter
1786
1183
  ) => any;
1787
-
1788
1184
  export declare const CompleteWorkflowExecutionDecisionAttributesFilterSensitiveLog: (
1789
1185
  obj: CompleteWorkflowExecutionDecisionAttributes
1790
1186
  ) => any;
1791
-
1792
1187
  export declare const CompleteWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1793
1188
  obj: CompleteWorkflowExecutionFailedEventAttributes
1794
1189
  ) => any;
1795
-
1796
1190
  export declare const ContinueAsNewWorkflowExecutionDecisionAttributesFilterSensitiveLog: (
1797
1191
  obj: ContinueAsNewWorkflowExecutionDecisionAttributes
1798
1192
  ) => any;
1799
-
1800
1193
  export declare const ContinueAsNewWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1801
1194
  obj: ContinueAsNewWorkflowExecutionFailedEventAttributes
1802
1195
  ) => any;
1803
-
1804
1196
  export declare const ExecutionTimeFilterFilterSensitiveLog: (
1805
1197
  obj: ExecutionTimeFilter
1806
1198
  ) => any;
1807
-
1808
1199
  export declare const WorkflowExecutionFilterFilterSensitiveLog: (
1809
1200
  obj: WorkflowExecutionFilter
1810
1201
  ) => any;
1811
-
1812
1202
  export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
1813
-
1814
1203
  export declare const WorkflowTypeFilterFilterSensitiveLog: (
1815
1204
  obj: WorkflowTypeFilter
1816
1205
  ) => any;
1817
-
1818
1206
  export declare const CountClosedWorkflowExecutionsInputFilterSensitiveLog: (
1819
1207
  obj: CountClosedWorkflowExecutionsInput
1820
1208
  ) => any;
1821
-
1822
1209
  export declare const WorkflowExecutionCountFilterSensitiveLog: (
1823
1210
  obj: WorkflowExecutionCount
1824
1211
  ) => any;
1825
-
1826
1212
  export declare const CountOpenWorkflowExecutionsInputFilterSensitiveLog: (
1827
1213
  obj: CountOpenWorkflowExecutionsInput
1828
1214
  ) => any;
1829
-
1830
1215
  export declare const CountPendingActivityTasksInputFilterSensitiveLog: (
1831
1216
  obj: CountPendingActivityTasksInput
1832
1217
  ) => any;
1833
-
1834
1218
  export declare const PendingTaskCountFilterSensitiveLog: (
1835
1219
  obj: PendingTaskCount
1836
1220
  ) => any;
1837
-
1838
1221
  export declare const CountPendingDecisionTasksInputFilterSensitiveLog: (
1839
1222
  obj: CountPendingDecisionTasksInput
1840
1223
  ) => any;
1841
-
1842
1224
  export declare const FailWorkflowExecutionDecisionAttributesFilterSensitiveLog: (
1843
1225
  obj: FailWorkflowExecutionDecisionAttributes
1844
1226
  ) => any;
1845
-
1846
1227
  export declare const RecordMarkerDecisionAttributesFilterSensitiveLog: (
1847
1228
  obj: RecordMarkerDecisionAttributes
1848
1229
  ) => any;
1849
-
1850
1230
  export declare const RequestCancelActivityTaskDecisionAttributesFilterSensitiveLog: (
1851
1231
  obj: RequestCancelActivityTaskDecisionAttributes
1852
1232
  ) => any;
1853
-
1854
1233
  export declare const RequestCancelExternalWorkflowExecutionDecisionAttributesFilterSensitiveLog: (
1855
1234
  obj: RequestCancelExternalWorkflowExecutionDecisionAttributes
1856
1235
  ) => any;
1857
-
1858
1236
  export declare const ScheduleActivityTaskDecisionAttributesFilterSensitiveLog: (
1859
1237
  obj: ScheduleActivityTaskDecisionAttributes
1860
1238
  ) => any;
1861
-
1862
1239
  export declare const ScheduleLambdaFunctionDecisionAttributesFilterSensitiveLog: (
1863
1240
  obj: ScheduleLambdaFunctionDecisionAttributes
1864
1241
  ) => any;
1865
-
1866
1242
  export declare const SignalExternalWorkflowExecutionDecisionAttributesFilterSensitiveLog: (
1867
1243
  obj: SignalExternalWorkflowExecutionDecisionAttributes
1868
1244
  ) => any;
1869
-
1870
1245
  export declare const StartChildWorkflowExecutionDecisionAttributesFilterSensitiveLog: (
1871
1246
  obj: StartChildWorkflowExecutionDecisionAttributes
1872
1247
  ) => any;
1873
-
1874
1248
  export declare const StartTimerDecisionAttributesFilterSensitiveLog: (
1875
1249
  obj: StartTimerDecisionAttributes
1876
1250
  ) => any;
1877
-
1878
1251
  export declare const DecisionFilterSensitiveLog: (obj: Decision) => any;
1879
-
1880
1252
  export declare const DecisionTaskCompletedEventAttributesFilterSensitiveLog: (
1881
1253
  obj: DecisionTaskCompletedEventAttributes
1882
1254
  ) => any;
1883
-
1884
1255
  export declare const DecisionTaskScheduledEventAttributesFilterSensitiveLog: (
1885
1256
  obj: DecisionTaskScheduledEventAttributes
1886
1257
  ) => any;
1887
-
1888
1258
  export declare const DecisionTaskStartedEventAttributesFilterSensitiveLog: (
1889
1259
  obj: DecisionTaskStartedEventAttributes
1890
1260
  ) => any;
1891
-
1892
1261
  export declare const DecisionTaskTimedOutEventAttributesFilterSensitiveLog: (
1893
1262
  obj: DecisionTaskTimedOutEventAttributes
1894
1263
  ) => any;
1895
-
1896
1264
  export declare const ExternalWorkflowExecutionCancelRequestedEventAttributesFilterSensitiveLog: (
1897
1265
  obj: ExternalWorkflowExecutionCancelRequestedEventAttributes
1898
1266
  ) => any;
1899
-
1900
1267
  export declare const ExternalWorkflowExecutionSignaledEventAttributesFilterSensitiveLog: (
1901
1268
  obj: ExternalWorkflowExecutionSignaledEventAttributes
1902
1269
  ) => any;
1903
-
1904
1270
  export declare const FailWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1905
1271
  obj: FailWorkflowExecutionFailedEventAttributes
1906
1272
  ) => any;
1907
-
1908
1273
  export declare const LambdaFunctionCompletedEventAttributesFilterSensitiveLog: (
1909
1274
  obj: LambdaFunctionCompletedEventAttributes
1910
1275
  ) => any;
1911
-
1912
1276
  export declare const LambdaFunctionFailedEventAttributesFilterSensitiveLog: (
1913
1277
  obj: LambdaFunctionFailedEventAttributes
1914
1278
  ) => any;
1915
-
1916
1279
  export declare const LambdaFunctionScheduledEventAttributesFilterSensitiveLog: (
1917
1280
  obj: LambdaFunctionScheduledEventAttributes
1918
1281
  ) => any;
1919
-
1920
1282
  export declare const LambdaFunctionStartedEventAttributesFilterSensitiveLog: (
1921
1283
  obj: LambdaFunctionStartedEventAttributes
1922
1284
  ) => any;
1923
-
1924
1285
  export declare const LambdaFunctionTimedOutEventAttributesFilterSensitiveLog: (
1925
1286
  obj: LambdaFunctionTimedOutEventAttributes
1926
1287
  ) => any;
1927
-
1928
1288
  export declare const MarkerRecordedEventAttributesFilterSensitiveLog: (
1929
1289
  obj: MarkerRecordedEventAttributes
1930
1290
  ) => any;
1931
-
1932
1291
  export declare const RecordMarkerFailedEventAttributesFilterSensitiveLog: (
1933
1292
  obj: RecordMarkerFailedEventAttributes
1934
1293
  ) => any;
1935
-
1936
1294
  export declare const RequestCancelActivityTaskFailedEventAttributesFilterSensitiveLog: (
1937
1295
  obj: RequestCancelActivityTaskFailedEventAttributes
1938
1296
  ) => any;
1939
-
1940
1297
  export declare const RequestCancelExternalWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1941
1298
  obj: RequestCancelExternalWorkflowExecutionFailedEventAttributes
1942
1299
  ) => any;
1943
-
1944
1300
  export declare const RequestCancelExternalWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog: (
1945
1301
  obj: RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
1946
1302
  ) => any;
1947
-
1948
1303
  export declare const ScheduleActivityTaskFailedEventAttributesFilterSensitiveLog: (
1949
1304
  obj: ScheduleActivityTaskFailedEventAttributes
1950
1305
  ) => any;
1951
-
1952
1306
  export declare const ScheduleLambdaFunctionFailedEventAttributesFilterSensitiveLog: (
1953
1307
  obj: ScheduleLambdaFunctionFailedEventAttributes
1954
1308
  ) => any;
1955
-
1956
1309
  export declare const SignalExternalWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1957
1310
  obj: SignalExternalWorkflowExecutionFailedEventAttributes
1958
1311
  ) => any;
1959
-
1960
1312
  export declare const SignalExternalWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog: (
1961
1313
  obj: SignalExternalWorkflowExecutionInitiatedEventAttributes
1962
1314
  ) => any;
1963
-
1964
1315
  export declare const StartChildWorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
1965
1316
  obj: StartChildWorkflowExecutionFailedEventAttributes
1966
1317
  ) => any;
1967
-
1968
1318
  export declare const StartChildWorkflowExecutionInitiatedEventAttributesFilterSensitiveLog: (
1969
1319
  obj: StartChildWorkflowExecutionInitiatedEventAttributes
1970
1320
  ) => any;
1971
-
1972
1321
  export declare const StartLambdaFunctionFailedEventAttributesFilterSensitiveLog: (
1973
1322
  obj: StartLambdaFunctionFailedEventAttributes
1974
1323
  ) => any;
1975
-
1976
1324
  export declare const StartTimerFailedEventAttributesFilterSensitiveLog: (
1977
1325
  obj: StartTimerFailedEventAttributes
1978
1326
  ) => any;
1979
-
1980
1327
  export declare const TimerCanceledEventAttributesFilterSensitiveLog: (
1981
1328
  obj: TimerCanceledEventAttributes
1982
1329
  ) => any;
1983
-
1984
1330
  export declare const TimerFiredEventAttributesFilterSensitiveLog: (
1985
1331
  obj: TimerFiredEventAttributes
1986
1332
  ) => any;
1987
-
1988
1333
  export declare const TimerStartedEventAttributesFilterSensitiveLog: (
1989
1334
  obj: TimerStartedEventAttributes
1990
1335
  ) => any;
1991
-
1992
1336
  export declare const WorkflowExecutionCanceledEventAttributesFilterSensitiveLog: (
1993
1337
  obj: WorkflowExecutionCanceledEventAttributes
1994
1338
  ) => any;
1995
-
1996
1339
  export declare const WorkflowExecutionCancelRequestedEventAttributesFilterSensitiveLog: (
1997
1340
  obj: WorkflowExecutionCancelRequestedEventAttributes
1998
1341
  ) => any;
1999
-
2000
1342
  export declare const WorkflowExecutionCompletedEventAttributesFilterSensitiveLog: (
2001
1343
  obj: WorkflowExecutionCompletedEventAttributes
2002
1344
  ) => any;
2003
-
2004
1345
  export declare const WorkflowExecutionContinuedAsNewEventAttributesFilterSensitiveLog: (
2005
1346
  obj: WorkflowExecutionContinuedAsNewEventAttributes
2006
1347
  ) => any;
2007
-
2008
1348
  export declare const WorkflowExecutionFailedEventAttributesFilterSensitiveLog: (
2009
1349
  obj: WorkflowExecutionFailedEventAttributes
2010
1350
  ) => any;
2011
-
2012
1351
  export declare const WorkflowExecutionSignaledEventAttributesFilterSensitiveLog: (
2013
1352
  obj: WorkflowExecutionSignaledEventAttributes
2014
1353
  ) => any;
2015
-
2016
1354
  export declare const WorkflowExecutionStartedEventAttributesFilterSensitiveLog: (
2017
1355
  obj: WorkflowExecutionStartedEventAttributes
2018
1356
  ) => any;
2019
-
2020
1357
  export declare const WorkflowExecutionTerminatedEventAttributesFilterSensitiveLog: (
2021
1358
  obj: WorkflowExecutionTerminatedEventAttributes
2022
1359
  ) => any;
2023
-
2024
1360
  export declare const WorkflowExecutionTimedOutEventAttributesFilterSensitiveLog: (
2025
1361
  obj: WorkflowExecutionTimedOutEventAttributes
2026
1362
  ) => any;
2027
-
2028
1363
  export declare const HistoryEventFilterSensitiveLog: (obj: HistoryEvent) => any;
2029
-
2030
1364
  export declare const DecisionTaskFilterSensitiveLog: (obj: DecisionTask) => any;
2031
-
2032
1365
  export declare const DeprecateActivityTypeInputFilterSensitiveLog: (
2033
1366
  obj: DeprecateActivityTypeInput
2034
1367
  ) => any;
2035
-
2036
1368
  export declare const DeprecateDomainInputFilterSensitiveLog: (
2037
1369
  obj: DeprecateDomainInput
2038
1370
  ) => any;
2039
-
2040
1371
  export declare const DeprecateWorkflowTypeInputFilterSensitiveLog: (
2041
1372
  obj: DeprecateWorkflowTypeInput
2042
1373
  ) => any;
2043
-
2044
1374
  export declare const DescribeActivityTypeInputFilterSensitiveLog: (
2045
1375
  obj: DescribeActivityTypeInput
2046
1376
  ) => any;
2047
-
2048
1377
  export declare const DescribeDomainInputFilterSensitiveLog: (
2049
1378
  obj: DescribeDomainInput
2050
1379
  ) => any;
2051
-
2052
1380
  export declare const DomainConfigurationFilterSensitiveLog: (
2053
1381
  obj: DomainConfiguration
2054
1382
  ) => any;
2055
-
2056
1383
  export declare const DomainInfoFilterSensitiveLog: (obj: DomainInfo) => any;
2057
-
2058
1384
  export declare const DomainDetailFilterSensitiveLog: (obj: DomainDetail) => any;
2059
-
2060
1385
  export declare const DescribeWorkflowExecutionInputFilterSensitiveLog: (
2061
1386
  obj: DescribeWorkflowExecutionInput
2062
1387
  ) => any;
2063
-
2064
1388
  export declare const WorkflowExecutionConfigurationFilterSensitiveLog: (
2065
1389
  obj: WorkflowExecutionConfiguration
2066
1390
  ) => any;
2067
-
2068
1391
  export declare const WorkflowExecutionInfoFilterSensitiveLog: (
2069
1392
  obj: WorkflowExecutionInfo
2070
1393
  ) => any;
2071
-
2072
1394
  export declare const WorkflowExecutionOpenCountsFilterSensitiveLog: (
2073
1395
  obj: WorkflowExecutionOpenCounts
2074
1396
  ) => any;
2075
-
2076
1397
  export declare const WorkflowExecutionDetailFilterSensitiveLog: (
2077
1398
  obj: WorkflowExecutionDetail
2078
1399
  ) => any;
2079
-
2080
1400
  export declare const DescribeWorkflowTypeInputFilterSensitiveLog: (
2081
1401
  obj: DescribeWorkflowTypeInput
2082
1402
  ) => any;
2083
-
2084
1403
  export declare const WorkflowTypeConfigurationFilterSensitiveLog: (
2085
1404
  obj: WorkflowTypeConfiguration
2086
1405
  ) => any;
2087
-
2088
1406
  export declare const WorkflowTypeInfoFilterSensitiveLog: (
2089
1407
  obj: WorkflowTypeInfo
2090
1408
  ) => any;
2091
-
2092
1409
  export declare const WorkflowTypeDetailFilterSensitiveLog: (
2093
1410
  obj: WorkflowTypeDetail
2094
1411
  ) => any;
2095
-
2096
1412
  export declare const DomainInfosFilterSensitiveLog: (obj: DomainInfos) => any;
2097
-
2098
1413
  export declare const GetWorkflowExecutionHistoryInputFilterSensitiveLog: (
2099
1414
  obj: GetWorkflowExecutionHistoryInput
2100
1415
  ) => any;
2101
-
2102
1416
  export declare const HistoryFilterSensitiveLog: (obj: History) => any;
2103
-
2104
1417
  export declare const ListActivityTypesInputFilterSensitiveLog: (
2105
1418
  obj: ListActivityTypesInput
2106
1419
  ) => any;
2107
-
2108
1420
  export declare const ListClosedWorkflowExecutionsInputFilterSensitiveLog: (
2109
1421
  obj: ListClosedWorkflowExecutionsInput
2110
1422
  ) => any;
2111
-
2112
1423
  export declare const WorkflowExecutionInfosFilterSensitiveLog: (
2113
1424
  obj: WorkflowExecutionInfos
2114
1425
  ) => any;
2115
-
2116
1426
  export declare const ListDomainsInputFilterSensitiveLog: (
2117
1427
  obj: ListDomainsInput
2118
1428
  ) => any;
2119
-
2120
1429
  export declare const ListOpenWorkflowExecutionsInputFilterSensitiveLog: (
2121
1430
  obj: ListOpenWorkflowExecutionsInput
2122
1431
  ) => any;
2123
-
2124
1432
  export declare const ListTagsForResourceInputFilterSensitiveLog: (
2125
1433
  obj: ListTagsForResourceInput
2126
1434
  ) => any;
2127
-
2128
1435
  export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
2129
-
2130
1436
  export declare const ListTagsForResourceOutputFilterSensitiveLog: (
2131
1437
  obj: ListTagsForResourceOutput
2132
1438
  ) => any;
2133
-
2134
1439
  export declare const ListWorkflowTypesInputFilterSensitiveLog: (
2135
1440
  obj: ListWorkflowTypesInput
2136
1441
  ) => any;
2137
-
2138
1442
  export declare const WorkflowTypeInfosFilterSensitiveLog: (
2139
1443
  obj: WorkflowTypeInfos
2140
1444
  ) => any;
2141
-
2142
1445
  export declare const PollForActivityTaskInputFilterSensitiveLog: (
2143
1446
  obj: PollForActivityTaskInput
2144
1447
  ) => any;
2145
-
2146
1448
  export declare const PollForDecisionTaskInputFilterSensitiveLog: (
2147
1449
  obj: PollForDecisionTaskInput
2148
1450
  ) => any;
2149
-
2150
1451
  export declare const RecordActivityTaskHeartbeatInputFilterSensitiveLog: (
2151
1452
  obj: RecordActivityTaskHeartbeatInput
2152
1453
  ) => any;
2153
-
2154
1454
  export declare const RegisterActivityTypeInputFilterSensitiveLog: (
2155
1455
  obj: RegisterActivityTypeInput
2156
1456
  ) => any;
2157
-
2158
1457
  export declare const RegisterDomainInputFilterSensitiveLog: (
2159
1458
  obj: RegisterDomainInput
2160
1459
  ) => any;
2161
-
2162
1460
  export declare const RegisterWorkflowTypeInputFilterSensitiveLog: (
2163
1461
  obj: RegisterWorkflowTypeInput
2164
1462
  ) => any;
2165
-
2166
1463
  export declare const RequestCancelWorkflowExecutionInputFilterSensitiveLog: (
2167
1464
  obj: RequestCancelWorkflowExecutionInput
2168
1465
  ) => any;
2169
-
2170
1466
  export declare const RespondActivityTaskCanceledInputFilterSensitiveLog: (
2171
1467
  obj: RespondActivityTaskCanceledInput
2172
1468
  ) => any;
2173
-
2174
1469
  export declare const RespondActivityTaskCompletedInputFilterSensitiveLog: (
2175
1470
  obj: RespondActivityTaskCompletedInput
2176
1471
  ) => any;
2177
-
2178
1472
  export declare const RespondActivityTaskFailedInputFilterSensitiveLog: (
2179
1473
  obj: RespondActivityTaskFailedInput
2180
1474
  ) => any;
2181
-
2182
1475
  export declare const RespondDecisionTaskCompletedInputFilterSensitiveLog: (
2183
1476
  obj: RespondDecisionTaskCompletedInput
2184
1477
  ) => any;
2185
-
2186
1478
  export declare const RunFilterSensitiveLog: (obj: Run) => any;
2187
-
2188
1479
  export declare const SignalWorkflowExecutionInputFilterSensitiveLog: (
2189
1480
  obj: SignalWorkflowExecutionInput
2190
1481
  ) => any;
2191
-
2192
1482
  export declare const StartWorkflowExecutionInputFilterSensitiveLog: (
2193
1483
  obj: StartWorkflowExecutionInput
2194
1484
  ) => any;
2195
-
2196
1485
  export declare const TagResourceInputFilterSensitiveLog: (
2197
1486
  obj: TagResourceInput
2198
1487
  ) => any;
2199
-
2200
1488
  export declare const TerminateWorkflowExecutionInputFilterSensitiveLog: (
2201
1489
  obj: TerminateWorkflowExecutionInput
2202
1490
  ) => any;
2203
-
2204
1491
  export declare const UndeprecateActivityTypeInputFilterSensitiveLog: (
2205
1492
  obj: UndeprecateActivityTypeInput
2206
1493
  ) => any;
2207
-
2208
1494
  export declare const UndeprecateDomainInputFilterSensitiveLog: (
2209
1495
  obj: UndeprecateDomainInput
2210
1496
  ) => any;
2211
-
2212
1497
  export declare const UndeprecateWorkflowTypeInputFilterSensitiveLog: (
2213
1498
  obj: UndeprecateWorkflowTypeInput
2214
1499
  ) => any;
2215
-
2216
1500
  export declare const UntagResourceInputFilterSensitiveLog: (
2217
1501
  obj: UntagResourceInput
2218
1502
  ) => any;