aws-sdk-databasemigrationservice 1.91.0 → 1.92.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,2643 @@
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 DatabaseMigrationService
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/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
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _AddTagsToResourceResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddTagsToResourceResponse]
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#add_tags_to_resource-instance_method
80
+ def add_tags_to_resource: (
81
+ resource_arn: ::String,
82
+ tags: Array[
83
+ {
84
+ key: ::String?,
85
+ value: ::String?,
86
+ resource_arn: ::String?
87
+ },
88
+ ]
89
+ ) -> _AddTagsToResourceResponseSuccess
90
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddTagsToResourceResponseSuccess
91
+
92
+ interface _ApplyPendingMaintenanceActionResponseSuccess
93
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplyPendingMaintenanceActionResponse]
94
+ def resource_pending_maintenance_actions: () -> Types::ResourcePendingMaintenanceActions
95
+ end
96
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#apply_pending_maintenance_action-instance_method
97
+ def apply_pending_maintenance_action: (
98
+ replication_instance_arn: ::String,
99
+ apply_action: ::String,
100
+ opt_in_type: ::String
101
+ ) -> _ApplyPendingMaintenanceActionResponseSuccess
102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ApplyPendingMaintenanceActionResponseSuccess
103
+
104
+ interface _BatchStartRecommendationsResponseSuccess
105
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchStartRecommendationsResponse]
106
+ def error_entries: () -> ::Array[Types::BatchStartRecommendationsErrorEntry]
107
+ end
108
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#batch_start_recommendations-instance_method
109
+ def batch_start_recommendations: (
110
+ ?data: Array[
111
+ {
112
+ database_id: ::String,
113
+ settings: {
114
+ instance_sizing_type: ::String,
115
+ workload_type: ::String
116
+ }
117
+ },
118
+ ]
119
+ ) -> _BatchStartRecommendationsResponseSuccess
120
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchStartRecommendationsResponseSuccess
121
+
122
+ interface _CancelReplicationTaskAssessmentRunResponseSuccess
123
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelReplicationTaskAssessmentRunResponse]
124
+ def replication_task_assessment_run: () -> Types::ReplicationTaskAssessmentRun
125
+ end
126
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#cancel_replication_task_assessment_run-instance_method
127
+ def cancel_replication_task_assessment_run: (
128
+ replication_task_assessment_run_arn: ::String
129
+ ) -> _CancelReplicationTaskAssessmentRunResponseSuccess
130
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelReplicationTaskAssessmentRunResponseSuccess
131
+
132
+ interface _CreateDataProviderResponseSuccess
133
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataProviderResponse]
134
+ def data_provider: () -> Types::DataProvider
135
+ end
136
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_data_provider-instance_method
137
+ def create_data_provider: (
138
+ ?data_provider_name: ::String,
139
+ ?description: ::String,
140
+ engine: ::String,
141
+ settings: {
142
+ redshift_settings: {
143
+ server_name: ::String?,
144
+ port: ::Integer?,
145
+ database_name: ::String?
146
+ }?,
147
+ postgre_sql_settings: {
148
+ server_name: ::String?,
149
+ port: ::Integer?,
150
+ database_name: ::String?,
151
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
152
+ certificate_arn: ::String?
153
+ }?,
154
+ my_sql_settings: {
155
+ server_name: ::String?,
156
+ port: ::Integer?,
157
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
158
+ certificate_arn: ::String?
159
+ }?,
160
+ oracle_settings: {
161
+ server_name: ::String?,
162
+ port: ::Integer?,
163
+ database_name: ::String?,
164
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
165
+ certificate_arn: ::String?,
166
+ asm_server: ::String?,
167
+ secrets_manager_oracle_asm_secret_id: ::String?,
168
+ secrets_manager_oracle_asm_access_role_arn: ::String?,
169
+ secrets_manager_security_db_encryption_secret_id: ::String?,
170
+ secrets_manager_security_db_encryption_access_role_arn: ::String?
171
+ }?,
172
+ microsoft_sql_server_settings: {
173
+ server_name: ::String?,
174
+ port: ::Integer?,
175
+ database_name: ::String?,
176
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
177
+ certificate_arn: ::String?
178
+ }?,
179
+ doc_db_settings: {
180
+ server_name: ::String?,
181
+ port: ::Integer?,
182
+ database_name: ::String?,
183
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
184
+ certificate_arn: ::String?
185
+ }?,
186
+ maria_db_settings: {
187
+ server_name: ::String?,
188
+ port: ::Integer?,
189
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
190
+ certificate_arn: ::String?
191
+ }?,
192
+ mongo_db_settings: {
193
+ server_name: ::String?,
194
+ port: ::Integer?,
195
+ database_name: ::String?,
196
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
197
+ certificate_arn: ::String?,
198
+ auth_type: ("no" | "password")?,
199
+ auth_source: ::String?,
200
+ auth_mechanism: ("default" | "mongodb_cr" | "scram_sha_1")?
201
+ }?
202
+ },
203
+ ?tags: Array[
204
+ {
205
+ key: ::String?,
206
+ value: ::String?,
207
+ resource_arn: ::String?
208
+ },
209
+ ]
210
+ ) -> _CreateDataProviderResponseSuccess
211
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataProviderResponseSuccess
212
+
213
+ interface _CreateEndpointResponseSuccess
214
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEndpointResponse]
215
+ def endpoint: () -> Types::Endpoint
216
+ end
217
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_endpoint-instance_method
218
+ def create_endpoint: (
219
+ endpoint_identifier: ::String,
220
+ endpoint_type: ("source" | "target"),
221
+ engine_name: ::String,
222
+ ?username: ::String,
223
+ ?password: ::String,
224
+ ?server_name: ::String,
225
+ ?port: ::Integer,
226
+ ?database_name: ::String,
227
+ ?extra_connection_attributes: ::String,
228
+ ?kms_key_id: ::String,
229
+ ?tags: Array[
230
+ {
231
+ key: ::String?,
232
+ value: ::String?,
233
+ resource_arn: ::String?
234
+ },
235
+ ],
236
+ ?certificate_arn: ::String,
237
+ ?ssl_mode: ("none" | "require" | "verify-ca" | "verify-full"),
238
+ ?service_access_role_arn: ::String,
239
+ ?external_table_definition: ::String,
240
+ ?dynamo_db_settings: {
241
+ service_access_role_arn: ::String
242
+ },
243
+ ?s3_settings: {
244
+ service_access_role_arn: ::String?,
245
+ external_table_definition: ::String?,
246
+ csv_row_delimiter: ::String?,
247
+ csv_delimiter: ::String?,
248
+ bucket_folder: ::String?,
249
+ bucket_name: ::String?,
250
+ compression_type: ("none" | "gzip")?,
251
+ encryption_mode: ("sse-s3" | "sse-kms")?,
252
+ server_side_encryption_kms_key_id: ::String?,
253
+ data_format: ("csv" | "parquet")?,
254
+ encoding_type: ("plain" | "plain-dictionary" | "rle-dictionary")?,
255
+ dict_page_size_limit: ::Integer?,
256
+ row_group_length: ::Integer?,
257
+ data_page_size: ::Integer?,
258
+ parquet_version: ("parquet-1-0" | "parquet-2-0")?,
259
+ enable_statistics: bool?,
260
+ include_op_for_full_load: bool?,
261
+ cdc_inserts_only: bool?,
262
+ timestamp_column_name: ::String?,
263
+ parquet_timestamp_in_millisecond: bool?,
264
+ cdc_inserts_and_updates: bool?,
265
+ date_partition_enabled: bool?,
266
+ date_partition_sequence: ("YYYYMMDD" | "YYYYMMDDHH" | "YYYYMM" | "MMYYYYDD" | "DDMMYYYY")?,
267
+ date_partition_delimiter: ("SLASH" | "UNDERSCORE" | "DASH" | "NONE")?,
268
+ use_csv_no_sup_value: bool?,
269
+ csv_no_sup_value: ::String?,
270
+ preserve_transactions: bool?,
271
+ cdc_path: ::String?,
272
+ use_task_start_time_for_full_load_timestamp: bool?,
273
+ canned_acl_for_objects: ("none" | "private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")?,
274
+ add_column_name: bool?,
275
+ cdc_max_batch_interval: ::Integer?,
276
+ cdc_min_file_size: ::Integer?,
277
+ csv_null_value: ::String?,
278
+ ignore_header_rows: ::Integer?,
279
+ max_file_size: ::Integer?,
280
+ rfc_4180: bool?,
281
+ date_partition_timezone: ::String?,
282
+ add_trailing_padding_character: bool?,
283
+ expected_bucket_owner: ::String?,
284
+ glue_catalog_generation: bool?
285
+ },
286
+ ?dms_transfer_settings: {
287
+ service_access_role_arn: ::String?,
288
+ bucket_name: ::String?
289
+ },
290
+ ?mongo_db_settings: {
291
+ username: ::String?,
292
+ password: ::String?,
293
+ server_name: ::String?,
294
+ port: ::Integer?,
295
+ database_name: ::String?,
296
+ auth_type: ("no" | "password")?,
297
+ auth_mechanism: ("default" | "mongodb_cr" | "scram_sha_1")?,
298
+ nesting_level: ("none" | "one")?,
299
+ extract_doc_id: ::String?,
300
+ docs_to_investigate: ::String?,
301
+ auth_source: ::String?,
302
+ kms_key_id: ::String?,
303
+ secrets_manager_access_role_arn: ::String?,
304
+ secrets_manager_secret_id: ::String?,
305
+ use_update_look_up: bool?,
306
+ replicate_shard_collections: bool?
307
+ },
308
+ ?kinesis_settings: {
309
+ stream_arn: ::String?,
310
+ message_format: ("json" | "json-unformatted")?,
311
+ service_access_role_arn: ::String?,
312
+ include_transaction_details: bool?,
313
+ include_partition_value: bool?,
314
+ partition_include_schema_table: bool?,
315
+ include_table_alter_operations: bool?,
316
+ include_control_details: bool?,
317
+ include_null_and_empty: bool?,
318
+ no_hex_prefix: bool?
319
+ },
320
+ ?kafka_settings: {
321
+ broker: ::String?,
322
+ topic: ::String?,
323
+ message_format: ("json" | "json-unformatted")?,
324
+ include_transaction_details: bool?,
325
+ include_partition_value: bool?,
326
+ partition_include_schema_table: bool?,
327
+ include_table_alter_operations: bool?,
328
+ include_control_details: bool?,
329
+ message_max_bytes: ::Integer?,
330
+ include_null_and_empty: bool?,
331
+ security_protocol: ("plaintext" | "ssl-authentication" | "ssl-encryption" | "sasl-ssl")?,
332
+ ssl_client_certificate_arn: ::String?,
333
+ ssl_client_key_arn: ::String?,
334
+ ssl_client_key_password: ::String?,
335
+ ssl_ca_certificate_arn: ::String?,
336
+ sasl_username: ::String?,
337
+ sasl_password: ::String?,
338
+ no_hex_prefix: bool?,
339
+ sasl_mechanism: ("scram-sha-512" | "plain")?,
340
+ ssl_endpoint_identification_algorithm: ("none" | "https")?
341
+ },
342
+ ?elasticsearch_settings: {
343
+ service_access_role_arn: ::String,
344
+ endpoint_uri: ::String,
345
+ full_load_error_percentage: ::Integer?,
346
+ error_retry_duration: ::Integer?,
347
+ use_new_mapping_type: bool?
348
+ },
349
+ ?neptune_settings: {
350
+ service_access_role_arn: ::String?,
351
+ s3_bucket_name: ::String,
352
+ s3_bucket_folder: ::String,
353
+ error_retry_duration: ::Integer?,
354
+ max_file_size: ::Integer?,
355
+ max_retry_count: ::Integer?,
356
+ iam_auth_enabled: bool?
357
+ },
358
+ ?redshift_settings: {
359
+ accept_any_date: bool?,
360
+ after_connect_script: ::String?,
361
+ bucket_folder: ::String?,
362
+ bucket_name: ::String?,
363
+ case_sensitive_names: bool?,
364
+ comp_update: bool?,
365
+ connection_timeout: ::Integer?,
366
+ database_name: ::String?,
367
+ date_format: ::String?,
368
+ empty_as_null: bool?,
369
+ encryption_mode: ("sse-s3" | "sse-kms")?,
370
+ explicit_ids: bool?,
371
+ file_transfer_upload_streams: ::Integer?,
372
+ load_timeout: ::Integer?,
373
+ max_file_size: ::Integer?,
374
+ password: ::String?,
375
+ port: ::Integer?,
376
+ remove_quotes: bool?,
377
+ replace_invalid_chars: ::String?,
378
+ replace_chars: ::String?,
379
+ server_name: ::String?,
380
+ service_access_role_arn: ::String?,
381
+ server_side_encryption_kms_key_id: ::String?,
382
+ time_format: ::String?,
383
+ trim_blanks: bool?,
384
+ truncate_columns: bool?,
385
+ username: ::String?,
386
+ write_buffer_size: ::Integer?,
387
+ secrets_manager_access_role_arn: ::String?,
388
+ secrets_manager_secret_id: ::String?,
389
+ map_boolean_as_boolean: bool?
390
+ },
391
+ ?postgre_sql_settings: {
392
+ after_connect_script: ::String?,
393
+ capture_ddls: bool?,
394
+ max_file_size: ::Integer?,
395
+ database_name: ::String?,
396
+ ddl_artifacts_schema: ::String?,
397
+ execute_timeout: ::Integer?,
398
+ fail_tasks_on_lob_truncation: bool?,
399
+ heartbeat_enable: bool?,
400
+ heartbeat_schema: ::String?,
401
+ heartbeat_frequency: ::Integer?,
402
+ password: ::String?,
403
+ port: ::Integer?,
404
+ server_name: ::String?,
405
+ username: ::String?,
406
+ slot_name: ::String?,
407
+ plugin_name: ("no-preference" | "test-decoding" | "pglogical")?,
408
+ secrets_manager_access_role_arn: ::String?,
409
+ secrets_manager_secret_id: ::String?,
410
+ trim_space_in_char: bool?,
411
+ map_boolean_as_boolean: bool?,
412
+ map_jsonb_as_clob: bool?,
413
+ map_long_varchar_as: ("wstring" | "clob" | "nclob")?,
414
+ database_mode: ("default" | "babelfish")?,
415
+ babelfish_database_name: ::String?
416
+ },
417
+ ?my_sql_settings: {
418
+ after_connect_script: ::String?,
419
+ clean_source_metadata_on_mismatch: bool?,
420
+ database_name: ::String?,
421
+ events_poll_interval: ::Integer?,
422
+ target_db_type: ("specific-database" | "multiple-databases")?,
423
+ max_file_size: ::Integer?,
424
+ parallel_load_threads: ::Integer?,
425
+ password: ::String?,
426
+ port: ::Integer?,
427
+ server_name: ::String?,
428
+ server_timezone: ::String?,
429
+ username: ::String?,
430
+ secrets_manager_access_role_arn: ::String?,
431
+ secrets_manager_secret_id: ::String?,
432
+ execute_timeout: ::Integer?
433
+ },
434
+ ?oracle_settings: {
435
+ add_supplemental_logging: bool?,
436
+ archived_log_dest_id: ::Integer?,
437
+ additional_archived_log_dest_id: ::Integer?,
438
+ extra_archived_log_dest_ids: Array[::Integer]?,
439
+ allow_select_nested_tables: bool?,
440
+ parallel_asm_read_threads: ::Integer?,
441
+ read_ahead_blocks: ::Integer?,
442
+ access_alternate_directly: bool?,
443
+ use_alternate_folder_for_online: bool?,
444
+ oracle_path_prefix: ::String?,
445
+ use_path_prefix: ::String?,
446
+ replace_path_prefix: bool?,
447
+ enable_homogenous_tablespace: bool?,
448
+ direct_path_no_log: bool?,
449
+ archived_logs_only: bool?,
450
+ asm_password: ::String?,
451
+ asm_server: ::String?,
452
+ asm_user: ::String?,
453
+ char_length_semantics: ("default" | "char" | "byte")?,
454
+ database_name: ::String?,
455
+ direct_path_parallel_load: bool?,
456
+ fail_tasks_on_lob_truncation: bool?,
457
+ number_datatype_scale: ::Integer?,
458
+ password: ::String?,
459
+ port: ::Integer?,
460
+ read_table_space_name: bool?,
461
+ retry_interval: ::Integer?,
462
+ security_db_encryption: ::String?,
463
+ security_db_encryption_name: ::String?,
464
+ server_name: ::String?,
465
+ spatial_data_option_to_geo_json_function_name: ::String?,
466
+ standby_delay_time: ::Integer?,
467
+ username: ::String?,
468
+ use_b_file: bool?,
469
+ use_direct_path_full_load: bool?,
470
+ use_logminer_reader: bool?,
471
+ secrets_manager_access_role_arn: ::String?,
472
+ secrets_manager_secret_id: ::String?,
473
+ secrets_manager_oracle_asm_access_role_arn: ::String?,
474
+ secrets_manager_oracle_asm_secret_id: ::String?,
475
+ trim_space_in_char: bool?,
476
+ convert_timestamp_with_zone_to_utc: bool?,
477
+ open_transaction_window: ::Integer?
478
+ },
479
+ ?sybase_settings: {
480
+ database_name: ::String?,
481
+ password: ::String?,
482
+ port: ::Integer?,
483
+ server_name: ::String?,
484
+ username: ::String?,
485
+ secrets_manager_access_role_arn: ::String?,
486
+ secrets_manager_secret_id: ::String?
487
+ },
488
+ ?microsoft_sql_server_settings: {
489
+ port: ::Integer?,
490
+ bcp_packet_size: ::Integer?,
491
+ database_name: ::String?,
492
+ control_tables_file_group: ::String?,
493
+ password: ::String?,
494
+ query_single_always_on_node: bool?,
495
+ read_backup_only: bool?,
496
+ safeguard_policy: ("rely-on-sql-server-replication-agent" | "exclusive-automatic-truncation" | "shared-automatic-truncation")?,
497
+ server_name: ::String?,
498
+ username: ::String?,
499
+ use_bcp_full_load: bool?,
500
+ use_third_party_backup_device: bool?,
501
+ secrets_manager_access_role_arn: ::String?,
502
+ secrets_manager_secret_id: ::String?,
503
+ trim_space_in_char: bool?,
504
+ tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")?,
505
+ force_lob_lookup: bool?
506
+ },
507
+ ?ibm_db_2_settings: {
508
+ database_name: ::String?,
509
+ password: ::String?,
510
+ port: ::Integer?,
511
+ server_name: ::String?,
512
+ set_data_capture_changes: bool?,
513
+ current_lsn: ::String?,
514
+ max_k_bytes_per_read: ::Integer?,
515
+ username: ::String?,
516
+ secrets_manager_access_role_arn: ::String?,
517
+ secrets_manager_secret_id: ::String?,
518
+ load_timeout: ::Integer?,
519
+ write_buffer_size: ::Integer?,
520
+ max_file_size: ::Integer?,
521
+ keep_csv_files: bool?
522
+ },
523
+ ?resource_identifier: ::String,
524
+ ?doc_db_settings: {
525
+ username: ::String?,
526
+ password: ::String?,
527
+ server_name: ::String?,
528
+ port: ::Integer?,
529
+ database_name: ::String?,
530
+ nesting_level: ("none" | "one")?,
531
+ extract_doc_id: bool?,
532
+ docs_to_investigate: ::Integer?,
533
+ kms_key_id: ::String?,
534
+ secrets_manager_access_role_arn: ::String?,
535
+ secrets_manager_secret_id: ::String?,
536
+ use_update_look_up: bool?,
537
+ replicate_shard_collections: bool?
538
+ },
539
+ ?redis_settings: {
540
+ server_name: ::String,
541
+ port: ::Integer,
542
+ ssl_security_protocol: ("plaintext" | "ssl-encryption")?,
543
+ auth_type: ("none" | "auth-role" | "auth-token")?,
544
+ auth_user_name: ::String?,
545
+ auth_password: ::String?,
546
+ ssl_ca_certificate_arn: ::String?
547
+ },
548
+ ?gcp_my_sql_settings: {
549
+ after_connect_script: ::String?,
550
+ clean_source_metadata_on_mismatch: bool?,
551
+ database_name: ::String?,
552
+ events_poll_interval: ::Integer?,
553
+ target_db_type: ("specific-database" | "multiple-databases")?,
554
+ max_file_size: ::Integer?,
555
+ parallel_load_threads: ::Integer?,
556
+ password: ::String?,
557
+ port: ::Integer?,
558
+ server_name: ::String?,
559
+ server_timezone: ::String?,
560
+ username: ::String?,
561
+ secrets_manager_access_role_arn: ::String?,
562
+ secrets_manager_secret_id: ::String?
563
+ },
564
+ ?timestream_settings: {
565
+ database_name: ::String,
566
+ memory_duration: ::Integer,
567
+ magnetic_duration: ::Integer,
568
+ cdc_inserts_and_updates: bool?,
569
+ enable_magnetic_store_writes: bool?
570
+ }
571
+ ) -> _CreateEndpointResponseSuccess
572
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEndpointResponseSuccess
573
+
574
+ interface _CreateEventSubscriptionResponseSuccess
575
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventSubscriptionResponse]
576
+ def event_subscription: () -> Types::EventSubscription
577
+ end
578
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_event_subscription-instance_method
579
+ def create_event_subscription: (
580
+ subscription_name: ::String,
581
+ sns_topic_arn: ::String,
582
+ ?source_type: ::String,
583
+ ?event_categories: Array[::String],
584
+ ?source_ids: Array[::String],
585
+ ?enabled: bool,
586
+ ?tags: Array[
587
+ {
588
+ key: ::String?,
589
+ value: ::String?,
590
+ resource_arn: ::String?
591
+ },
592
+ ]
593
+ ) -> _CreateEventSubscriptionResponseSuccess
594
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventSubscriptionResponseSuccess
595
+
596
+ interface _CreateFleetAdvisorCollectorResponseSuccess
597
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetAdvisorCollectorResponse]
598
+ def collector_referenced_id: () -> ::String
599
+ def collector_name: () -> ::String
600
+ def description: () -> ::String
601
+ def service_access_role_arn: () -> ::String
602
+ def s3_bucket_name: () -> ::String
603
+ end
604
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_fleet_advisor_collector-instance_method
605
+ def create_fleet_advisor_collector: (
606
+ collector_name: ::String,
607
+ ?description: ::String,
608
+ service_access_role_arn: ::String,
609
+ s3_bucket_name: ::String
610
+ ) -> _CreateFleetAdvisorCollectorResponseSuccess
611
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetAdvisorCollectorResponseSuccess
612
+
613
+ interface _CreateInstanceProfileResponseSuccess
614
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstanceProfileResponse]
615
+ def instance_profile: () -> Types::InstanceProfile
616
+ end
617
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_instance_profile-instance_method
618
+ def create_instance_profile: (
619
+ ?availability_zone: ::String,
620
+ ?kms_key_arn: ::String,
621
+ ?publicly_accessible: bool,
622
+ ?tags: Array[
623
+ {
624
+ key: ::String?,
625
+ value: ::String?,
626
+ resource_arn: ::String?
627
+ },
628
+ ],
629
+ ?network_type: ::String,
630
+ ?instance_profile_name: ::String,
631
+ ?description: ::String,
632
+ ?subnet_group_identifier: ::String,
633
+ ?vpc_security_groups: Array[::String]
634
+ ) -> _CreateInstanceProfileResponseSuccess
635
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceProfileResponseSuccess
636
+
637
+ interface _CreateMigrationProjectResponseSuccess
638
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMigrationProjectResponse]
639
+ def migration_project: () -> Types::MigrationProject
640
+ end
641
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_migration_project-instance_method
642
+ def create_migration_project: (
643
+ ?migration_project_name: ::String,
644
+ source_data_provider_descriptors: Array[
645
+ {
646
+ data_provider_identifier: ::String,
647
+ secrets_manager_secret_id: ::String?,
648
+ secrets_manager_access_role_arn: ::String?
649
+ },
650
+ ],
651
+ target_data_provider_descriptors: Array[
652
+ {
653
+ data_provider_identifier: ::String,
654
+ secrets_manager_secret_id: ::String?,
655
+ secrets_manager_access_role_arn: ::String?
656
+ },
657
+ ],
658
+ instance_profile_identifier: ::String,
659
+ ?transformation_rules: ::String,
660
+ ?description: ::String,
661
+ ?tags: Array[
662
+ {
663
+ key: ::String?,
664
+ value: ::String?,
665
+ resource_arn: ::String?
666
+ },
667
+ ],
668
+ ?schema_conversion_application_attributes: {
669
+ s3_bucket_path: ::String?,
670
+ s3_bucket_role_arn: ::String?
671
+ }
672
+ ) -> _CreateMigrationProjectResponseSuccess
673
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMigrationProjectResponseSuccess
674
+
675
+ interface _CreateReplicationConfigResponseSuccess
676
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReplicationConfigResponse]
677
+ def replication_config: () -> Types::ReplicationConfig
678
+ end
679
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_replication_config-instance_method
680
+ def create_replication_config: (
681
+ replication_config_identifier: ::String,
682
+ source_endpoint_arn: ::String,
683
+ target_endpoint_arn: ::String,
684
+ compute_config: {
685
+ availability_zone: ::String?,
686
+ dns_name_servers: ::String?,
687
+ kms_key_id: ::String?,
688
+ max_capacity_units: ::Integer?,
689
+ min_capacity_units: ::Integer?,
690
+ multi_az: bool?,
691
+ preferred_maintenance_window: ::String?,
692
+ replication_subnet_group_id: ::String?,
693
+ vpc_security_group_ids: Array[::String]?
694
+ },
695
+ replication_type: ("full-load" | "cdc" | "full-load-and-cdc"),
696
+ table_mappings: ::String,
697
+ ?replication_settings: ::String,
698
+ ?supplemental_settings: ::String,
699
+ ?resource_identifier: ::String,
700
+ ?tags: Array[
701
+ {
702
+ key: ::String?,
703
+ value: ::String?,
704
+ resource_arn: ::String?
705
+ },
706
+ ]
707
+ ) -> _CreateReplicationConfigResponseSuccess
708
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationConfigResponseSuccess
709
+
710
+ interface _CreateReplicationInstanceResponseSuccess
711
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReplicationInstanceResponse]
712
+ def replication_instance: () -> Types::ReplicationInstance
713
+ end
714
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_replication_instance-instance_method
715
+ def create_replication_instance: (
716
+ replication_instance_identifier: ::String,
717
+ ?allocated_storage: ::Integer,
718
+ replication_instance_class: ::String,
719
+ ?vpc_security_group_ids: Array[::String],
720
+ ?availability_zone: ::String,
721
+ ?replication_subnet_group_identifier: ::String,
722
+ ?preferred_maintenance_window: ::String,
723
+ ?multi_az: bool,
724
+ ?engine_version: ::String,
725
+ ?auto_minor_version_upgrade: bool,
726
+ ?tags: Array[
727
+ {
728
+ key: ::String?,
729
+ value: ::String?,
730
+ resource_arn: ::String?
731
+ },
732
+ ],
733
+ ?kms_key_id: ::String,
734
+ ?publicly_accessible: bool,
735
+ ?dns_name_servers: ::String,
736
+ ?resource_identifier: ::String,
737
+ ?network_type: ::String
738
+ ) -> _CreateReplicationInstanceResponseSuccess
739
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationInstanceResponseSuccess
740
+
741
+ interface _CreateReplicationSubnetGroupResponseSuccess
742
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReplicationSubnetGroupResponse]
743
+ def replication_subnet_group: () -> Types::ReplicationSubnetGroup
744
+ end
745
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_replication_subnet_group-instance_method
746
+ def create_replication_subnet_group: (
747
+ replication_subnet_group_identifier: ::String,
748
+ replication_subnet_group_description: ::String,
749
+ subnet_ids: Array[::String],
750
+ ?tags: Array[
751
+ {
752
+ key: ::String?,
753
+ value: ::String?,
754
+ resource_arn: ::String?
755
+ },
756
+ ]
757
+ ) -> _CreateReplicationSubnetGroupResponseSuccess
758
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationSubnetGroupResponseSuccess
759
+
760
+ interface _CreateReplicationTaskResponseSuccess
761
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReplicationTaskResponse]
762
+ def replication_task: () -> Types::ReplicationTask
763
+ end
764
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#create_replication_task-instance_method
765
+ def create_replication_task: (
766
+ replication_task_identifier: ::String,
767
+ source_endpoint_arn: ::String,
768
+ target_endpoint_arn: ::String,
769
+ replication_instance_arn: ::String,
770
+ migration_type: ("full-load" | "cdc" | "full-load-and-cdc"),
771
+ table_mappings: ::String,
772
+ ?replication_task_settings: ::String,
773
+ ?cdc_start_time: ::Time,
774
+ ?cdc_start_position: ::String,
775
+ ?cdc_stop_position: ::String,
776
+ ?tags: Array[
777
+ {
778
+ key: ::String?,
779
+ value: ::String?,
780
+ resource_arn: ::String?
781
+ },
782
+ ],
783
+ ?task_data: ::String,
784
+ ?resource_identifier: ::String
785
+ ) -> _CreateReplicationTaskResponseSuccess
786
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationTaskResponseSuccess
787
+
788
+ interface _DeleteCertificateResponseSuccess
789
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCertificateResponse]
790
+ def certificate: () -> Types::Certificate
791
+ end
792
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_certificate-instance_method
793
+ def delete_certificate: (
794
+ certificate_arn: ::String
795
+ ) -> _DeleteCertificateResponseSuccess
796
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCertificateResponseSuccess
797
+
798
+ interface _DeleteConnectionResponseSuccess
799
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionResponse]
800
+ def connection: () -> Types::Connection
801
+ end
802
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_connection-instance_method
803
+ def delete_connection: (
804
+ endpoint_arn: ::String,
805
+ replication_instance_arn: ::String
806
+ ) -> _DeleteConnectionResponseSuccess
807
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
808
+
809
+ interface _DeleteDataProviderResponseSuccess
810
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataProviderResponse]
811
+ def data_provider: () -> Types::DataProvider
812
+ end
813
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_data_provider-instance_method
814
+ def delete_data_provider: (
815
+ data_provider_identifier: ::String
816
+ ) -> _DeleteDataProviderResponseSuccess
817
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataProviderResponseSuccess
818
+
819
+ interface _DeleteEndpointResponseSuccess
820
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEndpointResponse]
821
+ def endpoint: () -> Types::Endpoint
822
+ end
823
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_endpoint-instance_method
824
+ def delete_endpoint: (
825
+ endpoint_arn: ::String
826
+ ) -> _DeleteEndpointResponseSuccess
827
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEndpointResponseSuccess
828
+
829
+ interface _DeleteEventSubscriptionResponseSuccess
830
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventSubscriptionResponse]
831
+ def event_subscription: () -> Types::EventSubscription
832
+ end
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_event_subscription-instance_method
834
+ def delete_event_subscription: (
835
+ subscription_name: ::String
836
+ ) -> _DeleteEventSubscriptionResponseSuccess
837
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventSubscriptionResponseSuccess
838
+
839
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_fleet_advisor_collector-instance_method
840
+ def delete_fleet_advisor_collector: (
841
+ collector_referenced_id: ::String
842
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
843
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
844
+
845
+ interface _DeleteFleetAdvisorDatabasesResponseSuccess
846
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFleetAdvisorDatabasesResponse]
847
+ def database_ids: () -> ::Array[::String]
848
+ end
849
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_fleet_advisor_databases-instance_method
850
+ def delete_fleet_advisor_databases: (
851
+ database_ids: Array[::String]
852
+ ) -> _DeleteFleetAdvisorDatabasesResponseSuccess
853
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFleetAdvisorDatabasesResponseSuccess
854
+
855
+ interface _DeleteInstanceProfileResponseSuccess
856
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInstanceProfileResponse]
857
+ def instance_profile: () -> Types::InstanceProfile
858
+ end
859
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_instance_profile-instance_method
860
+ def delete_instance_profile: (
861
+ instance_profile_identifier: ::String
862
+ ) -> _DeleteInstanceProfileResponseSuccess
863
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInstanceProfileResponseSuccess
864
+
865
+ interface _DeleteMigrationProjectResponseSuccess
866
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMigrationProjectResponse]
867
+ def migration_project: () -> Types::MigrationProject
868
+ end
869
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_migration_project-instance_method
870
+ def delete_migration_project: (
871
+ migration_project_identifier: ::String
872
+ ) -> _DeleteMigrationProjectResponseSuccess
873
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMigrationProjectResponseSuccess
874
+
875
+ interface _DeleteReplicationConfigResponseSuccess
876
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicationConfigResponse]
877
+ def replication_config: () -> Types::ReplicationConfig
878
+ end
879
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_replication_config-instance_method
880
+ def delete_replication_config: (
881
+ replication_config_arn: ::String
882
+ ) -> _DeleteReplicationConfigResponseSuccess
883
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicationConfigResponseSuccess
884
+
885
+ interface _DeleteReplicationInstanceResponseSuccess
886
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicationInstanceResponse]
887
+ def replication_instance: () -> Types::ReplicationInstance
888
+ end
889
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_replication_instance-instance_method
890
+ def delete_replication_instance: (
891
+ replication_instance_arn: ::String
892
+ ) -> _DeleteReplicationInstanceResponseSuccess
893
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicationInstanceResponseSuccess
894
+
895
+ interface _DeleteReplicationSubnetGroupResponseSuccess
896
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicationSubnetGroupResponse]
897
+ end
898
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_replication_subnet_group-instance_method
899
+ def delete_replication_subnet_group: (
900
+ replication_subnet_group_identifier: ::String
901
+ ) -> _DeleteReplicationSubnetGroupResponseSuccess
902
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicationSubnetGroupResponseSuccess
903
+
904
+ interface _DeleteReplicationTaskResponseSuccess
905
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicationTaskResponse]
906
+ def replication_task: () -> Types::ReplicationTask
907
+ end
908
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_replication_task-instance_method
909
+ def delete_replication_task: (
910
+ replication_task_arn: ::String
911
+ ) -> _DeleteReplicationTaskResponseSuccess
912
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicationTaskResponseSuccess
913
+
914
+ interface _DeleteReplicationTaskAssessmentRunResponseSuccess
915
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicationTaskAssessmentRunResponse]
916
+ def replication_task_assessment_run: () -> Types::ReplicationTaskAssessmentRun
917
+ end
918
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#delete_replication_task_assessment_run-instance_method
919
+ def delete_replication_task_assessment_run: (
920
+ replication_task_assessment_run_arn: ::String
921
+ ) -> _DeleteReplicationTaskAssessmentRunResponseSuccess
922
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicationTaskAssessmentRunResponseSuccess
923
+
924
+ interface _DescribeAccountAttributesResponseSuccess
925
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountAttributesResponse]
926
+ def account_quotas: () -> ::Array[Types::AccountQuota]
927
+ def unique_account_identifier: () -> ::String
928
+ end
929
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_account_attributes-instance_method
930
+ def describe_account_attributes: (
931
+ ) -> _DescribeAccountAttributesResponseSuccess
932
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountAttributesResponseSuccess
933
+
934
+ interface _DescribeApplicableIndividualAssessmentsResponseSuccess
935
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicableIndividualAssessmentsResponse]
936
+ def individual_assessment_names: () -> ::Array[::String]
937
+ def marker: () -> ::String
938
+ end
939
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_applicable_individual_assessments-instance_method
940
+ def describe_applicable_individual_assessments: (
941
+ ?replication_task_arn: ::String,
942
+ ?replication_instance_arn: ::String,
943
+ ?source_engine_name: ::String,
944
+ ?target_engine_name: ::String,
945
+ ?migration_type: ("full-load" | "cdc" | "full-load-and-cdc"),
946
+ ?max_records: ::Integer,
947
+ ?marker: ::String
948
+ ) -> _DescribeApplicableIndividualAssessmentsResponseSuccess
949
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicableIndividualAssessmentsResponseSuccess
950
+
951
+ interface _DescribeCertificatesResponseSuccess
952
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCertificatesResponse]
953
+ def marker: () -> ::String
954
+ def certificates: () -> ::Array[Types::Certificate]
955
+ end
956
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_certificates-instance_method
957
+ def describe_certificates: (
958
+ ?filters: Array[
959
+ {
960
+ name: ::String,
961
+ values: Array[::String]
962
+ },
963
+ ],
964
+ ?max_records: ::Integer,
965
+ ?marker: ::String
966
+ ) -> _DescribeCertificatesResponseSuccess
967
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCertificatesResponseSuccess
968
+
969
+ interface _DescribeConnectionsResponseSuccess
970
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConnectionsResponse]
971
+ def marker: () -> ::String
972
+ def connections: () -> ::Array[Types::Connection]
973
+ end
974
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_connections-instance_method
975
+ def describe_connections: (
976
+ ?filters: Array[
977
+ {
978
+ name: ::String,
979
+ values: Array[::String]
980
+ },
981
+ ],
982
+ ?max_records: ::Integer,
983
+ ?marker: ::String
984
+ ) -> _DescribeConnectionsResponseSuccess
985
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectionsResponseSuccess
986
+
987
+ interface _DescribeConversionConfigurationResponseSuccess
988
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConversionConfigurationResponse]
989
+ def migration_project_identifier: () -> ::String
990
+ def conversion_configuration: () -> ::String
991
+ end
992
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_conversion_configuration-instance_method
993
+ def describe_conversion_configuration: (
994
+ migration_project_identifier: ::String
995
+ ) -> _DescribeConversionConfigurationResponseSuccess
996
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConversionConfigurationResponseSuccess
997
+
998
+ interface _DescribeDataProvidersResponseSuccess
999
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDataProvidersResponse]
1000
+ def marker: () -> ::String
1001
+ def data_providers: () -> ::Array[Types::DataProvider]
1002
+ end
1003
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_data_providers-instance_method
1004
+ def describe_data_providers: (
1005
+ ?filters: Array[
1006
+ {
1007
+ name: ::String,
1008
+ values: Array[::String]
1009
+ },
1010
+ ],
1011
+ ?max_records: ::Integer,
1012
+ ?marker: ::String
1013
+ ) -> _DescribeDataProvidersResponseSuccess
1014
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDataProvidersResponseSuccess
1015
+
1016
+ interface _DescribeEndpointSettingsResponseSuccess
1017
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEndpointSettingsResponse]
1018
+ def marker: () -> ::String
1019
+ def endpoint_settings: () -> ::Array[Types::EndpointSetting]
1020
+ end
1021
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_endpoint_settings-instance_method
1022
+ def describe_endpoint_settings: (
1023
+ engine_name: ::String,
1024
+ ?max_records: ::Integer,
1025
+ ?marker: ::String
1026
+ ) -> _DescribeEndpointSettingsResponseSuccess
1027
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEndpointSettingsResponseSuccess
1028
+
1029
+ interface _DescribeEndpointTypesResponseSuccess
1030
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEndpointTypesResponse]
1031
+ def marker: () -> ::String
1032
+ def supported_endpoint_types: () -> ::Array[Types::SupportedEndpointType]
1033
+ end
1034
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_endpoint_types-instance_method
1035
+ def describe_endpoint_types: (
1036
+ ?filters: Array[
1037
+ {
1038
+ name: ::String,
1039
+ values: Array[::String]
1040
+ },
1041
+ ],
1042
+ ?max_records: ::Integer,
1043
+ ?marker: ::String
1044
+ ) -> _DescribeEndpointTypesResponseSuccess
1045
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEndpointTypesResponseSuccess
1046
+
1047
+ interface _DescribeEndpointsResponseSuccess
1048
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEndpointsResponse]
1049
+ def marker: () -> ::String
1050
+ def endpoints: () -> ::Array[Types::Endpoint]
1051
+ end
1052
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_endpoints-instance_method
1053
+ def describe_endpoints: (
1054
+ ?filters: Array[
1055
+ {
1056
+ name: ::String,
1057
+ values: Array[::String]
1058
+ },
1059
+ ],
1060
+ ?max_records: ::Integer,
1061
+ ?marker: ::String
1062
+ ) -> _DescribeEndpointsResponseSuccess
1063
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEndpointsResponseSuccess
1064
+
1065
+ interface _DescribeEngineVersionsResponseSuccess
1066
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEngineVersionsResponse]
1067
+ def engine_versions: () -> ::Array[Types::EngineVersion]
1068
+ def marker: () -> ::String
1069
+ end
1070
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_engine_versions-instance_method
1071
+ def describe_engine_versions: (
1072
+ ?max_records: ::Integer,
1073
+ ?marker: ::String
1074
+ ) -> _DescribeEngineVersionsResponseSuccess
1075
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEngineVersionsResponseSuccess
1076
+
1077
+ interface _DescribeEventCategoriesResponseSuccess
1078
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventCategoriesResponse]
1079
+ def event_category_group_list: () -> ::Array[Types::EventCategoryGroup]
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_event_categories-instance_method
1082
+ def describe_event_categories: (
1083
+ ?source_type: ::String,
1084
+ ?filters: Array[
1085
+ {
1086
+ name: ::String,
1087
+ values: Array[::String]
1088
+ },
1089
+ ]
1090
+ ) -> _DescribeEventCategoriesResponseSuccess
1091
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventCategoriesResponseSuccess
1092
+
1093
+ interface _DescribeEventSubscriptionsResponseSuccess
1094
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventSubscriptionsResponse]
1095
+ def marker: () -> ::String
1096
+ def event_subscriptions_list: () -> ::Array[Types::EventSubscription]
1097
+ end
1098
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_event_subscriptions-instance_method
1099
+ def describe_event_subscriptions: (
1100
+ ?subscription_name: ::String,
1101
+ ?filters: Array[
1102
+ {
1103
+ name: ::String,
1104
+ values: Array[::String]
1105
+ },
1106
+ ],
1107
+ ?max_records: ::Integer,
1108
+ ?marker: ::String
1109
+ ) -> _DescribeEventSubscriptionsResponseSuccess
1110
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventSubscriptionsResponseSuccess
1111
+
1112
+ interface _DescribeEventsResponseSuccess
1113
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsResponse]
1114
+ def marker: () -> ::String
1115
+ def events: () -> ::Array[Types::Event]
1116
+ end
1117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_events-instance_method
1118
+ def describe_events: (
1119
+ ?source_identifier: ::String,
1120
+ ?source_type: ("replication-instance"),
1121
+ ?start_time: ::Time,
1122
+ ?end_time: ::Time,
1123
+ ?duration: ::Integer,
1124
+ ?event_categories: Array[::String],
1125
+ ?filters: Array[
1126
+ {
1127
+ name: ::String,
1128
+ values: Array[::String]
1129
+ },
1130
+ ],
1131
+ ?max_records: ::Integer,
1132
+ ?marker: ::String
1133
+ ) -> _DescribeEventsResponseSuccess
1134
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
1135
+
1136
+ interface _DescribeExtensionPackAssociationsResponseSuccess
1137
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeExtensionPackAssociationsResponse]
1138
+ def marker: () -> ::String
1139
+ def requests: () -> ::Array[Types::SchemaConversionRequest]
1140
+ end
1141
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_extension_pack_associations-instance_method
1142
+ def describe_extension_pack_associations: (
1143
+ migration_project_identifier: ::String,
1144
+ ?filters: Array[
1145
+ {
1146
+ name: ::String,
1147
+ values: Array[::String]
1148
+ },
1149
+ ],
1150
+ ?marker: ::String,
1151
+ ?max_records: ::Integer
1152
+ ) -> _DescribeExtensionPackAssociationsResponseSuccess
1153
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeExtensionPackAssociationsResponseSuccess
1154
+
1155
+ interface _DescribeFleetAdvisorCollectorsResponseSuccess
1156
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetAdvisorCollectorsResponse]
1157
+ def collectors: () -> ::Array[Types::CollectorResponse]
1158
+ def next_token: () -> ::String
1159
+ end
1160
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_fleet_advisor_collectors-instance_method
1161
+ def describe_fleet_advisor_collectors: (
1162
+ ?filters: Array[
1163
+ {
1164
+ name: ::String,
1165
+ values: Array[::String]
1166
+ },
1167
+ ],
1168
+ ?max_records: ::Integer,
1169
+ ?next_token: ::String
1170
+ ) -> _DescribeFleetAdvisorCollectorsResponseSuccess
1171
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetAdvisorCollectorsResponseSuccess
1172
+
1173
+ interface _DescribeFleetAdvisorDatabasesResponseSuccess
1174
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetAdvisorDatabasesResponse]
1175
+ def databases: () -> ::Array[Types::DatabaseResponse]
1176
+ def next_token: () -> ::String
1177
+ end
1178
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_fleet_advisor_databases-instance_method
1179
+ def describe_fleet_advisor_databases: (
1180
+ ?filters: Array[
1181
+ {
1182
+ name: ::String,
1183
+ values: Array[::String]
1184
+ },
1185
+ ],
1186
+ ?max_records: ::Integer,
1187
+ ?next_token: ::String
1188
+ ) -> _DescribeFleetAdvisorDatabasesResponseSuccess
1189
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetAdvisorDatabasesResponseSuccess
1190
+
1191
+ interface _DescribeFleetAdvisorLsaAnalysisResponseSuccess
1192
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetAdvisorLsaAnalysisResponse]
1193
+ def analysis: () -> ::Array[Types::FleetAdvisorLsaAnalysisResponse]
1194
+ def next_token: () -> ::String
1195
+ end
1196
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_fleet_advisor_lsa_analysis-instance_method
1197
+ def describe_fleet_advisor_lsa_analysis: (
1198
+ ?max_records: ::Integer,
1199
+ ?next_token: ::String
1200
+ ) -> _DescribeFleetAdvisorLsaAnalysisResponseSuccess
1201
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetAdvisorLsaAnalysisResponseSuccess
1202
+
1203
+ interface _DescribeFleetAdvisorSchemaObjectSummaryResponseSuccess
1204
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetAdvisorSchemaObjectSummaryResponse]
1205
+ def fleet_advisor_schema_objects: () -> ::Array[Types::FleetAdvisorSchemaObjectResponse]
1206
+ def next_token: () -> ::String
1207
+ end
1208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_fleet_advisor_schema_object_summary-instance_method
1209
+ def describe_fleet_advisor_schema_object_summary: (
1210
+ ?filters: Array[
1211
+ {
1212
+ name: ::String,
1213
+ values: Array[::String]
1214
+ },
1215
+ ],
1216
+ ?max_records: ::Integer,
1217
+ ?next_token: ::String
1218
+ ) -> _DescribeFleetAdvisorSchemaObjectSummaryResponseSuccess
1219
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetAdvisorSchemaObjectSummaryResponseSuccess
1220
+
1221
+ interface _DescribeFleetAdvisorSchemasResponseSuccess
1222
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetAdvisorSchemasResponse]
1223
+ def fleet_advisor_schemas: () -> ::Array[Types::SchemaResponse]
1224
+ def next_token: () -> ::String
1225
+ end
1226
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_fleet_advisor_schemas-instance_method
1227
+ def describe_fleet_advisor_schemas: (
1228
+ ?filters: Array[
1229
+ {
1230
+ name: ::String,
1231
+ values: Array[::String]
1232
+ },
1233
+ ],
1234
+ ?max_records: ::Integer,
1235
+ ?next_token: ::String
1236
+ ) -> _DescribeFleetAdvisorSchemasResponseSuccess
1237
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetAdvisorSchemasResponseSuccess
1238
+
1239
+ interface _DescribeInstanceProfilesResponseSuccess
1240
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceProfilesResponse]
1241
+ def marker: () -> ::String
1242
+ def instance_profiles: () -> ::Array[Types::InstanceProfile]
1243
+ end
1244
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_instance_profiles-instance_method
1245
+ def describe_instance_profiles: (
1246
+ ?filters: Array[
1247
+ {
1248
+ name: ::String,
1249
+ values: Array[::String]
1250
+ },
1251
+ ],
1252
+ ?max_records: ::Integer,
1253
+ ?marker: ::String
1254
+ ) -> _DescribeInstanceProfilesResponseSuccess
1255
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceProfilesResponseSuccess
1256
+
1257
+ interface _DescribeMetadataModelAssessmentsResponseSuccess
1258
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelAssessmentsResponse]
1259
+ def marker: () -> ::String
1260
+ def requests: () -> ::Array[Types::SchemaConversionRequest]
1261
+ end
1262
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_assessments-instance_method
1263
+ def describe_metadata_model_assessments: (
1264
+ migration_project_identifier: ::String,
1265
+ ?filters: Array[
1266
+ {
1267
+ name: ::String,
1268
+ values: Array[::String]
1269
+ },
1270
+ ],
1271
+ ?marker: ::String,
1272
+ ?max_records: ::Integer
1273
+ ) -> _DescribeMetadataModelAssessmentsResponseSuccess
1274
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelAssessmentsResponseSuccess
1275
+
1276
+ interface _DescribeMetadataModelConversionsResponseSuccess
1277
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelConversionsResponse]
1278
+ def marker: () -> ::String
1279
+ def requests: () -> ::Array[Types::SchemaConversionRequest]
1280
+ end
1281
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_conversions-instance_method
1282
+ def describe_metadata_model_conversions: (
1283
+ migration_project_identifier: ::String,
1284
+ ?filters: Array[
1285
+ {
1286
+ name: ::String,
1287
+ values: Array[::String]
1288
+ },
1289
+ ],
1290
+ ?marker: ::String,
1291
+ ?max_records: ::Integer
1292
+ ) -> _DescribeMetadataModelConversionsResponseSuccess
1293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelConversionsResponseSuccess
1294
+
1295
+ interface _DescribeMetadataModelExportsAsScriptResponseSuccess
1296
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelExportsAsScriptResponse]
1297
+ def marker: () -> ::String
1298
+ def requests: () -> ::Array[Types::SchemaConversionRequest]
1299
+ end
1300
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_exports_as_script-instance_method
1301
+ def describe_metadata_model_exports_as_script: (
1302
+ migration_project_identifier: ::String,
1303
+ ?filters: Array[
1304
+ {
1305
+ name: ::String,
1306
+ values: Array[::String]
1307
+ },
1308
+ ],
1309
+ ?marker: ::String,
1310
+ ?max_records: ::Integer
1311
+ ) -> _DescribeMetadataModelExportsAsScriptResponseSuccess
1312
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelExportsAsScriptResponseSuccess
1313
+
1314
+ interface _DescribeMetadataModelExportsToTargetResponseSuccess
1315
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelExportsToTargetResponse]
1316
+ def marker: () -> ::String
1317
+ def requests: () -> ::Array[Types::SchemaConversionRequest]
1318
+ end
1319
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_exports_to_target-instance_method
1320
+ def describe_metadata_model_exports_to_target: (
1321
+ migration_project_identifier: ::String,
1322
+ ?filters: Array[
1323
+ {
1324
+ name: ::String,
1325
+ values: Array[::String]
1326
+ },
1327
+ ],
1328
+ ?marker: ::String,
1329
+ ?max_records: ::Integer
1330
+ ) -> _DescribeMetadataModelExportsToTargetResponseSuccess
1331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelExportsToTargetResponseSuccess
1332
+
1333
+ interface _DescribeMetadataModelImportsResponseSuccess
1334
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetadataModelImportsResponse]
1335
+ def marker: () -> ::String
1336
+ def requests: () -> ::Array[Types::SchemaConversionRequest]
1337
+ end
1338
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_metadata_model_imports-instance_method
1339
+ def describe_metadata_model_imports: (
1340
+ migration_project_identifier: ::String,
1341
+ ?filters: Array[
1342
+ {
1343
+ name: ::String,
1344
+ values: Array[::String]
1345
+ },
1346
+ ],
1347
+ ?marker: ::String,
1348
+ ?max_records: ::Integer
1349
+ ) -> _DescribeMetadataModelImportsResponseSuccess
1350
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetadataModelImportsResponseSuccess
1351
+
1352
+ interface _DescribeMigrationProjectsResponseSuccess
1353
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMigrationProjectsResponse]
1354
+ def marker: () -> ::String
1355
+ def migration_projects: () -> ::Array[Types::MigrationProject]
1356
+ end
1357
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_migration_projects-instance_method
1358
+ def describe_migration_projects: (
1359
+ ?filters: Array[
1360
+ {
1361
+ name: ::String,
1362
+ values: Array[::String]
1363
+ },
1364
+ ],
1365
+ ?max_records: ::Integer,
1366
+ ?marker: ::String
1367
+ ) -> _DescribeMigrationProjectsResponseSuccess
1368
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMigrationProjectsResponseSuccess
1369
+
1370
+ interface _DescribeOrderableReplicationInstancesResponseSuccess
1371
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeOrderableReplicationInstancesResponse]
1372
+ def orderable_replication_instances: () -> ::Array[Types::OrderableReplicationInstance]
1373
+ def marker: () -> ::String
1374
+ end
1375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_orderable_replication_instances-instance_method
1376
+ def describe_orderable_replication_instances: (
1377
+ ?max_records: ::Integer,
1378
+ ?marker: ::String
1379
+ ) -> _DescribeOrderableReplicationInstancesResponseSuccess
1380
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOrderableReplicationInstancesResponseSuccess
1381
+
1382
+ interface _DescribePendingMaintenanceActionsResponseSuccess
1383
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePendingMaintenanceActionsResponse]
1384
+ def pending_maintenance_actions: () -> ::Array[Types::ResourcePendingMaintenanceActions]
1385
+ def marker: () -> ::String
1386
+ end
1387
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_pending_maintenance_actions-instance_method
1388
+ def describe_pending_maintenance_actions: (
1389
+ ?replication_instance_arn: ::String,
1390
+ ?filters: Array[
1391
+ {
1392
+ name: ::String,
1393
+ values: Array[::String]
1394
+ },
1395
+ ],
1396
+ ?marker: ::String,
1397
+ ?max_records: ::Integer
1398
+ ) -> _DescribePendingMaintenanceActionsResponseSuccess
1399
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePendingMaintenanceActionsResponseSuccess
1400
+
1401
+ interface _DescribeRecommendationLimitationsResponseSuccess
1402
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRecommendationLimitationsResponse]
1403
+ def next_token: () -> ::String
1404
+ def limitations: () -> ::Array[Types::Limitation]
1405
+ end
1406
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_recommendation_limitations-instance_method
1407
+ def describe_recommendation_limitations: (
1408
+ ?filters: Array[
1409
+ {
1410
+ name: ::String,
1411
+ values: Array[::String]
1412
+ },
1413
+ ],
1414
+ ?max_records: ::Integer,
1415
+ ?next_token: ::String
1416
+ ) -> _DescribeRecommendationLimitationsResponseSuccess
1417
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRecommendationLimitationsResponseSuccess
1418
+
1419
+ interface _DescribeRecommendationsResponseSuccess
1420
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRecommendationsResponse]
1421
+ def next_token: () -> ::String
1422
+ def recommendations: () -> ::Array[Types::Recommendation]
1423
+ end
1424
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_recommendations-instance_method
1425
+ def describe_recommendations: (
1426
+ ?filters: Array[
1427
+ {
1428
+ name: ::String,
1429
+ values: Array[::String]
1430
+ },
1431
+ ],
1432
+ ?max_records: ::Integer,
1433
+ ?next_token: ::String
1434
+ ) -> _DescribeRecommendationsResponseSuccess
1435
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRecommendationsResponseSuccess
1436
+
1437
+ interface _DescribeRefreshSchemasStatusResponseSuccess
1438
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRefreshSchemasStatusResponse]
1439
+ def refresh_schemas_status: () -> Types::RefreshSchemasStatus
1440
+ end
1441
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_refresh_schemas_status-instance_method
1442
+ def describe_refresh_schemas_status: (
1443
+ endpoint_arn: ::String
1444
+ ) -> _DescribeRefreshSchemasStatusResponseSuccess
1445
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRefreshSchemasStatusResponseSuccess
1446
+
1447
+ interface _DescribeReplicationConfigsResponseSuccess
1448
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationConfigsResponse]
1449
+ def marker: () -> ::String
1450
+ def replication_configs: () -> ::Array[Types::ReplicationConfig]
1451
+ end
1452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_configs-instance_method
1453
+ def describe_replication_configs: (
1454
+ ?filters: Array[
1455
+ {
1456
+ name: ::String,
1457
+ values: Array[::String]
1458
+ },
1459
+ ],
1460
+ ?max_records: ::Integer,
1461
+ ?marker: ::String
1462
+ ) -> _DescribeReplicationConfigsResponseSuccess
1463
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationConfigsResponseSuccess
1464
+
1465
+ interface _DescribeReplicationInstanceTaskLogsResponseSuccess
1466
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationInstanceTaskLogsResponse]
1467
+ def replication_instance_arn: () -> ::String
1468
+ def replication_instance_task_logs: () -> ::Array[Types::ReplicationInstanceTaskLog]
1469
+ def marker: () -> ::String
1470
+ end
1471
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_instance_task_logs-instance_method
1472
+ def describe_replication_instance_task_logs: (
1473
+ replication_instance_arn: ::String,
1474
+ ?max_records: ::Integer,
1475
+ ?marker: ::String
1476
+ ) -> _DescribeReplicationInstanceTaskLogsResponseSuccess
1477
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationInstanceTaskLogsResponseSuccess
1478
+
1479
+ interface _DescribeReplicationInstancesResponseSuccess
1480
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationInstancesResponse]
1481
+ def marker: () -> ::String
1482
+ def replication_instances: () -> ::Array[Types::ReplicationInstance]
1483
+ end
1484
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_instances-instance_method
1485
+ def describe_replication_instances: (
1486
+ ?filters: Array[
1487
+ {
1488
+ name: ::String,
1489
+ values: Array[::String]
1490
+ },
1491
+ ],
1492
+ ?max_records: ::Integer,
1493
+ ?marker: ::String
1494
+ ) -> _DescribeReplicationInstancesResponseSuccess
1495
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationInstancesResponseSuccess
1496
+
1497
+ interface _DescribeReplicationSubnetGroupsResponseSuccess
1498
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationSubnetGroupsResponse]
1499
+ def marker: () -> ::String
1500
+ def replication_subnet_groups: () -> ::Array[Types::ReplicationSubnetGroup]
1501
+ end
1502
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_subnet_groups-instance_method
1503
+ def describe_replication_subnet_groups: (
1504
+ ?filters: Array[
1505
+ {
1506
+ name: ::String,
1507
+ values: Array[::String]
1508
+ },
1509
+ ],
1510
+ ?max_records: ::Integer,
1511
+ ?marker: ::String
1512
+ ) -> _DescribeReplicationSubnetGroupsResponseSuccess
1513
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationSubnetGroupsResponseSuccess
1514
+
1515
+ interface _DescribeReplicationTableStatisticsResponseSuccess
1516
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationTableStatisticsResponse]
1517
+ def replication_config_arn: () -> ::String
1518
+ def marker: () -> ::String
1519
+ def replication_table_statistics: () -> ::Array[Types::TableStatistics]
1520
+ end
1521
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_table_statistics-instance_method
1522
+ def describe_replication_table_statistics: (
1523
+ replication_config_arn: ::String,
1524
+ ?max_records: ::Integer,
1525
+ ?marker: ::String,
1526
+ ?filters: Array[
1527
+ {
1528
+ name: ::String,
1529
+ values: Array[::String]
1530
+ },
1531
+ ]
1532
+ ) -> _DescribeReplicationTableStatisticsResponseSuccess
1533
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationTableStatisticsResponseSuccess
1534
+
1535
+ interface _DescribeReplicationTaskAssessmentResultsResponseSuccess
1536
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationTaskAssessmentResultsResponse]
1537
+ def marker: () -> ::String
1538
+ def bucket_name: () -> ::String
1539
+ def replication_task_assessment_results: () -> ::Array[Types::ReplicationTaskAssessmentResult]
1540
+ end
1541
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_task_assessment_results-instance_method
1542
+ def describe_replication_task_assessment_results: (
1543
+ ?replication_task_arn: ::String,
1544
+ ?max_records: ::Integer,
1545
+ ?marker: ::String
1546
+ ) -> _DescribeReplicationTaskAssessmentResultsResponseSuccess
1547
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationTaskAssessmentResultsResponseSuccess
1548
+
1549
+ interface _DescribeReplicationTaskAssessmentRunsResponseSuccess
1550
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationTaskAssessmentRunsResponse]
1551
+ def marker: () -> ::String
1552
+ def replication_task_assessment_runs: () -> ::Array[Types::ReplicationTaskAssessmentRun]
1553
+ end
1554
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_task_assessment_runs-instance_method
1555
+ def describe_replication_task_assessment_runs: (
1556
+ ?filters: Array[
1557
+ {
1558
+ name: ::String,
1559
+ values: Array[::String]
1560
+ },
1561
+ ],
1562
+ ?max_records: ::Integer,
1563
+ ?marker: ::String
1564
+ ) -> _DescribeReplicationTaskAssessmentRunsResponseSuccess
1565
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationTaskAssessmentRunsResponseSuccess
1566
+
1567
+ interface _DescribeReplicationTaskIndividualAssessmentsResponseSuccess
1568
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationTaskIndividualAssessmentsResponse]
1569
+ def marker: () -> ::String
1570
+ def replication_task_individual_assessments: () -> ::Array[Types::ReplicationTaskIndividualAssessment]
1571
+ end
1572
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_task_individual_assessments-instance_method
1573
+ def describe_replication_task_individual_assessments: (
1574
+ ?filters: Array[
1575
+ {
1576
+ name: ::String,
1577
+ values: Array[::String]
1578
+ },
1579
+ ],
1580
+ ?max_records: ::Integer,
1581
+ ?marker: ::String
1582
+ ) -> _DescribeReplicationTaskIndividualAssessmentsResponseSuccess
1583
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationTaskIndividualAssessmentsResponseSuccess
1584
+
1585
+ interface _DescribeReplicationTasksResponseSuccess
1586
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationTasksResponse]
1587
+ def marker: () -> ::String
1588
+ def replication_tasks: () -> ::Array[Types::ReplicationTask]
1589
+ end
1590
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replication_tasks-instance_method
1591
+ def describe_replication_tasks: (
1592
+ ?filters: Array[
1593
+ {
1594
+ name: ::String,
1595
+ values: Array[::String]
1596
+ },
1597
+ ],
1598
+ ?max_records: ::Integer,
1599
+ ?marker: ::String,
1600
+ ?without_settings: bool
1601
+ ) -> _DescribeReplicationTasksResponseSuccess
1602
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationTasksResponseSuccess
1603
+
1604
+ interface _DescribeReplicationsResponseSuccess
1605
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationsResponse]
1606
+ def marker: () -> ::String
1607
+ def replications: () -> ::Array[Types::Replication]
1608
+ end
1609
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_replications-instance_method
1610
+ def describe_replications: (
1611
+ ?filters: Array[
1612
+ {
1613
+ name: ::String,
1614
+ values: Array[::String]
1615
+ },
1616
+ ],
1617
+ ?max_records: ::Integer,
1618
+ ?marker: ::String
1619
+ ) -> _DescribeReplicationsResponseSuccess
1620
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationsResponseSuccess
1621
+
1622
+ interface _DescribeSchemasResponseSuccess
1623
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSchemasResponse]
1624
+ def marker: () -> ::String
1625
+ def schemas: () -> ::Array[::String]
1626
+ end
1627
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_schemas-instance_method
1628
+ def describe_schemas: (
1629
+ endpoint_arn: ::String,
1630
+ ?max_records: ::Integer,
1631
+ ?marker: ::String
1632
+ ) -> _DescribeSchemasResponseSuccess
1633
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSchemasResponseSuccess
1634
+
1635
+ interface _DescribeTableStatisticsResponseSuccess
1636
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTableStatisticsResponse]
1637
+ def replication_task_arn: () -> ::String
1638
+ def table_statistics: () -> ::Array[Types::TableStatistics]
1639
+ def marker: () -> ::String
1640
+ end
1641
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#describe_table_statistics-instance_method
1642
+ def describe_table_statistics: (
1643
+ replication_task_arn: ::String,
1644
+ ?max_records: ::Integer,
1645
+ ?marker: ::String,
1646
+ ?filters: Array[
1647
+ {
1648
+ name: ::String,
1649
+ values: Array[::String]
1650
+ },
1651
+ ]
1652
+ ) -> _DescribeTableStatisticsResponseSuccess
1653
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTableStatisticsResponseSuccess
1654
+
1655
+ interface _ExportMetadataModelAssessmentResponseSuccess
1656
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExportMetadataModelAssessmentResponse]
1657
+ def pdf_report: () -> Types::ExportMetadataModelAssessmentResultEntry
1658
+ def csv_report: () -> Types::ExportMetadataModelAssessmentResultEntry
1659
+ end
1660
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#export_metadata_model_assessment-instance_method
1661
+ def export_metadata_model_assessment: (
1662
+ migration_project_identifier: ::String,
1663
+ selection_rules: ::String,
1664
+ ?file_name: ::String,
1665
+ ?assessment_report_types: Array[("pdf" | "csv")]
1666
+ ) -> _ExportMetadataModelAssessmentResponseSuccess
1667
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportMetadataModelAssessmentResponseSuccess
1668
+
1669
+ interface _ImportCertificateResponseSuccess
1670
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportCertificateResponse]
1671
+ def certificate: () -> Types::Certificate
1672
+ end
1673
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#import_certificate-instance_method
1674
+ def import_certificate: (
1675
+ certificate_identifier: ::String,
1676
+ ?certificate_pem: ::String,
1677
+ ?certificate_wallet: ::String,
1678
+ ?tags: Array[
1679
+ {
1680
+ key: ::String?,
1681
+ value: ::String?,
1682
+ resource_arn: ::String?
1683
+ },
1684
+ ]
1685
+ ) -> _ImportCertificateResponseSuccess
1686
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportCertificateResponseSuccess
1687
+
1688
+ interface _ListTagsForResourceResponseSuccess
1689
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
1690
+ def tag_list: () -> ::Array[Types::Tag]
1691
+ end
1692
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#list_tags_for_resource-instance_method
1693
+ def list_tags_for_resource: (
1694
+ ?resource_arn: ::String,
1695
+ ?resource_arn_list: Array[::String]
1696
+ ) -> _ListTagsForResourceResponseSuccess
1697
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
1698
+
1699
+ interface _ModifyConversionConfigurationResponseSuccess
1700
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyConversionConfigurationResponse]
1701
+ def migration_project_identifier: () -> ::String
1702
+ end
1703
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_conversion_configuration-instance_method
1704
+ def modify_conversion_configuration: (
1705
+ migration_project_identifier: ::String,
1706
+ conversion_configuration: ::String
1707
+ ) -> _ModifyConversionConfigurationResponseSuccess
1708
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyConversionConfigurationResponseSuccess
1709
+
1710
+ interface _ModifyDataProviderResponseSuccess
1711
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyDataProviderResponse]
1712
+ def data_provider: () -> Types::DataProvider
1713
+ end
1714
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_data_provider-instance_method
1715
+ def modify_data_provider: (
1716
+ data_provider_identifier: ::String,
1717
+ ?data_provider_name: ::String,
1718
+ ?description: ::String,
1719
+ ?engine: ::String,
1720
+ ?exact_settings: bool,
1721
+ ?settings: {
1722
+ redshift_settings: {
1723
+ server_name: ::String?,
1724
+ port: ::Integer?,
1725
+ database_name: ::String?
1726
+ }?,
1727
+ postgre_sql_settings: {
1728
+ server_name: ::String?,
1729
+ port: ::Integer?,
1730
+ database_name: ::String?,
1731
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1732
+ certificate_arn: ::String?
1733
+ }?,
1734
+ my_sql_settings: {
1735
+ server_name: ::String?,
1736
+ port: ::Integer?,
1737
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1738
+ certificate_arn: ::String?
1739
+ }?,
1740
+ oracle_settings: {
1741
+ server_name: ::String?,
1742
+ port: ::Integer?,
1743
+ database_name: ::String?,
1744
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1745
+ certificate_arn: ::String?,
1746
+ asm_server: ::String?,
1747
+ secrets_manager_oracle_asm_secret_id: ::String?,
1748
+ secrets_manager_oracle_asm_access_role_arn: ::String?,
1749
+ secrets_manager_security_db_encryption_secret_id: ::String?,
1750
+ secrets_manager_security_db_encryption_access_role_arn: ::String?
1751
+ }?,
1752
+ microsoft_sql_server_settings: {
1753
+ server_name: ::String?,
1754
+ port: ::Integer?,
1755
+ database_name: ::String?,
1756
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1757
+ certificate_arn: ::String?
1758
+ }?,
1759
+ doc_db_settings: {
1760
+ server_name: ::String?,
1761
+ port: ::Integer?,
1762
+ database_name: ::String?,
1763
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1764
+ certificate_arn: ::String?
1765
+ }?,
1766
+ maria_db_settings: {
1767
+ server_name: ::String?,
1768
+ port: ::Integer?,
1769
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1770
+ certificate_arn: ::String?
1771
+ }?,
1772
+ mongo_db_settings: {
1773
+ server_name: ::String?,
1774
+ port: ::Integer?,
1775
+ database_name: ::String?,
1776
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1777
+ certificate_arn: ::String?,
1778
+ auth_type: ("no" | "password")?,
1779
+ auth_source: ::String?,
1780
+ auth_mechanism: ("default" | "mongodb_cr" | "scram_sha_1")?
1781
+ }?
1782
+ }
1783
+ ) -> _ModifyDataProviderResponseSuccess
1784
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDataProviderResponseSuccess
1785
+
1786
+ interface _ModifyEndpointResponseSuccess
1787
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyEndpointResponse]
1788
+ def endpoint: () -> Types::Endpoint
1789
+ end
1790
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_endpoint-instance_method
1791
+ def modify_endpoint: (
1792
+ endpoint_arn: ::String,
1793
+ ?endpoint_identifier: ::String,
1794
+ ?endpoint_type: ("source" | "target"),
1795
+ ?engine_name: ::String,
1796
+ ?username: ::String,
1797
+ ?password: ::String,
1798
+ ?server_name: ::String,
1799
+ ?port: ::Integer,
1800
+ ?database_name: ::String,
1801
+ ?extra_connection_attributes: ::String,
1802
+ ?certificate_arn: ::String,
1803
+ ?ssl_mode: ("none" | "require" | "verify-ca" | "verify-full"),
1804
+ ?service_access_role_arn: ::String,
1805
+ ?external_table_definition: ::String,
1806
+ ?dynamo_db_settings: {
1807
+ service_access_role_arn: ::String
1808
+ },
1809
+ ?s3_settings: {
1810
+ service_access_role_arn: ::String?,
1811
+ external_table_definition: ::String?,
1812
+ csv_row_delimiter: ::String?,
1813
+ csv_delimiter: ::String?,
1814
+ bucket_folder: ::String?,
1815
+ bucket_name: ::String?,
1816
+ compression_type: ("none" | "gzip")?,
1817
+ encryption_mode: ("sse-s3" | "sse-kms")?,
1818
+ server_side_encryption_kms_key_id: ::String?,
1819
+ data_format: ("csv" | "parquet")?,
1820
+ encoding_type: ("plain" | "plain-dictionary" | "rle-dictionary")?,
1821
+ dict_page_size_limit: ::Integer?,
1822
+ row_group_length: ::Integer?,
1823
+ data_page_size: ::Integer?,
1824
+ parquet_version: ("parquet-1-0" | "parquet-2-0")?,
1825
+ enable_statistics: bool?,
1826
+ include_op_for_full_load: bool?,
1827
+ cdc_inserts_only: bool?,
1828
+ timestamp_column_name: ::String?,
1829
+ parquet_timestamp_in_millisecond: bool?,
1830
+ cdc_inserts_and_updates: bool?,
1831
+ date_partition_enabled: bool?,
1832
+ date_partition_sequence: ("YYYYMMDD" | "YYYYMMDDHH" | "YYYYMM" | "MMYYYYDD" | "DDMMYYYY")?,
1833
+ date_partition_delimiter: ("SLASH" | "UNDERSCORE" | "DASH" | "NONE")?,
1834
+ use_csv_no_sup_value: bool?,
1835
+ csv_no_sup_value: ::String?,
1836
+ preserve_transactions: bool?,
1837
+ cdc_path: ::String?,
1838
+ use_task_start_time_for_full_load_timestamp: bool?,
1839
+ canned_acl_for_objects: ("none" | "private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")?,
1840
+ add_column_name: bool?,
1841
+ cdc_max_batch_interval: ::Integer?,
1842
+ cdc_min_file_size: ::Integer?,
1843
+ csv_null_value: ::String?,
1844
+ ignore_header_rows: ::Integer?,
1845
+ max_file_size: ::Integer?,
1846
+ rfc_4180: bool?,
1847
+ date_partition_timezone: ::String?,
1848
+ add_trailing_padding_character: bool?,
1849
+ expected_bucket_owner: ::String?,
1850
+ glue_catalog_generation: bool?
1851
+ },
1852
+ ?dms_transfer_settings: {
1853
+ service_access_role_arn: ::String?,
1854
+ bucket_name: ::String?
1855
+ },
1856
+ ?mongo_db_settings: {
1857
+ username: ::String?,
1858
+ password: ::String?,
1859
+ server_name: ::String?,
1860
+ port: ::Integer?,
1861
+ database_name: ::String?,
1862
+ auth_type: ("no" | "password")?,
1863
+ auth_mechanism: ("default" | "mongodb_cr" | "scram_sha_1")?,
1864
+ nesting_level: ("none" | "one")?,
1865
+ extract_doc_id: ::String?,
1866
+ docs_to_investigate: ::String?,
1867
+ auth_source: ::String?,
1868
+ kms_key_id: ::String?,
1869
+ secrets_manager_access_role_arn: ::String?,
1870
+ secrets_manager_secret_id: ::String?,
1871
+ use_update_look_up: bool?,
1872
+ replicate_shard_collections: bool?
1873
+ },
1874
+ ?kinesis_settings: {
1875
+ stream_arn: ::String?,
1876
+ message_format: ("json" | "json-unformatted")?,
1877
+ service_access_role_arn: ::String?,
1878
+ include_transaction_details: bool?,
1879
+ include_partition_value: bool?,
1880
+ partition_include_schema_table: bool?,
1881
+ include_table_alter_operations: bool?,
1882
+ include_control_details: bool?,
1883
+ include_null_and_empty: bool?,
1884
+ no_hex_prefix: bool?
1885
+ },
1886
+ ?kafka_settings: {
1887
+ broker: ::String?,
1888
+ topic: ::String?,
1889
+ message_format: ("json" | "json-unformatted")?,
1890
+ include_transaction_details: bool?,
1891
+ include_partition_value: bool?,
1892
+ partition_include_schema_table: bool?,
1893
+ include_table_alter_operations: bool?,
1894
+ include_control_details: bool?,
1895
+ message_max_bytes: ::Integer?,
1896
+ include_null_and_empty: bool?,
1897
+ security_protocol: ("plaintext" | "ssl-authentication" | "ssl-encryption" | "sasl-ssl")?,
1898
+ ssl_client_certificate_arn: ::String?,
1899
+ ssl_client_key_arn: ::String?,
1900
+ ssl_client_key_password: ::String?,
1901
+ ssl_ca_certificate_arn: ::String?,
1902
+ sasl_username: ::String?,
1903
+ sasl_password: ::String?,
1904
+ no_hex_prefix: bool?,
1905
+ sasl_mechanism: ("scram-sha-512" | "plain")?,
1906
+ ssl_endpoint_identification_algorithm: ("none" | "https")?
1907
+ },
1908
+ ?elasticsearch_settings: {
1909
+ service_access_role_arn: ::String,
1910
+ endpoint_uri: ::String,
1911
+ full_load_error_percentage: ::Integer?,
1912
+ error_retry_duration: ::Integer?,
1913
+ use_new_mapping_type: bool?
1914
+ },
1915
+ ?neptune_settings: {
1916
+ service_access_role_arn: ::String?,
1917
+ s3_bucket_name: ::String,
1918
+ s3_bucket_folder: ::String,
1919
+ error_retry_duration: ::Integer?,
1920
+ max_file_size: ::Integer?,
1921
+ max_retry_count: ::Integer?,
1922
+ iam_auth_enabled: bool?
1923
+ },
1924
+ ?redshift_settings: {
1925
+ accept_any_date: bool?,
1926
+ after_connect_script: ::String?,
1927
+ bucket_folder: ::String?,
1928
+ bucket_name: ::String?,
1929
+ case_sensitive_names: bool?,
1930
+ comp_update: bool?,
1931
+ connection_timeout: ::Integer?,
1932
+ database_name: ::String?,
1933
+ date_format: ::String?,
1934
+ empty_as_null: bool?,
1935
+ encryption_mode: ("sse-s3" | "sse-kms")?,
1936
+ explicit_ids: bool?,
1937
+ file_transfer_upload_streams: ::Integer?,
1938
+ load_timeout: ::Integer?,
1939
+ max_file_size: ::Integer?,
1940
+ password: ::String?,
1941
+ port: ::Integer?,
1942
+ remove_quotes: bool?,
1943
+ replace_invalid_chars: ::String?,
1944
+ replace_chars: ::String?,
1945
+ server_name: ::String?,
1946
+ service_access_role_arn: ::String?,
1947
+ server_side_encryption_kms_key_id: ::String?,
1948
+ time_format: ::String?,
1949
+ trim_blanks: bool?,
1950
+ truncate_columns: bool?,
1951
+ username: ::String?,
1952
+ write_buffer_size: ::Integer?,
1953
+ secrets_manager_access_role_arn: ::String?,
1954
+ secrets_manager_secret_id: ::String?,
1955
+ map_boolean_as_boolean: bool?
1956
+ },
1957
+ ?postgre_sql_settings: {
1958
+ after_connect_script: ::String?,
1959
+ capture_ddls: bool?,
1960
+ max_file_size: ::Integer?,
1961
+ database_name: ::String?,
1962
+ ddl_artifacts_schema: ::String?,
1963
+ execute_timeout: ::Integer?,
1964
+ fail_tasks_on_lob_truncation: bool?,
1965
+ heartbeat_enable: bool?,
1966
+ heartbeat_schema: ::String?,
1967
+ heartbeat_frequency: ::Integer?,
1968
+ password: ::String?,
1969
+ port: ::Integer?,
1970
+ server_name: ::String?,
1971
+ username: ::String?,
1972
+ slot_name: ::String?,
1973
+ plugin_name: ("no-preference" | "test-decoding" | "pglogical")?,
1974
+ secrets_manager_access_role_arn: ::String?,
1975
+ secrets_manager_secret_id: ::String?,
1976
+ trim_space_in_char: bool?,
1977
+ map_boolean_as_boolean: bool?,
1978
+ map_jsonb_as_clob: bool?,
1979
+ map_long_varchar_as: ("wstring" | "clob" | "nclob")?,
1980
+ database_mode: ("default" | "babelfish")?,
1981
+ babelfish_database_name: ::String?
1982
+ },
1983
+ ?my_sql_settings: {
1984
+ after_connect_script: ::String?,
1985
+ clean_source_metadata_on_mismatch: bool?,
1986
+ database_name: ::String?,
1987
+ events_poll_interval: ::Integer?,
1988
+ target_db_type: ("specific-database" | "multiple-databases")?,
1989
+ max_file_size: ::Integer?,
1990
+ parallel_load_threads: ::Integer?,
1991
+ password: ::String?,
1992
+ port: ::Integer?,
1993
+ server_name: ::String?,
1994
+ server_timezone: ::String?,
1995
+ username: ::String?,
1996
+ secrets_manager_access_role_arn: ::String?,
1997
+ secrets_manager_secret_id: ::String?,
1998
+ execute_timeout: ::Integer?
1999
+ },
2000
+ ?oracle_settings: {
2001
+ add_supplemental_logging: bool?,
2002
+ archived_log_dest_id: ::Integer?,
2003
+ additional_archived_log_dest_id: ::Integer?,
2004
+ extra_archived_log_dest_ids: Array[::Integer]?,
2005
+ allow_select_nested_tables: bool?,
2006
+ parallel_asm_read_threads: ::Integer?,
2007
+ read_ahead_blocks: ::Integer?,
2008
+ access_alternate_directly: bool?,
2009
+ use_alternate_folder_for_online: bool?,
2010
+ oracle_path_prefix: ::String?,
2011
+ use_path_prefix: ::String?,
2012
+ replace_path_prefix: bool?,
2013
+ enable_homogenous_tablespace: bool?,
2014
+ direct_path_no_log: bool?,
2015
+ archived_logs_only: bool?,
2016
+ asm_password: ::String?,
2017
+ asm_server: ::String?,
2018
+ asm_user: ::String?,
2019
+ char_length_semantics: ("default" | "char" | "byte")?,
2020
+ database_name: ::String?,
2021
+ direct_path_parallel_load: bool?,
2022
+ fail_tasks_on_lob_truncation: bool?,
2023
+ number_datatype_scale: ::Integer?,
2024
+ password: ::String?,
2025
+ port: ::Integer?,
2026
+ read_table_space_name: bool?,
2027
+ retry_interval: ::Integer?,
2028
+ security_db_encryption: ::String?,
2029
+ security_db_encryption_name: ::String?,
2030
+ server_name: ::String?,
2031
+ spatial_data_option_to_geo_json_function_name: ::String?,
2032
+ standby_delay_time: ::Integer?,
2033
+ username: ::String?,
2034
+ use_b_file: bool?,
2035
+ use_direct_path_full_load: bool?,
2036
+ use_logminer_reader: bool?,
2037
+ secrets_manager_access_role_arn: ::String?,
2038
+ secrets_manager_secret_id: ::String?,
2039
+ secrets_manager_oracle_asm_access_role_arn: ::String?,
2040
+ secrets_manager_oracle_asm_secret_id: ::String?,
2041
+ trim_space_in_char: bool?,
2042
+ convert_timestamp_with_zone_to_utc: bool?,
2043
+ open_transaction_window: ::Integer?
2044
+ },
2045
+ ?sybase_settings: {
2046
+ database_name: ::String?,
2047
+ password: ::String?,
2048
+ port: ::Integer?,
2049
+ server_name: ::String?,
2050
+ username: ::String?,
2051
+ secrets_manager_access_role_arn: ::String?,
2052
+ secrets_manager_secret_id: ::String?
2053
+ },
2054
+ ?microsoft_sql_server_settings: {
2055
+ port: ::Integer?,
2056
+ bcp_packet_size: ::Integer?,
2057
+ database_name: ::String?,
2058
+ control_tables_file_group: ::String?,
2059
+ password: ::String?,
2060
+ query_single_always_on_node: bool?,
2061
+ read_backup_only: bool?,
2062
+ safeguard_policy: ("rely-on-sql-server-replication-agent" | "exclusive-automatic-truncation" | "shared-automatic-truncation")?,
2063
+ server_name: ::String?,
2064
+ username: ::String?,
2065
+ use_bcp_full_load: bool?,
2066
+ use_third_party_backup_device: bool?,
2067
+ secrets_manager_access_role_arn: ::String?,
2068
+ secrets_manager_secret_id: ::String?,
2069
+ trim_space_in_char: bool?,
2070
+ tlog_access_mode: ("BackupOnly" | "PreferBackup" | "PreferTlog" | "TlogOnly")?,
2071
+ force_lob_lookup: bool?
2072
+ },
2073
+ ?ibm_db_2_settings: {
2074
+ database_name: ::String?,
2075
+ password: ::String?,
2076
+ port: ::Integer?,
2077
+ server_name: ::String?,
2078
+ set_data_capture_changes: bool?,
2079
+ current_lsn: ::String?,
2080
+ max_k_bytes_per_read: ::Integer?,
2081
+ username: ::String?,
2082
+ secrets_manager_access_role_arn: ::String?,
2083
+ secrets_manager_secret_id: ::String?,
2084
+ load_timeout: ::Integer?,
2085
+ write_buffer_size: ::Integer?,
2086
+ max_file_size: ::Integer?,
2087
+ keep_csv_files: bool?
2088
+ },
2089
+ ?doc_db_settings: {
2090
+ username: ::String?,
2091
+ password: ::String?,
2092
+ server_name: ::String?,
2093
+ port: ::Integer?,
2094
+ database_name: ::String?,
2095
+ nesting_level: ("none" | "one")?,
2096
+ extract_doc_id: bool?,
2097
+ docs_to_investigate: ::Integer?,
2098
+ kms_key_id: ::String?,
2099
+ secrets_manager_access_role_arn: ::String?,
2100
+ secrets_manager_secret_id: ::String?,
2101
+ use_update_look_up: bool?,
2102
+ replicate_shard_collections: bool?
2103
+ },
2104
+ ?redis_settings: {
2105
+ server_name: ::String,
2106
+ port: ::Integer,
2107
+ ssl_security_protocol: ("plaintext" | "ssl-encryption")?,
2108
+ auth_type: ("none" | "auth-role" | "auth-token")?,
2109
+ auth_user_name: ::String?,
2110
+ auth_password: ::String?,
2111
+ ssl_ca_certificate_arn: ::String?
2112
+ },
2113
+ ?exact_settings: bool,
2114
+ ?gcp_my_sql_settings: {
2115
+ after_connect_script: ::String?,
2116
+ clean_source_metadata_on_mismatch: bool?,
2117
+ database_name: ::String?,
2118
+ events_poll_interval: ::Integer?,
2119
+ target_db_type: ("specific-database" | "multiple-databases")?,
2120
+ max_file_size: ::Integer?,
2121
+ parallel_load_threads: ::Integer?,
2122
+ password: ::String?,
2123
+ port: ::Integer?,
2124
+ server_name: ::String?,
2125
+ server_timezone: ::String?,
2126
+ username: ::String?,
2127
+ secrets_manager_access_role_arn: ::String?,
2128
+ secrets_manager_secret_id: ::String?
2129
+ },
2130
+ ?timestream_settings: {
2131
+ database_name: ::String,
2132
+ memory_duration: ::Integer,
2133
+ magnetic_duration: ::Integer,
2134
+ cdc_inserts_and_updates: bool?,
2135
+ enable_magnetic_store_writes: bool?
2136
+ }
2137
+ ) -> _ModifyEndpointResponseSuccess
2138
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyEndpointResponseSuccess
2139
+
2140
+ interface _ModifyEventSubscriptionResponseSuccess
2141
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyEventSubscriptionResponse]
2142
+ def event_subscription: () -> Types::EventSubscription
2143
+ end
2144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_event_subscription-instance_method
2145
+ def modify_event_subscription: (
2146
+ subscription_name: ::String,
2147
+ ?sns_topic_arn: ::String,
2148
+ ?source_type: ::String,
2149
+ ?event_categories: Array[::String],
2150
+ ?enabled: bool
2151
+ ) -> _ModifyEventSubscriptionResponseSuccess
2152
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyEventSubscriptionResponseSuccess
2153
+
2154
+ interface _ModifyInstanceProfileResponseSuccess
2155
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyInstanceProfileResponse]
2156
+ def instance_profile: () -> Types::InstanceProfile
2157
+ end
2158
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_instance_profile-instance_method
2159
+ def modify_instance_profile: (
2160
+ instance_profile_identifier: ::String,
2161
+ ?availability_zone: ::String,
2162
+ ?kms_key_arn: ::String,
2163
+ ?publicly_accessible: bool,
2164
+ ?network_type: ::String,
2165
+ ?instance_profile_name: ::String,
2166
+ ?description: ::String,
2167
+ ?subnet_group_identifier: ::String,
2168
+ ?vpc_security_groups: Array[::String]
2169
+ ) -> _ModifyInstanceProfileResponseSuccess
2170
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyInstanceProfileResponseSuccess
2171
+
2172
+ interface _ModifyMigrationProjectResponseSuccess
2173
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyMigrationProjectResponse]
2174
+ def migration_project: () -> Types::MigrationProject
2175
+ end
2176
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_migration_project-instance_method
2177
+ def modify_migration_project: (
2178
+ migration_project_identifier: ::String,
2179
+ ?migration_project_name: ::String,
2180
+ ?source_data_provider_descriptors: Array[
2181
+ {
2182
+ data_provider_identifier: ::String,
2183
+ secrets_manager_secret_id: ::String?,
2184
+ secrets_manager_access_role_arn: ::String?
2185
+ },
2186
+ ],
2187
+ ?target_data_provider_descriptors: Array[
2188
+ {
2189
+ data_provider_identifier: ::String,
2190
+ secrets_manager_secret_id: ::String?,
2191
+ secrets_manager_access_role_arn: ::String?
2192
+ },
2193
+ ],
2194
+ ?instance_profile_identifier: ::String,
2195
+ ?transformation_rules: ::String,
2196
+ ?description: ::String,
2197
+ ?schema_conversion_application_attributes: {
2198
+ s3_bucket_path: ::String?,
2199
+ s3_bucket_role_arn: ::String?
2200
+ }
2201
+ ) -> _ModifyMigrationProjectResponseSuccess
2202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyMigrationProjectResponseSuccess
2203
+
2204
+ interface _ModifyReplicationConfigResponseSuccess
2205
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyReplicationConfigResponse]
2206
+ def replication_config: () -> Types::ReplicationConfig
2207
+ end
2208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_replication_config-instance_method
2209
+ def modify_replication_config: (
2210
+ replication_config_arn: ::String,
2211
+ ?replication_config_identifier: ::String,
2212
+ ?replication_type: ("full-load" | "cdc" | "full-load-and-cdc"),
2213
+ ?table_mappings: ::String,
2214
+ ?replication_settings: ::String,
2215
+ ?supplemental_settings: ::String,
2216
+ ?compute_config: {
2217
+ availability_zone: ::String?,
2218
+ dns_name_servers: ::String?,
2219
+ kms_key_id: ::String?,
2220
+ max_capacity_units: ::Integer?,
2221
+ min_capacity_units: ::Integer?,
2222
+ multi_az: bool?,
2223
+ preferred_maintenance_window: ::String?,
2224
+ replication_subnet_group_id: ::String?,
2225
+ vpc_security_group_ids: Array[::String]?
2226
+ },
2227
+ ?source_endpoint_arn: ::String,
2228
+ ?target_endpoint_arn: ::String
2229
+ ) -> _ModifyReplicationConfigResponseSuccess
2230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReplicationConfigResponseSuccess
2231
+
2232
+ interface _ModifyReplicationInstanceResponseSuccess
2233
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyReplicationInstanceResponse]
2234
+ def replication_instance: () -> Types::ReplicationInstance
2235
+ end
2236
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_replication_instance-instance_method
2237
+ def modify_replication_instance: (
2238
+ replication_instance_arn: ::String,
2239
+ ?allocated_storage: ::Integer,
2240
+ ?apply_immediately: bool,
2241
+ ?replication_instance_class: ::String,
2242
+ ?vpc_security_group_ids: Array[::String],
2243
+ ?preferred_maintenance_window: ::String,
2244
+ ?multi_az: bool,
2245
+ ?engine_version: ::String,
2246
+ ?allow_major_version_upgrade: bool,
2247
+ ?auto_minor_version_upgrade: bool,
2248
+ ?replication_instance_identifier: ::String,
2249
+ ?network_type: ::String
2250
+ ) -> _ModifyReplicationInstanceResponseSuccess
2251
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReplicationInstanceResponseSuccess
2252
+
2253
+ interface _ModifyReplicationSubnetGroupResponseSuccess
2254
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyReplicationSubnetGroupResponse]
2255
+ def replication_subnet_group: () -> Types::ReplicationSubnetGroup
2256
+ end
2257
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_replication_subnet_group-instance_method
2258
+ def modify_replication_subnet_group: (
2259
+ replication_subnet_group_identifier: ::String,
2260
+ ?replication_subnet_group_description: ::String,
2261
+ subnet_ids: Array[::String]
2262
+ ) -> _ModifyReplicationSubnetGroupResponseSuccess
2263
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReplicationSubnetGroupResponseSuccess
2264
+
2265
+ interface _ModifyReplicationTaskResponseSuccess
2266
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyReplicationTaskResponse]
2267
+ def replication_task: () -> Types::ReplicationTask
2268
+ end
2269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#modify_replication_task-instance_method
2270
+ def modify_replication_task: (
2271
+ replication_task_arn: ::String,
2272
+ ?replication_task_identifier: ::String,
2273
+ ?migration_type: ("full-load" | "cdc" | "full-load-and-cdc"),
2274
+ ?table_mappings: ::String,
2275
+ ?replication_task_settings: ::String,
2276
+ ?cdc_start_time: ::Time,
2277
+ ?cdc_start_position: ::String,
2278
+ ?cdc_stop_position: ::String,
2279
+ ?task_data: ::String
2280
+ ) -> _ModifyReplicationTaskResponseSuccess
2281
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReplicationTaskResponseSuccess
2282
+
2283
+ interface _MoveReplicationTaskResponseSuccess
2284
+ include ::Seahorse::Client::_ResponseSuccess[Types::MoveReplicationTaskResponse]
2285
+ def replication_task: () -> Types::ReplicationTask
2286
+ end
2287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#move_replication_task-instance_method
2288
+ def move_replication_task: (
2289
+ replication_task_arn: ::String,
2290
+ target_replication_instance_arn: ::String
2291
+ ) -> _MoveReplicationTaskResponseSuccess
2292
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _MoveReplicationTaskResponseSuccess
2293
+
2294
+ interface _RebootReplicationInstanceResponseSuccess
2295
+ include ::Seahorse::Client::_ResponseSuccess[Types::RebootReplicationInstanceResponse]
2296
+ def replication_instance: () -> Types::ReplicationInstance
2297
+ end
2298
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#reboot_replication_instance-instance_method
2299
+ def reboot_replication_instance: (
2300
+ replication_instance_arn: ::String,
2301
+ ?force_failover: bool,
2302
+ ?force_planned_failover: bool
2303
+ ) -> _RebootReplicationInstanceResponseSuccess
2304
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RebootReplicationInstanceResponseSuccess
2305
+
2306
+ interface _RefreshSchemasResponseSuccess
2307
+ include ::Seahorse::Client::_ResponseSuccess[Types::RefreshSchemasResponse]
2308
+ def refresh_schemas_status: () -> Types::RefreshSchemasStatus
2309
+ end
2310
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#refresh_schemas-instance_method
2311
+ def refresh_schemas: (
2312
+ endpoint_arn: ::String,
2313
+ replication_instance_arn: ::String
2314
+ ) -> _RefreshSchemasResponseSuccess
2315
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RefreshSchemasResponseSuccess
2316
+
2317
+ interface _ReloadReplicationTablesResponseSuccess
2318
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReloadReplicationTablesResponse]
2319
+ def replication_config_arn: () -> ::String
2320
+ end
2321
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#reload_replication_tables-instance_method
2322
+ def reload_replication_tables: (
2323
+ replication_config_arn: ::String,
2324
+ tables_to_reload: Array[
2325
+ {
2326
+ schema_name: ::String,
2327
+ table_name: ::String
2328
+ },
2329
+ ],
2330
+ ?reload_option: ("data-reload" | "validate-only")
2331
+ ) -> _ReloadReplicationTablesResponseSuccess
2332
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReloadReplicationTablesResponseSuccess
2333
+
2334
+ interface _ReloadTablesResponseSuccess
2335
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReloadTablesResponse]
2336
+ def replication_task_arn: () -> ::String
2337
+ end
2338
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#reload_tables-instance_method
2339
+ def reload_tables: (
2340
+ replication_task_arn: ::String,
2341
+ tables_to_reload: Array[
2342
+ {
2343
+ schema_name: ::String,
2344
+ table_name: ::String
2345
+ },
2346
+ ],
2347
+ ?reload_option: ("data-reload" | "validate-only")
2348
+ ) -> _ReloadTablesResponseSuccess
2349
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReloadTablesResponseSuccess
2350
+
2351
+ interface _RemoveTagsFromResourceResponseSuccess
2352
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveTagsFromResourceResponse]
2353
+ end
2354
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#remove_tags_from_resource-instance_method
2355
+ def remove_tags_from_resource: (
2356
+ resource_arn: ::String,
2357
+ tag_keys: Array[::String]
2358
+ ) -> _RemoveTagsFromResourceResponseSuccess
2359
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveTagsFromResourceResponseSuccess
2360
+
2361
+ interface _RunFleetAdvisorLsaAnalysisResponseSuccess
2362
+ include ::Seahorse::Client::_ResponseSuccess[Types::RunFleetAdvisorLsaAnalysisResponse]
2363
+ def lsa_analysis_id: () -> ::String
2364
+ def status: () -> ::String
2365
+ end
2366
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#run_fleet_advisor_lsa_analysis-instance_method
2367
+ def run_fleet_advisor_lsa_analysis: () -> _RunFleetAdvisorLsaAnalysisResponseSuccess
2368
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RunFleetAdvisorLsaAnalysisResponseSuccess
2369
+
2370
+ interface _StartExtensionPackAssociationResponseSuccess
2371
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartExtensionPackAssociationResponse]
2372
+ def request_identifier: () -> ::String
2373
+ end
2374
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_extension_pack_association-instance_method
2375
+ def start_extension_pack_association: (
2376
+ migration_project_identifier: ::String
2377
+ ) -> _StartExtensionPackAssociationResponseSuccess
2378
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartExtensionPackAssociationResponseSuccess
2379
+
2380
+ interface _StartMetadataModelAssessmentResponseSuccess
2381
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelAssessmentResponse]
2382
+ def request_identifier: () -> ::String
2383
+ end
2384
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_metadata_model_assessment-instance_method
2385
+ def start_metadata_model_assessment: (
2386
+ migration_project_identifier: ::String,
2387
+ selection_rules: ::String
2388
+ ) -> _StartMetadataModelAssessmentResponseSuccess
2389
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelAssessmentResponseSuccess
2390
+
2391
+ interface _StartMetadataModelConversionResponseSuccess
2392
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelConversionResponse]
2393
+ def request_identifier: () -> ::String
2394
+ end
2395
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_metadata_model_conversion-instance_method
2396
+ def start_metadata_model_conversion: (
2397
+ migration_project_identifier: ::String,
2398
+ selection_rules: ::String
2399
+ ) -> _StartMetadataModelConversionResponseSuccess
2400
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelConversionResponseSuccess
2401
+
2402
+ interface _StartMetadataModelExportAsScriptResponseSuccess
2403
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelExportAsScriptResponse]
2404
+ def request_identifier: () -> ::String
2405
+ end
2406
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_metadata_model_export_as_script-instance_method
2407
+ def start_metadata_model_export_as_script: (
2408
+ migration_project_identifier: ::String,
2409
+ selection_rules: ::String,
2410
+ origin: ("SOURCE" | "TARGET"),
2411
+ ?file_name: ::String
2412
+ ) -> _StartMetadataModelExportAsScriptResponseSuccess
2413
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelExportAsScriptResponseSuccess
2414
+
2415
+ interface _StartMetadataModelExportToTargetResponseSuccess
2416
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelExportToTargetResponse]
2417
+ def request_identifier: () -> ::String
2418
+ end
2419
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_metadata_model_export_to_target-instance_method
2420
+ def start_metadata_model_export_to_target: (
2421
+ migration_project_identifier: ::String,
2422
+ selection_rules: ::String,
2423
+ ?overwrite_extension_pack: bool
2424
+ ) -> _StartMetadataModelExportToTargetResponseSuccess
2425
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelExportToTargetResponseSuccess
2426
+
2427
+ interface _StartMetadataModelImportResponseSuccess
2428
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMetadataModelImportResponse]
2429
+ def request_identifier: () -> ::String
2430
+ end
2431
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_metadata_model_import-instance_method
2432
+ def start_metadata_model_import: (
2433
+ migration_project_identifier: ::String,
2434
+ selection_rules: ::String,
2435
+ origin: ("SOURCE" | "TARGET"),
2436
+ ?refresh: bool
2437
+ ) -> _StartMetadataModelImportResponseSuccess
2438
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataModelImportResponseSuccess
2439
+
2440
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_recommendations-instance_method
2441
+ def start_recommendations: (
2442
+ database_id: ::String,
2443
+ settings: {
2444
+ instance_sizing_type: ::String,
2445
+ workload_type: ::String
2446
+ }
2447
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2448
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2449
+
2450
+ interface _StartReplicationResponseSuccess
2451
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReplicationResponse]
2452
+ def replication: () -> Types::Replication
2453
+ end
2454
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_replication-instance_method
2455
+ def start_replication: (
2456
+ replication_config_arn: ::String,
2457
+ start_replication_type: ::String,
2458
+ ?cdc_start_time: ::Time,
2459
+ ?cdc_start_position: ::String,
2460
+ ?cdc_stop_position: ::String
2461
+ ) -> _StartReplicationResponseSuccess
2462
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplicationResponseSuccess
2463
+
2464
+ interface _StartReplicationTaskResponseSuccess
2465
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReplicationTaskResponse]
2466
+ def replication_task: () -> Types::ReplicationTask
2467
+ end
2468
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_replication_task-instance_method
2469
+ def start_replication_task: (
2470
+ replication_task_arn: ::String,
2471
+ start_replication_task_type: ("start-replication" | "resume-processing" | "reload-target"),
2472
+ ?cdc_start_time: ::Time,
2473
+ ?cdc_start_position: ::String,
2474
+ ?cdc_stop_position: ::String
2475
+ ) -> _StartReplicationTaskResponseSuccess
2476
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplicationTaskResponseSuccess
2477
+
2478
+ interface _StartReplicationTaskAssessmentResponseSuccess
2479
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReplicationTaskAssessmentResponse]
2480
+ def replication_task: () -> Types::ReplicationTask
2481
+ end
2482
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_replication_task_assessment-instance_method
2483
+ def start_replication_task_assessment: (
2484
+ replication_task_arn: ::String
2485
+ ) -> _StartReplicationTaskAssessmentResponseSuccess
2486
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplicationTaskAssessmentResponseSuccess
2487
+
2488
+ interface _StartReplicationTaskAssessmentRunResponseSuccess
2489
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReplicationTaskAssessmentRunResponse]
2490
+ def replication_task_assessment_run: () -> Types::ReplicationTaskAssessmentRun
2491
+ end
2492
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#start_replication_task_assessment_run-instance_method
2493
+ def start_replication_task_assessment_run: (
2494
+ replication_task_arn: ::String,
2495
+ service_access_role_arn: ::String,
2496
+ result_location_bucket: ::String,
2497
+ ?result_location_folder: ::String,
2498
+ ?result_encryption_mode: ::String,
2499
+ ?result_kms_key_arn: ::String,
2500
+ assessment_run_name: ::String,
2501
+ ?include_only: Array[::String],
2502
+ ?exclude: Array[::String]
2503
+ ) -> _StartReplicationTaskAssessmentRunResponseSuccess
2504
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplicationTaskAssessmentRunResponseSuccess
2505
+
2506
+ interface _StopReplicationResponseSuccess
2507
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopReplicationResponse]
2508
+ def replication: () -> Types::Replication
2509
+ end
2510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#stop_replication-instance_method
2511
+ def stop_replication: (
2512
+ replication_config_arn: ::String
2513
+ ) -> _StopReplicationResponseSuccess
2514
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopReplicationResponseSuccess
2515
+
2516
+ interface _StopReplicationTaskResponseSuccess
2517
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopReplicationTaskResponse]
2518
+ def replication_task: () -> Types::ReplicationTask
2519
+ end
2520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#stop_replication_task-instance_method
2521
+ def stop_replication_task: (
2522
+ replication_task_arn: ::String
2523
+ ) -> _StopReplicationTaskResponseSuccess
2524
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopReplicationTaskResponseSuccess
2525
+
2526
+ interface _TestConnectionResponseSuccess
2527
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestConnectionResponse]
2528
+ def connection: () -> Types::Connection
2529
+ end
2530
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#test_connection-instance_method
2531
+ def test_connection: (
2532
+ replication_instance_arn: ::String,
2533
+ endpoint_arn: ::String
2534
+ ) -> _TestConnectionResponseSuccess
2535
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestConnectionResponseSuccess
2536
+
2537
+ interface _UpdateSubscriptionsToEventBridgeResponseSuccess
2538
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubscriptionsToEventBridgeResponse]
2539
+ def result: () -> ::String
2540
+ end
2541
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#update_subscriptions_to_event_bridge-instance_method
2542
+ def update_subscriptions_to_event_bridge: (
2543
+ ?force_move: bool
2544
+ ) -> _UpdateSubscriptionsToEventBridgeResponseSuccess
2545
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubscriptionsToEventBridgeResponseSuccess
2546
+
2547
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DatabaseMigrationService/Client.html#wait_until-instance_method
2548
+ def wait_until: (:endpoint_deleted waiter_name,
2549
+ ?filters: Array[
2550
+ {
2551
+ name: ::String,
2552
+ values: Array[::String]
2553
+ },
2554
+ ],
2555
+ ?max_records: ::Integer,
2556
+ ?marker: ::String
2557
+ ) -> Client::_DescribeEndpointsResponseSuccess
2558
+ | (:endpoint_deleted waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeEndpointsResponseSuccess
2559
+ | (:replication_instance_available waiter_name,
2560
+ ?filters: Array[
2561
+ {
2562
+ name: ::String,
2563
+ values: Array[::String]
2564
+ },
2565
+ ],
2566
+ ?max_records: ::Integer,
2567
+ ?marker: ::String
2568
+ ) -> Client::_DescribeReplicationInstancesResponseSuccess
2569
+ | (:replication_instance_available waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeReplicationInstancesResponseSuccess
2570
+ | (:replication_instance_deleted waiter_name,
2571
+ ?filters: Array[
2572
+ {
2573
+ name: ::String,
2574
+ values: Array[::String]
2575
+ },
2576
+ ],
2577
+ ?max_records: ::Integer,
2578
+ ?marker: ::String
2579
+ ) -> Client::_DescribeReplicationInstancesResponseSuccess
2580
+ | (:replication_instance_deleted waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeReplicationInstancesResponseSuccess
2581
+ | (:replication_task_deleted waiter_name,
2582
+ ?filters: Array[
2583
+ {
2584
+ name: ::String,
2585
+ values: Array[::String]
2586
+ },
2587
+ ],
2588
+ ?max_records: ::Integer,
2589
+ ?marker: ::String,
2590
+ ?without_settings: bool
2591
+ ) -> Client::_DescribeReplicationTasksResponseSuccess
2592
+ | (:replication_task_deleted waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeReplicationTasksResponseSuccess
2593
+ | (:replication_task_ready waiter_name,
2594
+ ?filters: Array[
2595
+ {
2596
+ name: ::String,
2597
+ values: Array[::String]
2598
+ },
2599
+ ],
2600
+ ?max_records: ::Integer,
2601
+ ?marker: ::String,
2602
+ ?without_settings: bool
2603
+ ) -> Client::_DescribeReplicationTasksResponseSuccess
2604
+ | (:replication_task_ready waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeReplicationTasksResponseSuccess
2605
+ | (:replication_task_running waiter_name,
2606
+ ?filters: Array[
2607
+ {
2608
+ name: ::String,
2609
+ values: Array[::String]
2610
+ },
2611
+ ],
2612
+ ?max_records: ::Integer,
2613
+ ?marker: ::String,
2614
+ ?without_settings: bool
2615
+ ) -> Client::_DescribeReplicationTasksResponseSuccess
2616
+ | (:replication_task_running waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeReplicationTasksResponseSuccess
2617
+ | (:replication_task_stopped waiter_name,
2618
+ ?filters: Array[
2619
+ {
2620
+ name: ::String,
2621
+ values: Array[::String]
2622
+ },
2623
+ ],
2624
+ ?max_records: ::Integer,
2625
+ ?marker: ::String,
2626
+ ?without_settings: bool
2627
+ ) -> Client::_DescribeReplicationTasksResponseSuccess
2628
+ | (:replication_task_stopped waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeReplicationTasksResponseSuccess
2629
+ | (:test_connection_succeeds waiter_name,
2630
+ ?filters: Array[
2631
+ {
2632
+ name: ::String,
2633
+ values: Array[::String]
2634
+ },
2635
+ ],
2636
+ ?max_records: ::Integer,
2637
+ ?marker: ::String
2638
+ ) -> Client::_DescribeConnectionsResponseSuccess
2639
+ | (:test_connection_succeeds waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeConnectionsResponseSuccess
2640
+ end
2641
+ end
2642
+ end
2643
+