aws-sdk-databasemigrationservice 1.74.0 → 1.76.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +281 -15
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +165 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +47 -127
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +56 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +570 -1771
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- metadata +2 -2
@@ -51,20 +51,6 @@ module Aws::DatabaseMigrationService
|
|
51
51
|
|
52
52
|
# Associates a set of tags with an DMS resource.
|
53
53
|
#
|
54
|
-
# @note When making an API call, you may pass AddTagsToResourceMessage
|
55
|
-
# data as a hash:
|
56
|
-
#
|
57
|
-
# {
|
58
|
-
# resource_arn: "String", # required
|
59
|
-
# tags: [ # required
|
60
|
-
# {
|
61
|
-
# key: "String",
|
62
|
-
# value: "String",
|
63
|
-
# resource_arn: "String",
|
64
|
-
# },
|
65
|
-
# ],
|
66
|
-
# }
|
67
|
-
#
|
68
54
|
# @!attribute [rw] resource_arn
|
69
55
|
# Identifies the DMS resource to which tags should be added. The value
|
70
56
|
# for this parameter is an Amazon Resource Name (ARN).
|
@@ -90,15 +76,6 @@ module Aws::DatabaseMigrationService
|
|
90
76
|
#
|
91
77
|
class AddTagsToResourceResponse < Aws::EmptyStructure; end
|
92
78
|
|
93
|
-
# @note When making an API call, you may pass ApplyPendingMaintenanceActionMessage
|
94
|
-
# data as a hash:
|
95
|
-
#
|
96
|
-
# {
|
97
|
-
# replication_instance_arn: "String", # required
|
98
|
-
# apply_action: "String", # required
|
99
|
-
# opt_in_type: "String", # required
|
100
|
-
# }
|
101
|
-
#
|
102
79
|
# @!attribute [rw] replication_instance_arn
|
103
80
|
# The Amazon Resource Name (ARN) of the DMS resource that the pending
|
104
81
|
# maintenance action applies to.
|
@@ -172,13 +149,59 @@ module Aws::DatabaseMigrationService
|
|
172
149
|
include Aws::Structure
|
173
150
|
end
|
174
151
|
|
175
|
-
#
|
176
|
-
#
|
152
|
+
# Provides information about the errors that occurred during the
|
153
|
+
# analysis of the source database.
|
154
|
+
#
|
155
|
+
# @!attribute [rw] database_id
|
156
|
+
# The identifier of the source database.
|
157
|
+
# @return [String]
|
158
|
+
#
|
159
|
+
# @!attribute [rw] message
|
160
|
+
# The information about the error.
|
161
|
+
# @return [String]
|
162
|
+
#
|
163
|
+
# @!attribute [rw] code
|
164
|
+
# The code of an error that occurred during the analysis of the source
|
165
|
+
# database.
|
166
|
+
# @return [String]
|
167
|
+
#
|
168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/BatchStartRecommendationsErrorEntry AWS API Documentation
|
169
|
+
#
|
170
|
+
class BatchStartRecommendationsErrorEntry < Struct.new(
|
171
|
+
:database_id,
|
172
|
+
:message,
|
173
|
+
:code)
|
174
|
+
SENSITIVE = []
|
175
|
+
include Aws::Structure
|
176
|
+
end
|
177
|
+
|
178
|
+
# @!attribute [rw] data
|
179
|
+
# Provides information about source databases to analyze. After this
|
180
|
+
# analysis, Fleet Advisor recommends target engines for each source
|
181
|
+
# database.
|
182
|
+
# @return [Array<Types::StartRecommendationsRequestEntry>]
|
177
183
|
#
|
178
|
-
#
|
179
|
-
# replication_task_assessment_run_arn: "String", # required
|
180
|
-
# }
|
184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/BatchStartRecommendationsRequest AWS API Documentation
|
181
185
|
#
|
186
|
+
class BatchStartRecommendationsRequest < Struct.new(
|
187
|
+
:data)
|
188
|
+
SENSITIVE = []
|
189
|
+
include Aws::Structure
|
190
|
+
end
|
191
|
+
|
192
|
+
# @!attribute [rw] error_entries
|
193
|
+
# A list with error details about the analysis of each source
|
194
|
+
# database.
|
195
|
+
# @return [Array<Types::BatchStartRecommendationsErrorEntry>]
|
196
|
+
#
|
197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/BatchStartRecommendationsResponse AWS API Documentation
|
198
|
+
#
|
199
|
+
class BatchStartRecommendationsResponse < Struct.new(
|
200
|
+
:error_entries)
|
201
|
+
SENSITIVE = []
|
202
|
+
include Aws::Structure
|
203
|
+
end
|
204
|
+
|
182
205
|
# @!attribute [rw] replication_task_assessment_run_arn
|
183
206
|
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
184
207
|
# canceled.
|
@@ -466,335 +489,6 @@ module Aws::DatabaseMigrationService
|
|
466
489
|
include Aws::Structure
|
467
490
|
end
|
468
491
|
|
469
|
-
# @note When making an API call, you may pass CreateEndpointMessage
|
470
|
-
# data as a hash:
|
471
|
-
#
|
472
|
-
# {
|
473
|
-
# endpoint_identifier: "String", # required
|
474
|
-
# endpoint_type: "source", # required, accepts source, target
|
475
|
-
# engine_name: "String", # required
|
476
|
-
# username: "String",
|
477
|
-
# password: "SecretString",
|
478
|
-
# server_name: "String",
|
479
|
-
# port: 1,
|
480
|
-
# database_name: "String",
|
481
|
-
# extra_connection_attributes: "String",
|
482
|
-
# kms_key_id: "String",
|
483
|
-
# tags: [
|
484
|
-
# {
|
485
|
-
# key: "String",
|
486
|
-
# value: "String",
|
487
|
-
# resource_arn: "String",
|
488
|
-
# },
|
489
|
-
# ],
|
490
|
-
# certificate_arn: "String",
|
491
|
-
# ssl_mode: "none", # accepts none, require, verify-ca, verify-full
|
492
|
-
# service_access_role_arn: "String",
|
493
|
-
# external_table_definition: "String",
|
494
|
-
# dynamo_db_settings: {
|
495
|
-
# service_access_role_arn: "String", # required
|
496
|
-
# },
|
497
|
-
# s3_settings: {
|
498
|
-
# service_access_role_arn: "String",
|
499
|
-
# external_table_definition: "String",
|
500
|
-
# csv_row_delimiter: "String",
|
501
|
-
# csv_delimiter: "String",
|
502
|
-
# bucket_folder: "String",
|
503
|
-
# bucket_name: "String",
|
504
|
-
# compression_type: "none", # accepts none, gzip
|
505
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
506
|
-
# server_side_encryption_kms_key_id: "String",
|
507
|
-
# data_format: "csv", # accepts csv, parquet
|
508
|
-
# encoding_type: "plain", # accepts plain, plain-dictionary, rle-dictionary
|
509
|
-
# dict_page_size_limit: 1,
|
510
|
-
# row_group_length: 1,
|
511
|
-
# data_page_size: 1,
|
512
|
-
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
513
|
-
# enable_statistics: false,
|
514
|
-
# include_op_for_full_load: false,
|
515
|
-
# cdc_inserts_only: false,
|
516
|
-
# timestamp_column_name: "String",
|
517
|
-
# parquet_timestamp_in_millisecond: false,
|
518
|
-
# cdc_inserts_and_updates: false,
|
519
|
-
# date_partition_enabled: false,
|
520
|
-
# date_partition_sequence: "YYYYMMDD", # accepts YYYYMMDD, YYYYMMDDHH, YYYYMM, MMYYYYDD, DDMMYYYY
|
521
|
-
# date_partition_delimiter: "SLASH", # accepts SLASH, UNDERSCORE, DASH, NONE
|
522
|
-
# use_csv_no_sup_value: false,
|
523
|
-
# csv_no_sup_value: "String",
|
524
|
-
# preserve_transactions: false,
|
525
|
-
# cdc_path: "String",
|
526
|
-
# use_task_start_time_for_full_load_timestamp: false,
|
527
|
-
# canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
|
528
|
-
# add_column_name: false,
|
529
|
-
# cdc_max_batch_interval: 1,
|
530
|
-
# cdc_min_file_size: 1,
|
531
|
-
# csv_null_value: "String",
|
532
|
-
# ignore_header_rows: 1,
|
533
|
-
# max_file_size: 1,
|
534
|
-
# rfc_4180: false,
|
535
|
-
# date_partition_timezone: "String",
|
536
|
-
# add_trailing_padding_character: false,
|
537
|
-
# expected_bucket_owner: "String",
|
538
|
-
# },
|
539
|
-
# dms_transfer_settings: {
|
540
|
-
# service_access_role_arn: "String",
|
541
|
-
# bucket_name: "String",
|
542
|
-
# },
|
543
|
-
# mongo_db_settings: {
|
544
|
-
# username: "String",
|
545
|
-
# password: "SecretString",
|
546
|
-
# server_name: "String",
|
547
|
-
# port: 1,
|
548
|
-
# database_name: "String",
|
549
|
-
# auth_type: "no", # accepts no, password
|
550
|
-
# auth_mechanism: "default", # accepts default, mongodb_cr, scram_sha_1
|
551
|
-
# nesting_level: "none", # accepts none, one
|
552
|
-
# extract_doc_id: "String",
|
553
|
-
# docs_to_investigate: "String",
|
554
|
-
# auth_source: "String",
|
555
|
-
# kms_key_id: "String",
|
556
|
-
# secrets_manager_access_role_arn: "String",
|
557
|
-
# secrets_manager_secret_id: "String",
|
558
|
-
# },
|
559
|
-
# kinesis_settings: {
|
560
|
-
# stream_arn: "String",
|
561
|
-
# message_format: "json", # accepts json, json-unformatted
|
562
|
-
# service_access_role_arn: "String",
|
563
|
-
# include_transaction_details: false,
|
564
|
-
# include_partition_value: false,
|
565
|
-
# partition_include_schema_table: false,
|
566
|
-
# include_table_alter_operations: false,
|
567
|
-
# include_control_details: false,
|
568
|
-
# include_null_and_empty: false,
|
569
|
-
# no_hex_prefix: false,
|
570
|
-
# },
|
571
|
-
# kafka_settings: {
|
572
|
-
# broker: "String",
|
573
|
-
# topic: "String",
|
574
|
-
# message_format: "json", # accepts json, json-unformatted
|
575
|
-
# include_transaction_details: false,
|
576
|
-
# include_partition_value: false,
|
577
|
-
# partition_include_schema_table: false,
|
578
|
-
# include_table_alter_operations: false,
|
579
|
-
# include_control_details: false,
|
580
|
-
# message_max_bytes: 1,
|
581
|
-
# include_null_and_empty: false,
|
582
|
-
# security_protocol: "plaintext", # accepts plaintext, ssl-authentication, ssl-encryption, sasl-ssl
|
583
|
-
# ssl_client_certificate_arn: "String",
|
584
|
-
# ssl_client_key_arn: "String",
|
585
|
-
# ssl_client_key_password: "SecretString",
|
586
|
-
# ssl_ca_certificate_arn: "String",
|
587
|
-
# sasl_username: "String",
|
588
|
-
# sasl_password: "SecretString",
|
589
|
-
# no_hex_prefix: false,
|
590
|
-
# },
|
591
|
-
# elasticsearch_settings: {
|
592
|
-
# service_access_role_arn: "String", # required
|
593
|
-
# endpoint_uri: "String", # required
|
594
|
-
# full_load_error_percentage: 1,
|
595
|
-
# error_retry_duration: 1,
|
596
|
-
# use_new_mapping_type: false,
|
597
|
-
# },
|
598
|
-
# neptune_settings: {
|
599
|
-
# service_access_role_arn: "String",
|
600
|
-
# s3_bucket_name: "String", # required
|
601
|
-
# s3_bucket_folder: "String", # required
|
602
|
-
# error_retry_duration: 1,
|
603
|
-
# max_file_size: 1,
|
604
|
-
# max_retry_count: 1,
|
605
|
-
# iam_auth_enabled: false,
|
606
|
-
# },
|
607
|
-
# redshift_settings: {
|
608
|
-
# accept_any_date: false,
|
609
|
-
# after_connect_script: "String",
|
610
|
-
# bucket_folder: "String",
|
611
|
-
# bucket_name: "String",
|
612
|
-
# case_sensitive_names: false,
|
613
|
-
# comp_update: false,
|
614
|
-
# connection_timeout: 1,
|
615
|
-
# database_name: "String",
|
616
|
-
# date_format: "String",
|
617
|
-
# empty_as_null: false,
|
618
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
619
|
-
# explicit_ids: false,
|
620
|
-
# file_transfer_upload_streams: 1,
|
621
|
-
# load_timeout: 1,
|
622
|
-
# max_file_size: 1,
|
623
|
-
# password: "SecretString",
|
624
|
-
# port: 1,
|
625
|
-
# remove_quotes: false,
|
626
|
-
# replace_invalid_chars: "String",
|
627
|
-
# replace_chars: "String",
|
628
|
-
# server_name: "String",
|
629
|
-
# service_access_role_arn: "String",
|
630
|
-
# server_side_encryption_kms_key_id: "String",
|
631
|
-
# time_format: "String",
|
632
|
-
# trim_blanks: false,
|
633
|
-
# truncate_columns: false,
|
634
|
-
# username: "String",
|
635
|
-
# write_buffer_size: 1,
|
636
|
-
# secrets_manager_access_role_arn: "String",
|
637
|
-
# secrets_manager_secret_id: "String",
|
638
|
-
# },
|
639
|
-
# postgre_sql_settings: {
|
640
|
-
# after_connect_script: "String",
|
641
|
-
# capture_ddls: false,
|
642
|
-
# max_file_size: 1,
|
643
|
-
# database_name: "String",
|
644
|
-
# ddl_artifacts_schema: "String",
|
645
|
-
# execute_timeout: 1,
|
646
|
-
# fail_tasks_on_lob_truncation: false,
|
647
|
-
# heartbeat_enable: false,
|
648
|
-
# heartbeat_schema: "String",
|
649
|
-
# heartbeat_frequency: 1,
|
650
|
-
# password: "SecretString",
|
651
|
-
# port: 1,
|
652
|
-
# server_name: "String",
|
653
|
-
# username: "String",
|
654
|
-
# slot_name: "String",
|
655
|
-
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
656
|
-
# secrets_manager_access_role_arn: "String",
|
657
|
-
# secrets_manager_secret_id: "String",
|
658
|
-
# trim_space_in_char: false,
|
659
|
-
# },
|
660
|
-
# my_sql_settings: {
|
661
|
-
# after_connect_script: "String",
|
662
|
-
# clean_source_metadata_on_mismatch: false,
|
663
|
-
# database_name: "String",
|
664
|
-
# events_poll_interval: 1,
|
665
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
666
|
-
# max_file_size: 1,
|
667
|
-
# parallel_load_threads: 1,
|
668
|
-
# password: "SecretString",
|
669
|
-
# port: 1,
|
670
|
-
# server_name: "String",
|
671
|
-
# server_timezone: "String",
|
672
|
-
# username: "String",
|
673
|
-
# secrets_manager_access_role_arn: "String",
|
674
|
-
# secrets_manager_secret_id: "String",
|
675
|
-
# },
|
676
|
-
# oracle_settings: {
|
677
|
-
# add_supplemental_logging: false,
|
678
|
-
# archived_log_dest_id: 1,
|
679
|
-
# additional_archived_log_dest_id: 1,
|
680
|
-
# extra_archived_log_dest_ids: [1],
|
681
|
-
# allow_select_nested_tables: false,
|
682
|
-
# parallel_asm_read_threads: 1,
|
683
|
-
# read_ahead_blocks: 1,
|
684
|
-
# access_alternate_directly: false,
|
685
|
-
# use_alternate_folder_for_online: false,
|
686
|
-
# oracle_path_prefix: "String",
|
687
|
-
# use_path_prefix: "String",
|
688
|
-
# replace_path_prefix: false,
|
689
|
-
# enable_homogenous_tablespace: false,
|
690
|
-
# direct_path_no_log: false,
|
691
|
-
# archived_logs_only: false,
|
692
|
-
# asm_password: "SecretString",
|
693
|
-
# asm_server: "String",
|
694
|
-
# asm_user: "String",
|
695
|
-
# char_length_semantics: "default", # accepts default, char, byte
|
696
|
-
# database_name: "String",
|
697
|
-
# direct_path_parallel_load: false,
|
698
|
-
# fail_tasks_on_lob_truncation: false,
|
699
|
-
# number_datatype_scale: 1,
|
700
|
-
# password: "SecretString",
|
701
|
-
# port: 1,
|
702
|
-
# read_table_space_name: false,
|
703
|
-
# retry_interval: 1,
|
704
|
-
# security_db_encryption: "SecretString",
|
705
|
-
# security_db_encryption_name: "String",
|
706
|
-
# server_name: "String",
|
707
|
-
# spatial_data_option_to_geo_json_function_name: "String",
|
708
|
-
# standby_delay_time: 1,
|
709
|
-
# username: "String",
|
710
|
-
# use_b_file: false,
|
711
|
-
# use_direct_path_full_load: false,
|
712
|
-
# use_logminer_reader: false,
|
713
|
-
# secrets_manager_access_role_arn: "String",
|
714
|
-
# secrets_manager_secret_id: "String",
|
715
|
-
# secrets_manager_oracle_asm_access_role_arn: "String",
|
716
|
-
# secrets_manager_oracle_asm_secret_id: "String",
|
717
|
-
# trim_space_in_char: false,
|
718
|
-
# },
|
719
|
-
# sybase_settings: {
|
720
|
-
# database_name: "String",
|
721
|
-
# password: "SecretString",
|
722
|
-
# port: 1,
|
723
|
-
# server_name: "String",
|
724
|
-
# username: "String",
|
725
|
-
# secrets_manager_access_role_arn: "String",
|
726
|
-
# secrets_manager_secret_id: "String",
|
727
|
-
# },
|
728
|
-
# microsoft_sql_server_settings: {
|
729
|
-
# port: 1,
|
730
|
-
# bcp_packet_size: 1,
|
731
|
-
# database_name: "String",
|
732
|
-
# control_tables_file_group: "String",
|
733
|
-
# password: "SecretString",
|
734
|
-
# query_single_always_on_node: false,
|
735
|
-
# read_backup_only: false,
|
736
|
-
# safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
|
737
|
-
# server_name: "String",
|
738
|
-
# username: "String",
|
739
|
-
# use_bcp_full_load: false,
|
740
|
-
# use_third_party_backup_device: false,
|
741
|
-
# secrets_manager_access_role_arn: "String",
|
742
|
-
# secrets_manager_secret_id: "String",
|
743
|
-
# trim_space_in_char: false,
|
744
|
-
# },
|
745
|
-
# ibm_db_2_settings: {
|
746
|
-
# database_name: "String",
|
747
|
-
# password: "SecretString",
|
748
|
-
# port: 1,
|
749
|
-
# server_name: "String",
|
750
|
-
# set_data_capture_changes: false,
|
751
|
-
# current_lsn: "String",
|
752
|
-
# max_k_bytes_per_read: 1,
|
753
|
-
# username: "String",
|
754
|
-
# secrets_manager_access_role_arn: "String",
|
755
|
-
# secrets_manager_secret_id: "String",
|
756
|
-
# },
|
757
|
-
# resource_identifier: "String",
|
758
|
-
# doc_db_settings: {
|
759
|
-
# username: "String",
|
760
|
-
# password: "SecretString",
|
761
|
-
# server_name: "String",
|
762
|
-
# port: 1,
|
763
|
-
# database_name: "String",
|
764
|
-
# nesting_level: "none", # accepts none, one
|
765
|
-
# extract_doc_id: false,
|
766
|
-
# docs_to_investigate: 1,
|
767
|
-
# kms_key_id: "String",
|
768
|
-
# secrets_manager_access_role_arn: "String",
|
769
|
-
# secrets_manager_secret_id: "String",
|
770
|
-
# },
|
771
|
-
# redis_settings: {
|
772
|
-
# server_name: "String", # required
|
773
|
-
# port: 1, # required
|
774
|
-
# ssl_security_protocol: "plaintext", # accepts plaintext, ssl-encryption
|
775
|
-
# auth_type: "none", # accepts none, auth-role, auth-token
|
776
|
-
# auth_user_name: "String",
|
777
|
-
# auth_password: "SecretString",
|
778
|
-
# ssl_ca_certificate_arn: "String",
|
779
|
-
# },
|
780
|
-
# gcp_my_sql_settings: {
|
781
|
-
# after_connect_script: "String",
|
782
|
-
# clean_source_metadata_on_mismatch: false,
|
783
|
-
# database_name: "String",
|
784
|
-
# events_poll_interval: 1,
|
785
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
786
|
-
# max_file_size: 1,
|
787
|
-
# parallel_load_threads: 1,
|
788
|
-
# password: "SecretString",
|
789
|
-
# port: 1,
|
790
|
-
# server_name: "String",
|
791
|
-
# server_timezone: "String",
|
792
|
-
# username: "String",
|
793
|
-
# secrets_manager_access_role_arn: "String",
|
794
|
-
# secrets_manager_secret_id: "String",
|
795
|
-
# },
|
796
|
-
# }
|
797
|
-
#
|
798
492
|
# @!attribute [rw] endpoint_identifier
|
799
493
|
# The database endpoint identifier. Identifiers must begin with a
|
800
494
|
# letter and must contain only ASCII letters, digits, and hyphens.
|
@@ -1142,25 +836,6 @@ module Aws::DatabaseMigrationService
|
|
1142
836
|
include Aws::Structure
|
1143
837
|
end
|
1144
838
|
|
1145
|
-
# @note When making an API call, you may pass CreateEventSubscriptionMessage
|
1146
|
-
# data as a hash:
|
1147
|
-
#
|
1148
|
-
# {
|
1149
|
-
# subscription_name: "String", # required
|
1150
|
-
# sns_topic_arn: "String", # required
|
1151
|
-
# source_type: "String",
|
1152
|
-
# event_categories: ["String"],
|
1153
|
-
# source_ids: ["String"],
|
1154
|
-
# enabled: false,
|
1155
|
-
# tags: [
|
1156
|
-
# {
|
1157
|
-
# key: "String",
|
1158
|
-
# value: "String",
|
1159
|
-
# resource_arn: "String",
|
1160
|
-
# },
|
1161
|
-
# ],
|
1162
|
-
# }
|
1163
|
-
#
|
1164
839
|
# @!attribute [rw] subscription_name
|
1165
840
|
# The name of the DMS event notification subscription. This name must
|
1166
841
|
# be less than 255 characters.
|
@@ -1237,16 +912,6 @@ module Aws::DatabaseMigrationService
|
|
1237
912
|
include Aws::Structure
|
1238
913
|
end
|
1239
914
|
|
1240
|
-
# @note When making an API call, you may pass CreateFleetAdvisorCollectorRequest
|
1241
|
-
# data as a hash:
|
1242
|
-
#
|
1243
|
-
# {
|
1244
|
-
# collector_name: "String", # required
|
1245
|
-
# description: "String",
|
1246
|
-
# service_access_role_arn: "String", # required
|
1247
|
-
# s3_bucket_name: "String", # required
|
1248
|
-
# }
|
1249
|
-
#
|
1250
915
|
# @!attribute [rw] collector_name
|
1251
916
|
# The name of your Fleet Advisor collector (for example,
|
1252
917
|
# `sample-collector`).
|
@@ -1312,34 +977,6 @@ module Aws::DatabaseMigrationService
|
|
1312
977
|
include Aws::Structure
|
1313
978
|
end
|
1314
979
|
|
1315
|
-
# @note When making an API call, you may pass CreateReplicationInstanceMessage
|
1316
|
-
# data as a hash:
|
1317
|
-
#
|
1318
|
-
# {
|
1319
|
-
# replication_instance_identifier: "String", # required
|
1320
|
-
# allocated_storage: 1,
|
1321
|
-
# replication_instance_class: "String", # required
|
1322
|
-
# vpc_security_group_ids: ["String"],
|
1323
|
-
# availability_zone: "String",
|
1324
|
-
# replication_subnet_group_identifier: "String",
|
1325
|
-
# preferred_maintenance_window: "String",
|
1326
|
-
# multi_az: false,
|
1327
|
-
# engine_version: "String",
|
1328
|
-
# auto_minor_version_upgrade: false,
|
1329
|
-
# tags: [
|
1330
|
-
# {
|
1331
|
-
# key: "String",
|
1332
|
-
# value: "String",
|
1333
|
-
# resource_arn: "String",
|
1334
|
-
# },
|
1335
|
-
# ],
|
1336
|
-
# kms_key_id: "String",
|
1337
|
-
# publicly_accessible: false,
|
1338
|
-
# dns_name_servers: "String",
|
1339
|
-
# resource_identifier: "String",
|
1340
|
-
# network_type: "String",
|
1341
|
-
# }
|
1342
|
-
#
|
1343
980
|
# @!attribute [rw] replication_instance_identifier
|
1344
981
|
# The replication instance identifier. This parameter is stored as a
|
1345
982
|
# lowercase string.
|
@@ -1427,6 +1064,15 @@ module Aws::DatabaseMigrationService
|
|
1427
1064
|
# window. This parameter defaults to `true`.
|
1428
1065
|
#
|
1429
1066
|
# Default: `true`
|
1067
|
+
#
|
1068
|
+
# When `AutoMinorVersionUpgrade` is enabled, DMS uses the current
|
1069
|
+
# default engine version when you create a replication instance. For
|
1070
|
+
# example, if you set `EngineVersion` to a lower version number than
|
1071
|
+
# the current default version, DMS uses the default version.
|
1072
|
+
#
|
1073
|
+
# If `AutoMinorVersionUpgrade` *isn’t* enabled when you create a
|
1074
|
+
# replication instance, DMS uses the engine version specified by the
|
1075
|
+
# `EngineVersion` parameter.
|
1430
1076
|
# @return [Boolean]
|
1431
1077
|
#
|
1432
1078
|
# @!attribute [rw] tags
|
@@ -1516,22 +1162,6 @@ module Aws::DatabaseMigrationService
|
|
1516
1162
|
include Aws::Structure
|
1517
1163
|
end
|
1518
1164
|
|
1519
|
-
# @note When making an API call, you may pass CreateReplicationSubnetGroupMessage
|
1520
|
-
# data as a hash:
|
1521
|
-
#
|
1522
|
-
# {
|
1523
|
-
# replication_subnet_group_identifier: "String", # required
|
1524
|
-
# replication_subnet_group_description: "String", # required
|
1525
|
-
# subnet_ids: ["String"], # required
|
1526
|
-
# tags: [
|
1527
|
-
# {
|
1528
|
-
# key: "String",
|
1529
|
-
# value: "String",
|
1530
|
-
# resource_arn: "String",
|
1531
|
-
# },
|
1532
|
-
# ],
|
1533
|
-
# }
|
1534
|
-
#
|
1535
1165
|
# @!attribute [rw] replication_subnet_group_identifier
|
1536
1166
|
# The name for the replication subnet group. This value is stored as a
|
1537
1167
|
# lowercase string.
|
@@ -1577,31 +1207,6 @@ module Aws::DatabaseMigrationService
|
|
1577
1207
|
include Aws::Structure
|
1578
1208
|
end
|
1579
1209
|
|
1580
|
-
# @note When making an API call, you may pass CreateReplicationTaskMessage
|
1581
|
-
# data as a hash:
|
1582
|
-
#
|
1583
|
-
# {
|
1584
|
-
# replication_task_identifier: "String", # required
|
1585
|
-
# source_endpoint_arn: "String", # required
|
1586
|
-
# target_endpoint_arn: "String", # required
|
1587
|
-
# replication_instance_arn: "String", # required
|
1588
|
-
# migration_type: "full-load", # required, accepts full-load, cdc, full-load-and-cdc
|
1589
|
-
# table_mappings: "String", # required
|
1590
|
-
# replication_task_settings: "String",
|
1591
|
-
# cdc_start_time: Time.now,
|
1592
|
-
# cdc_start_position: "String",
|
1593
|
-
# cdc_stop_position: "String",
|
1594
|
-
# tags: [
|
1595
|
-
# {
|
1596
|
-
# key: "String",
|
1597
|
-
# value: "String",
|
1598
|
-
# resource_arn: "String",
|
1599
|
-
# },
|
1600
|
-
# ],
|
1601
|
-
# task_data: "String",
|
1602
|
-
# resource_identifier: "String",
|
1603
|
-
# }
|
1604
|
-
#
|
1605
1210
|
# @!attribute [rw] replication_task_identifier
|
1606
1211
|
# An identifier for the replication task.
|
1607
1212
|
#
|
@@ -1699,7 +1304,7 @@ module Aws::DatabaseMigrationService
|
|
1699
1304
|
# “server\_time:2018-02-09T12:12:12”
|
1700
1305
|
#
|
1701
1306
|
# Commit time example: --cdc-stop-position “commit\_time:
|
1702
|
-
# 2018-02-09T12:12:12
|
1307
|
+
# 2018-02-09T12:12:12“
|
1703
1308
|
# @return [String]
|
1704
1309
|
#
|
1705
1310
|
# @!attribute [rw] tags
|
@@ -1889,13 +1494,6 @@ module Aws::DatabaseMigrationService
|
|
1889
1494
|
include Aws::Structure
|
1890
1495
|
end
|
1891
1496
|
|
1892
|
-
# @note When making an API call, you may pass DeleteCertificateMessage
|
1893
|
-
# data as a hash:
|
1894
|
-
#
|
1895
|
-
# {
|
1896
|
-
# certificate_arn: "String", # required
|
1897
|
-
# }
|
1898
|
-
#
|
1899
1497
|
# @!attribute [rw] certificate_arn
|
1900
1498
|
# The Amazon Resource Name (ARN) of the certificate.
|
1901
1499
|
# @return [String]
|
@@ -1920,13 +1518,6 @@ module Aws::DatabaseMigrationService
|
|
1920
1518
|
include Aws::Structure
|
1921
1519
|
end
|
1922
1520
|
|
1923
|
-
# @note When making an API call, you may pass DeleteCollectorRequest
|
1924
|
-
# data as a hash:
|
1925
|
-
#
|
1926
|
-
# {
|
1927
|
-
# collector_referenced_id: "String", # required
|
1928
|
-
# }
|
1929
|
-
#
|
1930
1521
|
# @!attribute [rw] collector_referenced_id
|
1931
1522
|
# The reference ID of the Fleet Advisor collector to delete.
|
1932
1523
|
# @return [String]
|
@@ -1939,14 +1530,6 @@ module Aws::DatabaseMigrationService
|
|
1939
1530
|
include Aws::Structure
|
1940
1531
|
end
|
1941
1532
|
|
1942
|
-
# @note When making an API call, you may pass DeleteConnectionMessage
|
1943
|
-
# data as a hash:
|
1944
|
-
#
|
1945
|
-
# {
|
1946
|
-
# endpoint_arn: "String", # required
|
1947
|
-
# replication_instance_arn: "String", # required
|
1948
|
-
# }
|
1949
|
-
#
|
1950
1533
|
# @!attribute [rw] endpoint_arn
|
1951
1534
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1952
1535
|
# endpoint.
|
@@ -1977,13 +1560,6 @@ module Aws::DatabaseMigrationService
|
|
1977
1560
|
include Aws::Structure
|
1978
1561
|
end
|
1979
1562
|
|
1980
|
-
# @note When making an API call, you may pass DeleteEndpointMessage
|
1981
|
-
# data as a hash:
|
1982
|
-
#
|
1983
|
-
# {
|
1984
|
-
# endpoint_arn: "String", # required
|
1985
|
-
# }
|
1986
|
-
#
|
1987
1563
|
# @!attribute [rw] endpoint_arn
|
1988
1564
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1989
1565
|
# endpoint.
|
@@ -2009,13 +1585,6 @@ module Aws::DatabaseMigrationService
|
|
2009
1585
|
include Aws::Structure
|
2010
1586
|
end
|
2011
1587
|
|
2012
|
-
# @note When making an API call, you may pass DeleteEventSubscriptionMessage
|
2013
|
-
# data as a hash:
|
2014
|
-
#
|
2015
|
-
# {
|
2016
|
-
# subscription_name: "String", # required
|
2017
|
-
# }
|
2018
|
-
#
|
2019
1588
|
# @!attribute [rw] subscription_name
|
2020
1589
|
# The name of the DMS event notification subscription to be deleted.
|
2021
1590
|
# @return [String]
|
@@ -2040,13 +1609,6 @@ module Aws::DatabaseMigrationService
|
|
2040
1609
|
include Aws::Structure
|
2041
1610
|
end
|
2042
1611
|
|
2043
|
-
# @note When making an API call, you may pass DeleteFleetAdvisorDatabasesRequest
|
2044
|
-
# data as a hash:
|
2045
|
-
#
|
2046
|
-
# {
|
2047
|
-
# database_ids: ["String"], # required
|
2048
|
-
# }
|
2049
|
-
#
|
2050
1612
|
# @!attribute [rw] database_ids
|
2051
1613
|
# The IDs of the Fleet Advisor collector databases to delete.
|
2052
1614
|
# @return [Array<String>]
|
@@ -2071,13 +1633,6 @@ module Aws::DatabaseMigrationService
|
|
2071
1633
|
include Aws::Structure
|
2072
1634
|
end
|
2073
1635
|
|
2074
|
-
# @note When making an API call, you may pass DeleteReplicationInstanceMessage
|
2075
|
-
# data as a hash:
|
2076
|
-
#
|
2077
|
-
# {
|
2078
|
-
# replication_instance_arn: "String", # required
|
2079
|
-
# }
|
2080
|
-
#
|
2081
1636
|
# @!attribute [rw] replication_instance_arn
|
2082
1637
|
# The Amazon Resource Name (ARN) of the replication instance to be
|
2083
1638
|
# deleted.
|
@@ -2103,13 +1658,6 @@ module Aws::DatabaseMigrationService
|
|
2103
1658
|
include Aws::Structure
|
2104
1659
|
end
|
2105
1660
|
|
2106
|
-
# @note When making an API call, you may pass DeleteReplicationSubnetGroupMessage
|
2107
|
-
# data as a hash:
|
2108
|
-
#
|
2109
|
-
# {
|
2110
|
-
# replication_subnet_group_identifier: "String", # required
|
2111
|
-
# }
|
2112
|
-
#
|
2113
1661
|
# @!attribute [rw] replication_subnet_group_identifier
|
2114
1662
|
# The subnet group name of the replication instance.
|
2115
1663
|
# @return [String]
|
@@ -2126,13 +1674,6 @@ module Aws::DatabaseMigrationService
|
|
2126
1674
|
#
|
2127
1675
|
class DeleteReplicationSubnetGroupResponse < Aws::EmptyStructure; end
|
2128
1676
|
|
2129
|
-
# @note When making an API call, you may pass DeleteReplicationTaskAssessmentRunMessage
|
2130
|
-
# data as a hash:
|
2131
|
-
#
|
2132
|
-
# {
|
2133
|
-
# replication_task_assessment_run_arn: "String", # required
|
2134
|
-
# }
|
2135
|
-
#
|
2136
1677
|
# @!attribute [rw] replication_task_assessment_run_arn
|
2137
1678
|
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
2138
1679
|
# deleted.
|
@@ -2159,13 +1700,6 @@ module Aws::DatabaseMigrationService
|
|
2159
1700
|
include Aws::Structure
|
2160
1701
|
end
|
2161
1702
|
|
2162
|
-
# @note When making an API call, you may pass DeleteReplicationTaskMessage
|
2163
|
-
# data as a hash:
|
2164
|
-
#
|
2165
|
-
# {
|
2166
|
-
# replication_task_arn: "String", # required
|
2167
|
-
# }
|
2168
|
-
#
|
2169
1703
|
# @!attribute [rw] replication_task_arn
|
2170
1704
|
# The Amazon Resource Name (ARN) of the replication task to be
|
2171
1705
|
# deleted.
|
@@ -2226,19 +1760,6 @@ module Aws::DatabaseMigrationService
|
|
2226
1760
|
include Aws::Structure
|
2227
1761
|
end
|
2228
1762
|
|
2229
|
-
# @note When making an API call, you may pass DescribeApplicableIndividualAssessmentsMessage
|
2230
|
-
# data as a hash:
|
2231
|
-
#
|
2232
|
-
# {
|
2233
|
-
# replication_task_arn: "String",
|
2234
|
-
# replication_instance_arn: "String",
|
2235
|
-
# source_engine_name: "String",
|
2236
|
-
# target_engine_name: "String",
|
2237
|
-
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
2238
|
-
# max_records: 1,
|
2239
|
-
# marker: "String",
|
2240
|
-
# }
|
2241
|
-
#
|
2242
1763
|
# @!attribute [rw] replication_task_arn
|
2243
1764
|
# Amazon Resource Name (ARN) of a migration task on which you want to
|
2244
1765
|
# base the default list of individual assessments.
|
@@ -2320,20 +1841,6 @@ module Aws::DatabaseMigrationService
|
|
2320
1841
|
include Aws::Structure
|
2321
1842
|
end
|
2322
1843
|
|
2323
|
-
# @note When making an API call, you may pass DescribeCertificatesMessage
|
2324
|
-
# data as a hash:
|
2325
|
-
#
|
2326
|
-
# {
|
2327
|
-
# filters: [
|
2328
|
-
# {
|
2329
|
-
# name: "String", # required
|
2330
|
-
# values: ["String"], # required
|
2331
|
-
# },
|
2332
|
-
# ],
|
2333
|
-
# max_records: 1,
|
2334
|
-
# marker: "String",
|
2335
|
-
# }
|
2336
|
-
#
|
2337
1844
|
# @!attribute [rw] filters
|
2338
1845
|
# Filters applied to the certificates described in the form of
|
2339
1846
|
# key-value pairs. Valid values are `certificate-arn` and
|
@@ -2383,20 +1890,6 @@ module Aws::DatabaseMigrationService
|
|
2383
1890
|
include Aws::Structure
|
2384
1891
|
end
|
2385
1892
|
|
2386
|
-
# @note When making an API call, you may pass DescribeConnectionsMessage
|
2387
|
-
# data as a hash:
|
2388
|
-
#
|
2389
|
-
# {
|
2390
|
-
# filters: [
|
2391
|
-
# {
|
2392
|
-
# name: "String", # required
|
2393
|
-
# values: ["String"], # required
|
2394
|
-
# },
|
2395
|
-
# ],
|
2396
|
-
# max_records: 1,
|
2397
|
-
# marker: "String",
|
2398
|
-
# }
|
2399
|
-
#
|
2400
1893
|
# @!attribute [rw] filters
|
2401
1894
|
# The filters applied to the connection.
|
2402
1895
|
#
|
@@ -2449,15 +1942,6 @@ module Aws::DatabaseMigrationService
|
|
2449
1942
|
include Aws::Structure
|
2450
1943
|
end
|
2451
1944
|
|
2452
|
-
# @note When making an API call, you may pass DescribeEndpointSettingsMessage
|
2453
|
-
# data as a hash:
|
2454
|
-
#
|
2455
|
-
# {
|
2456
|
-
# engine_name: "String", # required
|
2457
|
-
# max_records: 1,
|
2458
|
-
# marker: "String",
|
2459
|
-
# }
|
2460
|
-
#
|
2461
1945
|
# @!attribute [rw] engine_name
|
2462
1946
|
# The databse engine used for your source or target endpoint.
|
2463
1947
|
# @return [String]
|
@@ -2505,20 +1989,6 @@ module Aws::DatabaseMigrationService
|
|
2505
1989
|
include Aws::Structure
|
2506
1990
|
end
|
2507
1991
|
|
2508
|
-
# @note When making an API call, you may pass DescribeEndpointTypesMessage
|
2509
|
-
# data as a hash:
|
2510
|
-
#
|
2511
|
-
# {
|
2512
|
-
# filters: [
|
2513
|
-
# {
|
2514
|
-
# name: "String", # required
|
2515
|
-
# values: ["String"], # required
|
2516
|
-
# },
|
2517
|
-
# ],
|
2518
|
-
# max_records: 1,
|
2519
|
-
# marker: "String",
|
2520
|
-
# }
|
2521
|
-
#
|
2522
1992
|
# @!attribute [rw] filters
|
2523
1993
|
# Filters applied to the endpoint types.
|
2524
1994
|
#
|
@@ -2571,20 +2041,6 @@ module Aws::DatabaseMigrationService
|
|
2571
2041
|
include Aws::Structure
|
2572
2042
|
end
|
2573
2043
|
|
2574
|
-
# @note When making an API call, you may pass DescribeEndpointsMessage
|
2575
|
-
# data as a hash:
|
2576
|
-
#
|
2577
|
-
# {
|
2578
|
-
# filters: [
|
2579
|
-
# {
|
2580
|
-
# name: "String", # required
|
2581
|
-
# values: ["String"], # required
|
2582
|
-
# },
|
2583
|
-
# ],
|
2584
|
-
# max_records: 1,
|
2585
|
-
# marker: "String",
|
2586
|
-
# }
|
2587
|
-
#
|
2588
2044
|
# @!attribute [rw] filters
|
2589
2045
|
# Filters applied to the endpoints.
|
2590
2046
|
#
|
@@ -2638,19 +2094,6 @@ module Aws::DatabaseMigrationService
|
|
2638
2094
|
include Aws::Structure
|
2639
2095
|
end
|
2640
2096
|
|
2641
|
-
# @note When making an API call, you may pass DescribeEventCategoriesMessage
|
2642
|
-
# data as a hash:
|
2643
|
-
#
|
2644
|
-
# {
|
2645
|
-
# source_type: "String",
|
2646
|
-
# filters: [
|
2647
|
-
# {
|
2648
|
-
# name: "String", # required
|
2649
|
-
# values: ["String"], # required
|
2650
|
-
# },
|
2651
|
-
# ],
|
2652
|
-
# }
|
2653
|
-
#
|
2654
2097
|
# @!attribute [rw] source_type
|
2655
2098
|
# The type of DMS resource that generates events.
|
2656
2099
|
#
|
@@ -2682,21 +2125,6 @@ module Aws::DatabaseMigrationService
|
|
2682
2125
|
include Aws::Structure
|
2683
2126
|
end
|
2684
2127
|
|
2685
|
-
# @note When making an API call, you may pass DescribeEventSubscriptionsMessage
|
2686
|
-
# data as a hash:
|
2687
|
-
#
|
2688
|
-
# {
|
2689
|
-
# subscription_name: "String",
|
2690
|
-
# filters: [
|
2691
|
-
# {
|
2692
|
-
# name: "String", # required
|
2693
|
-
# values: ["String"], # required
|
2694
|
-
# },
|
2695
|
-
# ],
|
2696
|
-
# max_records: 1,
|
2697
|
-
# marker: "String",
|
2698
|
-
# }
|
2699
|
-
#
|
2700
2128
|
# @!attribute [rw] subscription_name
|
2701
2129
|
# The name of the DMS event subscription to be described.
|
2702
2130
|
# @return [String]
|
@@ -2754,26 +2182,6 @@ module Aws::DatabaseMigrationService
|
|
2754
2182
|
include Aws::Structure
|
2755
2183
|
end
|
2756
2184
|
|
2757
|
-
# @note When making an API call, you may pass DescribeEventsMessage
|
2758
|
-
# data as a hash:
|
2759
|
-
#
|
2760
|
-
# {
|
2761
|
-
# source_identifier: "String",
|
2762
|
-
# source_type: "replication-instance", # accepts replication-instance
|
2763
|
-
# start_time: Time.now,
|
2764
|
-
# end_time: Time.now,
|
2765
|
-
# duration: 1,
|
2766
|
-
# event_categories: ["String"],
|
2767
|
-
# filters: [
|
2768
|
-
# {
|
2769
|
-
# name: "String", # required
|
2770
|
-
# values: ["String"], # required
|
2771
|
-
# },
|
2772
|
-
# ],
|
2773
|
-
# max_records: 1,
|
2774
|
-
# marker: "String",
|
2775
|
-
# }
|
2776
|
-
#
|
2777
2185
|
# @!attribute [rw] source_identifier
|
2778
2186
|
# The identifier of an event source.
|
2779
2187
|
# @return [String]
|
@@ -2857,20 +2265,6 @@ module Aws::DatabaseMigrationService
|
|
2857
2265
|
include Aws::Structure
|
2858
2266
|
end
|
2859
2267
|
|
2860
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorCollectorsRequest
|
2861
|
-
# data as a hash:
|
2862
|
-
#
|
2863
|
-
# {
|
2864
|
-
# filters: [
|
2865
|
-
# {
|
2866
|
-
# name: "String", # required
|
2867
|
-
# values: ["String"], # required
|
2868
|
-
# },
|
2869
|
-
# ],
|
2870
|
-
# max_records: 1,
|
2871
|
-
# next_token: "String",
|
2872
|
-
# }
|
2873
|
-
#
|
2874
2268
|
# @!attribute [rw] filters
|
2875
2269
|
# If you specify any of the following filters, the output includes
|
2876
2270
|
# information for only those collectors that meet the filter criteria:
|
@@ -2926,20 +2320,6 @@ module Aws::DatabaseMigrationService
|
|
2926
2320
|
include Aws::Structure
|
2927
2321
|
end
|
2928
2322
|
|
2929
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorDatabasesRequest
|
2930
|
-
# data as a hash:
|
2931
|
-
#
|
2932
|
-
# {
|
2933
|
-
# filters: [
|
2934
|
-
# {
|
2935
|
-
# name: "String", # required
|
2936
|
-
# values: ["String"], # required
|
2937
|
-
# },
|
2938
|
-
# ],
|
2939
|
-
# max_records: 1,
|
2940
|
-
# next_token: "String",
|
2941
|
-
# }
|
2942
|
-
#
|
2943
2323
|
# @!attribute [rw] filters
|
2944
2324
|
# If you specify any of the following filters, the output includes
|
2945
2325
|
# information for only those databases that meet the filter criteria:
|
@@ -3003,14 +2383,6 @@ module Aws::DatabaseMigrationService
|
|
3003
2383
|
include Aws::Structure
|
3004
2384
|
end
|
3005
2385
|
|
3006
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorLsaAnalysisRequest
|
3007
|
-
# data as a hash:
|
3008
|
-
#
|
3009
|
-
# {
|
3010
|
-
# max_records: 1,
|
3011
|
-
# next_token: "String",
|
3012
|
-
# }
|
3013
|
-
#
|
3014
2386
|
# @!attribute [rw] max_records
|
3015
2387
|
# Sets the maximum number of records returned in the response.
|
3016
2388
|
# @return [Integer]
|
@@ -3051,20 +2423,6 @@ module Aws::DatabaseMigrationService
|
|
3051
2423
|
include Aws::Structure
|
3052
2424
|
end
|
3053
2425
|
|
3054
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorSchemaObjectSummaryRequest
|
3055
|
-
# data as a hash:
|
3056
|
-
#
|
3057
|
-
# {
|
3058
|
-
# filters: [
|
3059
|
-
# {
|
3060
|
-
# name: "String", # required
|
3061
|
-
# values: ["String"], # required
|
3062
|
-
# },
|
3063
|
-
# ],
|
3064
|
-
# max_records: 1,
|
3065
|
-
# next_token: "String",
|
3066
|
-
# }
|
3067
|
-
#
|
3068
2426
|
# @!attribute [rw] filters
|
3069
2427
|
# If you specify any of the following filters, the output includes
|
3070
2428
|
# information for only those schema objects that meet the filter
|
@@ -3120,20 +2478,6 @@ module Aws::DatabaseMigrationService
|
|
3120
2478
|
include Aws::Structure
|
3121
2479
|
end
|
3122
2480
|
|
3123
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorSchemasRequest
|
3124
|
-
# data as a hash:
|
3125
|
-
#
|
3126
|
-
# {
|
3127
|
-
# filters: [
|
3128
|
-
# {
|
3129
|
-
# name: "String", # required
|
3130
|
-
# values: ["String"], # required
|
3131
|
-
# },
|
3132
|
-
# ],
|
3133
|
-
# max_records: 1,
|
3134
|
-
# next_token: "String",
|
3135
|
-
# }
|
3136
|
-
#
|
3137
2481
|
# @!attribute [rw] filters
|
3138
2482
|
# If you specify any of the following filters, the output includes
|
3139
2483
|
# information for only those schemas that meet the filter criteria:
|
@@ -3203,14 +2547,6 @@ module Aws::DatabaseMigrationService
|
|
3203
2547
|
include Aws::Structure
|
3204
2548
|
end
|
3205
2549
|
|
3206
|
-
# @note When making an API call, you may pass DescribeOrderableReplicationInstancesMessage
|
3207
|
-
# data as a hash:
|
3208
|
-
#
|
3209
|
-
# {
|
3210
|
-
# max_records: 1,
|
3211
|
-
# marker: "String",
|
3212
|
-
# }
|
3213
|
-
#
|
3214
2550
|
# @!attribute [rw] max_records
|
3215
2551
|
# The maximum number of records to include in the response. If more
|
3216
2552
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -3256,21 +2592,6 @@ module Aws::DatabaseMigrationService
|
|
3256
2592
|
include Aws::Structure
|
3257
2593
|
end
|
3258
2594
|
|
3259
|
-
# @note When making an API call, you may pass DescribePendingMaintenanceActionsMessage
|
3260
|
-
# data as a hash:
|
3261
|
-
#
|
3262
|
-
# {
|
3263
|
-
# replication_instance_arn: "String",
|
3264
|
-
# filters: [
|
3265
|
-
# {
|
3266
|
-
# name: "String", # required
|
3267
|
-
# values: ["String"], # required
|
3268
|
-
# },
|
3269
|
-
# ],
|
3270
|
-
# marker: "String",
|
3271
|
-
# max_records: 1,
|
3272
|
-
# }
|
3273
|
-
#
|
3274
2595
|
# @!attribute [rw] replication_instance_arn
|
3275
2596
|
# The Amazon Resource Name (ARN) of the replication instance.
|
3276
2597
|
# @return [String]
|
@@ -3325,13 +2646,118 @@ module Aws::DatabaseMigrationService
|
|
3325
2646
|
include Aws::Structure
|
3326
2647
|
end
|
3327
2648
|
|
3328
|
-
#
|
3329
|
-
#
|
2649
|
+
# @!attribute [rw] filters
|
2650
|
+
# Filters applied to the limitations described in the form of
|
2651
|
+
# key-value pairs.
|
2652
|
+
# @return [Array<Types::Filter>]
|
2653
|
+
#
|
2654
|
+
# @!attribute [rw] max_records
|
2655
|
+
# The maximum number of records to include in the response. If more
|
2656
|
+
# records exist than the specified `MaxRecords` value, Fleet Advisor
|
2657
|
+
# includes a pagination token in the response so that you can retrieve
|
2658
|
+
# the remaining results.
|
2659
|
+
# @return [Integer]
|
3330
2660
|
#
|
3331
|
-
#
|
3332
|
-
#
|
3333
|
-
#
|
2661
|
+
# @!attribute [rw] next_token
|
2662
|
+
# Specifies the unique pagination token that makes it possible to
|
2663
|
+
# display the next page of results. If this parameter is specified,
|
2664
|
+
# the response includes only records beyond the marker, up to the
|
2665
|
+
# value specified by `MaxRecords`.
|
3334
2666
|
#
|
2667
|
+
# If `NextToken` is returned by a previous response, there are more
|
2668
|
+
# results available. The value of `NextToken` is a unique pagination
|
2669
|
+
# token for each page. Make the call again using the returned token to
|
2670
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
2671
|
+
# @return [String]
|
2672
|
+
#
|
2673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeRecommendationLimitationsRequest AWS API Documentation
|
2674
|
+
#
|
2675
|
+
class DescribeRecommendationLimitationsRequest < Struct.new(
|
2676
|
+
:filters,
|
2677
|
+
:max_records,
|
2678
|
+
:next_token)
|
2679
|
+
SENSITIVE = []
|
2680
|
+
include Aws::Structure
|
2681
|
+
end
|
2682
|
+
|
2683
|
+
# @!attribute [rw] next_token
|
2684
|
+
# The unique pagination token returned for you to pass to a subsequent
|
2685
|
+
# request. Fleet Advisor returns this token when the number of records
|
2686
|
+
# in the response is greater than the `MaxRecords` value. To retrieve
|
2687
|
+
# the next page, make the call again using the returned token and
|
2688
|
+
# keeping all other arguments unchanged.
|
2689
|
+
# @return [String]
|
2690
|
+
#
|
2691
|
+
# @!attribute [rw] limitations
|
2692
|
+
# The list of limitations for recommendations of target Amazon Web
|
2693
|
+
# Services engines.
|
2694
|
+
# @return [Array<Types::Limitation>]
|
2695
|
+
#
|
2696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeRecommendationLimitationsResponse AWS API Documentation
|
2697
|
+
#
|
2698
|
+
class DescribeRecommendationLimitationsResponse < Struct.new(
|
2699
|
+
:next_token,
|
2700
|
+
:limitations)
|
2701
|
+
SENSITIVE = []
|
2702
|
+
include Aws::Structure
|
2703
|
+
end
|
2704
|
+
|
2705
|
+
# @!attribute [rw] filters
|
2706
|
+
# Filters applied to the target engine recommendations described in
|
2707
|
+
# the form of key-value pairs.
|
2708
|
+
# @return [Array<Types::Filter>]
|
2709
|
+
#
|
2710
|
+
# @!attribute [rw] max_records
|
2711
|
+
# The maximum number of records to include in the response. If more
|
2712
|
+
# records exist than the specified `MaxRecords` value, Fleet Advisor
|
2713
|
+
# includes a pagination token in the response so that you can retrieve
|
2714
|
+
# the remaining results.
|
2715
|
+
# @return [Integer]
|
2716
|
+
#
|
2717
|
+
# @!attribute [rw] next_token
|
2718
|
+
# Specifies the unique pagination token that makes it possible to
|
2719
|
+
# display the next page of results. If this parameter is specified,
|
2720
|
+
# the response includes only records beyond the marker, up to the
|
2721
|
+
# value specified by `MaxRecords`.
|
2722
|
+
#
|
2723
|
+
# If `NextToken` is returned by a previous response, there are more
|
2724
|
+
# results available. The value of `NextToken` is a unique pagination
|
2725
|
+
# token for each page. Make the call again using the returned token to
|
2726
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
2727
|
+
# @return [String]
|
2728
|
+
#
|
2729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeRecommendationsRequest AWS API Documentation
|
2730
|
+
#
|
2731
|
+
class DescribeRecommendationsRequest < Struct.new(
|
2732
|
+
:filters,
|
2733
|
+
:max_records,
|
2734
|
+
:next_token)
|
2735
|
+
SENSITIVE = []
|
2736
|
+
include Aws::Structure
|
2737
|
+
end
|
2738
|
+
|
2739
|
+
# @!attribute [rw] next_token
|
2740
|
+
# The unique pagination token returned for you to pass to a subsequent
|
2741
|
+
# request. Fleet Advisor returns this token when the number of records
|
2742
|
+
# in the response is greater than the `MaxRecords` value. To retrieve
|
2743
|
+
# the next page, make the call again using the returned token and
|
2744
|
+
# keeping all other arguments unchanged.
|
2745
|
+
# @return [String]
|
2746
|
+
#
|
2747
|
+
# @!attribute [rw] recommendations
|
2748
|
+
# The list of recommendations of target engines that Fleet Advisor
|
2749
|
+
# created for the source database.
|
2750
|
+
# @return [Array<Types::Recommendation>]
|
2751
|
+
#
|
2752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeRecommendationsResponse AWS API Documentation
|
2753
|
+
#
|
2754
|
+
class DescribeRecommendationsResponse < Struct.new(
|
2755
|
+
:next_token,
|
2756
|
+
:recommendations)
|
2757
|
+
SENSITIVE = []
|
2758
|
+
include Aws::Structure
|
2759
|
+
end
|
2760
|
+
|
3335
2761
|
# @!attribute [rw] endpoint_arn
|
3336
2762
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3337
2763
|
# endpoint.
|
@@ -3357,15 +2783,6 @@ module Aws::DatabaseMigrationService
|
|
3357
2783
|
include Aws::Structure
|
3358
2784
|
end
|
3359
2785
|
|
3360
|
-
# @note When making an API call, you may pass DescribeReplicationInstanceTaskLogsMessage
|
3361
|
-
# data as a hash:
|
3362
|
-
#
|
3363
|
-
# {
|
3364
|
-
# replication_instance_arn: "String", # required
|
3365
|
-
# max_records: 1,
|
3366
|
-
# marker: "String",
|
3367
|
-
# }
|
3368
|
-
#
|
3369
2786
|
# @!attribute [rw] replication_instance_arn
|
3370
2787
|
# The Amazon Resource Name (ARN) of the replication instance.
|
3371
2788
|
# @return [String]
|
@@ -3423,20 +2840,6 @@ module Aws::DatabaseMigrationService
|
|
3423
2840
|
include Aws::Structure
|
3424
2841
|
end
|
3425
2842
|
|
3426
|
-
# @note When making an API call, you may pass DescribeReplicationInstancesMessage
|
3427
|
-
# data as a hash:
|
3428
|
-
#
|
3429
|
-
# {
|
3430
|
-
# filters: [
|
3431
|
-
# {
|
3432
|
-
# name: "String", # required
|
3433
|
-
# values: ["String"], # required
|
3434
|
-
# },
|
3435
|
-
# ],
|
3436
|
-
# max_records: 1,
|
3437
|
-
# marker: "String",
|
3438
|
-
# }
|
3439
|
-
#
|
3440
2843
|
# @!attribute [rw] filters
|
3441
2844
|
# Filters applied to replication instances.
|
3442
2845
|
#
|
@@ -3491,20 +2894,6 @@ module Aws::DatabaseMigrationService
|
|
3491
2894
|
include Aws::Structure
|
3492
2895
|
end
|
3493
2896
|
|
3494
|
-
# @note When making an API call, you may pass DescribeReplicationSubnetGroupsMessage
|
3495
|
-
# data as a hash:
|
3496
|
-
#
|
3497
|
-
# {
|
3498
|
-
# filters: [
|
3499
|
-
# {
|
3500
|
-
# name: "String", # required
|
3501
|
-
# values: ["String"], # required
|
3502
|
-
# },
|
3503
|
-
# ],
|
3504
|
-
# max_records: 1,
|
3505
|
-
# marker: "String",
|
3506
|
-
# }
|
3507
|
-
#
|
3508
2897
|
# @!attribute [rw] filters
|
3509
2898
|
# Filters applied to replication subnet groups.
|
3510
2899
|
#
|
@@ -3557,15 +2946,6 @@ module Aws::DatabaseMigrationService
|
|
3557
2946
|
include Aws::Structure
|
3558
2947
|
end
|
3559
2948
|
|
3560
|
-
# @note When making an API call, you may pass DescribeReplicationTaskAssessmentResultsMessage
|
3561
|
-
# data as a hash:
|
3562
|
-
#
|
3563
|
-
# {
|
3564
|
-
# replication_task_arn: "String",
|
3565
|
-
# max_records: 1,
|
3566
|
-
# marker: "String",
|
3567
|
-
# }
|
3568
|
-
#
|
3569
2949
|
# @!attribute [rw] replication_task_arn
|
3570
2950
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3571
2951
|
# task. When this input parameter is specified, the API returns only
|
@@ -3624,20 +3004,6 @@ module Aws::DatabaseMigrationService
|
|
3624
3004
|
include Aws::Structure
|
3625
3005
|
end
|
3626
3006
|
|
3627
|
-
# @note When making an API call, you may pass DescribeReplicationTaskAssessmentRunsMessage
|
3628
|
-
# data as a hash:
|
3629
|
-
#
|
3630
|
-
# {
|
3631
|
-
# filters: [
|
3632
|
-
# {
|
3633
|
-
# name: "String", # required
|
3634
|
-
# values: ["String"], # required
|
3635
|
-
# },
|
3636
|
-
# ],
|
3637
|
-
# max_records: 1,
|
3638
|
-
# marker: "String",
|
3639
|
-
# }
|
3640
|
-
#
|
3641
3007
|
# @!attribute [rw] filters
|
3642
3008
|
# Filters applied to the premigration assessment runs described in the
|
3643
3009
|
# form of key-value pairs.
|
@@ -3689,20 +3055,6 @@ module Aws::DatabaseMigrationService
|
|
3689
3055
|
include Aws::Structure
|
3690
3056
|
end
|
3691
3057
|
|
3692
|
-
# @note When making an API call, you may pass DescribeReplicationTaskIndividualAssessmentsMessage
|
3693
|
-
# data as a hash:
|
3694
|
-
#
|
3695
|
-
# {
|
3696
|
-
# filters: [
|
3697
|
-
# {
|
3698
|
-
# name: "String", # required
|
3699
|
-
# values: ["String"], # required
|
3700
|
-
# },
|
3701
|
-
# ],
|
3702
|
-
# max_records: 1,
|
3703
|
-
# marker: "String",
|
3704
|
-
# }
|
3705
|
-
#
|
3706
3058
|
# @!attribute [rw] filters
|
3707
3059
|
# Filters applied to the individual assessments described in the form
|
3708
3060
|
# of key-value pairs.
|
@@ -3754,21 +3106,6 @@ module Aws::DatabaseMigrationService
|
|
3754
3106
|
include Aws::Structure
|
3755
3107
|
end
|
3756
3108
|
|
3757
|
-
# @note When making an API call, you may pass DescribeReplicationTasksMessage
|
3758
|
-
# data as a hash:
|
3759
|
-
#
|
3760
|
-
# {
|
3761
|
-
# filters: [
|
3762
|
-
# {
|
3763
|
-
# name: "String", # required
|
3764
|
-
# values: ["String"], # required
|
3765
|
-
# },
|
3766
|
-
# ],
|
3767
|
-
# max_records: 1,
|
3768
|
-
# marker: "String",
|
3769
|
-
# without_settings: false,
|
3770
|
-
# }
|
3771
|
-
#
|
3772
3109
|
# @!attribute [rw] filters
|
3773
3110
|
# Filters applied to replication tasks.
|
3774
3111
|
#
|
@@ -3830,15 +3167,6 @@ module Aws::DatabaseMigrationService
|
|
3830
3167
|
include Aws::Structure
|
3831
3168
|
end
|
3832
3169
|
|
3833
|
-
# @note When making an API call, you may pass DescribeSchemasMessage
|
3834
|
-
# data as a hash:
|
3835
|
-
#
|
3836
|
-
# {
|
3837
|
-
# endpoint_arn: "String", # required
|
3838
|
-
# max_records: 1,
|
3839
|
-
# marker: "String",
|
3840
|
-
# }
|
3841
|
-
#
|
3842
3170
|
# @!attribute [rw] endpoint_arn
|
3843
3171
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3844
3172
|
# endpoint.
|
@@ -3890,21 +3218,6 @@ module Aws::DatabaseMigrationService
|
|
3890
3218
|
include Aws::Structure
|
3891
3219
|
end
|
3892
3220
|
|
3893
|
-
# @note When making an API call, you may pass DescribeTableStatisticsMessage
|
3894
|
-
# data as a hash:
|
3895
|
-
#
|
3896
|
-
# {
|
3897
|
-
# replication_task_arn: "String", # required
|
3898
|
-
# max_records: 1,
|
3899
|
-
# marker: "String",
|
3900
|
-
# filters: [
|
3901
|
-
# {
|
3902
|
-
# name: "String", # required
|
3903
|
-
# values: ["String"], # required
|
3904
|
-
# },
|
3905
|
-
# ],
|
3906
|
-
# }
|
3907
|
-
#
|
3908
3221
|
# @!attribute [rw] replication_task_arn
|
3909
3222
|
# The Amazon Resource Name (ARN) of the replication task.
|
3910
3223
|
# @return [String]
|
@@ -3972,14 +3285,6 @@ module Aws::DatabaseMigrationService
|
|
3972
3285
|
|
3973
3286
|
# The settings in JSON format for the DMS Transfer type source endpoint.
|
3974
3287
|
#
|
3975
|
-
# @note When making an API call, you may pass DmsTransferSettings
|
3976
|
-
# data as a hash:
|
3977
|
-
#
|
3978
|
-
# {
|
3979
|
-
# service_access_role_arn: "String",
|
3980
|
-
# bucket_name: "String",
|
3981
|
-
# }
|
3982
|
-
#
|
3983
3288
|
# @!attribute [rw] service_access_role_arn
|
3984
3289
|
# The Amazon Resource Name (ARN) used by the service access IAM role.
|
3985
3290
|
# The role must allow the `iam:PassRole` action.
|
@@ -4000,23 +3305,6 @@ module Aws::DatabaseMigrationService
|
|
4000
3305
|
|
4001
3306
|
# Provides information that defines a DocumentDB endpoint.
|
4002
3307
|
#
|
4003
|
-
# @note When making an API call, you may pass DocDbSettings
|
4004
|
-
# data as a hash:
|
4005
|
-
#
|
4006
|
-
# {
|
4007
|
-
# username: "String",
|
4008
|
-
# password: "SecretString",
|
4009
|
-
# server_name: "String",
|
4010
|
-
# port: 1,
|
4011
|
-
# database_name: "String",
|
4012
|
-
# nesting_level: "none", # accepts none, one
|
4013
|
-
# extract_doc_id: false,
|
4014
|
-
# docs_to_investigate: 1,
|
4015
|
-
# kms_key_id: "String",
|
4016
|
-
# secrets_manager_access_role_arn: "String",
|
4017
|
-
# secrets_manager_secret_id: "String",
|
4018
|
-
# }
|
4019
|
-
#
|
4020
3308
|
# @!attribute [rw] username
|
4021
3309
|
# The user name you use to access the DocumentDB source endpoint.
|
4022
3310
|
# @return [String]
|
@@ -4122,13 +3410,6 @@ module Aws::DatabaseMigrationService
|
|
4122
3410
|
# Management (IAM) role used to define an Amazon DynamoDB target
|
4123
3411
|
# endpoint.
|
4124
3412
|
#
|
4125
|
-
# @note When making an API call, you may pass DynamoDbSettings
|
4126
|
-
# data as a hash:
|
4127
|
-
#
|
4128
|
-
# {
|
4129
|
-
# service_access_role_arn: "String", # required
|
4130
|
-
# }
|
4131
|
-
#
|
4132
3413
|
# @!attribute [rw] service_access_role_arn
|
4133
3414
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
4134
3415
|
# role. The role must allow the `iam:PassRole` action.
|
@@ -4144,17 +3425,6 @@ module Aws::DatabaseMigrationService
|
|
4144
3425
|
|
4145
3426
|
# Provides information that defines an OpenSearch endpoint.
|
4146
3427
|
#
|
4147
|
-
# @note When making an API call, you may pass ElasticsearchSettings
|
4148
|
-
# data as a hash:
|
4149
|
-
#
|
4150
|
-
# {
|
4151
|
-
# service_access_role_arn: "String", # required
|
4152
|
-
# endpoint_uri: "String", # required
|
4153
|
-
# full_load_error_percentage: 1,
|
4154
|
-
# error_retry_duration: 1,
|
4155
|
-
# use_new_mapping_type: false,
|
4156
|
-
# }
|
4157
|
-
#
|
4158
3428
|
# @!attribute [rw] service_access_role_arn
|
4159
3429
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
4160
3430
|
# role. The role must allow the `iam:PassRole` action.
|
@@ -4627,14 +3897,6 @@ module Aws::DatabaseMigrationService
|
|
4627
3897
|
# particular `Describe*` call or similar operation. Filters are used as
|
4628
3898
|
# an optional parameter for certain API operations.
|
4629
3899
|
#
|
4630
|
-
# @note When making an API call, you may pass Filter
|
4631
|
-
# data as a hash:
|
4632
|
-
#
|
4633
|
-
# {
|
4634
|
-
# name: "String", # required
|
4635
|
-
# values: ["String"], # required
|
4636
|
-
# }
|
4637
|
-
#
|
4638
3900
|
# @!attribute [rw] name
|
4639
3901
|
# The name of the filter as specified for a `Describe*` or similar
|
4640
3902
|
# operation.
|
@@ -4722,26 +3984,6 @@ module Aws::DatabaseMigrationService
|
|
4722
3984
|
|
4723
3985
|
# Settings in JSON format for the source GCP MySQL endpoint.
|
4724
3986
|
#
|
4725
|
-
# @note When making an API call, you may pass GcpMySQLSettings
|
4726
|
-
# data as a hash:
|
4727
|
-
#
|
4728
|
-
# {
|
4729
|
-
# after_connect_script: "String",
|
4730
|
-
# clean_source_metadata_on_mismatch: false,
|
4731
|
-
# database_name: "String",
|
4732
|
-
# events_poll_interval: 1,
|
4733
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
4734
|
-
# max_file_size: 1,
|
4735
|
-
# parallel_load_threads: 1,
|
4736
|
-
# password: "SecretString",
|
4737
|
-
# port: 1,
|
4738
|
-
# server_name: "String",
|
4739
|
-
# server_timezone: "String",
|
4740
|
-
# username: "String",
|
4741
|
-
# secrets_manager_access_role_arn: "String",
|
4742
|
-
# secrets_manager_secret_id: "String",
|
4743
|
-
# }
|
4744
|
-
#
|
4745
3987
|
# @!attribute [rw] after_connect_script
|
4746
3988
|
# Specifies a script to run immediately after DMS connects to the
|
4747
3989
|
# endpoint. The migration task continues running regardless if the SQL
|
@@ -4752,10 +3994,10 @@ module Aws::DatabaseMigrationService
|
|
4752
3994
|
# @return [String]
|
4753
3995
|
#
|
4754
3996
|
# @!attribute [rw] clean_source_metadata_on_mismatch
|
4755
|
-
#
|
4756
|
-
#
|
4757
|
-
#
|
4758
|
-
#
|
3997
|
+
# Cleans and recreates table metadata information on the replication
|
3998
|
+
# instance when a mismatch occurs. For example, in a situation where
|
3999
|
+
# running an alter DDL on the table could result in different
|
4000
|
+
# information about the table cached in the replication instance.
|
4759
4001
|
# @return [Boolean]
|
4760
4002
|
#
|
4761
4003
|
# @!attribute [rw] database_name
|
@@ -4809,10 +4051,11 @@ module Aws::DatabaseMigrationService
|
|
4809
4051
|
# @return [String]
|
4810
4052
|
#
|
4811
4053
|
# @!attribute [rw] port
|
4054
|
+
# Endpoint TCP port.
|
4812
4055
|
# @return [Integer]
|
4813
4056
|
#
|
4814
4057
|
# @!attribute [rw] server_name
|
4815
|
-
#
|
4058
|
+
# The MySQL host name.
|
4816
4059
|
# @return [String]
|
4817
4060
|
#
|
4818
4061
|
# @!attribute [rw] server_timezone
|
@@ -4881,22 +4124,6 @@ module Aws::DatabaseMigrationService
|
|
4881
4124
|
|
4882
4125
|
# Provides information that defines an IBM Db2 LUW endpoint.
|
4883
4126
|
#
|
4884
|
-
# @note When making an API call, you may pass IBMDb2Settings
|
4885
|
-
# data as a hash:
|
4886
|
-
#
|
4887
|
-
# {
|
4888
|
-
# database_name: "String",
|
4889
|
-
# password: "SecretString",
|
4890
|
-
# port: 1,
|
4891
|
-
# server_name: "String",
|
4892
|
-
# set_data_capture_changes: false,
|
4893
|
-
# current_lsn: "String",
|
4894
|
-
# max_k_bytes_per_read: 1,
|
4895
|
-
# username: "String",
|
4896
|
-
# secrets_manager_access_role_arn: "String",
|
4897
|
-
# secrets_manager_secret_id: "String",
|
4898
|
-
# }
|
4899
|
-
#
|
4900
4127
|
# @!attribute [rw] database_name
|
4901
4128
|
# Database name for the endpoint.
|
4902
4129
|
# @return [String]
|
@@ -4980,22 +4207,6 @@ module Aws::DatabaseMigrationService
|
|
4980
4207
|
include Aws::Structure
|
4981
4208
|
end
|
4982
4209
|
|
4983
|
-
# @note When making an API call, you may pass ImportCertificateMessage
|
4984
|
-
# data as a hash:
|
4985
|
-
#
|
4986
|
-
# {
|
4987
|
-
# certificate_identifier: "String", # required
|
4988
|
-
# certificate_pem: "SecretString",
|
4989
|
-
# certificate_wallet: "data",
|
4990
|
-
# tags: [
|
4991
|
-
# {
|
4992
|
-
# key: "String",
|
4993
|
-
# value: "String",
|
4994
|
-
# resource_arn: "String",
|
4995
|
-
# },
|
4996
|
-
# ],
|
4997
|
-
# }
|
4998
|
-
#
|
4999
4210
|
# @!attribute [rw] certificate_identifier
|
5000
4211
|
# A customer-assigned name for the certificate. Identifiers must begin
|
5001
4212
|
# with a letter and must contain only ASCII letters, digits, and
|
@@ -5224,30 +4435,6 @@ module Aws::DatabaseMigrationService
|
|
5224
4435
|
# endpoint and details of transaction and control table data
|
5225
4436
|
# information.
|
5226
4437
|
#
|
5227
|
-
# @note When making an API call, you may pass KafkaSettings
|
5228
|
-
# data as a hash:
|
5229
|
-
#
|
5230
|
-
# {
|
5231
|
-
# broker: "String",
|
5232
|
-
# topic: "String",
|
5233
|
-
# message_format: "json", # accepts json, json-unformatted
|
5234
|
-
# include_transaction_details: false,
|
5235
|
-
# include_partition_value: false,
|
5236
|
-
# partition_include_schema_table: false,
|
5237
|
-
# include_table_alter_operations: false,
|
5238
|
-
# include_control_details: false,
|
5239
|
-
# message_max_bytes: 1,
|
5240
|
-
# include_null_and_empty: false,
|
5241
|
-
# security_protocol: "plaintext", # accepts plaintext, ssl-authentication, ssl-encryption, sasl-ssl
|
5242
|
-
# ssl_client_certificate_arn: "String",
|
5243
|
-
# ssl_client_key_arn: "String",
|
5244
|
-
# ssl_client_key_password: "SecretString",
|
5245
|
-
# ssl_ca_certificate_arn: "String",
|
5246
|
-
# sasl_username: "String",
|
5247
|
-
# sasl_password: "SecretString",
|
5248
|
-
# no_hex_prefix: false,
|
5249
|
-
# }
|
5250
|
-
#
|
5251
4438
|
# @!attribute [rw] broker
|
5252
4439
|
# A comma-separated list of one or more broker locations in your Kafka
|
5253
4440
|
# cluster that host your Kafka instance. Specify each broker location
|
@@ -5398,22 +4585,6 @@ module Aws::DatabaseMigrationService
|
|
5398
4585
|
# applied to the endpoint and details of transaction and control table
|
5399
4586
|
# data information.
|
5400
4587
|
#
|
5401
|
-
# @note When making an API call, you may pass KinesisSettings
|
5402
|
-
# data as a hash:
|
5403
|
-
#
|
5404
|
-
# {
|
5405
|
-
# stream_arn: "String",
|
5406
|
-
# message_format: "json", # accepts json, json-unformatted
|
5407
|
-
# service_access_role_arn: "String",
|
5408
|
-
# include_transaction_details: false,
|
5409
|
-
# include_partition_value: false,
|
5410
|
-
# partition_include_schema_table: false,
|
5411
|
-
# include_table_alter_operations: false,
|
5412
|
-
# include_control_details: false,
|
5413
|
-
# include_null_and_empty: false,
|
5414
|
-
# no_hex_prefix: false,
|
5415
|
-
# }
|
5416
|
-
#
|
5417
4588
|
# @!attribute [rw] stream_arn
|
5418
4589
|
# The Amazon Resource Name (ARN) for the Amazon Kinesis Data Streams
|
5419
4590
|
# endpoint.
|
@@ -5498,14 +4669,61 @@ module Aws::DatabaseMigrationService
|
|
5498
4669
|
include Aws::Structure
|
5499
4670
|
end
|
5500
4671
|
|
5501
|
-
#
|
5502
|
-
#
|
4672
|
+
# Provides information about the limitations of target Amazon Web
|
4673
|
+
# Services engines.
|
4674
|
+
#
|
4675
|
+
# Your source database might include features that the target Amazon Web
|
4676
|
+
# Services engine doesn't support. Fleet Advisor lists these features
|
4677
|
+
# as limitations. You should consider these limitations during database
|
4678
|
+
# migration. For each limitation, Fleet Advisor recommends an action
|
4679
|
+
# that you can take to address or avoid this limitation.
|
4680
|
+
#
|
4681
|
+
# @!attribute [rw] database_id
|
4682
|
+
# The identifier of the source database.
|
4683
|
+
# @return [String]
|
4684
|
+
#
|
4685
|
+
# @!attribute [rw] engine_name
|
4686
|
+
# The name of the target engine that Fleet Advisor should use in the
|
4687
|
+
# target engine recommendation. Valid values include
|
4688
|
+
# `"rds-aurora-mysql"`, `"rds-aurora-postgresql"`, `"rds-mysql"`,
|
4689
|
+
# `"rds-oracle"`, `"rds-sql-server"`, and `"rds-postgresql"`.
|
4690
|
+
# @return [String]
|
4691
|
+
#
|
4692
|
+
# @!attribute [rw] name
|
4693
|
+
# The name of the limitation. Describes unsupported database features,
|
4694
|
+
# migration action items, and other limitations.
|
4695
|
+
# @return [String]
|
5503
4696
|
#
|
5504
|
-
#
|
5505
|
-
#
|
5506
|
-
#
|
5507
|
-
#
|
4697
|
+
# @!attribute [rw] description
|
4698
|
+
# A description of the limitation. Provides additional information
|
4699
|
+
# about the limitation, and includes recommended actions that you can
|
4700
|
+
# take to address or avoid this limitation.
|
4701
|
+
# @return [String]
|
5508
4702
|
#
|
4703
|
+
# @!attribute [rw] impact
|
4704
|
+
# The impact of the limitation. You can use this parameter to
|
4705
|
+
# prioritize limitations that you want to address. Valid values
|
4706
|
+
# include `"Blocker"`, `"High"`, `"Medium"`, and `"Low"`.
|
4707
|
+
# @return [String]
|
4708
|
+
#
|
4709
|
+
# @!attribute [rw] type
|
4710
|
+
# The type of the limitation, such as action required, upgrade
|
4711
|
+
# required, and limited feature.
|
4712
|
+
# @return [String]
|
4713
|
+
#
|
4714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Limitation AWS API Documentation
|
4715
|
+
#
|
4716
|
+
class Limitation < Struct.new(
|
4717
|
+
:database_id,
|
4718
|
+
:engine_name,
|
4719
|
+
:name,
|
4720
|
+
:description,
|
4721
|
+
:impact,
|
4722
|
+
:type)
|
4723
|
+
SENSITIVE = []
|
4724
|
+
include Aws::Structure
|
4725
|
+
end
|
4726
|
+
|
5509
4727
|
# @!attribute [rw] resource_arn
|
5510
4728
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
5511
4729
|
# DMS resource to list tags for. This returns a list of keys (names of
|
@@ -5543,27 +4761,6 @@ module Aws::DatabaseMigrationService
|
|
5543
4761
|
|
5544
4762
|
# Provides information that defines a Microsoft SQL Server endpoint.
|
5545
4763
|
#
|
5546
|
-
# @note When making an API call, you may pass MicrosoftSQLServerSettings
|
5547
|
-
# data as a hash:
|
5548
|
-
#
|
5549
|
-
# {
|
5550
|
-
# port: 1,
|
5551
|
-
# bcp_packet_size: 1,
|
5552
|
-
# database_name: "String",
|
5553
|
-
# control_tables_file_group: "String",
|
5554
|
-
# password: "SecretString",
|
5555
|
-
# query_single_always_on_node: false,
|
5556
|
-
# read_backup_only: false,
|
5557
|
-
# safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
|
5558
|
-
# server_name: "String",
|
5559
|
-
# username: "String",
|
5560
|
-
# use_bcp_full_load: false,
|
5561
|
-
# use_third_party_backup_device: false,
|
5562
|
-
# secrets_manager_access_role_arn: "String",
|
5563
|
-
# secrets_manager_secret_id: "String",
|
5564
|
-
# trim_space_in_char: false,
|
5565
|
-
# }
|
5566
|
-
#
|
5567
4764
|
# @!attribute [rw] port
|
5568
4765
|
# Endpoint TCP port.
|
5569
4766
|
# @return [Integer]
|
@@ -5627,7 +4824,13 @@ module Aws::DatabaseMigrationService
|
|
5627
4824
|
# @return [String]
|
5628
4825
|
#
|
5629
4826
|
# @!attribute [rw] server_name
|
5630
|
-
# Fully qualified domain name of the endpoint.
|
4827
|
+
# Fully qualified domain name of the endpoint. For an Amazon RDS SQL
|
4828
|
+
# Server instance, this is the output of [DescribeDBInstances][1], in
|
4829
|
+
# the ` Endpoint.Address` field.
|
4830
|
+
#
|
4831
|
+
#
|
4832
|
+
#
|
4833
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html
|
5631
4834
|
# @return [String]
|
5632
4835
|
#
|
5633
4836
|
# @!attribute [rw] username
|
@@ -5705,328 +4908,6 @@ module Aws::DatabaseMigrationService
|
|
5705
4908
|
include Aws::Structure
|
5706
4909
|
end
|
5707
4910
|
|
5708
|
-
# @note When making an API call, you may pass ModifyEndpointMessage
|
5709
|
-
# data as a hash:
|
5710
|
-
#
|
5711
|
-
# {
|
5712
|
-
# endpoint_arn: "String", # required
|
5713
|
-
# endpoint_identifier: "String",
|
5714
|
-
# endpoint_type: "source", # accepts source, target
|
5715
|
-
# engine_name: "String",
|
5716
|
-
# username: "String",
|
5717
|
-
# password: "SecretString",
|
5718
|
-
# server_name: "String",
|
5719
|
-
# port: 1,
|
5720
|
-
# database_name: "String",
|
5721
|
-
# extra_connection_attributes: "String",
|
5722
|
-
# certificate_arn: "String",
|
5723
|
-
# ssl_mode: "none", # accepts none, require, verify-ca, verify-full
|
5724
|
-
# service_access_role_arn: "String",
|
5725
|
-
# external_table_definition: "String",
|
5726
|
-
# dynamo_db_settings: {
|
5727
|
-
# service_access_role_arn: "String", # required
|
5728
|
-
# },
|
5729
|
-
# s3_settings: {
|
5730
|
-
# service_access_role_arn: "String",
|
5731
|
-
# external_table_definition: "String",
|
5732
|
-
# csv_row_delimiter: "String",
|
5733
|
-
# csv_delimiter: "String",
|
5734
|
-
# bucket_folder: "String",
|
5735
|
-
# bucket_name: "String",
|
5736
|
-
# compression_type: "none", # accepts none, gzip
|
5737
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
5738
|
-
# server_side_encryption_kms_key_id: "String",
|
5739
|
-
# data_format: "csv", # accepts csv, parquet
|
5740
|
-
# encoding_type: "plain", # accepts plain, plain-dictionary, rle-dictionary
|
5741
|
-
# dict_page_size_limit: 1,
|
5742
|
-
# row_group_length: 1,
|
5743
|
-
# data_page_size: 1,
|
5744
|
-
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
5745
|
-
# enable_statistics: false,
|
5746
|
-
# include_op_for_full_load: false,
|
5747
|
-
# cdc_inserts_only: false,
|
5748
|
-
# timestamp_column_name: "String",
|
5749
|
-
# parquet_timestamp_in_millisecond: false,
|
5750
|
-
# cdc_inserts_and_updates: false,
|
5751
|
-
# date_partition_enabled: false,
|
5752
|
-
# date_partition_sequence: "YYYYMMDD", # accepts YYYYMMDD, YYYYMMDDHH, YYYYMM, MMYYYYDD, DDMMYYYY
|
5753
|
-
# date_partition_delimiter: "SLASH", # accepts SLASH, UNDERSCORE, DASH, NONE
|
5754
|
-
# use_csv_no_sup_value: false,
|
5755
|
-
# csv_no_sup_value: "String",
|
5756
|
-
# preserve_transactions: false,
|
5757
|
-
# cdc_path: "String",
|
5758
|
-
# use_task_start_time_for_full_load_timestamp: false,
|
5759
|
-
# canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
|
5760
|
-
# add_column_name: false,
|
5761
|
-
# cdc_max_batch_interval: 1,
|
5762
|
-
# cdc_min_file_size: 1,
|
5763
|
-
# csv_null_value: "String",
|
5764
|
-
# ignore_header_rows: 1,
|
5765
|
-
# max_file_size: 1,
|
5766
|
-
# rfc_4180: false,
|
5767
|
-
# date_partition_timezone: "String",
|
5768
|
-
# add_trailing_padding_character: false,
|
5769
|
-
# expected_bucket_owner: "String",
|
5770
|
-
# },
|
5771
|
-
# dms_transfer_settings: {
|
5772
|
-
# service_access_role_arn: "String",
|
5773
|
-
# bucket_name: "String",
|
5774
|
-
# },
|
5775
|
-
# mongo_db_settings: {
|
5776
|
-
# username: "String",
|
5777
|
-
# password: "SecretString",
|
5778
|
-
# server_name: "String",
|
5779
|
-
# port: 1,
|
5780
|
-
# database_name: "String",
|
5781
|
-
# auth_type: "no", # accepts no, password
|
5782
|
-
# auth_mechanism: "default", # accepts default, mongodb_cr, scram_sha_1
|
5783
|
-
# nesting_level: "none", # accepts none, one
|
5784
|
-
# extract_doc_id: "String",
|
5785
|
-
# docs_to_investigate: "String",
|
5786
|
-
# auth_source: "String",
|
5787
|
-
# kms_key_id: "String",
|
5788
|
-
# secrets_manager_access_role_arn: "String",
|
5789
|
-
# secrets_manager_secret_id: "String",
|
5790
|
-
# },
|
5791
|
-
# kinesis_settings: {
|
5792
|
-
# stream_arn: "String",
|
5793
|
-
# message_format: "json", # accepts json, json-unformatted
|
5794
|
-
# service_access_role_arn: "String",
|
5795
|
-
# include_transaction_details: false,
|
5796
|
-
# include_partition_value: false,
|
5797
|
-
# partition_include_schema_table: false,
|
5798
|
-
# include_table_alter_operations: false,
|
5799
|
-
# include_control_details: false,
|
5800
|
-
# include_null_and_empty: false,
|
5801
|
-
# no_hex_prefix: false,
|
5802
|
-
# },
|
5803
|
-
# kafka_settings: {
|
5804
|
-
# broker: "String",
|
5805
|
-
# topic: "String",
|
5806
|
-
# message_format: "json", # accepts json, json-unformatted
|
5807
|
-
# include_transaction_details: false,
|
5808
|
-
# include_partition_value: false,
|
5809
|
-
# partition_include_schema_table: false,
|
5810
|
-
# include_table_alter_operations: false,
|
5811
|
-
# include_control_details: false,
|
5812
|
-
# message_max_bytes: 1,
|
5813
|
-
# include_null_and_empty: false,
|
5814
|
-
# security_protocol: "plaintext", # accepts plaintext, ssl-authentication, ssl-encryption, sasl-ssl
|
5815
|
-
# ssl_client_certificate_arn: "String",
|
5816
|
-
# ssl_client_key_arn: "String",
|
5817
|
-
# ssl_client_key_password: "SecretString",
|
5818
|
-
# ssl_ca_certificate_arn: "String",
|
5819
|
-
# sasl_username: "String",
|
5820
|
-
# sasl_password: "SecretString",
|
5821
|
-
# no_hex_prefix: false,
|
5822
|
-
# },
|
5823
|
-
# elasticsearch_settings: {
|
5824
|
-
# service_access_role_arn: "String", # required
|
5825
|
-
# endpoint_uri: "String", # required
|
5826
|
-
# full_load_error_percentage: 1,
|
5827
|
-
# error_retry_duration: 1,
|
5828
|
-
# use_new_mapping_type: false,
|
5829
|
-
# },
|
5830
|
-
# neptune_settings: {
|
5831
|
-
# service_access_role_arn: "String",
|
5832
|
-
# s3_bucket_name: "String", # required
|
5833
|
-
# s3_bucket_folder: "String", # required
|
5834
|
-
# error_retry_duration: 1,
|
5835
|
-
# max_file_size: 1,
|
5836
|
-
# max_retry_count: 1,
|
5837
|
-
# iam_auth_enabled: false,
|
5838
|
-
# },
|
5839
|
-
# redshift_settings: {
|
5840
|
-
# accept_any_date: false,
|
5841
|
-
# after_connect_script: "String",
|
5842
|
-
# bucket_folder: "String",
|
5843
|
-
# bucket_name: "String",
|
5844
|
-
# case_sensitive_names: false,
|
5845
|
-
# comp_update: false,
|
5846
|
-
# connection_timeout: 1,
|
5847
|
-
# database_name: "String",
|
5848
|
-
# date_format: "String",
|
5849
|
-
# empty_as_null: false,
|
5850
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
5851
|
-
# explicit_ids: false,
|
5852
|
-
# file_transfer_upload_streams: 1,
|
5853
|
-
# load_timeout: 1,
|
5854
|
-
# max_file_size: 1,
|
5855
|
-
# password: "SecretString",
|
5856
|
-
# port: 1,
|
5857
|
-
# remove_quotes: false,
|
5858
|
-
# replace_invalid_chars: "String",
|
5859
|
-
# replace_chars: "String",
|
5860
|
-
# server_name: "String",
|
5861
|
-
# service_access_role_arn: "String",
|
5862
|
-
# server_side_encryption_kms_key_id: "String",
|
5863
|
-
# time_format: "String",
|
5864
|
-
# trim_blanks: false,
|
5865
|
-
# truncate_columns: false,
|
5866
|
-
# username: "String",
|
5867
|
-
# write_buffer_size: 1,
|
5868
|
-
# secrets_manager_access_role_arn: "String",
|
5869
|
-
# secrets_manager_secret_id: "String",
|
5870
|
-
# },
|
5871
|
-
# postgre_sql_settings: {
|
5872
|
-
# after_connect_script: "String",
|
5873
|
-
# capture_ddls: false,
|
5874
|
-
# max_file_size: 1,
|
5875
|
-
# database_name: "String",
|
5876
|
-
# ddl_artifacts_schema: "String",
|
5877
|
-
# execute_timeout: 1,
|
5878
|
-
# fail_tasks_on_lob_truncation: false,
|
5879
|
-
# heartbeat_enable: false,
|
5880
|
-
# heartbeat_schema: "String",
|
5881
|
-
# heartbeat_frequency: 1,
|
5882
|
-
# password: "SecretString",
|
5883
|
-
# port: 1,
|
5884
|
-
# server_name: "String",
|
5885
|
-
# username: "String",
|
5886
|
-
# slot_name: "String",
|
5887
|
-
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
5888
|
-
# secrets_manager_access_role_arn: "String",
|
5889
|
-
# secrets_manager_secret_id: "String",
|
5890
|
-
# trim_space_in_char: false,
|
5891
|
-
# },
|
5892
|
-
# my_sql_settings: {
|
5893
|
-
# after_connect_script: "String",
|
5894
|
-
# clean_source_metadata_on_mismatch: false,
|
5895
|
-
# database_name: "String",
|
5896
|
-
# events_poll_interval: 1,
|
5897
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
5898
|
-
# max_file_size: 1,
|
5899
|
-
# parallel_load_threads: 1,
|
5900
|
-
# password: "SecretString",
|
5901
|
-
# port: 1,
|
5902
|
-
# server_name: "String",
|
5903
|
-
# server_timezone: "String",
|
5904
|
-
# username: "String",
|
5905
|
-
# secrets_manager_access_role_arn: "String",
|
5906
|
-
# secrets_manager_secret_id: "String",
|
5907
|
-
# },
|
5908
|
-
# oracle_settings: {
|
5909
|
-
# add_supplemental_logging: false,
|
5910
|
-
# archived_log_dest_id: 1,
|
5911
|
-
# additional_archived_log_dest_id: 1,
|
5912
|
-
# extra_archived_log_dest_ids: [1],
|
5913
|
-
# allow_select_nested_tables: false,
|
5914
|
-
# parallel_asm_read_threads: 1,
|
5915
|
-
# read_ahead_blocks: 1,
|
5916
|
-
# access_alternate_directly: false,
|
5917
|
-
# use_alternate_folder_for_online: false,
|
5918
|
-
# oracle_path_prefix: "String",
|
5919
|
-
# use_path_prefix: "String",
|
5920
|
-
# replace_path_prefix: false,
|
5921
|
-
# enable_homogenous_tablespace: false,
|
5922
|
-
# direct_path_no_log: false,
|
5923
|
-
# archived_logs_only: false,
|
5924
|
-
# asm_password: "SecretString",
|
5925
|
-
# asm_server: "String",
|
5926
|
-
# asm_user: "String",
|
5927
|
-
# char_length_semantics: "default", # accepts default, char, byte
|
5928
|
-
# database_name: "String",
|
5929
|
-
# direct_path_parallel_load: false,
|
5930
|
-
# fail_tasks_on_lob_truncation: false,
|
5931
|
-
# number_datatype_scale: 1,
|
5932
|
-
# password: "SecretString",
|
5933
|
-
# port: 1,
|
5934
|
-
# read_table_space_name: false,
|
5935
|
-
# retry_interval: 1,
|
5936
|
-
# security_db_encryption: "SecretString",
|
5937
|
-
# security_db_encryption_name: "String",
|
5938
|
-
# server_name: "String",
|
5939
|
-
# spatial_data_option_to_geo_json_function_name: "String",
|
5940
|
-
# standby_delay_time: 1,
|
5941
|
-
# username: "String",
|
5942
|
-
# use_b_file: false,
|
5943
|
-
# use_direct_path_full_load: false,
|
5944
|
-
# use_logminer_reader: false,
|
5945
|
-
# secrets_manager_access_role_arn: "String",
|
5946
|
-
# secrets_manager_secret_id: "String",
|
5947
|
-
# secrets_manager_oracle_asm_access_role_arn: "String",
|
5948
|
-
# secrets_manager_oracle_asm_secret_id: "String",
|
5949
|
-
# trim_space_in_char: false,
|
5950
|
-
# },
|
5951
|
-
# sybase_settings: {
|
5952
|
-
# database_name: "String",
|
5953
|
-
# password: "SecretString",
|
5954
|
-
# port: 1,
|
5955
|
-
# server_name: "String",
|
5956
|
-
# username: "String",
|
5957
|
-
# secrets_manager_access_role_arn: "String",
|
5958
|
-
# secrets_manager_secret_id: "String",
|
5959
|
-
# },
|
5960
|
-
# microsoft_sql_server_settings: {
|
5961
|
-
# port: 1,
|
5962
|
-
# bcp_packet_size: 1,
|
5963
|
-
# database_name: "String",
|
5964
|
-
# control_tables_file_group: "String",
|
5965
|
-
# password: "SecretString",
|
5966
|
-
# query_single_always_on_node: false,
|
5967
|
-
# read_backup_only: false,
|
5968
|
-
# safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
|
5969
|
-
# server_name: "String",
|
5970
|
-
# username: "String",
|
5971
|
-
# use_bcp_full_load: false,
|
5972
|
-
# use_third_party_backup_device: false,
|
5973
|
-
# secrets_manager_access_role_arn: "String",
|
5974
|
-
# secrets_manager_secret_id: "String",
|
5975
|
-
# trim_space_in_char: false,
|
5976
|
-
# },
|
5977
|
-
# ibm_db_2_settings: {
|
5978
|
-
# database_name: "String",
|
5979
|
-
# password: "SecretString",
|
5980
|
-
# port: 1,
|
5981
|
-
# server_name: "String",
|
5982
|
-
# set_data_capture_changes: false,
|
5983
|
-
# current_lsn: "String",
|
5984
|
-
# max_k_bytes_per_read: 1,
|
5985
|
-
# username: "String",
|
5986
|
-
# secrets_manager_access_role_arn: "String",
|
5987
|
-
# secrets_manager_secret_id: "String",
|
5988
|
-
# },
|
5989
|
-
# doc_db_settings: {
|
5990
|
-
# username: "String",
|
5991
|
-
# password: "SecretString",
|
5992
|
-
# server_name: "String",
|
5993
|
-
# port: 1,
|
5994
|
-
# database_name: "String",
|
5995
|
-
# nesting_level: "none", # accepts none, one
|
5996
|
-
# extract_doc_id: false,
|
5997
|
-
# docs_to_investigate: 1,
|
5998
|
-
# kms_key_id: "String",
|
5999
|
-
# secrets_manager_access_role_arn: "String",
|
6000
|
-
# secrets_manager_secret_id: "String",
|
6001
|
-
# },
|
6002
|
-
# redis_settings: {
|
6003
|
-
# server_name: "String", # required
|
6004
|
-
# port: 1, # required
|
6005
|
-
# ssl_security_protocol: "plaintext", # accepts plaintext, ssl-encryption
|
6006
|
-
# auth_type: "none", # accepts none, auth-role, auth-token
|
6007
|
-
# auth_user_name: "String",
|
6008
|
-
# auth_password: "SecretString",
|
6009
|
-
# ssl_ca_certificate_arn: "String",
|
6010
|
-
# },
|
6011
|
-
# exact_settings: false,
|
6012
|
-
# gcp_my_sql_settings: {
|
6013
|
-
# after_connect_script: "String",
|
6014
|
-
# clean_source_metadata_on_mismatch: false,
|
6015
|
-
# database_name: "String",
|
6016
|
-
# events_poll_interval: 1,
|
6017
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
6018
|
-
# max_file_size: 1,
|
6019
|
-
# parallel_load_threads: 1,
|
6020
|
-
# password: "SecretString",
|
6021
|
-
# port: 1,
|
6022
|
-
# server_name: "String",
|
6023
|
-
# server_timezone: "String",
|
6024
|
-
# username: "String",
|
6025
|
-
# secrets_manager_access_role_arn: "String",
|
6026
|
-
# secrets_manager_secret_id: "String",
|
6027
|
-
# },
|
6028
|
-
# }
|
6029
|
-
#
|
6030
4911
|
# @!attribute [rw] endpoint_arn
|
6031
4912
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
6032
4913
|
# endpoint.
|
@@ -6371,17 +5252,6 @@ module Aws::DatabaseMigrationService
|
|
6371
5252
|
include Aws::Structure
|
6372
5253
|
end
|
6373
5254
|
|
6374
|
-
# @note When making an API call, you may pass ModifyEventSubscriptionMessage
|
6375
|
-
# data as a hash:
|
6376
|
-
#
|
6377
|
-
# {
|
6378
|
-
# subscription_name: "String", # required
|
6379
|
-
# sns_topic_arn: "String",
|
6380
|
-
# source_type: "String",
|
6381
|
-
# event_categories: ["String"],
|
6382
|
-
# enabled: false,
|
6383
|
-
# }
|
6384
|
-
#
|
6385
5255
|
# @!attribute [rw] subscription_name
|
6386
5256
|
# The name of the DMS event notification subscription to be modified.
|
6387
5257
|
# @return [String]
|
@@ -6433,24 +5303,6 @@ module Aws::DatabaseMigrationService
|
|
6433
5303
|
include Aws::Structure
|
6434
5304
|
end
|
6435
5305
|
|
6436
|
-
# @note When making an API call, you may pass ModifyReplicationInstanceMessage
|
6437
|
-
# data as a hash:
|
6438
|
-
#
|
6439
|
-
# {
|
6440
|
-
# replication_instance_arn: "String", # required
|
6441
|
-
# allocated_storage: 1,
|
6442
|
-
# apply_immediately: false,
|
6443
|
-
# replication_instance_class: "String",
|
6444
|
-
# vpc_security_group_ids: ["String"],
|
6445
|
-
# preferred_maintenance_window: "String",
|
6446
|
-
# multi_az: false,
|
6447
|
-
# engine_version: "String",
|
6448
|
-
# allow_major_version_upgrade: false,
|
6449
|
-
# auto_minor_version_upgrade: false,
|
6450
|
-
# replication_instance_identifier: "String",
|
6451
|
-
# network_type: "String",
|
6452
|
-
# }
|
6453
|
-
#
|
6454
5306
|
# @!attribute [rw] replication_instance_arn
|
6455
5307
|
# The Amazon Resource Name (ARN) of the replication instance.
|
6456
5308
|
# @return [String]
|
@@ -6541,6 +5393,15 @@ module Aws::DatabaseMigrationService
|
|
6541
5393
|
# * A newer minor version is available.
|
6542
5394
|
#
|
6543
5395
|
# * DMS has enabled automatic patching for the given engine version.
|
5396
|
+
#
|
5397
|
+
# When `AutoMinorVersionUpgrade` is enabled, DMS uses the current
|
5398
|
+
# default engine version when you modify a replication instance. For
|
5399
|
+
# example, if you set `EngineVersion` to a lower version number than
|
5400
|
+
# the current default version, DMS uses the default version.
|
5401
|
+
#
|
5402
|
+
# If `AutoMinorVersionUpgrade` *isn’t* enabled when you modify a
|
5403
|
+
# replication instance, DMS uses the engine version specified by the
|
5404
|
+
# `EngineVersion` parameter.
|
6544
5405
|
# @return [Boolean]
|
6545
5406
|
#
|
6546
5407
|
# @!attribute [rw] replication_instance_identifier
|
@@ -6585,15 +5446,6 @@ module Aws::DatabaseMigrationService
|
|
6585
5446
|
include Aws::Structure
|
6586
5447
|
end
|
6587
5448
|
|
6588
|
-
# @note When making an API call, you may pass ModifyReplicationSubnetGroupMessage
|
6589
|
-
# data as a hash:
|
6590
|
-
#
|
6591
|
-
# {
|
6592
|
-
# replication_subnet_group_identifier: "String", # required
|
6593
|
-
# replication_subnet_group_description: "String",
|
6594
|
-
# subnet_ids: ["String"], # required
|
6595
|
-
# }
|
6596
|
-
#
|
6597
5449
|
# @!attribute [rw] replication_subnet_group_identifier
|
6598
5450
|
# The name of the replication instance subnet group.
|
6599
5451
|
# @return [String]
|
@@ -6628,21 +5480,6 @@ module Aws::DatabaseMigrationService
|
|
6628
5480
|
include Aws::Structure
|
6629
5481
|
end
|
6630
5482
|
|
6631
|
-
# @note When making an API call, you may pass ModifyReplicationTaskMessage
|
6632
|
-
# data as a hash:
|
6633
|
-
#
|
6634
|
-
# {
|
6635
|
-
# replication_task_arn: "String", # required
|
6636
|
-
# replication_task_identifier: "String",
|
6637
|
-
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
6638
|
-
# table_mappings: "String",
|
6639
|
-
# replication_task_settings: "String",
|
6640
|
-
# cdc_start_time: Time.now,
|
6641
|
-
# cdc_start_position: "String",
|
6642
|
-
# cdc_stop_position: "String",
|
6643
|
-
# task_data: "String",
|
6644
|
-
# }
|
6645
|
-
#
|
6646
5483
|
# @!attribute [rw] replication_task_arn
|
6647
5484
|
# The Amazon Resource Name (ARN) of the replication task.
|
6648
5485
|
# @return [String]
|
@@ -6722,7 +5559,7 @@ module Aws::DatabaseMigrationService
|
|
6722
5559
|
# “server\_time:2018-02-09T12:12:12”
|
6723
5560
|
#
|
6724
5561
|
# Commit time example: --cdc-stop-position “commit\_time:
|
6725
|
-
# 2018-02-09T12:12:12
|
5562
|
+
# 2018-02-09T12:12:12“
|
6726
5563
|
# @return [String]
|
6727
5564
|
#
|
6728
5565
|
# @!attribute [rw] task_data
|
@@ -6766,26 +5603,6 @@ module Aws::DatabaseMigrationService
|
|
6766
5603
|
|
6767
5604
|
# Provides information that defines a MongoDB endpoint.
|
6768
5605
|
#
|
6769
|
-
# @note When making an API call, you may pass MongoDbSettings
|
6770
|
-
# data as a hash:
|
6771
|
-
#
|
6772
|
-
# {
|
6773
|
-
# username: "String",
|
6774
|
-
# password: "SecretString",
|
6775
|
-
# server_name: "String",
|
6776
|
-
# port: 1,
|
6777
|
-
# database_name: "String",
|
6778
|
-
# auth_type: "no", # accepts no, password
|
6779
|
-
# auth_mechanism: "default", # accepts default, mongodb_cr, scram_sha_1
|
6780
|
-
# nesting_level: "none", # accepts none, one
|
6781
|
-
# extract_doc_id: "String",
|
6782
|
-
# docs_to_investigate: "String",
|
6783
|
-
# auth_source: "String",
|
6784
|
-
# kms_key_id: "String",
|
6785
|
-
# secrets_manager_access_role_arn: "String",
|
6786
|
-
# secrets_manager_secret_id: "String",
|
6787
|
-
# }
|
6788
|
-
#
|
6789
5606
|
# @!attribute [rw] username
|
6790
5607
|
# The user name you use to access the MongoDB source endpoint.
|
6791
5608
|
# @return [String]
|
@@ -6915,14 +5732,6 @@ module Aws::DatabaseMigrationService
|
|
6915
5732
|
include Aws::Structure
|
6916
5733
|
end
|
6917
5734
|
|
6918
|
-
# @note When making an API call, you may pass MoveReplicationTaskMessage
|
6919
|
-
# data as a hash:
|
6920
|
-
#
|
6921
|
-
# {
|
6922
|
-
# replication_task_arn: "String", # required
|
6923
|
-
# target_replication_instance_arn: "String", # required
|
6924
|
-
# }
|
6925
|
-
#
|
6926
5735
|
# @!attribute [rw] replication_task_arn
|
6927
5736
|
# The Amazon Resource Name (ARN) of the task that you want to move.
|
6928
5737
|
# @return [String]
|
@@ -6955,26 +5764,6 @@ module Aws::DatabaseMigrationService
|
|
6955
5764
|
|
6956
5765
|
# Provides information that defines a MySQL endpoint.
|
6957
5766
|
#
|
6958
|
-
# @note When making an API call, you may pass MySQLSettings
|
6959
|
-
# data as a hash:
|
6960
|
-
#
|
6961
|
-
# {
|
6962
|
-
# after_connect_script: "String",
|
6963
|
-
# clean_source_metadata_on_mismatch: false,
|
6964
|
-
# database_name: "String",
|
6965
|
-
# events_poll_interval: 1,
|
6966
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
6967
|
-
# max_file_size: 1,
|
6968
|
-
# parallel_load_threads: 1,
|
6969
|
-
# password: "SecretString",
|
6970
|
-
# port: 1,
|
6971
|
-
# server_name: "String",
|
6972
|
-
# server_timezone: "String",
|
6973
|
-
# username: "String",
|
6974
|
-
# secrets_manager_access_role_arn: "String",
|
6975
|
-
# secrets_manager_secret_id: "String",
|
6976
|
-
# }
|
6977
|
-
#
|
6978
5767
|
# @!attribute [rw] after_connect_script
|
6979
5768
|
# Specifies a script to run immediately after DMS connects to the
|
6980
5769
|
# endpoint. The migration task continues running regardless if the SQL
|
@@ -6985,10 +5774,10 @@ module Aws::DatabaseMigrationService
|
|
6985
5774
|
# @return [String]
|
6986
5775
|
#
|
6987
5776
|
# @!attribute [rw] clean_source_metadata_on_mismatch
|
6988
|
-
#
|
6989
|
-
#
|
6990
|
-
#
|
6991
|
-
#
|
5777
|
+
# Cleans and recreates table metadata information on the replication
|
5778
|
+
# instance when a mismatch occurs. For example, in a situation where
|
5779
|
+
# running an alter DDL on the table could result in different
|
5780
|
+
# information about the table cached in the replication instance.
|
6992
5781
|
# @return [Boolean]
|
6993
5782
|
#
|
6994
5783
|
# @!attribute [rw] database_name
|
@@ -7048,7 +5837,18 @@ module Aws::DatabaseMigrationService
|
|
7048
5837
|
# @return [Integer]
|
7049
5838
|
#
|
7050
5839
|
# @!attribute [rw] server_name
|
7051
|
-
#
|
5840
|
+
# The host name of the endpoint database.
|
5841
|
+
#
|
5842
|
+
# For an Amazon RDS MySQL instance, this is the output of
|
5843
|
+
# [DescribeDBInstances][1], in the ` Endpoint.Address` field.
|
5844
|
+
#
|
5845
|
+
# For an Aurora MySQL instance, this is the output of
|
5846
|
+
# [DescribeDBClusters][2], in the `Endpoint` field.
|
5847
|
+
#
|
5848
|
+
#
|
5849
|
+
#
|
5850
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html
|
5851
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html
|
7052
5852
|
# @return [String]
|
7053
5853
|
#
|
7054
5854
|
# @!attribute [rw] server_timezone
|
@@ -7117,19 +5917,6 @@ module Aws::DatabaseMigrationService
|
|
7117
5917
|
|
7118
5918
|
# Provides information that defines an Amazon Neptune endpoint.
|
7119
5919
|
#
|
7120
|
-
# @note When making an API call, you may pass NeptuneSettings
|
7121
|
-
# data as a hash:
|
7122
|
-
#
|
7123
|
-
# {
|
7124
|
-
# service_access_role_arn: "String",
|
7125
|
-
# s3_bucket_name: "String", # required
|
7126
|
-
# s3_bucket_folder: "String", # required
|
7127
|
-
# error_retry_duration: 1,
|
7128
|
-
# max_file_size: 1,
|
7129
|
-
# max_retry_count: 1,
|
7130
|
-
# iam_auth_enabled: false,
|
7131
|
-
# }
|
7132
|
-
#
|
7133
5920
|
# @!attribute [rw] service_access_role_arn
|
7134
5921
|
# The Amazon Resource Name (ARN) of the service role that you created
|
7135
5922
|
# for the Neptune target endpoint. The role must allow the
|
@@ -7197,53 +5984,6 @@ module Aws::DatabaseMigrationService
|
|
7197
5984
|
|
7198
5985
|
# Provides information that defines an Oracle endpoint.
|
7199
5986
|
#
|
7200
|
-
# @note When making an API call, you may pass OracleSettings
|
7201
|
-
# data as a hash:
|
7202
|
-
#
|
7203
|
-
# {
|
7204
|
-
# add_supplemental_logging: false,
|
7205
|
-
# archived_log_dest_id: 1,
|
7206
|
-
# additional_archived_log_dest_id: 1,
|
7207
|
-
# extra_archived_log_dest_ids: [1],
|
7208
|
-
# allow_select_nested_tables: false,
|
7209
|
-
# parallel_asm_read_threads: 1,
|
7210
|
-
# read_ahead_blocks: 1,
|
7211
|
-
# access_alternate_directly: false,
|
7212
|
-
# use_alternate_folder_for_online: false,
|
7213
|
-
# oracle_path_prefix: "String",
|
7214
|
-
# use_path_prefix: "String",
|
7215
|
-
# replace_path_prefix: false,
|
7216
|
-
# enable_homogenous_tablespace: false,
|
7217
|
-
# direct_path_no_log: false,
|
7218
|
-
# archived_logs_only: false,
|
7219
|
-
# asm_password: "SecretString",
|
7220
|
-
# asm_server: "String",
|
7221
|
-
# asm_user: "String",
|
7222
|
-
# char_length_semantics: "default", # accepts default, char, byte
|
7223
|
-
# database_name: "String",
|
7224
|
-
# direct_path_parallel_load: false,
|
7225
|
-
# fail_tasks_on_lob_truncation: false,
|
7226
|
-
# number_datatype_scale: 1,
|
7227
|
-
# password: "SecretString",
|
7228
|
-
# port: 1,
|
7229
|
-
# read_table_space_name: false,
|
7230
|
-
# retry_interval: 1,
|
7231
|
-
# security_db_encryption: "SecretString",
|
7232
|
-
# security_db_encryption_name: "String",
|
7233
|
-
# server_name: "String",
|
7234
|
-
# spatial_data_option_to_geo_json_function_name: "String",
|
7235
|
-
# standby_delay_time: 1,
|
7236
|
-
# username: "String",
|
7237
|
-
# use_b_file: false,
|
7238
|
-
# use_direct_path_full_load: false,
|
7239
|
-
# use_logminer_reader: false,
|
7240
|
-
# secrets_manager_access_role_arn: "String",
|
7241
|
-
# secrets_manager_secret_id: "String",
|
7242
|
-
# secrets_manager_oracle_asm_access_role_arn: "String",
|
7243
|
-
# secrets_manager_oracle_asm_secret_id: "String",
|
7244
|
-
# trim_space_in_char: false,
|
7245
|
-
# }
|
7246
|
-
#
|
7247
5987
|
# @!attribute [rw] add_supplemental_logging
|
7248
5988
|
# Set this attribute to set up table-level supplemental logging for
|
7249
5989
|
# the Oracle database. This attribute enables PRIMARY KEY supplemental
|
@@ -7516,6 +6256,13 @@ module Aws::DatabaseMigrationService
|
|
7516
6256
|
#
|
7517
6257
|
# @!attribute [rw] server_name
|
7518
6258
|
# Fully qualified domain name of the endpoint.
|
6259
|
+
#
|
6260
|
+
# For an Amazon RDS Oracle instance, this is the output of
|
6261
|
+
# [DescribeDBInstances][1], in the ` Endpoint.Address` field.
|
6262
|
+
#
|
6263
|
+
#
|
6264
|
+
#
|
6265
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html
|
7519
6266
|
# @return [String]
|
7520
6267
|
#
|
7521
6268
|
# @!attribute [rw] spatial_data_option_to_geo_json_function_name
|
@@ -7828,31 +6575,6 @@ module Aws::DatabaseMigrationService
|
|
7828
6575
|
|
7829
6576
|
# Provides information that defines a PostgreSQL endpoint.
|
7830
6577
|
#
|
7831
|
-
# @note When making an API call, you may pass PostgreSQLSettings
|
7832
|
-
# data as a hash:
|
7833
|
-
#
|
7834
|
-
# {
|
7835
|
-
# after_connect_script: "String",
|
7836
|
-
# capture_ddls: false,
|
7837
|
-
# max_file_size: 1,
|
7838
|
-
# database_name: "String",
|
7839
|
-
# ddl_artifacts_schema: "String",
|
7840
|
-
# execute_timeout: 1,
|
7841
|
-
# fail_tasks_on_lob_truncation: false,
|
7842
|
-
# heartbeat_enable: false,
|
7843
|
-
# heartbeat_schema: "String",
|
7844
|
-
# heartbeat_frequency: 1,
|
7845
|
-
# password: "SecretString",
|
7846
|
-
# port: 1,
|
7847
|
-
# server_name: "String",
|
7848
|
-
# username: "String",
|
7849
|
-
# slot_name: "String",
|
7850
|
-
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
7851
|
-
# secrets_manager_access_role_arn: "String",
|
7852
|
-
# secrets_manager_secret_id: "String",
|
7853
|
-
# trim_space_in_char: false,
|
7854
|
-
# }
|
7855
|
-
#
|
7856
6578
|
# @!attribute [rw] after_connect_script
|
7857
6579
|
# For use with change data capture (CDC) only, this attribute has DMS
|
7858
6580
|
# bypass foreign keys and user triggers to reduce the time it takes to
|
@@ -7928,7 +6650,18 @@ module Aws::DatabaseMigrationService
|
|
7928
6650
|
# @return [Integer]
|
7929
6651
|
#
|
7930
6652
|
# @!attribute [rw] server_name
|
7931
|
-
#
|
6653
|
+
# The host name of the endpoint database.
|
6654
|
+
#
|
6655
|
+
# For an Amazon RDS PostgreSQL instance, this is the output of
|
6656
|
+
# [DescribeDBInstances][1], in the ` Endpoint.Address` field.
|
6657
|
+
#
|
6658
|
+
# For an Aurora PostgreSQL instance, this is the output of
|
6659
|
+
# [DescribeDBClusters][2], in the `Endpoint` field.
|
6660
|
+
#
|
6661
|
+
#
|
6662
|
+
#
|
6663
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html
|
6664
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html
|
7932
6665
|
# @return [String]
|
7933
6666
|
#
|
7934
6667
|
# @!attribute [rw] username
|
@@ -8028,15 +6761,134 @@ module Aws::DatabaseMigrationService
|
|
8028
6761
|
include Aws::Structure
|
8029
6762
|
end
|
8030
6763
|
|
8031
|
-
#
|
8032
|
-
#
|
6764
|
+
# Provides information that describes the configuration of the
|
6765
|
+
# recommended target engine on Amazon RDS.
|
6766
|
+
#
|
6767
|
+
# @!attribute [rw] engine_edition
|
6768
|
+
# Describes the recommended target Amazon RDS engine edition.
|
6769
|
+
# @return [String]
|
6770
|
+
#
|
6771
|
+
# @!attribute [rw] instance_type
|
6772
|
+
# Describes the recommended target Amazon RDS instance type.
|
6773
|
+
# @return [String]
|
8033
6774
|
#
|
8034
|
-
#
|
8035
|
-
#
|
8036
|
-
#
|
8037
|
-
#
|
8038
|
-
#
|
6775
|
+
# @!attribute [rw] instance_vcpu
|
6776
|
+
# Describes the number of virtual CPUs (vCPU) on the recommended
|
6777
|
+
# Amazon RDS DB instance that meets your requirements.
|
6778
|
+
# @return [Float]
|
6779
|
+
#
|
6780
|
+
# @!attribute [rw] instance_memory
|
6781
|
+
# Describes the memory on the recommended Amazon RDS DB instance that
|
6782
|
+
# meets your requirements.
|
6783
|
+
# @return [Float]
|
6784
|
+
#
|
6785
|
+
# @!attribute [rw] storage_type
|
6786
|
+
# Describes the storage type of the recommended Amazon RDS DB instance
|
6787
|
+
# that meets your requirements.
|
6788
|
+
#
|
6789
|
+
# Amazon RDS provides three storage types: General Purpose SSD (also
|
6790
|
+
# known as gp2 and gp3), Provisioned IOPS SSD (also known as io1), and
|
6791
|
+
# magnetic (also known as standard).
|
6792
|
+
# @return [String]
|
6793
|
+
#
|
6794
|
+
# @!attribute [rw] storage_size
|
6795
|
+
# Describes the storage size of the recommended Amazon RDS DB instance
|
6796
|
+
# that meets your requirements.
|
6797
|
+
# @return [Integer]
|
6798
|
+
#
|
6799
|
+
# @!attribute [rw] storage_iops
|
6800
|
+
# Describes the number of I/O operations completed each second (IOPS)
|
6801
|
+
# on the recommended Amazon RDS DB instance that meets your
|
6802
|
+
# requirements.
|
6803
|
+
# @return [Integer]
|
6804
|
+
#
|
6805
|
+
# @!attribute [rw] deployment_option
|
6806
|
+
# Describes the deployment option for the recommended Amazon RDS DB
|
6807
|
+
# instance. The deployment options include Multi-AZ and Single-AZ
|
6808
|
+
# deployments. Valid values include `"MULTI_AZ"` and `"SINGLE_AZ"`.
|
6809
|
+
# @return [String]
|
6810
|
+
#
|
6811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RdsConfiguration AWS API Documentation
|
6812
|
+
#
|
6813
|
+
class RdsConfiguration < Struct.new(
|
6814
|
+
:engine_edition,
|
6815
|
+
:instance_type,
|
6816
|
+
:instance_vcpu,
|
6817
|
+
:instance_memory,
|
6818
|
+
:storage_type,
|
6819
|
+
:storage_size,
|
6820
|
+
:storage_iops,
|
6821
|
+
:deployment_option)
|
6822
|
+
SENSITIVE = []
|
6823
|
+
include Aws::Structure
|
6824
|
+
end
|
6825
|
+
|
6826
|
+
# Provides information that describes a recommendation of a target
|
6827
|
+
# engine on Amazon RDS.
|
6828
|
+
#
|
6829
|
+
# @!attribute [rw] requirements_to_target
|
6830
|
+
# Supplemental information about the requirements to the recommended
|
6831
|
+
# target database on Amazon RDS.
|
6832
|
+
# @return [Types::RdsRequirements]
|
6833
|
+
#
|
6834
|
+
# @!attribute [rw] target_configuration
|
6835
|
+
# Supplemental information about the configuration of the recommended
|
6836
|
+
# target database on Amazon RDS.
|
6837
|
+
# @return [Types::RdsConfiguration]
|
6838
|
+
#
|
6839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RdsRecommendation AWS API Documentation
|
6840
|
+
#
|
6841
|
+
class RdsRecommendation < Struct.new(
|
6842
|
+
:requirements_to_target,
|
6843
|
+
:target_configuration)
|
6844
|
+
SENSITIVE = []
|
6845
|
+
include Aws::Structure
|
6846
|
+
end
|
6847
|
+
|
6848
|
+
# Provides information that describes the requirements to the target
|
6849
|
+
# engine on Amazon RDS.
|
6850
|
+
#
|
6851
|
+
# @!attribute [rw] engine_edition
|
6852
|
+
# The required target Amazon RDS engine edition.
|
6853
|
+
# @return [String]
|
6854
|
+
#
|
6855
|
+
# @!attribute [rw] instance_vcpu
|
6856
|
+
# The required number of virtual CPUs (vCPU) on the Amazon RDS DB
|
6857
|
+
# instance.
|
6858
|
+
# @return [Float]
|
6859
|
+
#
|
6860
|
+
# @!attribute [rw] instance_memory
|
6861
|
+
# The required memory on the Amazon RDS DB instance.
|
6862
|
+
# @return [Float]
|
6863
|
+
#
|
6864
|
+
# @!attribute [rw] storage_size
|
6865
|
+
# The required Amazon RDS DB instance storage size.
|
6866
|
+
# @return [Integer]
|
8039
6867
|
#
|
6868
|
+
# @!attribute [rw] storage_iops
|
6869
|
+
# The required number of I/O operations completed each second (IOPS)
|
6870
|
+
# on your Amazon RDS DB instance.
|
6871
|
+
# @return [Integer]
|
6872
|
+
#
|
6873
|
+
# @!attribute [rw] deployment_option
|
6874
|
+
# The required deployment option for the Amazon RDS DB instance. Valid
|
6875
|
+
# values include `"MULTI_AZ"` for Multi-AZ deployments and
|
6876
|
+
# `"SINGLE_AZ"` for Single-AZ deployments.
|
6877
|
+
# @return [String]
|
6878
|
+
#
|
6879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RdsRequirements AWS API Documentation
|
6880
|
+
#
|
6881
|
+
class RdsRequirements < Struct.new(
|
6882
|
+
:engine_edition,
|
6883
|
+
:instance_vcpu,
|
6884
|
+
:instance_memory,
|
6885
|
+
:storage_size,
|
6886
|
+
:storage_iops,
|
6887
|
+
:deployment_option)
|
6888
|
+
SENSITIVE = []
|
6889
|
+
include Aws::Structure
|
6890
|
+
end
|
6891
|
+
|
8040
6892
|
# @!attribute [rw] replication_instance_arn
|
8041
6893
|
# The Amazon Resource Name (ARN) of the replication instance.
|
8042
6894
|
# @return [String]
|
@@ -8079,20 +6931,112 @@ module Aws::DatabaseMigrationService
|
|
8079
6931
|
include Aws::Structure
|
8080
6932
|
end
|
8081
6933
|
|
8082
|
-
# Provides information that
|
6934
|
+
# Provides information that describes a recommendation of a target
|
6935
|
+
# engine.
|
6936
|
+
#
|
6937
|
+
# A *recommendation* is a set of possible Amazon Web Services target
|
6938
|
+
# engines that you can choose to migrate your source on-premises
|
6939
|
+
# database. In this set, Fleet Advisor suggests a single target engine
|
6940
|
+
# as the right sized migration destination. To determine this rightsized
|
6941
|
+
# migration destination, Fleet Advisor uses the inventory metadata and
|
6942
|
+
# metrics from data collector. You can use recommendations before the
|
6943
|
+
# start of migration to save costs and reduce risks.
|
6944
|
+
#
|
6945
|
+
# With recommendations, you can explore different target options and
|
6946
|
+
# compare metrics, so you can make an informed decision when you choose
|
6947
|
+
# the migration target.
|
8083
6948
|
#
|
8084
|
-
#
|
8085
|
-
#
|
6949
|
+
# @!attribute [rw] database_id
|
6950
|
+
# The identifier of the source database for which Fleet Advisor
|
6951
|
+
# provided this recommendation.
|
6952
|
+
# @return [String]
|
6953
|
+
#
|
6954
|
+
# @!attribute [rw] engine_name
|
6955
|
+
# The name of the target engine. Valid values include
|
6956
|
+
# `"rds-aurora-mysql"`, `"rds-aurora-postgresql"`, `"rds-mysql"`,
|
6957
|
+
# `"rds-oracle"`, `"rds-sql-server"`, and `"rds-postgresql"`.
|
6958
|
+
# @return [String]
|
6959
|
+
#
|
6960
|
+
# @!attribute [rw] created_date
|
6961
|
+
# The date when Fleet Advisor created the target engine
|
6962
|
+
# recommendation.
|
6963
|
+
# @return [String]
|
6964
|
+
#
|
6965
|
+
# @!attribute [rw] status
|
6966
|
+
# The status of the target engine recommendation. Valid values include
|
6967
|
+
# `"alternate"`, `"in-progress"`, `"not-viable"`, and `"recommended"`.
|
6968
|
+
# @return [String]
|
6969
|
+
#
|
6970
|
+
# @!attribute [rw] preferred
|
6971
|
+
# Indicates that this target is the rightsized migration destination.
|
6972
|
+
# @return [Boolean]
|
8086
6973
|
#
|
8087
|
-
#
|
8088
|
-
#
|
8089
|
-
#
|
8090
|
-
#
|
8091
|
-
#
|
8092
|
-
#
|
8093
|
-
#
|
8094
|
-
#
|
8095
|
-
#
|
6974
|
+
# @!attribute [rw] settings
|
6975
|
+
# The settings in JSON format for the preferred target engine
|
6976
|
+
# parameters. These parameters include capacity, resource utilization,
|
6977
|
+
# and the usage type (production, development, or testing).
|
6978
|
+
# @return [Types::RecommendationSettings]
|
6979
|
+
#
|
6980
|
+
# @!attribute [rw] data
|
6981
|
+
# The recommendation of a target engine for the specified source
|
6982
|
+
# database.
|
6983
|
+
# @return [Types::RecommendationData]
|
6984
|
+
#
|
6985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Recommendation AWS API Documentation
|
6986
|
+
#
|
6987
|
+
class Recommendation < Struct.new(
|
6988
|
+
:database_id,
|
6989
|
+
:engine_name,
|
6990
|
+
:created_date,
|
6991
|
+
:status,
|
6992
|
+
:preferred,
|
6993
|
+
:settings,
|
6994
|
+
:data)
|
6995
|
+
SENSITIVE = []
|
6996
|
+
include Aws::Structure
|
6997
|
+
end
|
6998
|
+
|
6999
|
+
# Provides information about the target engine for the specified source
|
7000
|
+
# database.
|
7001
|
+
#
|
7002
|
+
# @!attribute [rw] rds_engine
|
7003
|
+
# The recommendation of a target Amazon RDS database engine.
|
7004
|
+
# @return [Types::RdsRecommendation]
|
7005
|
+
#
|
7006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RecommendationData AWS API Documentation
|
7007
|
+
#
|
7008
|
+
class RecommendationData < Struct.new(
|
7009
|
+
:rds_engine)
|
7010
|
+
SENSITIVE = []
|
7011
|
+
include Aws::Structure
|
7012
|
+
end
|
7013
|
+
|
7014
|
+
# Provides information about the required target engine settings.
|
7015
|
+
#
|
7016
|
+
# @!attribute [rw] instance_sizing_type
|
7017
|
+
# The size of your target instance. Fleet Advisor calculates this
|
7018
|
+
# value based on your data collection type, such as total capacity and
|
7019
|
+
# resource utilization. Valid values include `"total-capacity"` and
|
7020
|
+
# `"utilization"`.
|
7021
|
+
# @return [String]
|
7022
|
+
#
|
7023
|
+
# @!attribute [rw] workload_type
|
7024
|
+
# The deployment option for your target engine. For production
|
7025
|
+
# databases, Fleet Advisor chooses Multi-AZ deployment. For
|
7026
|
+
# development or test databases, Fleet Advisor chooses Single-AZ
|
7027
|
+
# deployment. Valid values include `"development"` and `"production"`.
|
7028
|
+
# @return [String]
|
7029
|
+
#
|
7030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RecommendationSettings AWS API Documentation
|
7031
|
+
#
|
7032
|
+
class RecommendationSettings < Struct.new(
|
7033
|
+
:instance_sizing_type,
|
7034
|
+
:workload_type)
|
7035
|
+
SENSITIVE = []
|
7036
|
+
include Aws::Structure
|
7037
|
+
end
|
7038
|
+
|
7039
|
+
# Provides information that defines a Redis target endpoint.
|
8096
7040
|
#
|
8097
7041
|
# @!attribute [rw] server_name
|
8098
7042
|
# Fully qualified domain name of the endpoint.
|
@@ -8154,42 +7098,6 @@ module Aws::DatabaseMigrationService
|
|
8154
7098
|
|
8155
7099
|
# Provides information that defines an Amazon Redshift endpoint.
|
8156
7100
|
#
|
8157
|
-
# @note When making an API call, you may pass RedshiftSettings
|
8158
|
-
# data as a hash:
|
8159
|
-
#
|
8160
|
-
# {
|
8161
|
-
# accept_any_date: false,
|
8162
|
-
# after_connect_script: "String",
|
8163
|
-
# bucket_folder: "String",
|
8164
|
-
# bucket_name: "String",
|
8165
|
-
# case_sensitive_names: false,
|
8166
|
-
# comp_update: false,
|
8167
|
-
# connection_timeout: 1,
|
8168
|
-
# database_name: "String",
|
8169
|
-
# date_format: "String",
|
8170
|
-
# empty_as_null: false,
|
8171
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
8172
|
-
# explicit_ids: false,
|
8173
|
-
# file_transfer_upload_streams: 1,
|
8174
|
-
# load_timeout: 1,
|
8175
|
-
# max_file_size: 1,
|
8176
|
-
# password: "SecretString",
|
8177
|
-
# port: 1,
|
8178
|
-
# remove_quotes: false,
|
8179
|
-
# replace_invalid_chars: "String",
|
8180
|
-
# replace_chars: "String",
|
8181
|
-
# server_name: "String",
|
8182
|
-
# service_access_role_arn: "String",
|
8183
|
-
# server_side_encryption_kms_key_id: "String",
|
8184
|
-
# time_format: "String",
|
8185
|
-
# trim_blanks: false,
|
8186
|
-
# truncate_columns: false,
|
8187
|
-
# username: "String",
|
8188
|
-
# write_buffer_size: 1,
|
8189
|
-
# secrets_manager_access_role_arn: "String",
|
8190
|
-
# secrets_manager_secret_id: "String",
|
8191
|
-
# }
|
8192
|
-
#
|
8193
7101
|
# @!attribute [rw] accept_any_date
|
8194
7102
|
# A value that indicates to allow any date format, including invalid
|
8195
7103
|
# formats such as 00/00/00 00:00:00, to be loaded without generating
|
@@ -8471,14 +7379,6 @@ module Aws::DatabaseMigrationService
|
|
8471
7379
|
include Aws::Structure
|
8472
7380
|
end
|
8473
7381
|
|
8474
|
-
# @note When making an API call, you may pass RefreshSchemasMessage
|
8475
|
-
# data as a hash:
|
8476
|
-
#
|
8477
|
-
# {
|
8478
|
-
# endpoint_arn: "String", # required
|
8479
|
-
# replication_instance_arn: "String", # required
|
8480
|
-
# }
|
8481
|
-
#
|
8482
7382
|
# @!attribute [rw] endpoint_arn
|
8483
7383
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
8484
7384
|
# endpoint.
|
@@ -8545,20 +7445,6 @@ module Aws::DatabaseMigrationService
|
|
8545
7445
|
include Aws::Structure
|
8546
7446
|
end
|
8547
7447
|
|
8548
|
-
# @note When making an API call, you may pass ReloadTablesMessage
|
8549
|
-
# data as a hash:
|
8550
|
-
#
|
8551
|
-
# {
|
8552
|
-
# replication_task_arn: "String", # required
|
8553
|
-
# tables_to_reload: [ # required
|
8554
|
-
# {
|
8555
|
-
# schema_name: "String", # required
|
8556
|
-
# table_name: "String", # required
|
8557
|
-
# },
|
8558
|
-
# ],
|
8559
|
-
# reload_option: "data-reload", # accepts data-reload, validate-only
|
8560
|
-
# }
|
8561
|
-
#
|
8562
7448
|
# @!attribute [rw] replication_task_arn
|
8563
7449
|
# The Amazon Resource Name (ARN) of the replication task.
|
8564
7450
|
# @return [String]
|
@@ -8602,14 +7488,6 @@ module Aws::DatabaseMigrationService
|
|
8602
7488
|
|
8603
7489
|
# Removes one or more tags from an DMS resource.
|
8604
7490
|
#
|
8605
|
-
# @note When making an API call, you may pass RemoveTagsFromResourceMessage
|
8606
|
-
# data as a hash:
|
8607
|
-
#
|
8608
|
-
# {
|
8609
|
-
# resource_arn: "String", # required
|
8610
|
-
# tag_keys: ["String"], # required
|
8611
|
-
# }
|
8612
|
-
#
|
8613
7491
|
# @!attribute [rw] resource_arn
|
8614
7492
|
# An DMS resource from which you want to remove tag(s). The value for
|
8615
7493
|
# this parameter is an Amazon Resource Name (ARN).
|
@@ -9163,7 +8041,7 @@ module Aws::DatabaseMigrationService
|
|
9163
8041
|
# “server\_time:2018-02-09T12:12:12”
|
9164
8042
|
#
|
9165
8043
|
# Commit time example: --cdc-stop-position “commit\_time:
|
9166
|
-
# 2018-02-09T12:12:12
|
8044
|
+
# 2018-02-09T12:12:12“
|
9167
8045
|
# @return [String]
|
9168
8046
|
#
|
9169
8047
|
# @!attribute [rw] recovery_checkpoint
|
@@ -9655,52 +8533,6 @@ module Aws::DatabaseMigrationService
|
|
9655
8533
|
|
9656
8534
|
# Settings for exporting data to Amazon S3.
|
9657
8535
|
#
|
9658
|
-
# @note When making an API call, you may pass S3Settings
|
9659
|
-
# data as a hash:
|
9660
|
-
#
|
9661
|
-
# {
|
9662
|
-
# service_access_role_arn: "String",
|
9663
|
-
# external_table_definition: "String",
|
9664
|
-
# csv_row_delimiter: "String",
|
9665
|
-
# csv_delimiter: "String",
|
9666
|
-
# bucket_folder: "String",
|
9667
|
-
# bucket_name: "String",
|
9668
|
-
# compression_type: "none", # accepts none, gzip
|
9669
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
9670
|
-
# server_side_encryption_kms_key_id: "String",
|
9671
|
-
# data_format: "csv", # accepts csv, parquet
|
9672
|
-
# encoding_type: "plain", # accepts plain, plain-dictionary, rle-dictionary
|
9673
|
-
# dict_page_size_limit: 1,
|
9674
|
-
# row_group_length: 1,
|
9675
|
-
# data_page_size: 1,
|
9676
|
-
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
9677
|
-
# enable_statistics: false,
|
9678
|
-
# include_op_for_full_load: false,
|
9679
|
-
# cdc_inserts_only: false,
|
9680
|
-
# timestamp_column_name: "String",
|
9681
|
-
# parquet_timestamp_in_millisecond: false,
|
9682
|
-
# cdc_inserts_and_updates: false,
|
9683
|
-
# date_partition_enabled: false,
|
9684
|
-
# date_partition_sequence: "YYYYMMDD", # accepts YYYYMMDD, YYYYMMDDHH, YYYYMM, MMYYYYDD, DDMMYYYY
|
9685
|
-
# date_partition_delimiter: "SLASH", # accepts SLASH, UNDERSCORE, DASH, NONE
|
9686
|
-
# use_csv_no_sup_value: false,
|
9687
|
-
# csv_no_sup_value: "String",
|
9688
|
-
# preserve_transactions: false,
|
9689
|
-
# cdc_path: "String",
|
9690
|
-
# use_task_start_time_for_full_load_timestamp: false,
|
9691
|
-
# canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
|
9692
|
-
# add_column_name: false,
|
9693
|
-
# cdc_max_batch_interval: 1,
|
9694
|
-
# cdc_min_file_size: 1,
|
9695
|
-
# csv_null_value: "String",
|
9696
|
-
# ignore_header_rows: 1,
|
9697
|
-
# max_file_size: 1,
|
9698
|
-
# rfc_4180: false,
|
9699
|
-
# date_partition_timezone: "String",
|
9700
|
-
# add_trailing_padding_character: false,
|
9701
|
-
# expected_bucket_owner: "String",
|
9702
|
-
# }
|
9703
|
-
#
|
9704
8536
|
# @!attribute [rw] service_access_role_arn
|
9705
8537
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
9706
8538
|
# role. The role must allow the `iam:PassRole` action. It is a
|
@@ -10460,13 +9292,51 @@ module Aws::DatabaseMigrationService
|
|
10460
9292
|
include Aws::Structure
|
10461
9293
|
end
|
10462
9294
|
|
10463
|
-
#
|
10464
|
-
#
|
9295
|
+
# @!attribute [rw] database_id
|
9296
|
+
# The identifier of the source database to analyze and provide
|
9297
|
+
# recommendations for.
|
9298
|
+
# @return [String]
|
9299
|
+
#
|
9300
|
+
# @!attribute [rw] settings
|
9301
|
+
# The settings in JSON format that Fleet Advisor uses to determine
|
9302
|
+
# target engine recommendations. These parameters include target
|
9303
|
+
# instance sizing and availability and durability settings. For target
|
9304
|
+
# instance sizing, Fleet Advisor supports the following two options:
|
9305
|
+
# total capacity and resource utilization. For availability and
|
9306
|
+
# durability, Fleet Advisor supports the following two options:
|
9307
|
+
# production (Multi-AZ deployments) and Dev/Test (Single-AZ
|
9308
|
+
# deployments).
|
9309
|
+
# @return [Types::RecommendationSettings]
|
9310
|
+
#
|
9311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartRecommendationsRequest AWS API Documentation
|
9312
|
+
#
|
9313
|
+
class StartRecommendationsRequest < Struct.new(
|
9314
|
+
:database_id,
|
9315
|
+
:settings)
|
9316
|
+
SENSITIVE = []
|
9317
|
+
include Aws::Structure
|
9318
|
+
end
|
9319
|
+
|
9320
|
+
# Provides information about the source database to analyze and provide
|
9321
|
+
# target recommendations according to the specified requirements.
|
9322
|
+
#
|
9323
|
+
# @!attribute [rw] database_id
|
9324
|
+
# The identifier of the source database.
|
9325
|
+
# @return [String]
|
9326
|
+
#
|
9327
|
+
# @!attribute [rw] settings
|
9328
|
+
# The required target engine settings.
|
9329
|
+
# @return [Types::RecommendationSettings]
|
10465
9330
|
#
|
10466
|
-
#
|
10467
|
-
# replication_task_arn: "String", # required
|
10468
|
-
# }
|
9331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartRecommendationsRequestEntry AWS API Documentation
|
10469
9332
|
#
|
9333
|
+
class StartRecommendationsRequestEntry < Struct.new(
|
9334
|
+
:database_id,
|
9335
|
+
:settings)
|
9336
|
+
SENSITIVE = []
|
9337
|
+
include Aws::Structure
|
9338
|
+
end
|
9339
|
+
|
10470
9340
|
# @!attribute [rw] replication_task_arn
|
10471
9341
|
# The Amazon Resource Name (ARN) of the replication task.
|
10472
9342
|
# @return [String]
|
@@ -10491,21 +9361,6 @@ module Aws::DatabaseMigrationService
|
|
10491
9361
|
include Aws::Structure
|
10492
9362
|
end
|
10493
9363
|
|
10494
|
-
# @note When making an API call, you may pass StartReplicationTaskAssessmentRunMessage
|
10495
|
-
# data as a hash:
|
10496
|
-
#
|
10497
|
-
# {
|
10498
|
-
# replication_task_arn: "String", # required
|
10499
|
-
# service_access_role_arn: "String", # required
|
10500
|
-
# result_location_bucket: "String", # required
|
10501
|
-
# result_location_folder: "String",
|
10502
|
-
# result_encryption_mode: "String",
|
10503
|
-
# result_kms_key_arn: "String",
|
10504
|
-
# assessment_run_name: "String", # required
|
10505
|
-
# include_only: ["String"],
|
10506
|
-
# exclude: ["String"],
|
10507
|
-
# }
|
10508
|
-
#
|
10509
9364
|
# @!attribute [rw] replication_task_arn
|
10510
9365
|
# Amazon Resource Name (ARN) of the migration task associated with the
|
10511
9366
|
# premigration assessment run that you want to start.
|
@@ -10611,17 +9466,6 @@ module Aws::DatabaseMigrationService
|
|
10611
9466
|
include Aws::Structure
|
10612
9467
|
end
|
10613
9468
|
|
10614
|
-
# @note When making an API call, you may pass StartReplicationTaskMessage
|
10615
|
-
# data as a hash:
|
10616
|
-
#
|
10617
|
-
# {
|
10618
|
-
# replication_task_arn: "String", # required
|
10619
|
-
# start_replication_task_type: "start-replication", # required, accepts start-replication, resume-processing, reload-target
|
10620
|
-
# cdc_start_time: Time.now,
|
10621
|
-
# cdc_start_position: "String",
|
10622
|
-
# cdc_stop_position: "String",
|
10623
|
-
# }
|
10624
|
-
#
|
10625
9469
|
# @!attribute [rw] replication_task_arn
|
10626
9470
|
# The Amazon Resource Name (ARN) of the replication task to be
|
10627
9471
|
# started.
|
@@ -10632,13 +9476,20 @@ module Aws::DatabaseMigrationService
|
|
10632
9476
|
#
|
10633
9477
|
# When the migration type is `full-load` or `full-load-and-cdc`, the
|
10634
9478
|
# only valid value for the first run of the task is
|
10635
|
-
# `start-replication`.
|
10636
|
-
#
|
9479
|
+
# `start-replication`. This option will start the migration.
|
9480
|
+
#
|
9481
|
+
# You can also use ReloadTables to reload specific tables that failed
|
9482
|
+
# during migration instead of restarting the task.
|
9483
|
+
#
|
9484
|
+
# The `resume-processing` option isn't applicable for a full-load
|
9485
|
+
# task, because you can't resume partially loaded tables during the
|
9486
|
+
# full load phase.
|
10637
9487
|
#
|
10638
|
-
#
|
10639
|
-
#
|
10640
|
-
#
|
10641
|
-
#
|
9488
|
+
# For a `full-load-and-cdc` task, DMS migrates table data, and then
|
9489
|
+
# applies data changes that occur on the source. To load all the
|
9490
|
+
# tables again, and start capturing source changes, use
|
9491
|
+
# `reload-target`. Otherwise use `resume-processing`, to replicate the
|
9492
|
+
# changes from the last stop position.
|
10642
9493
|
# @return [String]
|
10643
9494
|
#
|
10644
9495
|
# @!attribute [rw] cdc_start_time
|
@@ -10687,7 +9538,7 @@ module Aws::DatabaseMigrationService
|
|
10687
9538
|
# “server\_time:2018-02-09T12:12:12”
|
10688
9539
|
#
|
10689
9540
|
# Commit time example: --cdc-stop-position “commit\_time:
|
10690
|
-
# 2018-02-09T12:12:12
|
9541
|
+
# 2018-02-09T12:12:12“
|
10691
9542
|
# @return [String]
|
10692
9543
|
#
|
10693
9544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskMessage AWS API Documentation
|
@@ -10714,13 +9565,6 @@ module Aws::DatabaseMigrationService
|
|
10714
9565
|
include Aws::Structure
|
10715
9566
|
end
|
10716
9567
|
|
10717
|
-
# @note When making an API call, you may pass StopReplicationTaskMessage
|
10718
|
-
# data as a hash:
|
10719
|
-
#
|
10720
|
-
# {
|
10721
|
-
# replication_task_arn: "String", # required
|
10722
|
-
# }
|
10723
|
-
#
|
10724
9568
|
# @!attribute [rw] replication_task_arn
|
10725
9569
|
# The Amazon Resource Name(ARN) of the replication task to be stopped.
|
10726
9570
|
# @return [String]
|
@@ -10845,19 +9689,6 @@ module Aws::DatabaseMigrationService
|
|
10845
9689
|
|
10846
9690
|
# Provides information that defines a SAP ASE endpoint.
|
10847
9691
|
#
|
10848
|
-
# @note When making an API call, you may pass SybaseSettings
|
10849
|
-
# data as a hash:
|
10850
|
-
#
|
10851
|
-
# {
|
10852
|
-
# database_name: "String",
|
10853
|
-
# password: "SecretString",
|
10854
|
-
# port: 1,
|
10855
|
-
# server_name: "String",
|
10856
|
-
# username: "String",
|
10857
|
-
# secrets_manager_access_role_arn: "String",
|
10858
|
-
# secrets_manager_secret_id: "String",
|
10859
|
-
# }
|
10860
|
-
#
|
10861
9692
|
# @!attribute [rw] database_name
|
10862
9693
|
# Database name for the endpoint.
|
10863
9694
|
# @return [String]
|
@@ -11094,14 +9925,6 @@ module Aws::DatabaseMigrationService
|
|
11094
9925
|
|
11095
9926
|
# Provides the name of the schema and table to be reloaded.
|
11096
9927
|
#
|
11097
|
-
# @note When making an API call, you may pass TableToReload
|
11098
|
-
# data as a hash:
|
11099
|
-
#
|
11100
|
-
# {
|
11101
|
-
# schema_name: "String", # required
|
11102
|
-
# table_name: "String", # required
|
11103
|
-
# }
|
11104
|
-
#
|
11105
9928
|
# @!attribute [rw] schema_name
|
11106
9929
|
# The schema name of the table to be reloaded.
|
11107
9930
|
# @return [String]
|
@@ -11128,15 +9951,6 @@ module Aws::DatabaseMigrationService
|
|
11128
9951
|
#
|
11129
9952
|
# * `RemoveTagsFromResource`
|
11130
9953
|
#
|
11131
|
-
# @note When making an API call, you may pass Tag
|
11132
|
-
# data as a hash:
|
11133
|
-
#
|
11134
|
-
# {
|
11135
|
-
# key: "String",
|
11136
|
-
# value: "String",
|
11137
|
-
# resource_arn: "String",
|
11138
|
-
# }
|
11139
|
-
#
|
11140
9954
|
# @!attribute [rw] key
|
11141
9955
|
# A key is the required name of the tag. The string value can be 1-128
|
11142
9956
|
# Unicode characters in length and can't be prefixed with "aws:" or
|
@@ -11170,14 +9984,6 @@ module Aws::DatabaseMigrationService
|
|
11170
9984
|
include Aws::Structure
|
11171
9985
|
end
|
11172
9986
|
|
11173
|
-
# @note When making an API call, you may pass TestConnectionMessage
|
11174
|
-
# data as a hash:
|
11175
|
-
#
|
11176
|
-
# {
|
11177
|
-
# replication_instance_arn: "String", # required
|
11178
|
-
# endpoint_arn: "String", # required
|
11179
|
-
# }
|
11180
|
-
#
|
11181
9987
|
# @!attribute [rw] replication_instance_arn
|
11182
9988
|
# The Amazon Resource Name (ARN) of the replication instance.
|
11183
9989
|
# @return [String]
|
@@ -11208,13 +10014,6 @@ module Aws::DatabaseMigrationService
|
|
11208
10014
|
include Aws::Structure
|
11209
10015
|
end
|
11210
10016
|
|
11211
|
-
# @note When making an API call, you may pass UpdateSubscriptionsToEventBridgeMessage
|
11212
|
-
# data as a hash:
|
11213
|
-
#
|
11214
|
-
# {
|
11215
|
-
# force_move: false,
|
11216
|
-
# }
|
11217
|
-
#
|
11218
10017
|
# @!attribute [rw] force_move
|
11219
10018
|
# When set to true, this operation migrates DMS subscriptions for
|
11220
10019
|
# Amazon SNS notifications no matter what your replication instance
|