aws-sdk-states 1.63.0 → 1.65.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-states/client.rb +141 -46
- data/lib/aws-sdk-states/client_api.rb +36 -0
- data/lib/aws-sdk-states/endpoints.rb +14 -0
- data/lib/aws-sdk-states/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-states/types.rb +79 -0
- data/lib/aws-sdk-states.rb +1 -1
- data/sig/client.rbs +637 -0
- data/sig/errors.rbs +103 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1096 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1096 @@
|
|
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::States
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ActivityDoesNotExist
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ActivityFailedEventDetails
|
17
|
+
attr_accessor error: ::String
|
18
|
+
attr_accessor cause: ::String
|
19
|
+
SENSITIVE: [:error, :cause]
|
20
|
+
end
|
21
|
+
|
22
|
+
class ActivityLimitExceeded
|
23
|
+
attr_accessor message: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class ActivityListItem
|
28
|
+
attr_accessor activity_arn: ::String
|
29
|
+
attr_accessor name: ::String
|
30
|
+
attr_accessor creation_date: ::Time
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class ActivityScheduleFailedEventDetails
|
35
|
+
attr_accessor error: ::String
|
36
|
+
attr_accessor cause: ::String
|
37
|
+
SENSITIVE: [:error, :cause]
|
38
|
+
end
|
39
|
+
|
40
|
+
class ActivityScheduledEventDetails
|
41
|
+
attr_accessor resource: ::String
|
42
|
+
attr_accessor input: ::String
|
43
|
+
attr_accessor input_details: Types::HistoryEventExecutionDataDetails
|
44
|
+
attr_accessor timeout_in_seconds: ::Integer
|
45
|
+
attr_accessor heartbeat_in_seconds: ::Integer
|
46
|
+
SENSITIVE: [:input]
|
47
|
+
end
|
48
|
+
|
49
|
+
class ActivityStartedEventDetails
|
50
|
+
attr_accessor worker_name: ::String
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class ActivitySucceededEventDetails
|
55
|
+
attr_accessor output: ::String
|
56
|
+
attr_accessor output_details: Types::HistoryEventExecutionDataDetails
|
57
|
+
SENSITIVE: [:output]
|
58
|
+
end
|
59
|
+
|
60
|
+
class ActivityTimedOutEventDetails
|
61
|
+
attr_accessor error: ::String
|
62
|
+
attr_accessor cause: ::String
|
63
|
+
SENSITIVE: [:error, :cause]
|
64
|
+
end
|
65
|
+
|
66
|
+
class ActivityWorkerLimitExceeded
|
67
|
+
attr_accessor message: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class BillingDetails
|
72
|
+
attr_accessor billed_memory_used_in_mb: ::Integer
|
73
|
+
attr_accessor billed_duration_in_milliseconds: ::Integer
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class CloudWatchEventsExecutionDataDetails
|
78
|
+
attr_accessor included: bool
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class CloudWatchLogsLogGroup
|
83
|
+
attr_accessor log_group_arn: ::String
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class ConflictException
|
88
|
+
attr_accessor message: ::String
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class CreateActivityInput
|
93
|
+
attr_accessor name: ::String
|
94
|
+
attr_accessor tags: ::Array[Types::Tag]
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class CreateActivityOutput
|
99
|
+
attr_accessor activity_arn: ::String
|
100
|
+
attr_accessor creation_date: ::Time
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class CreateStateMachineAliasInput
|
105
|
+
attr_accessor description: ::String
|
106
|
+
attr_accessor name: ::String
|
107
|
+
attr_accessor routing_configuration: ::Array[Types::RoutingConfigurationListItem]
|
108
|
+
SENSITIVE: [:description]
|
109
|
+
end
|
110
|
+
|
111
|
+
class CreateStateMachineAliasOutput
|
112
|
+
attr_accessor state_machine_alias_arn: ::String
|
113
|
+
attr_accessor creation_date: ::Time
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class CreateStateMachineInput
|
118
|
+
attr_accessor name: ::String
|
119
|
+
attr_accessor definition: ::String
|
120
|
+
attr_accessor role_arn: ::String
|
121
|
+
attr_accessor type: ("STANDARD" | "EXPRESS")
|
122
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
123
|
+
attr_accessor tags: ::Array[Types::Tag]
|
124
|
+
attr_accessor tracing_configuration: Types::TracingConfiguration
|
125
|
+
attr_accessor publish: bool
|
126
|
+
attr_accessor version_description: ::String
|
127
|
+
SENSITIVE: [:definition, :version_description]
|
128
|
+
end
|
129
|
+
|
130
|
+
class CreateStateMachineOutput
|
131
|
+
attr_accessor state_machine_arn: ::String
|
132
|
+
attr_accessor creation_date: ::Time
|
133
|
+
attr_accessor state_machine_version_arn: ::String
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class DeleteActivityInput
|
138
|
+
attr_accessor activity_arn: ::String
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class DeleteActivityOutput < Aws::EmptyStructure
|
143
|
+
end
|
144
|
+
|
145
|
+
class DeleteStateMachineAliasInput
|
146
|
+
attr_accessor state_machine_alias_arn: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class DeleteStateMachineAliasOutput < Aws::EmptyStructure
|
151
|
+
end
|
152
|
+
|
153
|
+
class DeleteStateMachineInput
|
154
|
+
attr_accessor state_machine_arn: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class DeleteStateMachineOutput < Aws::EmptyStructure
|
159
|
+
end
|
160
|
+
|
161
|
+
class DeleteStateMachineVersionInput
|
162
|
+
attr_accessor state_machine_version_arn: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class DeleteStateMachineVersionOutput < Aws::EmptyStructure
|
167
|
+
end
|
168
|
+
|
169
|
+
class DescribeActivityInput
|
170
|
+
attr_accessor activity_arn: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class DescribeActivityOutput
|
175
|
+
attr_accessor activity_arn: ::String
|
176
|
+
attr_accessor name: ::String
|
177
|
+
attr_accessor creation_date: ::Time
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class DescribeExecutionInput
|
182
|
+
attr_accessor execution_arn: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class DescribeExecutionOutput
|
187
|
+
attr_accessor execution_arn: ::String
|
188
|
+
attr_accessor state_machine_arn: ::String
|
189
|
+
attr_accessor name: ::String
|
190
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "ABORTED" | "PENDING_REDRIVE")
|
191
|
+
attr_accessor start_date: ::Time
|
192
|
+
attr_accessor stop_date: ::Time
|
193
|
+
attr_accessor input: ::String
|
194
|
+
attr_accessor input_details: Types::CloudWatchEventsExecutionDataDetails
|
195
|
+
attr_accessor output: ::String
|
196
|
+
attr_accessor output_details: Types::CloudWatchEventsExecutionDataDetails
|
197
|
+
attr_accessor trace_header: ::String
|
198
|
+
attr_accessor map_run_arn: ::String
|
199
|
+
attr_accessor error: ::String
|
200
|
+
attr_accessor cause: ::String
|
201
|
+
attr_accessor state_machine_version_arn: ::String
|
202
|
+
attr_accessor state_machine_alias_arn: ::String
|
203
|
+
attr_accessor redrive_count: ::Integer
|
204
|
+
attr_accessor redrive_date: ::Time
|
205
|
+
attr_accessor redrive_status: ("REDRIVABLE" | "NOT_REDRIVABLE" | "REDRIVABLE_BY_MAP_RUN")
|
206
|
+
attr_accessor redrive_status_reason: ::String
|
207
|
+
SENSITIVE: [:input, :output, :error, :cause, :redrive_status_reason]
|
208
|
+
end
|
209
|
+
|
210
|
+
class DescribeMapRunInput
|
211
|
+
attr_accessor map_run_arn: ::String
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class DescribeMapRunOutput
|
216
|
+
attr_accessor map_run_arn: ::String
|
217
|
+
attr_accessor execution_arn: ::String
|
218
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "ABORTED")
|
219
|
+
attr_accessor start_date: ::Time
|
220
|
+
attr_accessor stop_date: ::Time
|
221
|
+
attr_accessor max_concurrency: ::Integer
|
222
|
+
attr_accessor tolerated_failure_percentage: ::Float
|
223
|
+
attr_accessor tolerated_failure_count: ::Integer
|
224
|
+
attr_accessor item_counts: Types::MapRunItemCounts
|
225
|
+
attr_accessor execution_counts: Types::MapRunExecutionCounts
|
226
|
+
attr_accessor redrive_count: ::Integer
|
227
|
+
attr_accessor redrive_date: ::Time
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class DescribeStateMachineAliasInput
|
232
|
+
attr_accessor state_machine_alias_arn: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class DescribeStateMachineAliasOutput
|
237
|
+
attr_accessor state_machine_alias_arn: ::String
|
238
|
+
attr_accessor name: ::String
|
239
|
+
attr_accessor description: ::String
|
240
|
+
attr_accessor routing_configuration: ::Array[Types::RoutingConfigurationListItem]
|
241
|
+
attr_accessor creation_date: ::Time
|
242
|
+
attr_accessor update_date: ::Time
|
243
|
+
SENSITIVE: [:description]
|
244
|
+
end
|
245
|
+
|
246
|
+
class DescribeStateMachineForExecutionInput
|
247
|
+
attr_accessor execution_arn: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class DescribeStateMachineForExecutionOutput
|
252
|
+
attr_accessor state_machine_arn: ::String
|
253
|
+
attr_accessor name: ::String
|
254
|
+
attr_accessor definition: ::String
|
255
|
+
attr_accessor role_arn: ::String
|
256
|
+
attr_accessor update_date: ::Time
|
257
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
258
|
+
attr_accessor tracing_configuration: Types::TracingConfiguration
|
259
|
+
attr_accessor map_run_arn: ::String
|
260
|
+
attr_accessor label: ::String
|
261
|
+
attr_accessor revision_id: ::String
|
262
|
+
SENSITIVE: [:definition]
|
263
|
+
end
|
264
|
+
|
265
|
+
class DescribeStateMachineInput
|
266
|
+
attr_accessor state_machine_arn: ::String
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class DescribeStateMachineOutput
|
271
|
+
attr_accessor state_machine_arn: ::String
|
272
|
+
attr_accessor name: ::String
|
273
|
+
attr_accessor status: ("ACTIVE" | "DELETING")
|
274
|
+
attr_accessor definition: ::String
|
275
|
+
attr_accessor role_arn: ::String
|
276
|
+
attr_accessor type: ("STANDARD" | "EXPRESS")
|
277
|
+
attr_accessor creation_date: ::Time
|
278
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
279
|
+
attr_accessor tracing_configuration: Types::TracingConfiguration
|
280
|
+
attr_accessor label: ::String
|
281
|
+
attr_accessor revision_id: ::String
|
282
|
+
attr_accessor description: ::String
|
283
|
+
SENSITIVE: [:definition, :description]
|
284
|
+
end
|
285
|
+
|
286
|
+
class ExecutionAbortedEventDetails
|
287
|
+
attr_accessor error: ::String
|
288
|
+
attr_accessor cause: ::String
|
289
|
+
SENSITIVE: [:error, :cause]
|
290
|
+
end
|
291
|
+
|
292
|
+
class ExecutionAlreadyExists
|
293
|
+
attr_accessor message: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class ExecutionDoesNotExist
|
298
|
+
attr_accessor message: ::String
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class ExecutionFailedEventDetails
|
303
|
+
attr_accessor error: ::String
|
304
|
+
attr_accessor cause: ::String
|
305
|
+
SENSITIVE: [:error, :cause]
|
306
|
+
end
|
307
|
+
|
308
|
+
class ExecutionLimitExceeded
|
309
|
+
attr_accessor message: ::String
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class ExecutionListItem
|
314
|
+
attr_accessor execution_arn: ::String
|
315
|
+
attr_accessor state_machine_arn: ::String
|
316
|
+
attr_accessor name: ::String
|
317
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "ABORTED" | "PENDING_REDRIVE")
|
318
|
+
attr_accessor start_date: ::Time
|
319
|
+
attr_accessor stop_date: ::Time
|
320
|
+
attr_accessor map_run_arn: ::String
|
321
|
+
attr_accessor item_count: ::Integer
|
322
|
+
attr_accessor state_machine_version_arn: ::String
|
323
|
+
attr_accessor state_machine_alias_arn: ::String
|
324
|
+
attr_accessor redrive_count: ::Integer
|
325
|
+
attr_accessor redrive_date: ::Time
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class ExecutionNotRedrivable
|
330
|
+
attr_accessor message: ::String
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class ExecutionRedrivenEventDetails
|
335
|
+
attr_accessor redrive_count: ::Integer
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class ExecutionStartedEventDetails
|
340
|
+
attr_accessor input: ::String
|
341
|
+
attr_accessor input_details: Types::HistoryEventExecutionDataDetails
|
342
|
+
attr_accessor role_arn: ::String
|
343
|
+
attr_accessor state_machine_alias_arn: ::String
|
344
|
+
attr_accessor state_machine_version_arn: ::String
|
345
|
+
SENSITIVE: [:input]
|
346
|
+
end
|
347
|
+
|
348
|
+
class ExecutionSucceededEventDetails
|
349
|
+
attr_accessor output: ::String
|
350
|
+
attr_accessor output_details: Types::HistoryEventExecutionDataDetails
|
351
|
+
SENSITIVE: [:output]
|
352
|
+
end
|
353
|
+
|
354
|
+
class ExecutionTimedOutEventDetails
|
355
|
+
attr_accessor error: ::String
|
356
|
+
attr_accessor cause: ::String
|
357
|
+
SENSITIVE: [:error, :cause]
|
358
|
+
end
|
359
|
+
|
360
|
+
class GetActivityTaskInput
|
361
|
+
attr_accessor activity_arn: ::String
|
362
|
+
attr_accessor worker_name: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class GetActivityTaskOutput
|
367
|
+
attr_accessor task_token: ::String
|
368
|
+
attr_accessor input: ::String
|
369
|
+
SENSITIVE: [:input]
|
370
|
+
end
|
371
|
+
|
372
|
+
class GetExecutionHistoryInput
|
373
|
+
attr_accessor execution_arn: ::String
|
374
|
+
attr_accessor max_results: ::Integer
|
375
|
+
attr_accessor reverse_order: bool
|
376
|
+
attr_accessor next_token: ::String
|
377
|
+
attr_accessor include_execution_data: bool
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class GetExecutionHistoryOutput
|
382
|
+
attr_accessor events: ::Array[Types::HistoryEvent]
|
383
|
+
attr_accessor next_token: ::String
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class HistoryEvent
|
388
|
+
attr_accessor timestamp: ::Time
|
389
|
+
attr_accessor type: ("ActivityFailed" | "ActivityScheduled" | "ActivityScheduleFailed" | "ActivityStarted" | "ActivitySucceeded" | "ActivityTimedOut" | "ChoiceStateEntered" | "ChoiceStateExited" | "ExecutionAborted" | "ExecutionFailed" | "ExecutionStarted" | "ExecutionSucceeded" | "ExecutionTimedOut" | "FailStateEntered" | "LambdaFunctionFailed" | "LambdaFunctionScheduled" | "LambdaFunctionScheduleFailed" | "LambdaFunctionStarted" | "LambdaFunctionStartFailed" | "LambdaFunctionSucceeded" | "LambdaFunctionTimedOut" | "MapIterationAborted" | "MapIterationFailed" | "MapIterationStarted" | "MapIterationSucceeded" | "MapStateAborted" | "MapStateEntered" | "MapStateExited" | "MapStateFailed" | "MapStateStarted" | "MapStateSucceeded" | "ParallelStateAborted" | "ParallelStateEntered" | "ParallelStateExited" | "ParallelStateFailed" | "ParallelStateStarted" | "ParallelStateSucceeded" | "PassStateEntered" | "PassStateExited" | "SucceedStateEntered" | "SucceedStateExited" | "TaskFailed" | "TaskScheduled" | "TaskStarted" | "TaskStartFailed" | "TaskStateAborted" | "TaskStateEntered" | "TaskStateExited" | "TaskSubmitFailed" | "TaskSubmitted" | "TaskSucceeded" | "TaskTimedOut" | "WaitStateAborted" | "WaitStateEntered" | "WaitStateExited" | "MapRunAborted" | "MapRunFailed" | "MapRunStarted" | "MapRunSucceeded" | "ExecutionRedriven" | "MapRunRedriven")
|
390
|
+
attr_accessor id: ::Integer
|
391
|
+
attr_accessor previous_event_id: ::Integer
|
392
|
+
attr_accessor activity_failed_event_details: Types::ActivityFailedEventDetails
|
393
|
+
attr_accessor activity_schedule_failed_event_details: Types::ActivityScheduleFailedEventDetails
|
394
|
+
attr_accessor activity_scheduled_event_details: Types::ActivityScheduledEventDetails
|
395
|
+
attr_accessor activity_started_event_details: Types::ActivityStartedEventDetails
|
396
|
+
attr_accessor activity_succeeded_event_details: Types::ActivitySucceededEventDetails
|
397
|
+
attr_accessor activity_timed_out_event_details: Types::ActivityTimedOutEventDetails
|
398
|
+
attr_accessor task_failed_event_details: Types::TaskFailedEventDetails
|
399
|
+
attr_accessor task_scheduled_event_details: Types::TaskScheduledEventDetails
|
400
|
+
attr_accessor task_start_failed_event_details: Types::TaskStartFailedEventDetails
|
401
|
+
attr_accessor task_started_event_details: Types::TaskStartedEventDetails
|
402
|
+
attr_accessor task_submit_failed_event_details: Types::TaskSubmitFailedEventDetails
|
403
|
+
attr_accessor task_submitted_event_details: Types::TaskSubmittedEventDetails
|
404
|
+
attr_accessor task_succeeded_event_details: Types::TaskSucceededEventDetails
|
405
|
+
attr_accessor task_timed_out_event_details: Types::TaskTimedOutEventDetails
|
406
|
+
attr_accessor execution_failed_event_details: Types::ExecutionFailedEventDetails
|
407
|
+
attr_accessor execution_started_event_details: Types::ExecutionStartedEventDetails
|
408
|
+
attr_accessor execution_succeeded_event_details: Types::ExecutionSucceededEventDetails
|
409
|
+
attr_accessor execution_aborted_event_details: Types::ExecutionAbortedEventDetails
|
410
|
+
attr_accessor execution_timed_out_event_details: Types::ExecutionTimedOutEventDetails
|
411
|
+
attr_accessor execution_redriven_event_details: Types::ExecutionRedrivenEventDetails
|
412
|
+
attr_accessor map_state_started_event_details: Types::MapStateStartedEventDetails
|
413
|
+
attr_accessor map_iteration_started_event_details: Types::MapIterationEventDetails
|
414
|
+
attr_accessor map_iteration_succeeded_event_details: Types::MapIterationEventDetails
|
415
|
+
attr_accessor map_iteration_failed_event_details: Types::MapIterationEventDetails
|
416
|
+
attr_accessor map_iteration_aborted_event_details: Types::MapIterationEventDetails
|
417
|
+
attr_accessor lambda_function_failed_event_details: Types::LambdaFunctionFailedEventDetails
|
418
|
+
attr_accessor lambda_function_schedule_failed_event_details: Types::LambdaFunctionScheduleFailedEventDetails
|
419
|
+
attr_accessor lambda_function_scheduled_event_details: Types::LambdaFunctionScheduledEventDetails
|
420
|
+
attr_accessor lambda_function_start_failed_event_details: Types::LambdaFunctionStartFailedEventDetails
|
421
|
+
attr_accessor lambda_function_succeeded_event_details: Types::LambdaFunctionSucceededEventDetails
|
422
|
+
attr_accessor lambda_function_timed_out_event_details: Types::LambdaFunctionTimedOutEventDetails
|
423
|
+
attr_accessor state_entered_event_details: Types::StateEnteredEventDetails
|
424
|
+
attr_accessor state_exited_event_details: Types::StateExitedEventDetails
|
425
|
+
attr_accessor map_run_started_event_details: Types::MapRunStartedEventDetails
|
426
|
+
attr_accessor map_run_failed_event_details: Types::MapRunFailedEventDetails
|
427
|
+
attr_accessor map_run_redriven_event_details: Types::MapRunRedrivenEventDetails
|
428
|
+
SENSITIVE: []
|
429
|
+
end
|
430
|
+
|
431
|
+
class HistoryEventExecutionDataDetails
|
432
|
+
attr_accessor truncated: bool
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class InspectionData
|
437
|
+
attr_accessor input: ::String
|
438
|
+
attr_accessor after_input_path: ::String
|
439
|
+
attr_accessor after_parameters: ::String
|
440
|
+
attr_accessor result: ::String
|
441
|
+
attr_accessor after_result_selector: ::String
|
442
|
+
attr_accessor after_result_path: ::String
|
443
|
+
attr_accessor request: Types::InspectionDataRequest
|
444
|
+
attr_accessor response: Types::InspectionDataResponse
|
445
|
+
SENSITIVE: [:input, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path]
|
446
|
+
end
|
447
|
+
|
448
|
+
class InspectionDataRequest
|
449
|
+
attr_accessor protocol: ::String
|
450
|
+
attr_accessor method: ::String
|
451
|
+
attr_accessor url: ::String
|
452
|
+
attr_accessor headers: ::String
|
453
|
+
attr_accessor body: ::String
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class InspectionDataResponse
|
458
|
+
attr_accessor protocol: ::String
|
459
|
+
attr_accessor status_code: ::String
|
460
|
+
attr_accessor status_message: ::String
|
461
|
+
attr_accessor headers: ::String
|
462
|
+
attr_accessor body: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class InvalidArn
|
467
|
+
attr_accessor message: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class InvalidDefinition
|
472
|
+
attr_accessor message: ::String
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class InvalidExecutionInput
|
477
|
+
attr_accessor message: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class InvalidLoggingConfiguration
|
482
|
+
attr_accessor message: ::String
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class InvalidName
|
487
|
+
attr_accessor message: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class InvalidOutput
|
492
|
+
attr_accessor message: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class InvalidToken
|
497
|
+
attr_accessor message: ::String
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
501
|
+
class InvalidTracingConfiguration
|
502
|
+
attr_accessor message: ::String
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class LambdaFunctionFailedEventDetails
|
507
|
+
attr_accessor error: ::String
|
508
|
+
attr_accessor cause: ::String
|
509
|
+
SENSITIVE: [:error, :cause]
|
510
|
+
end
|
511
|
+
|
512
|
+
class LambdaFunctionScheduleFailedEventDetails
|
513
|
+
attr_accessor error: ::String
|
514
|
+
attr_accessor cause: ::String
|
515
|
+
SENSITIVE: [:error, :cause]
|
516
|
+
end
|
517
|
+
|
518
|
+
class LambdaFunctionScheduledEventDetails
|
519
|
+
attr_accessor resource: ::String
|
520
|
+
attr_accessor input: ::String
|
521
|
+
attr_accessor input_details: Types::HistoryEventExecutionDataDetails
|
522
|
+
attr_accessor timeout_in_seconds: ::Integer
|
523
|
+
attr_accessor task_credentials: Types::TaskCredentials
|
524
|
+
SENSITIVE: [:input]
|
525
|
+
end
|
526
|
+
|
527
|
+
class LambdaFunctionStartFailedEventDetails
|
528
|
+
attr_accessor error: ::String
|
529
|
+
attr_accessor cause: ::String
|
530
|
+
SENSITIVE: [:error, :cause]
|
531
|
+
end
|
532
|
+
|
533
|
+
class LambdaFunctionSucceededEventDetails
|
534
|
+
attr_accessor output: ::String
|
535
|
+
attr_accessor output_details: Types::HistoryEventExecutionDataDetails
|
536
|
+
SENSITIVE: [:output]
|
537
|
+
end
|
538
|
+
|
539
|
+
class LambdaFunctionTimedOutEventDetails
|
540
|
+
attr_accessor error: ::String
|
541
|
+
attr_accessor cause: ::String
|
542
|
+
SENSITIVE: [:error, :cause]
|
543
|
+
end
|
544
|
+
|
545
|
+
class ListActivitiesInput
|
546
|
+
attr_accessor max_results: ::Integer
|
547
|
+
attr_accessor next_token: ::String
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class ListActivitiesOutput
|
552
|
+
attr_accessor activities: ::Array[Types::ActivityListItem]
|
553
|
+
attr_accessor next_token: ::String
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class ListExecutionsInput
|
558
|
+
attr_accessor state_machine_arn: ::String
|
559
|
+
attr_accessor status_filter: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "ABORTED" | "PENDING_REDRIVE")
|
560
|
+
attr_accessor max_results: ::Integer
|
561
|
+
attr_accessor next_token: ::String
|
562
|
+
attr_accessor map_run_arn: ::String
|
563
|
+
attr_accessor redrive_filter: ("REDRIVEN" | "NOT_REDRIVEN")
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class ListExecutionsOutput
|
568
|
+
attr_accessor executions: ::Array[Types::ExecutionListItem]
|
569
|
+
attr_accessor next_token: ::String
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class ListMapRunsInput
|
574
|
+
attr_accessor execution_arn: ::String
|
575
|
+
attr_accessor max_results: ::Integer
|
576
|
+
attr_accessor next_token: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class ListMapRunsOutput
|
581
|
+
attr_accessor map_runs: ::Array[Types::MapRunListItem]
|
582
|
+
attr_accessor next_token: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class ListStateMachineAliasesInput
|
587
|
+
attr_accessor state_machine_arn: ::String
|
588
|
+
attr_accessor next_token: ::String
|
589
|
+
attr_accessor max_results: ::Integer
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class ListStateMachineAliasesOutput
|
594
|
+
attr_accessor state_machine_aliases: ::Array[Types::StateMachineAliasListItem]
|
595
|
+
attr_accessor next_token: ::String
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class ListStateMachineVersionsInput
|
600
|
+
attr_accessor state_machine_arn: ::String
|
601
|
+
attr_accessor next_token: ::String
|
602
|
+
attr_accessor max_results: ::Integer
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class ListStateMachineVersionsOutput
|
607
|
+
attr_accessor state_machine_versions: ::Array[Types::StateMachineVersionListItem]
|
608
|
+
attr_accessor next_token: ::String
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class ListStateMachinesInput
|
613
|
+
attr_accessor max_results: ::Integer
|
614
|
+
attr_accessor next_token: ::String
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class ListStateMachinesOutput
|
619
|
+
attr_accessor state_machines: ::Array[Types::StateMachineListItem]
|
620
|
+
attr_accessor next_token: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class ListTagsForResourceInput
|
625
|
+
attr_accessor resource_arn: ::String
|
626
|
+
SENSITIVE: []
|
627
|
+
end
|
628
|
+
|
629
|
+
class ListTagsForResourceOutput
|
630
|
+
attr_accessor tags: ::Array[Types::Tag]
|
631
|
+
SENSITIVE: []
|
632
|
+
end
|
633
|
+
|
634
|
+
class LogDestination
|
635
|
+
attr_accessor cloud_watch_logs_log_group: Types::CloudWatchLogsLogGroup
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class LoggingConfiguration
|
640
|
+
attr_accessor level: ("ALL" | "ERROR" | "FATAL" | "OFF")
|
641
|
+
attr_accessor include_execution_data: bool
|
642
|
+
attr_accessor destinations: ::Array[Types::LogDestination]
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class MapIterationEventDetails
|
647
|
+
attr_accessor name: ::String
|
648
|
+
attr_accessor index: ::Integer
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class MapRunExecutionCounts
|
653
|
+
attr_accessor pending: ::Integer
|
654
|
+
attr_accessor running: ::Integer
|
655
|
+
attr_accessor succeeded: ::Integer
|
656
|
+
attr_accessor failed: ::Integer
|
657
|
+
attr_accessor timed_out: ::Integer
|
658
|
+
attr_accessor aborted: ::Integer
|
659
|
+
attr_accessor total: ::Integer
|
660
|
+
attr_accessor results_written: ::Integer
|
661
|
+
attr_accessor failures_not_redrivable: ::Integer
|
662
|
+
attr_accessor pending_redrive: ::Integer
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class MapRunFailedEventDetails
|
667
|
+
attr_accessor error: ::String
|
668
|
+
attr_accessor cause: ::String
|
669
|
+
SENSITIVE: [:error, :cause]
|
670
|
+
end
|
671
|
+
|
672
|
+
class MapRunItemCounts
|
673
|
+
attr_accessor pending: ::Integer
|
674
|
+
attr_accessor running: ::Integer
|
675
|
+
attr_accessor succeeded: ::Integer
|
676
|
+
attr_accessor failed: ::Integer
|
677
|
+
attr_accessor timed_out: ::Integer
|
678
|
+
attr_accessor aborted: ::Integer
|
679
|
+
attr_accessor total: ::Integer
|
680
|
+
attr_accessor results_written: ::Integer
|
681
|
+
attr_accessor failures_not_redrivable: ::Integer
|
682
|
+
attr_accessor pending_redrive: ::Integer
|
683
|
+
SENSITIVE: []
|
684
|
+
end
|
685
|
+
|
686
|
+
class MapRunListItem
|
687
|
+
attr_accessor execution_arn: ::String
|
688
|
+
attr_accessor map_run_arn: ::String
|
689
|
+
attr_accessor state_machine_arn: ::String
|
690
|
+
attr_accessor start_date: ::Time
|
691
|
+
attr_accessor stop_date: ::Time
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class MapRunRedrivenEventDetails
|
696
|
+
attr_accessor map_run_arn: ::String
|
697
|
+
attr_accessor redrive_count: ::Integer
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class MapRunStartedEventDetails
|
702
|
+
attr_accessor map_run_arn: ::String
|
703
|
+
SENSITIVE: []
|
704
|
+
end
|
705
|
+
|
706
|
+
class MapStateStartedEventDetails
|
707
|
+
attr_accessor length: ::Integer
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class MissingRequiredParameter
|
712
|
+
attr_accessor message: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class PublishStateMachineVersionInput
|
717
|
+
attr_accessor state_machine_arn: ::String
|
718
|
+
attr_accessor revision_id: ::String
|
719
|
+
attr_accessor description: ::String
|
720
|
+
SENSITIVE: [:description]
|
721
|
+
end
|
722
|
+
|
723
|
+
class PublishStateMachineVersionOutput
|
724
|
+
attr_accessor creation_date: ::Time
|
725
|
+
attr_accessor state_machine_version_arn: ::String
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class RedriveExecutionInput
|
730
|
+
attr_accessor execution_arn: ::String
|
731
|
+
attr_accessor client_token: ::String
|
732
|
+
SENSITIVE: []
|
733
|
+
end
|
734
|
+
|
735
|
+
class RedriveExecutionOutput
|
736
|
+
attr_accessor redrive_date: ::Time
|
737
|
+
SENSITIVE: []
|
738
|
+
end
|
739
|
+
|
740
|
+
class ResourceNotFound
|
741
|
+
attr_accessor message: ::String
|
742
|
+
attr_accessor resource_name: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class RoutingConfigurationListItem
|
747
|
+
attr_accessor state_machine_version_arn: ::String
|
748
|
+
attr_accessor weight: ::Integer
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
752
|
+
class SendTaskFailureInput
|
753
|
+
attr_accessor task_token: ::String
|
754
|
+
attr_accessor error: ::String
|
755
|
+
attr_accessor cause: ::String
|
756
|
+
SENSITIVE: [:error, :cause]
|
757
|
+
end
|
758
|
+
|
759
|
+
class SendTaskFailureOutput < Aws::EmptyStructure
|
760
|
+
end
|
761
|
+
|
762
|
+
class SendTaskHeartbeatInput
|
763
|
+
attr_accessor task_token: ::String
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class SendTaskHeartbeatOutput < Aws::EmptyStructure
|
768
|
+
end
|
769
|
+
|
770
|
+
class SendTaskSuccessInput
|
771
|
+
attr_accessor task_token: ::String
|
772
|
+
attr_accessor output: ::String
|
773
|
+
SENSITIVE: [:output]
|
774
|
+
end
|
775
|
+
|
776
|
+
class SendTaskSuccessOutput < Aws::EmptyStructure
|
777
|
+
end
|
778
|
+
|
779
|
+
class ServiceQuotaExceededException
|
780
|
+
attr_accessor message: ::String
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class StartExecutionInput
|
785
|
+
attr_accessor state_machine_arn: ::String
|
786
|
+
attr_accessor name: ::String
|
787
|
+
attr_accessor input: ::String
|
788
|
+
attr_accessor trace_header: ::String
|
789
|
+
SENSITIVE: [:input]
|
790
|
+
end
|
791
|
+
|
792
|
+
class StartExecutionOutput
|
793
|
+
attr_accessor execution_arn: ::String
|
794
|
+
attr_accessor start_date: ::Time
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class StartSyncExecutionInput
|
799
|
+
attr_accessor state_machine_arn: ::String
|
800
|
+
attr_accessor name: ::String
|
801
|
+
attr_accessor input: ::String
|
802
|
+
attr_accessor trace_header: ::String
|
803
|
+
SENSITIVE: [:input]
|
804
|
+
end
|
805
|
+
|
806
|
+
class StartSyncExecutionOutput
|
807
|
+
attr_accessor execution_arn: ::String
|
808
|
+
attr_accessor state_machine_arn: ::String
|
809
|
+
attr_accessor name: ::String
|
810
|
+
attr_accessor start_date: ::Time
|
811
|
+
attr_accessor stop_date: ::Time
|
812
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
813
|
+
attr_accessor error: ::String
|
814
|
+
attr_accessor cause: ::String
|
815
|
+
attr_accessor input: ::String
|
816
|
+
attr_accessor input_details: Types::CloudWatchEventsExecutionDataDetails
|
817
|
+
attr_accessor output: ::String
|
818
|
+
attr_accessor output_details: Types::CloudWatchEventsExecutionDataDetails
|
819
|
+
attr_accessor trace_header: ::String
|
820
|
+
attr_accessor billing_details: Types::BillingDetails
|
821
|
+
SENSITIVE: [:error, :cause, :input, :output]
|
822
|
+
end
|
823
|
+
|
824
|
+
class StateEnteredEventDetails
|
825
|
+
attr_accessor name: ::String
|
826
|
+
attr_accessor input: ::String
|
827
|
+
attr_accessor input_details: Types::HistoryEventExecutionDataDetails
|
828
|
+
SENSITIVE: [:input]
|
829
|
+
end
|
830
|
+
|
831
|
+
class StateExitedEventDetails
|
832
|
+
attr_accessor name: ::String
|
833
|
+
attr_accessor output: ::String
|
834
|
+
attr_accessor output_details: Types::HistoryEventExecutionDataDetails
|
835
|
+
SENSITIVE: [:output]
|
836
|
+
end
|
837
|
+
|
838
|
+
class StateMachineAliasListItem
|
839
|
+
attr_accessor state_machine_alias_arn: ::String
|
840
|
+
attr_accessor creation_date: ::Time
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class StateMachineAlreadyExists
|
845
|
+
attr_accessor message: ::String
|
846
|
+
SENSITIVE: []
|
847
|
+
end
|
848
|
+
|
849
|
+
class StateMachineDeleting
|
850
|
+
attr_accessor message: ::String
|
851
|
+
SENSITIVE: []
|
852
|
+
end
|
853
|
+
|
854
|
+
class StateMachineDoesNotExist
|
855
|
+
attr_accessor message: ::String
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class StateMachineLimitExceeded
|
860
|
+
attr_accessor message: ::String
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class StateMachineListItem
|
865
|
+
attr_accessor state_machine_arn: ::String
|
866
|
+
attr_accessor name: ::String
|
867
|
+
attr_accessor type: ("STANDARD" | "EXPRESS")
|
868
|
+
attr_accessor creation_date: ::Time
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class StateMachineTypeNotSupported
|
873
|
+
attr_accessor message: ::String
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class StateMachineVersionListItem
|
878
|
+
attr_accessor state_machine_version_arn: ::String
|
879
|
+
attr_accessor creation_date: ::Time
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class StopExecutionInput
|
884
|
+
attr_accessor execution_arn: ::String
|
885
|
+
attr_accessor error: ::String
|
886
|
+
attr_accessor cause: ::String
|
887
|
+
SENSITIVE: [:error, :cause]
|
888
|
+
end
|
889
|
+
|
890
|
+
class StopExecutionOutput
|
891
|
+
attr_accessor stop_date: ::Time
|
892
|
+
SENSITIVE: []
|
893
|
+
end
|
894
|
+
|
895
|
+
class Tag
|
896
|
+
attr_accessor key: ::String
|
897
|
+
attr_accessor value: ::String
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class TagResourceInput
|
902
|
+
attr_accessor resource_arn: ::String
|
903
|
+
attr_accessor tags: ::Array[Types::Tag]
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class TagResourceOutput < Aws::EmptyStructure
|
908
|
+
end
|
909
|
+
|
910
|
+
class TaskCredentials
|
911
|
+
attr_accessor role_arn: ::String
|
912
|
+
SENSITIVE: []
|
913
|
+
end
|
914
|
+
|
915
|
+
class TaskDoesNotExist
|
916
|
+
attr_accessor message: ::String
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class TaskFailedEventDetails
|
921
|
+
attr_accessor resource_type: ::String
|
922
|
+
attr_accessor resource: ::String
|
923
|
+
attr_accessor error: ::String
|
924
|
+
attr_accessor cause: ::String
|
925
|
+
SENSITIVE: [:error, :cause]
|
926
|
+
end
|
927
|
+
|
928
|
+
class TaskScheduledEventDetails
|
929
|
+
attr_accessor resource_type: ::String
|
930
|
+
attr_accessor resource: ::String
|
931
|
+
attr_accessor region: ::String
|
932
|
+
attr_accessor parameters: ::String
|
933
|
+
attr_accessor timeout_in_seconds: ::Integer
|
934
|
+
attr_accessor heartbeat_in_seconds: ::Integer
|
935
|
+
attr_accessor task_credentials: Types::TaskCredentials
|
936
|
+
SENSITIVE: [:parameters]
|
937
|
+
end
|
938
|
+
|
939
|
+
class TaskStartFailedEventDetails
|
940
|
+
attr_accessor resource_type: ::String
|
941
|
+
attr_accessor resource: ::String
|
942
|
+
attr_accessor error: ::String
|
943
|
+
attr_accessor cause: ::String
|
944
|
+
SENSITIVE: [:error, :cause]
|
945
|
+
end
|
946
|
+
|
947
|
+
class TaskStartedEventDetails
|
948
|
+
attr_accessor resource_type: ::String
|
949
|
+
attr_accessor resource: ::String
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class TaskSubmitFailedEventDetails
|
954
|
+
attr_accessor resource_type: ::String
|
955
|
+
attr_accessor resource: ::String
|
956
|
+
attr_accessor error: ::String
|
957
|
+
attr_accessor cause: ::String
|
958
|
+
SENSITIVE: [:error, :cause]
|
959
|
+
end
|
960
|
+
|
961
|
+
class TaskSubmittedEventDetails
|
962
|
+
attr_accessor resource_type: ::String
|
963
|
+
attr_accessor resource: ::String
|
964
|
+
attr_accessor output: ::String
|
965
|
+
attr_accessor output_details: Types::HistoryEventExecutionDataDetails
|
966
|
+
SENSITIVE: [:output]
|
967
|
+
end
|
968
|
+
|
969
|
+
class TaskSucceededEventDetails
|
970
|
+
attr_accessor resource_type: ::String
|
971
|
+
attr_accessor resource: ::String
|
972
|
+
attr_accessor output: ::String
|
973
|
+
attr_accessor output_details: Types::HistoryEventExecutionDataDetails
|
974
|
+
SENSITIVE: [:output]
|
975
|
+
end
|
976
|
+
|
977
|
+
class TaskTimedOut
|
978
|
+
attr_accessor message: ::String
|
979
|
+
SENSITIVE: []
|
980
|
+
end
|
981
|
+
|
982
|
+
class TaskTimedOutEventDetails
|
983
|
+
attr_accessor resource_type: ::String
|
984
|
+
attr_accessor resource: ::String
|
985
|
+
attr_accessor error: ::String
|
986
|
+
attr_accessor cause: ::String
|
987
|
+
SENSITIVE: [:error, :cause]
|
988
|
+
end
|
989
|
+
|
990
|
+
class TestStateInput
|
991
|
+
attr_accessor definition: ::String
|
992
|
+
attr_accessor role_arn: ::String
|
993
|
+
attr_accessor input: ::String
|
994
|
+
attr_accessor inspection_level: ("INFO" | "DEBUG" | "TRACE")
|
995
|
+
attr_accessor reveal_secrets: bool
|
996
|
+
SENSITIVE: [:definition, :input]
|
997
|
+
end
|
998
|
+
|
999
|
+
class TestStateOutput
|
1000
|
+
attr_accessor output: ::String
|
1001
|
+
attr_accessor error: ::String
|
1002
|
+
attr_accessor cause: ::String
|
1003
|
+
attr_accessor inspection_data: Types::InspectionData
|
1004
|
+
attr_accessor next_state: ::String
|
1005
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "RETRIABLE" | "CAUGHT_ERROR")
|
1006
|
+
SENSITIVE: [:output, :error, :cause, :inspection_data]
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class TooManyTags
|
1010
|
+
attr_accessor message: ::String
|
1011
|
+
attr_accessor resource_name: ::String
|
1012
|
+
SENSITIVE: []
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class TracingConfiguration
|
1016
|
+
attr_accessor enabled: bool
|
1017
|
+
SENSITIVE: []
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
class UntagResourceInput
|
1021
|
+
attr_accessor resource_arn: ::String
|
1022
|
+
attr_accessor tag_keys: ::Array[::String]
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class UpdateMapRunInput
|
1030
|
+
attr_accessor map_run_arn: ::String
|
1031
|
+
attr_accessor max_concurrency: ::Integer
|
1032
|
+
attr_accessor tolerated_failure_percentage: ::Float
|
1033
|
+
attr_accessor tolerated_failure_count: ::Integer
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class UpdateMapRunOutput < Aws::EmptyStructure
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class UpdateStateMachineAliasInput
|
1041
|
+
attr_accessor state_machine_alias_arn: ::String
|
1042
|
+
attr_accessor description: ::String
|
1043
|
+
attr_accessor routing_configuration: ::Array[Types::RoutingConfigurationListItem]
|
1044
|
+
SENSITIVE: [:description]
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class UpdateStateMachineAliasOutput
|
1048
|
+
attr_accessor update_date: ::Time
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class UpdateStateMachineInput
|
1053
|
+
attr_accessor state_machine_arn: ::String
|
1054
|
+
attr_accessor definition: ::String
|
1055
|
+
attr_accessor role_arn: ::String
|
1056
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
1057
|
+
attr_accessor tracing_configuration: Types::TracingConfiguration
|
1058
|
+
attr_accessor publish: bool
|
1059
|
+
attr_accessor version_description: ::String
|
1060
|
+
SENSITIVE: [:definition, :version_description]
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
class UpdateStateMachineOutput
|
1064
|
+
attr_accessor update_date: ::Time
|
1065
|
+
attr_accessor revision_id: ::String
|
1066
|
+
attr_accessor state_machine_version_arn: ::String
|
1067
|
+
SENSITIVE: []
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
class ValidateStateMachineDefinitionDiagnostic
|
1071
|
+
attr_accessor severity: ("ERROR")
|
1072
|
+
attr_accessor code: ::String
|
1073
|
+
attr_accessor message: ::String
|
1074
|
+
attr_accessor location: ::String
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class ValidateStateMachineDefinitionInput
|
1079
|
+
attr_accessor definition: ::String
|
1080
|
+
attr_accessor type: ("STANDARD" | "EXPRESS")
|
1081
|
+
SENSITIVE: [:definition]
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class ValidateStateMachineDefinitionOutput
|
1085
|
+
attr_accessor result: ("OK" | "FAIL")
|
1086
|
+
attr_accessor diagnostics: ::Array[Types::ValidateStateMachineDefinitionDiagnostic]
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class ValidationException
|
1091
|
+
attr_accessor message: ::String
|
1092
|
+
attr_accessor reason: ("API_DOES_NOT_SUPPORT_LABELED_ARNS" | "MISSING_REQUIRED_PARAMETER" | "CANNOT_UPDATE_COMPLETED_MAP_RUN" | "INVALID_ROUTING_CONFIGURATION")
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
end
|
1096
|
+
end
|