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.
data/sig/client.rbs ADDED
@@ -0,0 +1,774 @@
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
9
+ module Pipes
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreatePipeResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePipeResponse]
77
+ def arn: () -> ::String
78
+ def creation_time: () -> ::Time
79
+ def 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")
80
+ def desired_state: () -> ("RUNNING" | "STOPPED")
81
+ def last_modified_time: () -> ::Time
82
+ def name: () -> ::String
83
+ end
84
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#create_pipe-instance_method
85
+ def create_pipe: (
86
+ ?description: ::String,
87
+ ?desired_state: ("RUNNING" | "STOPPED"),
88
+ ?enrichment: ::String,
89
+ ?enrichment_parameters: {
90
+ http_parameters: {
91
+ header_parameters: Hash[::String, ::String]?,
92
+ path_parameter_values: Array[::String]?,
93
+ query_string_parameters: Hash[::String, ::String]?
94
+ }?,
95
+ input_template: ::String?
96
+ },
97
+ ?log_configuration: {
98
+ cloudwatch_logs_log_destination: {
99
+ log_group_arn: ::String
100
+ }?,
101
+ firehose_log_destination: {
102
+ delivery_stream_arn: ::String
103
+ }?,
104
+ include_execution_data: Array[("ALL")]?,
105
+ level: ("OFF" | "ERROR" | "INFO" | "TRACE"),
106
+ s3_log_destination: {
107
+ bucket_name: ::String,
108
+ bucket_owner: ::String,
109
+ output_format: ("json" | "plain" | "w3c")?,
110
+ prefix: ::String?
111
+ }?
112
+ },
113
+ name: ::String,
114
+ role_arn: ::String,
115
+ source: ::String,
116
+ ?source_parameters: {
117
+ active_mq_broker_parameters: {
118
+ batch_size: ::Integer?,
119
+ credentials: {
120
+ basic_auth: ::String?
121
+ },
122
+ maximum_batching_window_in_seconds: ::Integer?,
123
+ queue_name: ::String
124
+ }?,
125
+ dynamo_db_stream_parameters: {
126
+ batch_size: ::Integer?,
127
+ dead_letter_config: {
128
+ arn: ::String?
129
+ }?,
130
+ maximum_batching_window_in_seconds: ::Integer?,
131
+ maximum_record_age_in_seconds: ::Integer?,
132
+ maximum_retry_attempts: ::Integer?,
133
+ on_partial_batch_item_failure: ("AUTOMATIC_BISECT")?,
134
+ parallelization_factor: ::Integer?,
135
+ starting_position: ("TRIM_HORIZON" | "LATEST")
136
+ }?,
137
+ filter_criteria: {
138
+ filters: Array[
139
+ {
140
+ pattern: ::String?
141
+ },
142
+ ]?
143
+ }?,
144
+ kinesis_stream_parameters: {
145
+ batch_size: ::Integer?,
146
+ dead_letter_config: {
147
+ arn: ::String?
148
+ }?,
149
+ maximum_batching_window_in_seconds: ::Integer?,
150
+ maximum_record_age_in_seconds: ::Integer?,
151
+ maximum_retry_attempts: ::Integer?,
152
+ on_partial_batch_item_failure: ("AUTOMATIC_BISECT")?,
153
+ parallelization_factor: ::Integer?,
154
+ starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP"),
155
+ starting_position_timestamp: ::Time?
156
+ }?,
157
+ managed_streaming_kafka_parameters: {
158
+ batch_size: ::Integer?,
159
+ consumer_group_id: ::String?,
160
+ credentials: {
161
+ client_certificate_tls_auth: ::String?,
162
+ sasl_scram_512_auth: ::String?
163
+ }?,
164
+ maximum_batching_window_in_seconds: ::Integer?,
165
+ starting_position: ("TRIM_HORIZON" | "LATEST")?,
166
+ topic_name: ::String
167
+ }?,
168
+ rabbit_mq_broker_parameters: {
169
+ batch_size: ::Integer?,
170
+ credentials: {
171
+ basic_auth: ::String?
172
+ },
173
+ maximum_batching_window_in_seconds: ::Integer?,
174
+ queue_name: ::String,
175
+ virtual_host: ::String?
176
+ }?,
177
+ self_managed_kafka_parameters: {
178
+ additional_bootstrap_servers: Array[::String]?,
179
+ batch_size: ::Integer?,
180
+ consumer_group_id: ::String?,
181
+ credentials: {
182
+ basic_auth: ::String?,
183
+ client_certificate_tls_auth: ::String?,
184
+ sasl_scram_256_auth: ::String?,
185
+ sasl_scram_512_auth: ::String?
186
+ }?,
187
+ maximum_batching_window_in_seconds: ::Integer?,
188
+ server_root_ca_certificate: ::String?,
189
+ starting_position: ("TRIM_HORIZON" | "LATEST")?,
190
+ topic_name: ::String,
191
+ vpc: {
192
+ security_group: Array[::String]?,
193
+ subnets: Array[::String]?
194
+ }?
195
+ }?,
196
+ sqs_queue_parameters: {
197
+ batch_size: ::Integer?,
198
+ maximum_batching_window_in_seconds: ::Integer?
199
+ }?
200
+ },
201
+ ?tags: Hash[::String, ::String],
202
+ target: ::String,
203
+ ?target_parameters: {
204
+ batch_job_parameters: {
205
+ array_properties: {
206
+ size: ::Integer?
207
+ }?,
208
+ container_overrides: {
209
+ command: Array[::String]?,
210
+ environment: Array[
211
+ {
212
+ name: ::String?,
213
+ value: ::String?
214
+ },
215
+ ]?,
216
+ instance_type: ::String?,
217
+ resource_requirements: Array[
218
+ {
219
+ type: ("GPU" | "MEMORY" | "VCPU"),
220
+ value: ::String
221
+ },
222
+ ]?
223
+ }?,
224
+ depends_on: Array[
225
+ {
226
+ job_id: ::String?,
227
+ type: ("N_TO_N" | "SEQUENTIAL")?
228
+ },
229
+ ]?,
230
+ job_definition: ::String,
231
+ job_name: ::String,
232
+ parameters: Hash[::String, ::String]?,
233
+ retry_strategy: {
234
+ attempts: ::Integer?
235
+ }?
236
+ }?,
237
+ cloud_watch_logs_parameters: {
238
+ log_stream_name: ::String?,
239
+ timestamp: ::String?
240
+ }?,
241
+ ecs_task_parameters: {
242
+ capacity_provider_strategy: Array[
243
+ {
244
+ base: ::Integer?,
245
+ capacity_provider: ::String,
246
+ weight: ::Integer?
247
+ },
248
+ ]?,
249
+ enable_ecs_managed_tags: bool?,
250
+ enable_execute_command: bool?,
251
+ group: ::String?,
252
+ launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
253
+ network_configuration: {
254
+ awsvpc_configuration: {
255
+ assign_public_ip: ("ENABLED" | "DISABLED")?,
256
+ security_groups: Array[::String]?,
257
+ subnets: Array[::String]
258
+ }?
259
+ }?,
260
+ overrides: {
261
+ container_overrides: Array[
262
+ {
263
+ command: Array[::String]?,
264
+ cpu: ::Integer?,
265
+ environment: Array[
266
+ {
267
+ name: ::String?,
268
+ value: ::String?
269
+ },
270
+ ]?,
271
+ environment_files: Array[
272
+ {
273
+ type: ("s3"),
274
+ value: ::String
275
+ },
276
+ ]?,
277
+ memory: ::Integer?,
278
+ memory_reservation: ::Integer?,
279
+ name: ::String?,
280
+ resource_requirements: Array[
281
+ {
282
+ type: ("GPU" | "InferenceAccelerator"),
283
+ value: ::String
284
+ },
285
+ ]?
286
+ },
287
+ ]?,
288
+ cpu: ::String?,
289
+ ephemeral_storage: {
290
+ size_in_gi_b: ::Integer
291
+ }?,
292
+ execution_role_arn: ::String?,
293
+ inference_accelerator_overrides: Array[
294
+ {
295
+ device_name: ::String?,
296
+ device_type: ::String?
297
+ },
298
+ ]?,
299
+ memory: ::String?,
300
+ task_role_arn: ::String?
301
+ }?,
302
+ placement_constraints: Array[
303
+ {
304
+ expression: ::String?,
305
+ type: ("distinctInstance" | "memberOf")?
306
+ },
307
+ ]?,
308
+ placement_strategy: Array[
309
+ {
310
+ field: ::String?,
311
+ type: ("random" | "spread" | "binpack")?
312
+ },
313
+ ]?,
314
+ platform_version: ::String?,
315
+ propagate_tags: ("TASK_DEFINITION")?,
316
+ reference_id: ::String?,
317
+ tags: Array[
318
+ {
319
+ key: ::String,
320
+ value: ::String
321
+ },
322
+ ]?,
323
+ task_count: ::Integer?,
324
+ task_definition_arn: ::String
325
+ }?,
326
+ event_bridge_event_bus_parameters: {
327
+ detail_type: ::String?,
328
+ endpoint_id: ::String?,
329
+ resources: Array[::String]?,
330
+ source: ::String?,
331
+ time: ::String?
332
+ }?,
333
+ http_parameters: {
334
+ header_parameters: Hash[::String, ::String]?,
335
+ path_parameter_values: Array[::String]?,
336
+ query_string_parameters: Hash[::String, ::String]?
337
+ }?,
338
+ input_template: ::String?,
339
+ kinesis_stream_parameters: {
340
+ partition_key: ::String
341
+ }?,
342
+ lambda_function_parameters: {
343
+ invocation_type: ("REQUEST_RESPONSE" | "FIRE_AND_FORGET")?
344
+ }?,
345
+ redshift_data_parameters: {
346
+ database: ::String,
347
+ db_user: ::String?,
348
+ secret_manager_arn: ::String?,
349
+ sqls: Array[::String],
350
+ statement_name: ::String?,
351
+ with_event: bool?
352
+ }?,
353
+ sage_maker_pipeline_parameters: {
354
+ pipeline_parameter_list: Array[
355
+ {
356
+ name: ::String,
357
+ value: ::String
358
+ },
359
+ ]?
360
+ }?,
361
+ sqs_queue_parameters: {
362
+ message_deduplication_id: ::String?,
363
+ message_group_id: ::String?
364
+ }?,
365
+ step_function_state_machine_parameters: {
366
+ invocation_type: ("REQUEST_RESPONSE" | "FIRE_AND_FORGET")?
367
+ }?
368
+ }
369
+ ) -> _CreatePipeResponseSuccess
370
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipeResponseSuccess
371
+
372
+ interface _DeletePipeResponseSuccess
373
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePipeResponse]
374
+ def arn: () -> ::String
375
+ def creation_time: () -> ::Time
376
+ def 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")
377
+ def desired_state: () -> ("RUNNING" | "STOPPED" | "DELETED")
378
+ def last_modified_time: () -> ::Time
379
+ def name: () -> ::String
380
+ end
381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#delete_pipe-instance_method
382
+ def delete_pipe: (
383
+ name: ::String
384
+ ) -> _DeletePipeResponseSuccess
385
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePipeResponseSuccess
386
+
387
+ interface _DescribePipeResponseSuccess
388
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePipeResponse]
389
+ def arn: () -> ::String
390
+ def creation_time: () -> ::Time
391
+ def 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")
392
+ def description: () -> ::String
393
+ def desired_state: () -> ("RUNNING" | "STOPPED" | "DELETED")
394
+ def enrichment: () -> ::String
395
+ def enrichment_parameters: () -> Types::PipeEnrichmentParameters
396
+ def last_modified_time: () -> ::Time
397
+ def log_configuration: () -> Types::PipeLogConfiguration
398
+ def name: () -> ::String
399
+ def role_arn: () -> ::String
400
+ def source: () -> ::String
401
+ def source_parameters: () -> Types::PipeSourceParameters
402
+ def state_reason: () -> ::String
403
+ def tags: () -> ::Hash[::String, ::String]
404
+ def target: () -> ::String
405
+ def target_parameters: () -> Types::PipeTargetParameters
406
+ end
407
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#describe_pipe-instance_method
408
+ def describe_pipe: (
409
+ name: ::String
410
+ ) -> _DescribePipeResponseSuccess
411
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePipeResponseSuccess
412
+
413
+ interface _ListPipesResponseSuccess
414
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPipesResponse]
415
+ def next_token: () -> ::String
416
+ def pipes: () -> ::Array[Types::Pipe]
417
+ end
418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#list_pipes-instance_method
419
+ def list_pipes: (
420
+ ?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"),
421
+ ?desired_state: ("RUNNING" | "STOPPED"),
422
+ ?limit: ::Integer,
423
+ ?name_prefix: ::String,
424
+ ?next_token: ::String,
425
+ ?source_prefix: ::String,
426
+ ?target_prefix: ::String
427
+ ) -> _ListPipesResponseSuccess
428
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPipesResponseSuccess
429
+
430
+ interface _ListTagsForResourceResponseSuccess
431
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
432
+ def tags: () -> ::Hash[::String, ::String]
433
+ end
434
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#list_tags_for_resource-instance_method
435
+ def list_tags_for_resource: (
436
+ resource_arn: ::String
437
+ ) -> _ListTagsForResourceResponseSuccess
438
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
439
+
440
+ interface _StartPipeResponseSuccess
441
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartPipeResponse]
442
+ def arn: () -> ::String
443
+ def creation_time: () -> ::Time
444
+ def 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")
445
+ def desired_state: () -> ("RUNNING" | "STOPPED")
446
+ def last_modified_time: () -> ::Time
447
+ def name: () -> ::String
448
+ end
449
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#start_pipe-instance_method
450
+ def start_pipe: (
451
+ name: ::String
452
+ ) -> _StartPipeResponseSuccess
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartPipeResponseSuccess
454
+
455
+ interface _StopPipeResponseSuccess
456
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopPipeResponse]
457
+ def arn: () -> ::String
458
+ def creation_time: () -> ::Time
459
+ def 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")
460
+ def desired_state: () -> ("RUNNING" | "STOPPED")
461
+ def last_modified_time: () -> ::Time
462
+ def name: () -> ::String
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#stop_pipe-instance_method
465
+ def stop_pipe: (
466
+ name: ::String
467
+ ) -> _StopPipeResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopPipeResponseSuccess
469
+
470
+ interface _TagResourceResponseSuccess
471
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
472
+ end
473
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#tag_resource-instance_method
474
+ def tag_resource: (
475
+ resource_arn: ::String,
476
+ tags: Hash[::String, ::String]
477
+ ) -> _TagResourceResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
479
+
480
+ interface _UntagResourceResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
482
+ end
483
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#untag_resource-instance_method
484
+ def untag_resource: (
485
+ resource_arn: ::String,
486
+ tag_keys: Array[::String]
487
+ ) -> _UntagResourceResponseSuccess
488
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
489
+
490
+ interface _UpdatePipeResponseSuccess
491
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePipeResponse]
492
+ def arn: () -> ::String
493
+ def creation_time: () -> ::Time
494
+ def 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")
495
+ def desired_state: () -> ("RUNNING" | "STOPPED")
496
+ def last_modified_time: () -> ::Time
497
+ def name: () -> ::String
498
+ end
499
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#update_pipe-instance_method
500
+ def update_pipe: (
501
+ ?description: ::String,
502
+ ?desired_state: ("RUNNING" | "STOPPED"),
503
+ ?enrichment: ::String,
504
+ ?enrichment_parameters: {
505
+ http_parameters: {
506
+ header_parameters: Hash[::String, ::String]?,
507
+ path_parameter_values: Array[::String]?,
508
+ query_string_parameters: Hash[::String, ::String]?
509
+ }?,
510
+ input_template: ::String?
511
+ },
512
+ ?log_configuration: {
513
+ cloudwatch_logs_log_destination: {
514
+ log_group_arn: ::String
515
+ }?,
516
+ firehose_log_destination: {
517
+ delivery_stream_arn: ::String
518
+ }?,
519
+ include_execution_data: Array[("ALL")]?,
520
+ level: ("OFF" | "ERROR" | "INFO" | "TRACE"),
521
+ s3_log_destination: {
522
+ bucket_name: ::String,
523
+ bucket_owner: ::String,
524
+ output_format: ("json" | "plain" | "w3c")?,
525
+ prefix: ::String?
526
+ }?
527
+ },
528
+ name: ::String,
529
+ role_arn: ::String,
530
+ ?source_parameters: {
531
+ active_mq_broker_parameters: {
532
+ batch_size: ::Integer?,
533
+ credentials: {
534
+ basic_auth: ::String?
535
+ },
536
+ maximum_batching_window_in_seconds: ::Integer?
537
+ }?,
538
+ dynamo_db_stream_parameters: {
539
+ batch_size: ::Integer?,
540
+ dead_letter_config: {
541
+ arn: ::String?
542
+ }?,
543
+ maximum_batching_window_in_seconds: ::Integer?,
544
+ maximum_record_age_in_seconds: ::Integer?,
545
+ maximum_retry_attempts: ::Integer?,
546
+ on_partial_batch_item_failure: ("AUTOMATIC_BISECT")?,
547
+ parallelization_factor: ::Integer?
548
+ }?,
549
+ filter_criteria: {
550
+ filters: Array[
551
+ {
552
+ pattern: ::String?
553
+ },
554
+ ]?
555
+ }?,
556
+ kinesis_stream_parameters: {
557
+ batch_size: ::Integer?,
558
+ dead_letter_config: {
559
+ arn: ::String?
560
+ }?,
561
+ maximum_batching_window_in_seconds: ::Integer?,
562
+ maximum_record_age_in_seconds: ::Integer?,
563
+ maximum_retry_attempts: ::Integer?,
564
+ on_partial_batch_item_failure: ("AUTOMATIC_BISECT")?,
565
+ parallelization_factor: ::Integer?
566
+ }?,
567
+ managed_streaming_kafka_parameters: {
568
+ batch_size: ::Integer?,
569
+ credentials: {
570
+ client_certificate_tls_auth: ::String?,
571
+ sasl_scram_512_auth: ::String?
572
+ }?,
573
+ maximum_batching_window_in_seconds: ::Integer?
574
+ }?,
575
+ rabbit_mq_broker_parameters: {
576
+ batch_size: ::Integer?,
577
+ credentials: {
578
+ basic_auth: ::String?
579
+ },
580
+ maximum_batching_window_in_seconds: ::Integer?
581
+ }?,
582
+ self_managed_kafka_parameters: {
583
+ batch_size: ::Integer?,
584
+ credentials: {
585
+ basic_auth: ::String?,
586
+ client_certificate_tls_auth: ::String?,
587
+ sasl_scram_256_auth: ::String?,
588
+ sasl_scram_512_auth: ::String?
589
+ }?,
590
+ maximum_batching_window_in_seconds: ::Integer?,
591
+ server_root_ca_certificate: ::String?,
592
+ vpc: {
593
+ security_group: Array[::String]?,
594
+ subnets: Array[::String]?
595
+ }?
596
+ }?,
597
+ sqs_queue_parameters: {
598
+ batch_size: ::Integer?,
599
+ maximum_batching_window_in_seconds: ::Integer?
600
+ }?
601
+ },
602
+ ?target: ::String,
603
+ ?target_parameters: {
604
+ batch_job_parameters: {
605
+ array_properties: {
606
+ size: ::Integer?
607
+ }?,
608
+ container_overrides: {
609
+ command: Array[::String]?,
610
+ environment: Array[
611
+ {
612
+ name: ::String?,
613
+ value: ::String?
614
+ },
615
+ ]?,
616
+ instance_type: ::String?,
617
+ resource_requirements: Array[
618
+ {
619
+ type: ("GPU" | "MEMORY" | "VCPU"),
620
+ value: ::String
621
+ },
622
+ ]?
623
+ }?,
624
+ depends_on: Array[
625
+ {
626
+ job_id: ::String?,
627
+ type: ("N_TO_N" | "SEQUENTIAL")?
628
+ },
629
+ ]?,
630
+ job_definition: ::String,
631
+ job_name: ::String,
632
+ parameters: Hash[::String, ::String]?,
633
+ retry_strategy: {
634
+ attempts: ::Integer?
635
+ }?
636
+ }?,
637
+ cloud_watch_logs_parameters: {
638
+ log_stream_name: ::String?,
639
+ timestamp: ::String?
640
+ }?,
641
+ ecs_task_parameters: {
642
+ capacity_provider_strategy: Array[
643
+ {
644
+ base: ::Integer?,
645
+ capacity_provider: ::String,
646
+ weight: ::Integer?
647
+ },
648
+ ]?,
649
+ enable_ecs_managed_tags: bool?,
650
+ enable_execute_command: bool?,
651
+ group: ::String?,
652
+ launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
653
+ network_configuration: {
654
+ awsvpc_configuration: {
655
+ assign_public_ip: ("ENABLED" | "DISABLED")?,
656
+ security_groups: Array[::String]?,
657
+ subnets: Array[::String]
658
+ }?
659
+ }?,
660
+ overrides: {
661
+ container_overrides: Array[
662
+ {
663
+ command: Array[::String]?,
664
+ cpu: ::Integer?,
665
+ environment: Array[
666
+ {
667
+ name: ::String?,
668
+ value: ::String?
669
+ },
670
+ ]?,
671
+ environment_files: Array[
672
+ {
673
+ type: ("s3"),
674
+ value: ::String
675
+ },
676
+ ]?,
677
+ memory: ::Integer?,
678
+ memory_reservation: ::Integer?,
679
+ name: ::String?,
680
+ resource_requirements: Array[
681
+ {
682
+ type: ("GPU" | "InferenceAccelerator"),
683
+ value: ::String
684
+ },
685
+ ]?
686
+ },
687
+ ]?,
688
+ cpu: ::String?,
689
+ ephemeral_storage: {
690
+ size_in_gi_b: ::Integer
691
+ }?,
692
+ execution_role_arn: ::String?,
693
+ inference_accelerator_overrides: Array[
694
+ {
695
+ device_name: ::String?,
696
+ device_type: ::String?
697
+ },
698
+ ]?,
699
+ memory: ::String?,
700
+ task_role_arn: ::String?
701
+ }?,
702
+ placement_constraints: Array[
703
+ {
704
+ expression: ::String?,
705
+ type: ("distinctInstance" | "memberOf")?
706
+ },
707
+ ]?,
708
+ placement_strategy: Array[
709
+ {
710
+ field: ::String?,
711
+ type: ("random" | "spread" | "binpack")?
712
+ },
713
+ ]?,
714
+ platform_version: ::String?,
715
+ propagate_tags: ("TASK_DEFINITION")?,
716
+ reference_id: ::String?,
717
+ tags: Array[
718
+ {
719
+ key: ::String,
720
+ value: ::String
721
+ },
722
+ ]?,
723
+ task_count: ::Integer?,
724
+ task_definition_arn: ::String
725
+ }?,
726
+ event_bridge_event_bus_parameters: {
727
+ detail_type: ::String?,
728
+ endpoint_id: ::String?,
729
+ resources: Array[::String]?,
730
+ source: ::String?,
731
+ time: ::String?
732
+ }?,
733
+ http_parameters: {
734
+ header_parameters: Hash[::String, ::String]?,
735
+ path_parameter_values: Array[::String]?,
736
+ query_string_parameters: Hash[::String, ::String]?
737
+ }?,
738
+ input_template: ::String?,
739
+ kinesis_stream_parameters: {
740
+ partition_key: ::String
741
+ }?,
742
+ lambda_function_parameters: {
743
+ invocation_type: ("REQUEST_RESPONSE" | "FIRE_AND_FORGET")?
744
+ }?,
745
+ redshift_data_parameters: {
746
+ database: ::String,
747
+ db_user: ::String?,
748
+ secret_manager_arn: ::String?,
749
+ sqls: Array[::String],
750
+ statement_name: ::String?,
751
+ with_event: bool?
752
+ }?,
753
+ sage_maker_pipeline_parameters: {
754
+ pipeline_parameter_list: Array[
755
+ {
756
+ name: ::String,
757
+ value: ::String
758
+ },
759
+ ]?
760
+ }?,
761
+ sqs_queue_parameters: {
762
+ message_deduplication_id: ::String?,
763
+ message_group_id: ::String?
764
+ }?,
765
+ step_function_state_machine_parameters: {
766
+ invocation_type: ("REQUEST_RESPONSE" | "FIRE_AND_FORGET")?
767
+ }?
768
+ }
769
+ ) -> _UpdatePipeResponseSuccess
770
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipeResponseSuccess
771
+ end
772
+ end
773
+ end
774
+