aws-sdk-pipes 1.14.0 → 1.16.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-pipes/client.rb +1 -1
- data/lib/aws-sdk-pipes/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-pipes.rb +1 -1
- data/sig/client.rbs +774 -0
- data/sig/errors.rbs +45 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +759 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,759 @@
|
|
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::Pipes
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AwsVpcConfiguration
|
12
|
+
attr_accessor assign_public_ip: ("ENABLED" | "DISABLED")
|
13
|
+
attr_accessor security_groups: ::Array[::String]
|
14
|
+
attr_accessor subnets: ::Array[::String]
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class BatchArrayProperties
|
19
|
+
attr_accessor size: ::Integer
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class BatchContainerOverrides
|
24
|
+
attr_accessor command: ::Array[::String]
|
25
|
+
attr_accessor environment: ::Array[Types::BatchEnvironmentVariable]
|
26
|
+
attr_accessor instance_type: ::String
|
27
|
+
attr_accessor resource_requirements: ::Array[Types::BatchResourceRequirement]
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class BatchEnvironmentVariable
|
32
|
+
attr_accessor name: ::String
|
33
|
+
attr_accessor value: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class BatchJobDependency
|
38
|
+
attr_accessor job_id: ::String
|
39
|
+
attr_accessor type: ("N_TO_N" | "SEQUENTIAL")
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class BatchResourceRequirement
|
44
|
+
attr_accessor type: ("GPU" | "MEMORY" | "VCPU")
|
45
|
+
attr_accessor value: ::String
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class BatchRetryStrategy
|
50
|
+
attr_accessor attempts: ::Integer
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class CapacityProviderStrategyItem
|
55
|
+
attr_accessor base: ::Integer
|
56
|
+
attr_accessor capacity_provider: ::String
|
57
|
+
attr_accessor weight: ::Integer
|
58
|
+
SENSITIVE: [:capacity_provider]
|
59
|
+
end
|
60
|
+
|
61
|
+
class CloudwatchLogsLogDestination
|
62
|
+
attr_accessor log_group_arn: ::String
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class CloudwatchLogsLogDestinationParameters
|
67
|
+
attr_accessor log_group_arn: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class ConflictException
|
72
|
+
attr_accessor message: ::String
|
73
|
+
attr_accessor resource_id: ::String
|
74
|
+
attr_accessor resource_type: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class CreatePipeRequest
|
79
|
+
attr_accessor description: ::String
|
80
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
81
|
+
attr_accessor enrichment: ::String
|
82
|
+
attr_accessor enrichment_parameters: Types::PipeEnrichmentParameters
|
83
|
+
attr_accessor log_configuration: Types::PipeLogConfigurationParameters
|
84
|
+
attr_accessor name: ::String
|
85
|
+
attr_accessor role_arn: ::String
|
86
|
+
attr_accessor source: ::String
|
87
|
+
attr_accessor source_parameters: Types::PipeSourceParameters
|
88
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
89
|
+
attr_accessor target: ::String
|
90
|
+
attr_accessor target_parameters: Types::PipeTargetParameters
|
91
|
+
SENSITIVE: [:description]
|
92
|
+
end
|
93
|
+
|
94
|
+
class CreatePipeResponse
|
95
|
+
attr_accessor arn: ::String
|
96
|
+
attr_accessor creation_time: ::Time
|
97
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
98
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
99
|
+
attr_accessor last_modified_time: ::Time
|
100
|
+
attr_accessor name: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class DeadLetterConfig
|
105
|
+
attr_accessor arn: ::String
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class DeletePipeRequest
|
110
|
+
attr_accessor name: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class DeletePipeResponse
|
115
|
+
attr_accessor arn: ::String
|
116
|
+
attr_accessor creation_time: ::Time
|
117
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
118
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED" | "DELETED")
|
119
|
+
attr_accessor last_modified_time: ::Time
|
120
|
+
attr_accessor name: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class DescribePipeRequest
|
125
|
+
attr_accessor name: ::String
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class DescribePipeResponse
|
130
|
+
attr_accessor arn: ::String
|
131
|
+
attr_accessor creation_time: ::Time
|
132
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
133
|
+
attr_accessor description: ::String
|
134
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED" | "DELETED")
|
135
|
+
attr_accessor enrichment: ::String
|
136
|
+
attr_accessor enrichment_parameters: Types::PipeEnrichmentParameters
|
137
|
+
attr_accessor last_modified_time: ::Time
|
138
|
+
attr_accessor log_configuration: Types::PipeLogConfiguration
|
139
|
+
attr_accessor name: ::String
|
140
|
+
attr_accessor role_arn: ::String
|
141
|
+
attr_accessor source: ::String
|
142
|
+
attr_accessor source_parameters: Types::PipeSourceParameters
|
143
|
+
attr_accessor state_reason: ::String
|
144
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
145
|
+
attr_accessor target: ::String
|
146
|
+
attr_accessor target_parameters: Types::PipeTargetParameters
|
147
|
+
SENSITIVE: [:description]
|
148
|
+
end
|
149
|
+
|
150
|
+
class EcsContainerOverride
|
151
|
+
attr_accessor command: ::Array[::String]
|
152
|
+
attr_accessor cpu: ::Integer
|
153
|
+
attr_accessor environment: ::Array[Types::EcsEnvironmentVariable]
|
154
|
+
attr_accessor environment_files: ::Array[Types::EcsEnvironmentFile]
|
155
|
+
attr_accessor memory: ::Integer
|
156
|
+
attr_accessor memory_reservation: ::Integer
|
157
|
+
attr_accessor name: ::String
|
158
|
+
attr_accessor resource_requirements: ::Array[Types::EcsResourceRequirement]
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class EcsEnvironmentFile
|
163
|
+
attr_accessor type: ("s3")
|
164
|
+
attr_accessor value: ::String
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class EcsEnvironmentVariable
|
169
|
+
attr_accessor name: ::String
|
170
|
+
attr_accessor value: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class EcsEphemeralStorage
|
175
|
+
attr_accessor size_in_gi_b: ::Integer
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class EcsInferenceAcceleratorOverride
|
180
|
+
attr_accessor device_name: ::String
|
181
|
+
attr_accessor device_type: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class EcsResourceRequirement
|
186
|
+
attr_accessor type: ("GPU" | "InferenceAccelerator")
|
187
|
+
attr_accessor value: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class EcsTaskOverride
|
192
|
+
attr_accessor container_overrides: ::Array[Types::EcsContainerOverride]
|
193
|
+
attr_accessor cpu: ::String
|
194
|
+
attr_accessor ephemeral_storage: Types::EcsEphemeralStorage
|
195
|
+
attr_accessor execution_role_arn: ::String
|
196
|
+
attr_accessor inference_accelerator_overrides: ::Array[Types::EcsInferenceAcceleratorOverride]
|
197
|
+
attr_accessor memory: ::String
|
198
|
+
attr_accessor task_role_arn: ::String
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class Filter
|
203
|
+
attr_accessor pattern: ::String
|
204
|
+
SENSITIVE: [:pattern]
|
205
|
+
end
|
206
|
+
|
207
|
+
class FilterCriteria
|
208
|
+
attr_accessor filters: ::Array[Types::Filter]
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class FirehoseLogDestination
|
213
|
+
attr_accessor delivery_stream_arn: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class FirehoseLogDestinationParameters
|
218
|
+
attr_accessor delivery_stream_arn: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class InternalException
|
223
|
+
attr_accessor message: ::String
|
224
|
+
attr_accessor retry_after_seconds: ::Integer
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class ListPipesRequest
|
229
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
230
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
231
|
+
attr_accessor limit: ::Integer
|
232
|
+
attr_accessor name_prefix: ::String
|
233
|
+
attr_accessor next_token: ::String
|
234
|
+
attr_accessor source_prefix: ::String
|
235
|
+
attr_accessor target_prefix: ::String
|
236
|
+
SENSITIVE: [:next_token]
|
237
|
+
end
|
238
|
+
|
239
|
+
class ListPipesResponse
|
240
|
+
attr_accessor next_token: ::String
|
241
|
+
attr_accessor pipes: ::Array[Types::Pipe]
|
242
|
+
SENSITIVE: [:next_token]
|
243
|
+
end
|
244
|
+
|
245
|
+
class ListTagsForResourceRequest
|
246
|
+
attr_accessor resource_arn: ::String
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class ListTagsForResourceResponse
|
251
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class MQBrokerAccessCredentials
|
256
|
+
attr_accessor basic_auth: ::String
|
257
|
+
attr_accessor unknown: untyped
|
258
|
+
SENSITIVE: []
|
259
|
+
|
260
|
+
class BasicAuth < MQBrokerAccessCredentials
|
261
|
+
end
|
262
|
+
class Unknown < MQBrokerAccessCredentials
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
266
|
+
class MSKAccessCredentials
|
267
|
+
attr_accessor client_certificate_tls_auth: ::String
|
268
|
+
attr_accessor sasl_scram_512_auth: ::String
|
269
|
+
attr_accessor unknown: untyped
|
270
|
+
SENSITIVE: []
|
271
|
+
|
272
|
+
class ClientCertificateTlsAuth < MSKAccessCredentials
|
273
|
+
end
|
274
|
+
class SaslScram512Auth < MSKAccessCredentials
|
275
|
+
end
|
276
|
+
class Unknown < MSKAccessCredentials
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
280
|
+
class NetworkConfiguration
|
281
|
+
attr_accessor awsvpc_configuration: Types::AwsVpcConfiguration
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class NotFoundException
|
286
|
+
attr_accessor message: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class Pipe
|
291
|
+
attr_accessor arn: ::String
|
292
|
+
attr_accessor creation_time: ::Time
|
293
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
294
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
295
|
+
attr_accessor enrichment: ::String
|
296
|
+
attr_accessor last_modified_time: ::Time
|
297
|
+
attr_accessor name: ::String
|
298
|
+
attr_accessor source: ::String
|
299
|
+
attr_accessor state_reason: ::String
|
300
|
+
attr_accessor target: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class PipeEnrichmentHttpParameters
|
305
|
+
attr_accessor header_parameters: ::Hash[::String, ::String]
|
306
|
+
attr_accessor path_parameter_values: ::Array[::String]
|
307
|
+
attr_accessor query_string_parameters: ::Hash[::String, ::String]
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class PipeEnrichmentParameters
|
312
|
+
attr_accessor http_parameters: Types::PipeEnrichmentHttpParameters
|
313
|
+
attr_accessor input_template: ::String
|
314
|
+
SENSITIVE: [:input_template]
|
315
|
+
end
|
316
|
+
|
317
|
+
class PipeLogConfiguration
|
318
|
+
attr_accessor cloudwatch_logs_log_destination: Types::CloudwatchLogsLogDestination
|
319
|
+
attr_accessor firehose_log_destination: Types::FirehoseLogDestination
|
320
|
+
attr_accessor include_execution_data: ::Array[("ALL")]
|
321
|
+
attr_accessor level: ("OFF" | "ERROR" | "INFO" | "TRACE")
|
322
|
+
attr_accessor s3_log_destination: Types::S3LogDestination
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class PipeLogConfigurationParameters
|
327
|
+
attr_accessor cloudwatch_logs_log_destination: Types::CloudwatchLogsLogDestinationParameters
|
328
|
+
attr_accessor firehose_log_destination: Types::FirehoseLogDestinationParameters
|
329
|
+
attr_accessor include_execution_data: ::Array[("ALL")]
|
330
|
+
attr_accessor level: ("OFF" | "ERROR" | "INFO" | "TRACE")
|
331
|
+
attr_accessor s3_log_destination: Types::S3LogDestinationParameters
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class PipeSourceActiveMQBrokerParameters
|
336
|
+
attr_accessor batch_size: ::Integer
|
337
|
+
attr_accessor credentials: Types::MQBrokerAccessCredentials
|
338
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
339
|
+
attr_accessor queue_name: ::String
|
340
|
+
SENSITIVE: [:queue_name]
|
341
|
+
end
|
342
|
+
|
343
|
+
class PipeSourceDynamoDBStreamParameters
|
344
|
+
attr_accessor batch_size: ::Integer
|
345
|
+
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
346
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
347
|
+
attr_accessor maximum_record_age_in_seconds: ::Integer
|
348
|
+
attr_accessor maximum_retry_attempts: ::Integer
|
349
|
+
attr_accessor on_partial_batch_item_failure: ("AUTOMATIC_BISECT")
|
350
|
+
attr_accessor parallelization_factor: ::Integer
|
351
|
+
attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST")
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class PipeSourceKinesisStreamParameters
|
356
|
+
attr_accessor batch_size: ::Integer
|
357
|
+
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
358
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
359
|
+
attr_accessor maximum_record_age_in_seconds: ::Integer
|
360
|
+
attr_accessor maximum_retry_attempts: ::Integer
|
361
|
+
attr_accessor on_partial_batch_item_failure: ("AUTOMATIC_BISECT")
|
362
|
+
attr_accessor parallelization_factor: ::Integer
|
363
|
+
attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
|
364
|
+
attr_accessor starting_position_timestamp: ::Time
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class PipeSourceManagedStreamingKafkaParameters
|
369
|
+
attr_accessor batch_size: ::Integer
|
370
|
+
attr_accessor consumer_group_id: ::String
|
371
|
+
attr_accessor credentials: Types::MSKAccessCredentials
|
372
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
373
|
+
attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST")
|
374
|
+
attr_accessor topic_name: ::String
|
375
|
+
SENSITIVE: [:consumer_group_id, :topic_name]
|
376
|
+
end
|
377
|
+
|
378
|
+
class PipeSourceParameters
|
379
|
+
attr_accessor active_mq_broker_parameters: Types::PipeSourceActiveMQBrokerParameters
|
380
|
+
attr_accessor dynamo_db_stream_parameters: Types::PipeSourceDynamoDBStreamParameters
|
381
|
+
attr_accessor filter_criteria: Types::FilterCriteria
|
382
|
+
attr_accessor kinesis_stream_parameters: Types::PipeSourceKinesisStreamParameters
|
383
|
+
attr_accessor managed_streaming_kafka_parameters: Types::PipeSourceManagedStreamingKafkaParameters
|
384
|
+
attr_accessor rabbit_mq_broker_parameters: Types::PipeSourceRabbitMQBrokerParameters
|
385
|
+
attr_accessor self_managed_kafka_parameters: Types::PipeSourceSelfManagedKafkaParameters
|
386
|
+
attr_accessor sqs_queue_parameters: Types::PipeSourceSqsQueueParameters
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class PipeSourceRabbitMQBrokerParameters
|
391
|
+
attr_accessor batch_size: ::Integer
|
392
|
+
attr_accessor credentials: Types::MQBrokerAccessCredentials
|
393
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
394
|
+
attr_accessor queue_name: ::String
|
395
|
+
attr_accessor virtual_host: ::String
|
396
|
+
SENSITIVE: [:queue_name, :virtual_host]
|
397
|
+
end
|
398
|
+
|
399
|
+
class PipeSourceSelfManagedKafkaParameters
|
400
|
+
attr_accessor additional_bootstrap_servers: ::Array[::String]
|
401
|
+
attr_accessor batch_size: ::Integer
|
402
|
+
attr_accessor consumer_group_id: ::String
|
403
|
+
attr_accessor credentials: Types::SelfManagedKafkaAccessConfigurationCredentials
|
404
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
405
|
+
attr_accessor server_root_ca_certificate: ::String
|
406
|
+
attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST")
|
407
|
+
attr_accessor topic_name: ::String
|
408
|
+
attr_accessor vpc: Types::SelfManagedKafkaAccessConfigurationVpc
|
409
|
+
SENSITIVE: [:consumer_group_id, :topic_name]
|
410
|
+
end
|
411
|
+
|
412
|
+
class PipeSourceSqsQueueParameters
|
413
|
+
attr_accessor batch_size: ::Integer
|
414
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class PipeTargetBatchJobParameters
|
419
|
+
attr_accessor array_properties: Types::BatchArrayProperties
|
420
|
+
attr_accessor container_overrides: Types::BatchContainerOverrides
|
421
|
+
attr_accessor depends_on: ::Array[Types::BatchJobDependency]
|
422
|
+
attr_accessor job_definition: ::String
|
423
|
+
attr_accessor job_name: ::String
|
424
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
425
|
+
attr_accessor retry_strategy: Types::BatchRetryStrategy
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class PipeTargetCloudWatchLogsParameters
|
430
|
+
attr_accessor log_stream_name: ::String
|
431
|
+
attr_accessor timestamp: ::String
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class PipeTargetEcsTaskParameters
|
436
|
+
attr_accessor capacity_provider_strategy: ::Array[Types::CapacityProviderStrategyItem]
|
437
|
+
attr_accessor enable_ecs_managed_tags: bool
|
438
|
+
attr_accessor enable_execute_command: bool
|
439
|
+
attr_accessor group: ::String
|
440
|
+
attr_accessor launch_type: ("EC2" | "FARGATE" | "EXTERNAL")
|
441
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
442
|
+
attr_accessor overrides: Types::EcsTaskOverride
|
443
|
+
attr_accessor placement_constraints: ::Array[Types::PlacementConstraint]
|
444
|
+
attr_accessor placement_strategy: ::Array[Types::PlacementStrategy]
|
445
|
+
attr_accessor platform_version: ::String
|
446
|
+
attr_accessor propagate_tags: ("TASK_DEFINITION")
|
447
|
+
attr_accessor reference_id: ::String
|
448
|
+
attr_accessor tags: ::Array[Types::Tag]
|
449
|
+
attr_accessor task_count: ::Integer
|
450
|
+
attr_accessor task_definition_arn: ::String
|
451
|
+
SENSITIVE: [:reference_id]
|
452
|
+
end
|
453
|
+
|
454
|
+
class PipeTargetEventBridgeEventBusParameters
|
455
|
+
attr_accessor detail_type: ::String
|
456
|
+
attr_accessor endpoint_id: ::String
|
457
|
+
attr_accessor resources: ::Array[::String]
|
458
|
+
attr_accessor source: ::String
|
459
|
+
attr_accessor time: ::String
|
460
|
+
SENSITIVE: [:detail_type, :endpoint_id, :source]
|
461
|
+
end
|
462
|
+
|
463
|
+
class PipeTargetHttpParameters
|
464
|
+
attr_accessor header_parameters: ::Hash[::String, ::String]
|
465
|
+
attr_accessor path_parameter_values: ::Array[::String]
|
466
|
+
attr_accessor query_string_parameters: ::Hash[::String, ::String]
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class PipeTargetKinesisStreamParameters
|
471
|
+
attr_accessor partition_key: ::String
|
472
|
+
SENSITIVE: [:partition_key]
|
473
|
+
end
|
474
|
+
|
475
|
+
class PipeTargetLambdaFunctionParameters
|
476
|
+
attr_accessor invocation_type: ("REQUEST_RESPONSE" | "FIRE_AND_FORGET")
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class PipeTargetParameters
|
481
|
+
attr_accessor batch_job_parameters: Types::PipeTargetBatchJobParameters
|
482
|
+
attr_accessor cloud_watch_logs_parameters: Types::PipeTargetCloudWatchLogsParameters
|
483
|
+
attr_accessor ecs_task_parameters: Types::PipeTargetEcsTaskParameters
|
484
|
+
attr_accessor event_bridge_event_bus_parameters: Types::PipeTargetEventBridgeEventBusParameters
|
485
|
+
attr_accessor http_parameters: Types::PipeTargetHttpParameters
|
486
|
+
attr_accessor input_template: ::String
|
487
|
+
attr_accessor kinesis_stream_parameters: Types::PipeTargetKinesisStreamParameters
|
488
|
+
attr_accessor lambda_function_parameters: Types::PipeTargetLambdaFunctionParameters
|
489
|
+
attr_accessor redshift_data_parameters: Types::PipeTargetRedshiftDataParameters
|
490
|
+
attr_accessor sage_maker_pipeline_parameters: Types::PipeTargetSageMakerPipelineParameters
|
491
|
+
attr_accessor sqs_queue_parameters: Types::PipeTargetSqsQueueParameters
|
492
|
+
attr_accessor step_function_state_machine_parameters: Types::PipeTargetStateMachineParameters
|
493
|
+
SENSITIVE: [:input_template]
|
494
|
+
end
|
495
|
+
|
496
|
+
class PipeTargetRedshiftDataParameters
|
497
|
+
attr_accessor database: ::String
|
498
|
+
attr_accessor db_user: ::String
|
499
|
+
attr_accessor secret_manager_arn: ::String
|
500
|
+
attr_accessor sqls: ::Array[::String]
|
501
|
+
attr_accessor statement_name: ::String
|
502
|
+
attr_accessor with_event: bool
|
503
|
+
SENSITIVE: [:database, :db_user, :statement_name]
|
504
|
+
end
|
505
|
+
|
506
|
+
class PipeTargetSageMakerPipelineParameters
|
507
|
+
attr_accessor pipeline_parameter_list: ::Array[Types::SageMakerPipelineParameter]
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class PipeTargetSqsQueueParameters
|
512
|
+
attr_accessor message_deduplication_id: ::String
|
513
|
+
attr_accessor message_group_id: ::String
|
514
|
+
SENSITIVE: [:message_deduplication_id, :message_group_id]
|
515
|
+
end
|
516
|
+
|
517
|
+
class PipeTargetStateMachineParameters
|
518
|
+
attr_accessor invocation_type: ("REQUEST_RESPONSE" | "FIRE_AND_FORGET")
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
522
|
+
class PlacementConstraint
|
523
|
+
attr_accessor expression: ::String
|
524
|
+
attr_accessor type: ("distinctInstance" | "memberOf")
|
525
|
+
SENSITIVE: [:expression]
|
526
|
+
end
|
527
|
+
|
528
|
+
class PlacementStrategy
|
529
|
+
attr_accessor field: ::String
|
530
|
+
attr_accessor type: ("random" | "spread" | "binpack")
|
531
|
+
SENSITIVE: [:field]
|
532
|
+
end
|
533
|
+
|
534
|
+
class S3LogDestination
|
535
|
+
attr_accessor bucket_name: ::String
|
536
|
+
attr_accessor bucket_owner: ::String
|
537
|
+
attr_accessor output_format: ("json" | "plain" | "w3c")
|
538
|
+
attr_accessor prefix: ::String
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class S3LogDestinationParameters
|
543
|
+
attr_accessor bucket_name: ::String
|
544
|
+
attr_accessor bucket_owner: ::String
|
545
|
+
attr_accessor output_format: ("json" | "plain" | "w3c")
|
546
|
+
attr_accessor prefix: ::String
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class SageMakerPipelineParameter
|
551
|
+
attr_accessor name: ::String
|
552
|
+
attr_accessor value: ::String
|
553
|
+
SENSITIVE: [:name, :value]
|
554
|
+
end
|
555
|
+
|
556
|
+
class SelfManagedKafkaAccessConfigurationCredentials
|
557
|
+
attr_accessor basic_auth: ::String
|
558
|
+
attr_accessor client_certificate_tls_auth: ::String
|
559
|
+
attr_accessor sasl_scram_256_auth: ::String
|
560
|
+
attr_accessor sasl_scram_512_auth: ::String
|
561
|
+
attr_accessor unknown: untyped
|
562
|
+
SENSITIVE: []
|
563
|
+
|
564
|
+
class BasicAuth < SelfManagedKafkaAccessConfigurationCredentials
|
565
|
+
end
|
566
|
+
class ClientCertificateTlsAuth < SelfManagedKafkaAccessConfigurationCredentials
|
567
|
+
end
|
568
|
+
class SaslScram256Auth < SelfManagedKafkaAccessConfigurationCredentials
|
569
|
+
end
|
570
|
+
class SaslScram512Auth < SelfManagedKafkaAccessConfigurationCredentials
|
571
|
+
end
|
572
|
+
class Unknown < SelfManagedKafkaAccessConfigurationCredentials
|
573
|
+
end
|
574
|
+
end
|
575
|
+
|
576
|
+
class SelfManagedKafkaAccessConfigurationVpc
|
577
|
+
attr_accessor security_group: ::Array[::String]
|
578
|
+
attr_accessor subnets: ::Array[::String]
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class ServiceQuotaExceededException
|
583
|
+
attr_accessor message: ::String
|
584
|
+
attr_accessor quota_code: ::String
|
585
|
+
attr_accessor resource_id: ::String
|
586
|
+
attr_accessor resource_type: ::String
|
587
|
+
attr_accessor service_code: ::String
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class StartPipeRequest
|
592
|
+
attr_accessor name: ::String
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class StartPipeResponse
|
597
|
+
attr_accessor arn: ::String
|
598
|
+
attr_accessor creation_time: ::Time
|
599
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
600
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
601
|
+
attr_accessor last_modified_time: ::Time
|
602
|
+
attr_accessor name: ::String
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class StopPipeRequest
|
607
|
+
attr_accessor name: ::String
|
608
|
+
SENSITIVE: []
|
609
|
+
end
|
610
|
+
|
611
|
+
class StopPipeResponse
|
612
|
+
attr_accessor arn: ::String
|
613
|
+
attr_accessor creation_time: ::Time
|
614
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
615
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
616
|
+
attr_accessor last_modified_time: ::Time
|
617
|
+
attr_accessor name: ::String
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
621
|
+
class Tag
|
622
|
+
attr_accessor key: ::String
|
623
|
+
attr_accessor value: ::String
|
624
|
+
SENSITIVE: [:value]
|
625
|
+
end
|
626
|
+
|
627
|
+
class TagResourceRequest
|
628
|
+
attr_accessor resource_arn: ::String
|
629
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class TagResourceResponse < Aws::EmptyStructure
|
634
|
+
end
|
635
|
+
|
636
|
+
class ThrottlingException
|
637
|
+
attr_accessor message: ::String
|
638
|
+
attr_accessor quota_code: ::String
|
639
|
+
attr_accessor retry_after_seconds: ::Integer
|
640
|
+
attr_accessor service_code: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
644
|
+
class UntagResourceRequest
|
645
|
+
attr_accessor resource_arn: ::String
|
646
|
+
attr_accessor tag_keys: ::Array[::String]
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
651
|
+
end
|
652
|
+
|
653
|
+
class UpdatePipeRequest
|
654
|
+
attr_accessor description: ::String
|
655
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
656
|
+
attr_accessor enrichment: ::String
|
657
|
+
attr_accessor enrichment_parameters: Types::PipeEnrichmentParameters
|
658
|
+
attr_accessor log_configuration: Types::PipeLogConfigurationParameters
|
659
|
+
attr_accessor name: ::String
|
660
|
+
attr_accessor role_arn: ::String
|
661
|
+
attr_accessor source_parameters: Types::UpdatePipeSourceParameters
|
662
|
+
attr_accessor target: ::String
|
663
|
+
attr_accessor target_parameters: Types::PipeTargetParameters
|
664
|
+
SENSITIVE: [:description]
|
665
|
+
end
|
666
|
+
|
667
|
+
class UpdatePipeResponse
|
668
|
+
attr_accessor arn: ::String
|
669
|
+
attr_accessor creation_time: ::Time
|
670
|
+
attr_accessor current_state: ("RUNNING" | "STOPPED" | "CREATING" | "UPDATING" | "DELETING" | "STARTING" | "STOPPING" | "CREATE_FAILED" | "UPDATE_FAILED" | "START_FAILED" | "STOP_FAILED" | "DELETE_FAILED" | "CREATE_ROLLBACK_FAILED" | "DELETE_ROLLBACK_FAILED" | "UPDATE_ROLLBACK_FAILED")
|
671
|
+
attr_accessor desired_state: ("RUNNING" | "STOPPED")
|
672
|
+
attr_accessor last_modified_time: ::Time
|
673
|
+
attr_accessor name: ::String
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class UpdatePipeSourceActiveMQBrokerParameters
|
678
|
+
attr_accessor batch_size: ::Integer
|
679
|
+
attr_accessor credentials: Types::MQBrokerAccessCredentials
|
680
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
681
|
+
SENSITIVE: []
|
682
|
+
end
|
683
|
+
|
684
|
+
class UpdatePipeSourceDynamoDBStreamParameters
|
685
|
+
attr_accessor batch_size: ::Integer
|
686
|
+
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
687
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
688
|
+
attr_accessor maximum_record_age_in_seconds: ::Integer
|
689
|
+
attr_accessor maximum_retry_attempts: ::Integer
|
690
|
+
attr_accessor on_partial_batch_item_failure: ("AUTOMATIC_BISECT")
|
691
|
+
attr_accessor parallelization_factor: ::Integer
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class UpdatePipeSourceKinesisStreamParameters
|
696
|
+
attr_accessor batch_size: ::Integer
|
697
|
+
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
698
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
699
|
+
attr_accessor maximum_record_age_in_seconds: ::Integer
|
700
|
+
attr_accessor maximum_retry_attempts: ::Integer
|
701
|
+
attr_accessor on_partial_batch_item_failure: ("AUTOMATIC_BISECT")
|
702
|
+
attr_accessor parallelization_factor: ::Integer
|
703
|
+
SENSITIVE: []
|
704
|
+
end
|
705
|
+
|
706
|
+
class UpdatePipeSourceManagedStreamingKafkaParameters
|
707
|
+
attr_accessor batch_size: ::Integer
|
708
|
+
attr_accessor credentials: Types::MSKAccessCredentials
|
709
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class UpdatePipeSourceParameters
|
714
|
+
attr_accessor active_mq_broker_parameters: Types::UpdatePipeSourceActiveMQBrokerParameters
|
715
|
+
attr_accessor dynamo_db_stream_parameters: Types::UpdatePipeSourceDynamoDBStreamParameters
|
716
|
+
attr_accessor filter_criteria: Types::FilterCriteria
|
717
|
+
attr_accessor kinesis_stream_parameters: Types::UpdatePipeSourceKinesisStreamParameters
|
718
|
+
attr_accessor managed_streaming_kafka_parameters: Types::UpdatePipeSourceManagedStreamingKafkaParameters
|
719
|
+
attr_accessor rabbit_mq_broker_parameters: Types::UpdatePipeSourceRabbitMQBrokerParameters
|
720
|
+
attr_accessor self_managed_kafka_parameters: Types::UpdatePipeSourceSelfManagedKafkaParameters
|
721
|
+
attr_accessor sqs_queue_parameters: Types::UpdatePipeSourceSqsQueueParameters
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class UpdatePipeSourceRabbitMQBrokerParameters
|
726
|
+
attr_accessor batch_size: ::Integer
|
727
|
+
attr_accessor credentials: Types::MQBrokerAccessCredentials
|
728
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class UpdatePipeSourceSelfManagedKafkaParameters
|
733
|
+
attr_accessor batch_size: ::Integer
|
734
|
+
attr_accessor credentials: Types::SelfManagedKafkaAccessConfigurationCredentials
|
735
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
736
|
+
attr_accessor server_root_ca_certificate: ::String
|
737
|
+
attr_accessor vpc: Types::SelfManagedKafkaAccessConfigurationVpc
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class UpdatePipeSourceSqsQueueParameters
|
742
|
+
attr_accessor batch_size: ::Integer
|
743
|
+
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
744
|
+
SENSITIVE: []
|
745
|
+
end
|
746
|
+
|
747
|
+
class ValidationException
|
748
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
749
|
+
attr_accessor message: ::String
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class ValidationExceptionField
|
754
|
+
attr_accessor message: ::String
|
755
|
+
attr_accessor name: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
end
|
759
|
+
end
|