aws-sdk-swf 1.49.0 → 1.51.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-swf/client.rb +70 -46
- data/lib/aws-sdk-swf/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-swf.rb +1 -1
- data/sig/client.rbs +716 -0
- data/sig/errors.rbs +46 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1223 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1223 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::SWF
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ActivityTask
|
12
|
+
attr_accessor task_token: ::String
|
13
|
+
attr_accessor activity_id: ::String
|
14
|
+
attr_accessor started_event_id: ::Integer
|
15
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
16
|
+
attr_accessor activity_type: Types::ActivityType
|
17
|
+
attr_accessor input: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class ActivityTaskCancelRequestedEventAttributes
|
22
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
23
|
+
attr_accessor activity_id: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class ActivityTaskCanceledEventAttributes
|
28
|
+
attr_accessor details: ::String
|
29
|
+
attr_accessor scheduled_event_id: ::Integer
|
30
|
+
attr_accessor started_event_id: ::Integer
|
31
|
+
attr_accessor latest_cancel_requested_event_id: ::Integer
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class ActivityTaskCompletedEventAttributes
|
36
|
+
attr_accessor result: ::String
|
37
|
+
attr_accessor scheduled_event_id: ::Integer
|
38
|
+
attr_accessor started_event_id: ::Integer
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class ActivityTaskFailedEventAttributes
|
43
|
+
attr_accessor reason: ::String
|
44
|
+
attr_accessor details: ::String
|
45
|
+
attr_accessor scheduled_event_id: ::Integer
|
46
|
+
attr_accessor started_event_id: ::Integer
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class ActivityTaskScheduledEventAttributes
|
51
|
+
attr_accessor activity_type: Types::ActivityType
|
52
|
+
attr_accessor activity_id: ::String
|
53
|
+
attr_accessor input: ::String
|
54
|
+
attr_accessor control: ::String
|
55
|
+
attr_accessor schedule_to_start_timeout: ::String
|
56
|
+
attr_accessor schedule_to_close_timeout: ::String
|
57
|
+
attr_accessor start_to_close_timeout: ::String
|
58
|
+
attr_accessor task_list: Types::TaskList
|
59
|
+
attr_accessor task_priority: ::String
|
60
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
61
|
+
attr_accessor heartbeat_timeout: ::String
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class ActivityTaskStartedEventAttributes
|
66
|
+
attr_accessor identity: ::String
|
67
|
+
attr_accessor scheduled_event_id: ::Integer
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class ActivityTaskStatus
|
72
|
+
attr_accessor cancel_requested: bool
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class ActivityTaskTimedOutEventAttributes
|
77
|
+
attr_accessor timeout_type: ("START_TO_CLOSE" | "SCHEDULE_TO_START" | "SCHEDULE_TO_CLOSE" | "HEARTBEAT")
|
78
|
+
attr_accessor scheduled_event_id: ::Integer
|
79
|
+
attr_accessor started_event_id: ::Integer
|
80
|
+
attr_accessor details: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class ActivityType
|
85
|
+
attr_accessor name: ::String
|
86
|
+
attr_accessor version: ::String
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class ActivityTypeConfiguration
|
91
|
+
attr_accessor default_task_start_to_close_timeout: ::String
|
92
|
+
attr_accessor default_task_heartbeat_timeout: ::String
|
93
|
+
attr_accessor default_task_list: Types::TaskList
|
94
|
+
attr_accessor default_task_priority: ::String
|
95
|
+
attr_accessor default_task_schedule_to_start_timeout: ::String
|
96
|
+
attr_accessor default_task_schedule_to_close_timeout: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class ActivityTypeDetail
|
101
|
+
attr_accessor type_info: Types::ActivityTypeInfo
|
102
|
+
attr_accessor configuration: Types::ActivityTypeConfiguration
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class ActivityTypeInfo
|
107
|
+
attr_accessor activity_type: Types::ActivityType
|
108
|
+
attr_accessor status: ("REGISTERED" | "DEPRECATED")
|
109
|
+
attr_accessor description: ::String
|
110
|
+
attr_accessor creation_date: ::Time
|
111
|
+
attr_accessor deprecation_date: ::Time
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class ActivityTypeInfos
|
116
|
+
attr_accessor type_infos: ::Array[Types::ActivityTypeInfo]
|
117
|
+
attr_accessor next_page_token: ::String
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class CancelTimerDecisionAttributes
|
122
|
+
attr_accessor timer_id: ::String
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class CancelTimerFailedEventAttributes
|
127
|
+
attr_accessor timer_id: ::String
|
128
|
+
attr_accessor cause: ("TIMER_ID_UNKNOWN" | "OPERATION_NOT_PERMITTED")
|
129
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class CancelWorkflowExecutionDecisionAttributes
|
134
|
+
attr_accessor details: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class CancelWorkflowExecutionFailedEventAttributes
|
139
|
+
attr_accessor cause: ("UNHANDLED_DECISION" | "OPERATION_NOT_PERMITTED")
|
140
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class ChildWorkflowExecutionCanceledEventAttributes
|
145
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
146
|
+
attr_accessor workflow_type: Types::WorkflowType
|
147
|
+
attr_accessor details: ::String
|
148
|
+
attr_accessor initiated_event_id: ::Integer
|
149
|
+
attr_accessor started_event_id: ::Integer
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class ChildWorkflowExecutionCompletedEventAttributes
|
154
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
155
|
+
attr_accessor workflow_type: Types::WorkflowType
|
156
|
+
attr_accessor result: ::String
|
157
|
+
attr_accessor initiated_event_id: ::Integer
|
158
|
+
attr_accessor started_event_id: ::Integer
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class ChildWorkflowExecutionFailedEventAttributes
|
163
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
164
|
+
attr_accessor workflow_type: Types::WorkflowType
|
165
|
+
attr_accessor reason: ::String
|
166
|
+
attr_accessor details: ::String
|
167
|
+
attr_accessor initiated_event_id: ::Integer
|
168
|
+
attr_accessor started_event_id: ::Integer
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class ChildWorkflowExecutionStartedEventAttributes
|
173
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
174
|
+
attr_accessor workflow_type: Types::WorkflowType
|
175
|
+
attr_accessor initiated_event_id: ::Integer
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class ChildWorkflowExecutionTerminatedEventAttributes
|
180
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
181
|
+
attr_accessor workflow_type: Types::WorkflowType
|
182
|
+
attr_accessor initiated_event_id: ::Integer
|
183
|
+
attr_accessor started_event_id: ::Integer
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class ChildWorkflowExecutionTimedOutEventAttributes
|
188
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
189
|
+
attr_accessor workflow_type: Types::WorkflowType
|
190
|
+
attr_accessor timeout_type: ("START_TO_CLOSE")
|
191
|
+
attr_accessor initiated_event_id: ::Integer
|
192
|
+
attr_accessor started_event_id: ::Integer
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class CloseStatusFilter
|
197
|
+
attr_accessor status: ("COMPLETED" | "FAILED" | "CANCELED" | "TERMINATED" | "CONTINUED_AS_NEW" | "TIMED_OUT")
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class CompleteWorkflowExecutionDecisionAttributes
|
202
|
+
attr_accessor result: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class CompleteWorkflowExecutionFailedEventAttributes
|
207
|
+
attr_accessor cause: ("UNHANDLED_DECISION" | "OPERATION_NOT_PERMITTED")
|
208
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class ContinueAsNewWorkflowExecutionDecisionAttributes
|
213
|
+
attr_accessor input: ::String
|
214
|
+
attr_accessor execution_start_to_close_timeout: ::String
|
215
|
+
attr_accessor task_list: Types::TaskList
|
216
|
+
attr_accessor task_priority: ::String
|
217
|
+
attr_accessor task_start_to_close_timeout: ::String
|
218
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
219
|
+
attr_accessor tag_list: ::Array[::String]
|
220
|
+
attr_accessor workflow_type_version: ::String
|
221
|
+
attr_accessor lambda_role: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class ContinueAsNewWorkflowExecutionFailedEventAttributes
|
226
|
+
attr_accessor cause: ("UNHANDLED_DECISION" | "WORKFLOW_TYPE_DEPRECATED" | "WORKFLOW_TYPE_DOES_NOT_EXIST" | "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED" | "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED" | "DEFAULT_TASK_LIST_UNDEFINED" | "DEFAULT_CHILD_POLICY_UNDEFINED" | "CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED" | "OPERATION_NOT_PERMITTED")
|
227
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class CountClosedWorkflowExecutionsInput
|
232
|
+
attr_accessor domain: ::String
|
233
|
+
attr_accessor start_time_filter: Types::ExecutionTimeFilter
|
234
|
+
attr_accessor close_time_filter: Types::ExecutionTimeFilter
|
235
|
+
attr_accessor execution_filter: Types::WorkflowExecutionFilter
|
236
|
+
attr_accessor type_filter: Types::WorkflowTypeFilter
|
237
|
+
attr_accessor tag_filter: Types::TagFilter
|
238
|
+
attr_accessor close_status_filter: Types::CloseStatusFilter
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class CountOpenWorkflowExecutionsInput
|
243
|
+
attr_accessor domain: ::String
|
244
|
+
attr_accessor start_time_filter: Types::ExecutionTimeFilter
|
245
|
+
attr_accessor type_filter: Types::WorkflowTypeFilter
|
246
|
+
attr_accessor tag_filter: Types::TagFilter
|
247
|
+
attr_accessor execution_filter: Types::WorkflowExecutionFilter
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class CountPendingActivityTasksInput
|
252
|
+
attr_accessor domain: ::String
|
253
|
+
attr_accessor task_list: Types::TaskList
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class CountPendingDecisionTasksInput
|
258
|
+
attr_accessor domain: ::String
|
259
|
+
attr_accessor task_list: Types::TaskList
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class Decision
|
264
|
+
attr_accessor decision_type: ("ScheduleActivityTask" | "RequestCancelActivityTask" | "CompleteWorkflowExecution" | "FailWorkflowExecution" | "CancelWorkflowExecution" | "ContinueAsNewWorkflowExecution" | "RecordMarker" | "StartTimer" | "CancelTimer" | "SignalExternalWorkflowExecution" | "RequestCancelExternalWorkflowExecution" | "StartChildWorkflowExecution" | "ScheduleLambdaFunction")
|
265
|
+
attr_accessor schedule_activity_task_decision_attributes: Types::ScheduleActivityTaskDecisionAttributes
|
266
|
+
attr_accessor request_cancel_activity_task_decision_attributes: Types::RequestCancelActivityTaskDecisionAttributes
|
267
|
+
attr_accessor complete_workflow_execution_decision_attributes: Types::CompleteWorkflowExecutionDecisionAttributes
|
268
|
+
attr_accessor fail_workflow_execution_decision_attributes: Types::FailWorkflowExecutionDecisionAttributes
|
269
|
+
attr_accessor cancel_workflow_execution_decision_attributes: Types::CancelWorkflowExecutionDecisionAttributes
|
270
|
+
attr_accessor continue_as_new_workflow_execution_decision_attributes: Types::ContinueAsNewWorkflowExecutionDecisionAttributes
|
271
|
+
attr_accessor record_marker_decision_attributes: Types::RecordMarkerDecisionAttributes
|
272
|
+
attr_accessor start_timer_decision_attributes: Types::StartTimerDecisionAttributes
|
273
|
+
attr_accessor cancel_timer_decision_attributes: Types::CancelTimerDecisionAttributes
|
274
|
+
attr_accessor signal_external_workflow_execution_decision_attributes: Types::SignalExternalWorkflowExecutionDecisionAttributes
|
275
|
+
attr_accessor request_cancel_external_workflow_execution_decision_attributes: Types::RequestCancelExternalWorkflowExecutionDecisionAttributes
|
276
|
+
attr_accessor start_child_workflow_execution_decision_attributes: Types::StartChildWorkflowExecutionDecisionAttributes
|
277
|
+
attr_accessor schedule_lambda_function_decision_attributes: Types::ScheduleLambdaFunctionDecisionAttributes
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class DecisionTask
|
282
|
+
attr_accessor task_token: ::String
|
283
|
+
attr_accessor started_event_id: ::Integer
|
284
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
285
|
+
attr_accessor workflow_type: Types::WorkflowType
|
286
|
+
attr_accessor events: ::Array[Types::HistoryEvent]
|
287
|
+
attr_accessor next_page_token: ::String
|
288
|
+
attr_accessor previous_started_event_id: ::Integer
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class DecisionTaskCompletedEventAttributes
|
293
|
+
attr_accessor execution_context: ::String
|
294
|
+
attr_accessor scheduled_event_id: ::Integer
|
295
|
+
attr_accessor started_event_id: ::Integer
|
296
|
+
attr_accessor task_list: Types::TaskList
|
297
|
+
attr_accessor task_list_schedule_to_start_timeout: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class DecisionTaskScheduledEventAttributes
|
302
|
+
attr_accessor task_list: Types::TaskList
|
303
|
+
attr_accessor task_priority: ::String
|
304
|
+
attr_accessor start_to_close_timeout: ::String
|
305
|
+
attr_accessor schedule_to_start_timeout: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DecisionTaskStartedEventAttributes
|
310
|
+
attr_accessor identity: ::String
|
311
|
+
attr_accessor scheduled_event_id: ::Integer
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class DecisionTaskTimedOutEventAttributes
|
316
|
+
attr_accessor timeout_type: ("START_TO_CLOSE" | "SCHEDULE_TO_START")
|
317
|
+
attr_accessor scheduled_event_id: ::Integer
|
318
|
+
attr_accessor started_event_id: ::Integer
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class DefaultUndefinedFault
|
323
|
+
attr_accessor message: ::String
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class DeprecateActivityTypeInput
|
328
|
+
attr_accessor domain: ::String
|
329
|
+
attr_accessor activity_type: Types::ActivityType
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class DeprecateDomainInput
|
334
|
+
attr_accessor name: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class DeprecateWorkflowTypeInput
|
339
|
+
attr_accessor domain: ::String
|
340
|
+
attr_accessor workflow_type: Types::WorkflowType
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class DescribeActivityTypeInput
|
345
|
+
attr_accessor domain: ::String
|
346
|
+
attr_accessor activity_type: Types::ActivityType
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class DescribeDomainInput
|
351
|
+
attr_accessor name: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class DescribeWorkflowExecutionInput
|
356
|
+
attr_accessor domain: ::String
|
357
|
+
attr_accessor execution: Types::WorkflowExecution
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class DescribeWorkflowTypeInput
|
362
|
+
attr_accessor domain: ::String
|
363
|
+
attr_accessor workflow_type: Types::WorkflowType
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class DomainAlreadyExistsFault
|
368
|
+
attr_accessor message: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class DomainConfiguration
|
373
|
+
attr_accessor workflow_execution_retention_period_in_days: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class DomainDeprecatedFault
|
378
|
+
attr_accessor message: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class DomainDetail
|
383
|
+
attr_accessor domain_info: Types::DomainInfo
|
384
|
+
attr_accessor configuration: Types::DomainConfiguration
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class DomainInfo
|
389
|
+
attr_accessor name: ::String
|
390
|
+
attr_accessor status: ("REGISTERED" | "DEPRECATED")
|
391
|
+
attr_accessor description: ::String
|
392
|
+
attr_accessor arn: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class DomainInfos
|
397
|
+
attr_accessor domain_infos: ::Array[Types::DomainInfo]
|
398
|
+
attr_accessor next_page_token: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class ExecutionTimeFilter
|
403
|
+
attr_accessor oldest_date: ::Time
|
404
|
+
attr_accessor latest_date: ::Time
|
405
|
+
SENSITIVE: []
|
406
|
+
end
|
407
|
+
|
408
|
+
class ExternalWorkflowExecutionCancelRequestedEventAttributes
|
409
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
410
|
+
attr_accessor initiated_event_id: ::Integer
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class ExternalWorkflowExecutionSignaledEventAttributes
|
415
|
+
attr_accessor workflow_execution: Types::WorkflowExecution
|
416
|
+
attr_accessor initiated_event_id: ::Integer
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class FailWorkflowExecutionDecisionAttributes
|
421
|
+
attr_accessor reason: ::String
|
422
|
+
attr_accessor details: ::String
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class FailWorkflowExecutionFailedEventAttributes
|
427
|
+
attr_accessor cause: ("UNHANDLED_DECISION" | "OPERATION_NOT_PERMITTED")
|
428
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class GetWorkflowExecutionHistoryInput
|
433
|
+
attr_accessor domain: ::String
|
434
|
+
attr_accessor execution: Types::WorkflowExecution
|
435
|
+
attr_accessor next_page_token: ::String
|
436
|
+
attr_accessor maximum_page_size: ::Integer
|
437
|
+
attr_accessor reverse_order: bool
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class History
|
442
|
+
attr_accessor events: ::Array[Types::HistoryEvent]
|
443
|
+
attr_accessor next_page_token: ::String
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class HistoryEvent
|
448
|
+
attr_accessor event_timestamp: ::Time
|
449
|
+
attr_accessor event_type: ("WorkflowExecutionStarted" | "WorkflowExecutionCancelRequested" | "WorkflowExecutionCompleted" | "CompleteWorkflowExecutionFailed" | "WorkflowExecutionFailed" | "FailWorkflowExecutionFailed" | "WorkflowExecutionTimedOut" | "WorkflowExecutionCanceled" | "CancelWorkflowExecutionFailed" | "WorkflowExecutionContinuedAsNew" | "ContinueAsNewWorkflowExecutionFailed" | "WorkflowExecutionTerminated" | "DecisionTaskScheduled" | "DecisionTaskStarted" | "DecisionTaskCompleted" | "DecisionTaskTimedOut" | "ActivityTaskScheduled" | "ScheduleActivityTaskFailed" | "ActivityTaskStarted" | "ActivityTaskCompleted" | "ActivityTaskFailed" | "ActivityTaskTimedOut" | "ActivityTaskCanceled" | "ActivityTaskCancelRequested" | "RequestCancelActivityTaskFailed" | "WorkflowExecutionSignaled" | "MarkerRecorded" | "RecordMarkerFailed" | "TimerStarted" | "StartTimerFailed" | "TimerFired" | "TimerCanceled" | "CancelTimerFailed" | "StartChildWorkflowExecutionInitiated" | "StartChildWorkflowExecutionFailed" | "ChildWorkflowExecutionStarted" | "ChildWorkflowExecutionCompleted" | "ChildWorkflowExecutionFailed" | "ChildWorkflowExecutionTimedOut" | "ChildWorkflowExecutionCanceled" | "ChildWorkflowExecutionTerminated" | "SignalExternalWorkflowExecutionInitiated" | "SignalExternalWorkflowExecutionFailed" | "ExternalWorkflowExecutionSignaled" | "RequestCancelExternalWorkflowExecutionInitiated" | "RequestCancelExternalWorkflowExecutionFailed" | "ExternalWorkflowExecutionCancelRequested" | "LambdaFunctionScheduled" | "LambdaFunctionStarted" | "LambdaFunctionCompleted" | "LambdaFunctionFailed" | "LambdaFunctionTimedOut" | "ScheduleLambdaFunctionFailed" | "StartLambdaFunctionFailed")
|
450
|
+
attr_accessor event_id: ::Integer
|
451
|
+
attr_accessor workflow_execution_started_event_attributes: Types::WorkflowExecutionStartedEventAttributes
|
452
|
+
attr_accessor workflow_execution_completed_event_attributes: Types::WorkflowExecutionCompletedEventAttributes
|
453
|
+
attr_accessor complete_workflow_execution_failed_event_attributes: Types::CompleteWorkflowExecutionFailedEventAttributes
|
454
|
+
attr_accessor workflow_execution_failed_event_attributes: Types::WorkflowExecutionFailedEventAttributes
|
455
|
+
attr_accessor fail_workflow_execution_failed_event_attributes: Types::FailWorkflowExecutionFailedEventAttributes
|
456
|
+
attr_accessor workflow_execution_timed_out_event_attributes: Types::WorkflowExecutionTimedOutEventAttributes
|
457
|
+
attr_accessor workflow_execution_canceled_event_attributes: Types::WorkflowExecutionCanceledEventAttributes
|
458
|
+
attr_accessor cancel_workflow_execution_failed_event_attributes: Types::CancelWorkflowExecutionFailedEventAttributes
|
459
|
+
attr_accessor workflow_execution_continued_as_new_event_attributes: Types::WorkflowExecutionContinuedAsNewEventAttributes
|
460
|
+
attr_accessor continue_as_new_workflow_execution_failed_event_attributes: Types::ContinueAsNewWorkflowExecutionFailedEventAttributes
|
461
|
+
attr_accessor workflow_execution_terminated_event_attributes: Types::WorkflowExecutionTerminatedEventAttributes
|
462
|
+
attr_accessor workflow_execution_cancel_requested_event_attributes: Types::WorkflowExecutionCancelRequestedEventAttributes
|
463
|
+
attr_accessor decision_task_scheduled_event_attributes: Types::DecisionTaskScheduledEventAttributes
|
464
|
+
attr_accessor decision_task_started_event_attributes: Types::DecisionTaskStartedEventAttributes
|
465
|
+
attr_accessor decision_task_completed_event_attributes: Types::DecisionTaskCompletedEventAttributes
|
466
|
+
attr_accessor decision_task_timed_out_event_attributes: Types::DecisionTaskTimedOutEventAttributes
|
467
|
+
attr_accessor activity_task_scheduled_event_attributes: Types::ActivityTaskScheduledEventAttributes
|
468
|
+
attr_accessor activity_task_started_event_attributes: Types::ActivityTaskStartedEventAttributes
|
469
|
+
attr_accessor activity_task_completed_event_attributes: Types::ActivityTaskCompletedEventAttributes
|
470
|
+
attr_accessor activity_task_failed_event_attributes: Types::ActivityTaskFailedEventAttributes
|
471
|
+
attr_accessor activity_task_timed_out_event_attributes: Types::ActivityTaskTimedOutEventAttributes
|
472
|
+
attr_accessor activity_task_canceled_event_attributes: Types::ActivityTaskCanceledEventAttributes
|
473
|
+
attr_accessor activity_task_cancel_requested_event_attributes: Types::ActivityTaskCancelRequestedEventAttributes
|
474
|
+
attr_accessor workflow_execution_signaled_event_attributes: Types::WorkflowExecutionSignaledEventAttributes
|
475
|
+
attr_accessor marker_recorded_event_attributes: Types::MarkerRecordedEventAttributes
|
476
|
+
attr_accessor record_marker_failed_event_attributes: Types::RecordMarkerFailedEventAttributes
|
477
|
+
attr_accessor timer_started_event_attributes: Types::TimerStartedEventAttributes
|
478
|
+
attr_accessor timer_fired_event_attributes: Types::TimerFiredEventAttributes
|
479
|
+
attr_accessor timer_canceled_event_attributes: Types::TimerCanceledEventAttributes
|
480
|
+
attr_accessor start_child_workflow_execution_initiated_event_attributes: Types::StartChildWorkflowExecutionInitiatedEventAttributes
|
481
|
+
attr_accessor child_workflow_execution_started_event_attributes: Types::ChildWorkflowExecutionStartedEventAttributes
|
482
|
+
attr_accessor child_workflow_execution_completed_event_attributes: Types::ChildWorkflowExecutionCompletedEventAttributes
|
483
|
+
attr_accessor child_workflow_execution_failed_event_attributes: Types::ChildWorkflowExecutionFailedEventAttributes
|
484
|
+
attr_accessor child_workflow_execution_timed_out_event_attributes: Types::ChildWorkflowExecutionTimedOutEventAttributes
|
485
|
+
attr_accessor child_workflow_execution_canceled_event_attributes: Types::ChildWorkflowExecutionCanceledEventAttributes
|
486
|
+
attr_accessor child_workflow_execution_terminated_event_attributes: Types::ChildWorkflowExecutionTerminatedEventAttributes
|
487
|
+
attr_accessor signal_external_workflow_execution_initiated_event_attributes: Types::SignalExternalWorkflowExecutionInitiatedEventAttributes
|
488
|
+
attr_accessor external_workflow_execution_signaled_event_attributes: Types::ExternalWorkflowExecutionSignaledEventAttributes
|
489
|
+
attr_accessor signal_external_workflow_execution_failed_event_attributes: Types::SignalExternalWorkflowExecutionFailedEventAttributes
|
490
|
+
attr_accessor external_workflow_execution_cancel_requested_event_attributes: Types::ExternalWorkflowExecutionCancelRequestedEventAttributes
|
491
|
+
attr_accessor request_cancel_external_workflow_execution_initiated_event_attributes: Types::RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
|
492
|
+
attr_accessor request_cancel_external_workflow_execution_failed_event_attributes: Types::RequestCancelExternalWorkflowExecutionFailedEventAttributes
|
493
|
+
attr_accessor schedule_activity_task_failed_event_attributes: Types::ScheduleActivityTaskFailedEventAttributes
|
494
|
+
attr_accessor request_cancel_activity_task_failed_event_attributes: Types::RequestCancelActivityTaskFailedEventAttributes
|
495
|
+
attr_accessor start_timer_failed_event_attributes: Types::StartTimerFailedEventAttributes
|
496
|
+
attr_accessor cancel_timer_failed_event_attributes: Types::CancelTimerFailedEventAttributes
|
497
|
+
attr_accessor start_child_workflow_execution_failed_event_attributes: Types::StartChildWorkflowExecutionFailedEventAttributes
|
498
|
+
attr_accessor lambda_function_scheduled_event_attributes: Types::LambdaFunctionScheduledEventAttributes
|
499
|
+
attr_accessor lambda_function_started_event_attributes: Types::LambdaFunctionStartedEventAttributes
|
500
|
+
attr_accessor lambda_function_completed_event_attributes: Types::LambdaFunctionCompletedEventAttributes
|
501
|
+
attr_accessor lambda_function_failed_event_attributes: Types::LambdaFunctionFailedEventAttributes
|
502
|
+
attr_accessor lambda_function_timed_out_event_attributes: Types::LambdaFunctionTimedOutEventAttributes
|
503
|
+
attr_accessor schedule_lambda_function_failed_event_attributes: Types::ScheduleLambdaFunctionFailedEventAttributes
|
504
|
+
attr_accessor start_lambda_function_failed_event_attributes: Types::StartLambdaFunctionFailedEventAttributes
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class LambdaFunctionCompletedEventAttributes
|
509
|
+
attr_accessor scheduled_event_id: ::Integer
|
510
|
+
attr_accessor started_event_id: ::Integer
|
511
|
+
attr_accessor result: ::String
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class LambdaFunctionFailedEventAttributes
|
516
|
+
attr_accessor scheduled_event_id: ::Integer
|
517
|
+
attr_accessor started_event_id: ::Integer
|
518
|
+
attr_accessor reason: ::String
|
519
|
+
attr_accessor details: ::String
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class LambdaFunctionScheduledEventAttributes
|
524
|
+
attr_accessor id: ::String
|
525
|
+
attr_accessor name: ::String
|
526
|
+
attr_accessor control: ::String
|
527
|
+
attr_accessor input: ::String
|
528
|
+
attr_accessor start_to_close_timeout: ::String
|
529
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class LambdaFunctionStartedEventAttributes
|
534
|
+
attr_accessor scheduled_event_id: ::Integer
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
|
538
|
+
class LambdaFunctionTimedOutEventAttributes
|
539
|
+
attr_accessor scheduled_event_id: ::Integer
|
540
|
+
attr_accessor started_event_id: ::Integer
|
541
|
+
attr_accessor timeout_type: ("START_TO_CLOSE")
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class LimitExceededFault
|
546
|
+
attr_accessor message: ::String
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class ListActivityTypesInput
|
551
|
+
attr_accessor domain: ::String
|
552
|
+
attr_accessor name: ::String
|
553
|
+
attr_accessor registration_status: ("REGISTERED" | "DEPRECATED")
|
554
|
+
attr_accessor next_page_token: ::String
|
555
|
+
attr_accessor maximum_page_size: ::Integer
|
556
|
+
attr_accessor reverse_order: bool
|
557
|
+
SENSITIVE: []
|
558
|
+
end
|
559
|
+
|
560
|
+
class ListClosedWorkflowExecutionsInput
|
561
|
+
attr_accessor domain: ::String
|
562
|
+
attr_accessor start_time_filter: Types::ExecutionTimeFilter
|
563
|
+
attr_accessor close_time_filter: Types::ExecutionTimeFilter
|
564
|
+
attr_accessor execution_filter: Types::WorkflowExecutionFilter
|
565
|
+
attr_accessor close_status_filter: Types::CloseStatusFilter
|
566
|
+
attr_accessor type_filter: Types::WorkflowTypeFilter
|
567
|
+
attr_accessor tag_filter: Types::TagFilter
|
568
|
+
attr_accessor next_page_token: ::String
|
569
|
+
attr_accessor maximum_page_size: ::Integer
|
570
|
+
attr_accessor reverse_order: bool
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class ListDomainsInput
|
575
|
+
attr_accessor next_page_token: ::String
|
576
|
+
attr_accessor registration_status: ("REGISTERED" | "DEPRECATED")
|
577
|
+
attr_accessor maximum_page_size: ::Integer
|
578
|
+
attr_accessor reverse_order: bool
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class ListOpenWorkflowExecutionsInput
|
583
|
+
attr_accessor domain: ::String
|
584
|
+
attr_accessor start_time_filter: Types::ExecutionTimeFilter
|
585
|
+
attr_accessor type_filter: Types::WorkflowTypeFilter
|
586
|
+
attr_accessor tag_filter: Types::TagFilter
|
587
|
+
attr_accessor next_page_token: ::String
|
588
|
+
attr_accessor maximum_page_size: ::Integer
|
589
|
+
attr_accessor reverse_order: bool
|
590
|
+
attr_accessor execution_filter: Types::WorkflowExecutionFilter
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class ListTagsForResourceInput
|
595
|
+
attr_accessor resource_arn: ::String
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class ListTagsForResourceOutput
|
600
|
+
attr_accessor tags: ::Array[Types::ResourceTag]
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class ListWorkflowTypesInput
|
605
|
+
attr_accessor domain: ::String
|
606
|
+
attr_accessor name: ::String
|
607
|
+
attr_accessor registration_status: ("REGISTERED" | "DEPRECATED")
|
608
|
+
attr_accessor next_page_token: ::String
|
609
|
+
attr_accessor maximum_page_size: ::Integer
|
610
|
+
attr_accessor reverse_order: bool
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class MarkerRecordedEventAttributes
|
615
|
+
attr_accessor marker_name: ::String
|
616
|
+
attr_accessor details: ::String
|
617
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
621
|
+
class OperationNotPermittedFault
|
622
|
+
attr_accessor message: ::String
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class PendingTaskCount
|
627
|
+
attr_accessor count: ::Integer
|
628
|
+
attr_accessor truncated: bool
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class PollForActivityTaskInput
|
633
|
+
attr_accessor domain: ::String
|
634
|
+
attr_accessor task_list: Types::TaskList
|
635
|
+
attr_accessor identity: ::String
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class PollForDecisionTaskInput
|
640
|
+
attr_accessor domain: ::String
|
641
|
+
attr_accessor task_list: Types::TaskList
|
642
|
+
attr_accessor identity: ::String
|
643
|
+
attr_accessor next_page_token: ::String
|
644
|
+
attr_accessor maximum_page_size: ::Integer
|
645
|
+
attr_accessor reverse_order: bool
|
646
|
+
attr_accessor start_at_previous_started_event: bool
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class RecordActivityTaskHeartbeatInput
|
651
|
+
attr_accessor task_token: ::String
|
652
|
+
attr_accessor details: ::String
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class RecordMarkerDecisionAttributes
|
657
|
+
attr_accessor marker_name: ::String
|
658
|
+
attr_accessor details: ::String
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class RecordMarkerFailedEventAttributes
|
663
|
+
attr_accessor marker_name: ::String
|
664
|
+
attr_accessor cause: ("OPERATION_NOT_PERMITTED")
|
665
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class RegisterActivityTypeInput
|
670
|
+
attr_accessor domain: ::String
|
671
|
+
attr_accessor name: ::String
|
672
|
+
attr_accessor version: ::String
|
673
|
+
attr_accessor description: ::String
|
674
|
+
attr_accessor default_task_start_to_close_timeout: ::String
|
675
|
+
attr_accessor default_task_heartbeat_timeout: ::String
|
676
|
+
attr_accessor default_task_list: Types::TaskList
|
677
|
+
attr_accessor default_task_priority: ::String
|
678
|
+
attr_accessor default_task_schedule_to_start_timeout: ::String
|
679
|
+
attr_accessor default_task_schedule_to_close_timeout: ::String
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class RegisterDomainInput
|
684
|
+
attr_accessor name: ::String
|
685
|
+
attr_accessor description: ::String
|
686
|
+
attr_accessor workflow_execution_retention_period_in_days: ::String
|
687
|
+
attr_accessor tags: ::Array[Types::ResourceTag]
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class RegisterWorkflowTypeInput
|
692
|
+
attr_accessor domain: ::String
|
693
|
+
attr_accessor name: ::String
|
694
|
+
attr_accessor version: ::String
|
695
|
+
attr_accessor description: ::String
|
696
|
+
attr_accessor default_task_start_to_close_timeout: ::String
|
697
|
+
attr_accessor default_execution_start_to_close_timeout: ::String
|
698
|
+
attr_accessor default_task_list: Types::TaskList
|
699
|
+
attr_accessor default_task_priority: ::String
|
700
|
+
attr_accessor default_child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
701
|
+
attr_accessor default_lambda_role: ::String
|
702
|
+
SENSITIVE: []
|
703
|
+
end
|
704
|
+
|
705
|
+
class RequestCancelActivityTaskDecisionAttributes
|
706
|
+
attr_accessor activity_id: ::String
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class RequestCancelActivityTaskFailedEventAttributes
|
711
|
+
attr_accessor activity_id: ::String
|
712
|
+
attr_accessor cause: ("ACTIVITY_ID_UNKNOWN" | "OPERATION_NOT_PERMITTED")
|
713
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class RequestCancelExternalWorkflowExecutionDecisionAttributes
|
718
|
+
attr_accessor workflow_id: ::String
|
719
|
+
attr_accessor run_id: ::String
|
720
|
+
attr_accessor control: ::String
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class RequestCancelExternalWorkflowExecutionFailedEventAttributes
|
725
|
+
attr_accessor workflow_id: ::String
|
726
|
+
attr_accessor run_id: ::String
|
727
|
+
attr_accessor cause: ("UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION" | "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED" | "OPERATION_NOT_PERMITTED")
|
728
|
+
attr_accessor initiated_event_id: ::Integer
|
729
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
730
|
+
attr_accessor control: ::String
|
731
|
+
SENSITIVE: []
|
732
|
+
end
|
733
|
+
|
734
|
+
class RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
|
735
|
+
attr_accessor workflow_id: ::String
|
736
|
+
attr_accessor run_id: ::String
|
737
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
738
|
+
attr_accessor control: ::String
|
739
|
+
SENSITIVE: []
|
740
|
+
end
|
741
|
+
|
742
|
+
class RequestCancelWorkflowExecutionInput
|
743
|
+
attr_accessor domain: ::String
|
744
|
+
attr_accessor workflow_id: ::String
|
745
|
+
attr_accessor run_id: ::String
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class ResourceTag
|
750
|
+
attr_accessor key: ::String
|
751
|
+
attr_accessor value: ::String
|
752
|
+
SENSITIVE: []
|
753
|
+
end
|
754
|
+
|
755
|
+
class RespondActivityTaskCanceledInput
|
756
|
+
attr_accessor task_token: ::String
|
757
|
+
attr_accessor details: ::String
|
758
|
+
SENSITIVE: []
|
759
|
+
end
|
760
|
+
|
761
|
+
class RespondActivityTaskCompletedInput
|
762
|
+
attr_accessor task_token: ::String
|
763
|
+
attr_accessor result: ::String
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class RespondActivityTaskFailedInput
|
768
|
+
attr_accessor task_token: ::String
|
769
|
+
attr_accessor reason: ::String
|
770
|
+
attr_accessor details: ::String
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class RespondDecisionTaskCompletedInput
|
775
|
+
attr_accessor task_token: ::String
|
776
|
+
attr_accessor decisions: ::Array[Types::Decision]
|
777
|
+
attr_accessor execution_context: ::String
|
778
|
+
attr_accessor task_list: Types::TaskList
|
779
|
+
attr_accessor task_list_schedule_to_start_timeout: ::String
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class Run
|
784
|
+
attr_accessor run_id: ::String
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class ScheduleActivityTaskDecisionAttributes
|
789
|
+
attr_accessor activity_type: Types::ActivityType
|
790
|
+
attr_accessor activity_id: ::String
|
791
|
+
attr_accessor control: ::String
|
792
|
+
attr_accessor input: ::String
|
793
|
+
attr_accessor schedule_to_close_timeout: ::String
|
794
|
+
attr_accessor task_list: Types::TaskList
|
795
|
+
attr_accessor task_priority: ::String
|
796
|
+
attr_accessor schedule_to_start_timeout: ::String
|
797
|
+
attr_accessor start_to_close_timeout: ::String
|
798
|
+
attr_accessor heartbeat_timeout: ::String
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class ScheduleActivityTaskFailedEventAttributes
|
803
|
+
attr_accessor activity_type: Types::ActivityType
|
804
|
+
attr_accessor activity_id: ::String
|
805
|
+
attr_accessor cause: ("ACTIVITY_TYPE_DEPRECATED" | "ACTIVITY_TYPE_DOES_NOT_EXIST" | "ACTIVITY_ID_ALREADY_IN_USE" | "OPEN_ACTIVITIES_LIMIT_EXCEEDED" | "ACTIVITY_CREATION_RATE_EXCEEDED" | "DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED" | "DEFAULT_TASK_LIST_UNDEFINED" | "DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED" | "DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED" | "DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED" | "OPERATION_NOT_PERMITTED")
|
806
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
807
|
+
SENSITIVE: []
|
808
|
+
end
|
809
|
+
|
810
|
+
class ScheduleLambdaFunctionDecisionAttributes
|
811
|
+
attr_accessor id: ::String
|
812
|
+
attr_accessor name: ::String
|
813
|
+
attr_accessor control: ::String
|
814
|
+
attr_accessor input: ::String
|
815
|
+
attr_accessor start_to_close_timeout: ::String
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class ScheduleLambdaFunctionFailedEventAttributes
|
820
|
+
attr_accessor id: ::String
|
821
|
+
attr_accessor name: ::String
|
822
|
+
attr_accessor cause: ("ID_ALREADY_IN_USE" | "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED" | "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED" | "LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION")
|
823
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class SignalExternalWorkflowExecutionDecisionAttributes
|
828
|
+
attr_accessor workflow_id: ::String
|
829
|
+
attr_accessor run_id: ::String
|
830
|
+
attr_accessor signal_name: ::String
|
831
|
+
attr_accessor input: ::String
|
832
|
+
attr_accessor control: ::String
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
|
836
|
+
class SignalExternalWorkflowExecutionFailedEventAttributes
|
837
|
+
attr_accessor workflow_id: ::String
|
838
|
+
attr_accessor run_id: ::String
|
839
|
+
attr_accessor cause: ("UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION" | "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED" | "OPERATION_NOT_PERMITTED")
|
840
|
+
attr_accessor initiated_event_id: ::Integer
|
841
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
842
|
+
attr_accessor control: ::String
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class SignalExternalWorkflowExecutionInitiatedEventAttributes
|
847
|
+
attr_accessor workflow_id: ::String
|
848
|
+
attr_accessor run_id: ::String
|
849
|
+
attr_accessor signal_name: ::String
|
850
|
+
attr_accessor input: ::String
|
851
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
852
|
+
attr_accessor control: ::String
|
853
|
+
SENSITIVE: []
|
854
|
+
end
|
855
|
+
|
856
|
+
class SignalWorkflowExecutionInput
|
857
|
+
attr_accessor domain: ::String
|
858
|
+
attr_accessor workflow_id: ::String
|
859
|
+
attr_accessor run_id: ::String
|
860
|
+
attr_accessor signal_name: ::String
|
861
|
+
attr_accessor input: ::String
|
862
|
+
SENSITIVE: []
|
863
|
+
end
|
864
|
+
|
865
|
+
class StartChildWorkflowExecutionDecisionAttributes
|
866
|
+
attr_accessor workflow_type: Types::WorkflowType
|
867
|
+
attr_accessor workflow_id: ::String
|
868
|
+
attr_accessor control: ::String
|
869
|
+
attr_accessor input: ::String
|
870
|
+
attr_accessor execution_start_to_close_timeout: ::String
|
871
|
+
attr_accessor task_list: Types::TaskList
|
872
|
+
attr_accessor task_priority: ::String
|
873
|
+
attr_accessor task_start_to_close_timeout: ::String
|
874
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
875
|
+
attr_accessor tag_list: ::Array[::String]
|
876
|
+
attr_accessor lambda_role: ::String
|
877
|
+
SENSITIVE: []
|
878
|
+
end
|
879
|
+
|
880
|
+
class StartChildWorkflowExecutionFailedEventAttributes
|
881
|
+
attr_accessor workflow_type: Types::WorkflowType
|
882
|
+
attr_accessor cause: ("WORKFLOW_TYPE_DOES_NOT_EXIST" | "WORKFLOW_TYPE_DEPRECATED" | "OPEN_CHILDREN_LIMIT_EXCEEDED" | "OPEN_WORKFLOWS_LIMIT_EXCEEDED" | "CHILD_CREATION_RATE_EXCEEDED" | "WORKFLOW_ALREADY_RUNNING" | "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED" | "DEFAULT_TASK_LIST_UNDEFINED" | "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED" | "DEFAULT_CHILD_POLICY_UNDEFINED" | "OPERATION_NOT_PERMITTED")
|
883
|
+
attr_accessor workflow_id: ::String
|
884
|
+
attr_accessor initiated_event_id: ::Integer
|
885
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
886
|
+
attr_accessor control: ::String
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class StartChildWorkflowExecutionInitiatedEventAttributes
|
891
|
+
attr_accessor workflow_id: ::String
|
892
|
+
attr_accessor workflow_type: Types::WorkflowType
|
893
|
+
attr_accessor control: ::String
|
894
|
+
attr_accessor input: ::String
|
895
|
+
attr_accessor execution_start_to_close_timeout: ::String
|
896
|
+
attr_accessor task_list: Types::TaskList
|
897
|
+
attr_accessor task_priority: ::String
|
898
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
899
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
900
|
+
attr_accessor task_start_to_close_timeout: ::String
|
901
|
+
attr_accessor tag_list: ::Array[::String]
|
902
|
+
attr_accessor lambda_role: ::String
|
903
|
+
SENSITIVE: []
|
904
|
+
end
|
905
|
+
|
906
|
+
class StartLambdaFunctionFailedEventAttributes
|
907
|
+
attr_accessor scheduled_event_id: ::Integer
|
908
|
+
attr_accessor cause: ("ASSUME_ROLE_FAILED")
|
909
|
+
attr_accessor message: ::String
|
910
|
+
SENSITIVE: []
|
911
|
+
end
|
912
|
+
|
913
|
+
class StartTimerDecisionAttributes
|
914
|
+
attr_accessor timer_id: ::String
|
915
|
+
attr_accessor control: ::String
|
916
|
+
attr_accessor start_to_fire_timeout: ::String
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class StartTimerFailedEventAttributes
|
921
|
+
attr_accessor timer_id: ::String
|
922
|
+
attr_accessor cause: ("TIMER_ID_ALREADY_IN_USE" | "OPEN_TIMERS_LIMIT_EXCEEDED" | "TIMER_CREATION_RATE_EXCEEDED" | "OPERATION_NOT_PERMITTED")
|
923
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
924
|
+
SENSITIVE: []
|
925
|
+
end
|
926
|
+
|
927
|
+
class StartWorkflowExecutionInput
|
928
|
+
attr_accessor domain: ::String
|
929
|
+
attr_accessor workflow_id: ::String
|
930
|
+
attr_accessor workflow_type: Types::WorkflowType
|
931
|
+
attr_accessor task_list: Types::TaskList
|
932
|
+
attr_accessor task_priority: ::String
|
933
|
+
attr_accessor input: ::String
|
934
|
+
attr_accessor execution_start_to_close_timeout: ::String
|
935
|
+
attr_accessor tag_list: ::Array[::String]
|
936
|
+
attr_accessor task_start_to_close_timeout: ::String
|
937
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
938
|
+
attr_accessor lambda_role: ::String
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class TagFilter
|
943
|
+
attr_accessor tag: ::String
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class TagResourceInput
|
948
|
+
attr_accessor resource_arn: ::String
|
949
|
+
attr_accessor tags: ::Array[Types::ResourceTag]
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class TaskList
|
954
|
+
attr_accessor name: ::String
|
955
|
+
SENSITIVE: []
|
956
|
+
end
|
957
|
+
|
958
|
+
class TerminateWorkflowExecutionInput
|
959
|
+
attr_accessor domain: ::String
|
960
|
+
attr_accessor workflow_id: ::String
|
961
|
+
attr_accessor run_id: ::String
|
962
|
+
attr_accessor reason: ::String
|
963
|
+
attr_accessor details: ::String
|
964
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class TimerCanceledEventAttributes
|
969
|
+
attr_accessor timer_id: ::String
|
970
|
+
attr_accessor started_event_id: ::Integer
|
971
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
972
|
+
SENSITIVE: []
|
973
|
+
end
|
974
|
+
|
975
|
+
class TimerFiredEventAttributes
|
976
|
+
attr_accessor timer_id: ::String
|
977
|
+
attr_accessor started_event_id: ::Integer
|
978
|
+
SENSITIVE: []
|
979
|
+
end
|
980
|
+
|
981
|
+
class TimerStartedEventAttributes
|
982
|
+
attr_accessor timer_id: ::String
|
983
|
+
attr_accessor control: ::String
|
984
|
+
attr_accessor start_to_fire_timeout: ::String
|
985
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
986
|
+
SENSITIVE: []
|
987
|
+
end
|
988
|
+
|
989
|
+
class TooManyTagsFault
|
990
|
+
attr_accessor message: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class TypeAlreadyExistsFault
|
995
|
+
attr_accessor message: ::String
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class TypeDeprecatedFault
|
1000
|
+
attr_accessor message: ::String
|
1001
|
+
SENSITIVE: []
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
class UndeprecateActivityTypeInput
|
1005
|
+
attr_accessor domain: ::String
|
1006
|
+
attr_accessor activity_type: Types::ActivityType
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class UndeprecateDomainInput
|
1011
|
+
attr_accessor name: ::String
|
1012
|
+
SENSITIVE: []
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class UndeprecateWorkflowTypeInput
|
1016
|
+
attr_accessor domain: ::String
|
1017
|
+
attr_accessor workflow_type: Types::WorkflowType
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class UnknownResourceFault
|
1022
|
+
attr_accessor message: ::String
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class UntagResourceInput
|
1027
|
+
attr_accessor resource_arn: ::String
|
1028
|
+
attr_accessor tag_keys: ::Array[::String]
|
1029
|
+
SENSITIVE: []
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
class WorkflowExecution
|
1033
|
+
attr_accessor workflow_id: ::String
|
1034
|
+
attr_accessor run_id: ::String
|
1035
|
+
SENSITIVE: []
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
class WorkflowExecutionAlreadyStartedFault
|
1039
|
+
attr_accessor message: ::String
|
1040
|
+
SENSITIVE: []
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
class WorkflowExecutionCancelRequestedEventAttributes
|
1044
|
+
attr_accessor external_workflow_execution: Types::WorkflowExecution
|
1045
|
+
attr_accessor external_initiated_event_id: ::Integer
|
1046
|
+
attr_accessor cause: ("CHILD_POLICY_APPLIED")
|
1047
|
+
SENSITIVE: []
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
class WorkflowExecutionCanceledEventAttributes
|
1051
|
+
attr_accessor details: ::String
|
1052
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class WorkflowExecutionCompletedEventAttributes
|
1057
|
+
attr_accessor result: ::String
|
1058
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class WorkflowExecutionConfiguration
|
1063
|
+
attr_accessor task_start_to_close_timeout: ::String
|
1064
|
+
attr_accessor execution_start_to_close_timeout: ::String
|
1065
|
+
attr_accessor task_list: Types::TaskList
|
1066
|
+
attr_accessor task_priority: ::String
|
1067
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
1068
|
+
attr_accessor lambda_role: ::String
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class WorkflowExecutionContinuedAsNewEventAttributes
|
1073
|
+
attr_accessor input: ::String
|
1074
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
1075
|
+
attr_accessor new_execution_run_id: ::String
|
1076
|
+
attr_accessor execution_start_to_close_timeout: ::String
|
1077
|
+
attr_accessor task_list: Types::TaskList
|
1078
|
+
attr_accessor task_priority: ::String
|
1079
|
+
attr_accessor task_start_to_close_timeout: ::String
|
1080
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
1081
|
+
attr_accessor tag_list: ::Array[::String]
|
1082
|
+
attr_accessor workflow_type: Types::WorkflowType
|
1083
|
+
attr_accessor lambda_role: ::String
|
1084
|
+
SENSITIVE: []
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class WorkflowExecutionCount
|
1088
|
+
attr_accessor count: ::Integer
|
1089
|
+
attr_accessor truncated: bool
|
1090
|
+
SENSITIVE: []
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
class WorkflowExecutionDetail
|
1094
|
+
attr_accessor execution_info: Types::WorkflowExecutionInfo
|
1095
|
+
attr_accessor execution_configuration: Types::WorkflowExecutionConfiguration
|
1096
|
+
attr_accessor open_counts: Types::WorkflowExecutionOpenCounts
|
1097
|
+
attr_accessor latest_activity_task_timestamp: ::Time
|
1098
|
+
attr_accessor latest_execution_context: ::String
|
1099
|
+
SENSITIVE: []
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class WorkflowExecutionFailedEventAttributes
|
1103
|
+
attr_accessor reason: ::String
|
1104
|
+
attr_accessor details: ::String
|
1105
|
+
attr_accessor decision_task_completed_event_id: ::Integer
|
1106
|
+
SENSITIVE: []
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
class WorkflowExecutionFilter
|
1110
|
+
attr_accessor workflow_id: ::String
|
1111
|
+
SENSITIVE: []
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class WorkflowExecutionInfo
|
1115
|
+
attr_accessor execution: Types::WorkflowExecution
|
1116
|
+
attr_accessor workflow_type: Types::WorkflowType
|
1117
|
+
attr_accessor start_timestamp: ::Time
|
1118
|
+
attr_accessor close_timestamp: ::Time
|
1119
|
+
attr_accessor execution_status: ("OPEN" | "CLOSED")
|
1120
|
+
attr_accessor close_status: ("COMPLETED" | "FAILED" | "CANCELED" | "TERMINATED" | "CONTINUED_AS_NEW" | "TIMED_OUT")
|
1121
|
+
attr_accessor parent: Types::WorkflowExecution
|
1122
|
+
attr_accessor tag_list: ::Array[::String]
|
1123
|
+
attr_accessor cancel_requested: bool
|
1124
|
+
SENSITIVE: []
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class WorkflowExecutionInfos
|
1128
|
+
attr_accessor execution_infos: ::Array[Types::WorkflowExecutionInfo]
|
1129
|
+
attr_accessor next_page_token: ::String
|
1130
|
+
SENSITIVE: []
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class WorkflowExecutionOpenCounts
|
1134
|
+
attr_accessor open_activity_tasks: ::Integer
|
1135
|
+
attr_accessor open_decision_tasks: ::Integer
|
1136
|
+
attr_accessor open_timers: ::Integer
|
1137
|
+
attr_accessor open_child_workflow_executions: ::Integer
|
1138
|
+
attr_accessor open_lambda_functions: ::Integer
|
1139
|
+
SENSITIVE: []
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class WorkflowExecutionSignaledEventAttributes
|
1143
|
+
attr_accessor signal_name: ::String
|
1144
|
+
attr_accessor input: ::String
|
1145
|
+
attr_accessor external_workflow_execution: Types::WorkflowExecution
|
1146
|
+
attr_accessor external_initiated_event_id: ::Integer
|
1147
|
+
SENSITIVE: []
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class WorkflowExecutionStartedEventAttributes
|
1151
|
+
attr_accessor input: ::String
|
1152
|
+
attr_accessor execution_start_to_close_timeout: ::String
|
1153
|
+
attr_accessor task_start_to_close_timeout: ::String
|
1154
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
1155
|
+
attr_accessor task_list: Types::TaskList
|
1156
|
+
attr_accessor task_priority: ::String
|
1157
|
+
attr_accessor workflow_type: Types::WorkflowType
|
1158
|
+
attr_accessor tag_list: ::Array[::String]
|
1159
|
+
attr_accessor continued_execution_run_id: ::String
|
1160
|
+
attr_accessor parent_workflow_execution: Types::WorkflowExecution
|
1161
|
+
attr_accessor parent_initiated_event_id: ::Integer
|
1162
|
+
attr_accessor lambda_role: ::String
|
1163
|
+
SENSITIVE: []
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
class WorkflowExecutionTerminatedEventAttributes
|
1167
|
+
attr_accessor reason: ::String
|
1168
|
+
attr_accessor details: ::String
|
1169
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
1170
|
+
attr_accessor cause: ("CHILD_POLICY_APPLIED" | "EVENT_LIMIT_EXCEEDED" | "OPERATOR_INITIATED")
|
1171
|
+
SENSITIVE: []
|
1172
|
+
end
|
1173
|
+
|
1174
|
+
class WorkflowExecutionTimedOutEventAttributes
|
1175
|
+
attr_accessor timeout_type: ("START_TO_CLOSE")
|
1176
|
+
attr_accessor child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
1177
|
+
SENSITIVE: []
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
class WorkflowType
|
1181
|
+
attr_accessor name: ::String
|
1182
|
+
attr_accessor version: ::String
|
1183
|
+
SENSITIVE: []
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
class WorkflowTypeConfiguration
|
1187
|
+
attr_accessor default_task_start_to_close_timeout: ::String
|
1188
|
+
attr_accessor default_execution_start_to_close_timeout: ::String
|
1189
|
+
attr_accessor default_task_list: Types::TaskList
|
1190
|
+
attr_accessor default_task_priority: ::String
|
1191
|
+
attr_accessor default_child_policy: ("TERMINATE" | "REQUEST_CANCEL" | "ABANDON")
|
1192
|
+
attr_accessor default_lambda_role: ::String
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class WorkflowTypeDetail
|
1197
|
+
attr_accessor type_info: Types::WorkflowTypeInfo
|
1198
|
+
attr_accessor configuration: Types::WorkflowTypeConfiguration
|
1199
|
+
SENSITIVE: []
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class WorkflowTypeFilter
|
1203
|
+
attr_accessor name: ::String
|
1204
|
+
attr_accessor version: ::String
|
1205
|
+
SENSITIVE: []
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
class WorkflowTypeInfo
|
1209
|
+
attr_accessor workflow_type: Types::WorkflowType
|
1210
|
+
attr_accessor status: ("REGISTERED" | "DEPRECATED")
|
1211
|
+
attr_accessor description: ::String
|
1212
|
+
attr_accessor creation_date: ::Time
|
1213
|
+
attr_accessor deprecation_date: ::Time
|
1214
|
+
SENSITIVE: []
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class WorkflowTypeInfos
|
1218
|
+
attr_accessor type_infos: ::Array[Types::WorkflowTypeInfo]
|
1219
|
+
attr_accessor next_page_token: ::String
|
1220
|
+
SENSITIVE: []
|
1221
|
+
end
|
1222
|
+
end
|
1223
|
+
end
|