aws-sdk-databasemigrationservice 1.74.0 → 1.75.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 +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +1 -1
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +56 -127
- data/lib/aws-sdk-databasemigrationservice/types.rb +0 -1760
- 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,6 @@ module Aws::DatabaseMigrationService
|
|
172
149
|
include Aws::Structure
|
173
150
|
end
|
174
151
|
|
175
|
-
# @note When making an API call, you may pass CancelReplicationTaskAssessmentRunMessage
|
176
|
-
# data as a hash:
|
177
|
-
#
|
178
|
-
# {
|
179
|
-
# replication_task_assessment_run_arn: "String", # required
|
180
|
-
# }
|
181
|
-
#
|
182
152
|
# @!attribute [rw] replication_task_assessment_run_arn
|
183
153
|
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
184
154
|
# canceled.
|
@@ -466,335 +436,6 @@ module Aws::DatabaseMigrationService
|
|
466
436
|
include Aws::Structure
|
467
437
|
end
|
468
438
|
|
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
439
|
# @!attribute [rw] endpoint_identifier
|
799
440
|
# The database endpoint identifier. Identifiers must begin with a
|
800
441
|
# letter and must contain only ASCII letters, digits, and hyphens.
|
@@ -1142,25 +783,6 @@ module Aws::DatabaseMigrationService
|
|
1142
783
|
include Aws::Structure
|
1143
784
|
end
|
1144
785
|
|
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
786
|
# @!attribute [rw] subscription_name
|
1165
787
|
# The name of the DMS event notification subscription. This name must
|
1166
788
|
# be less than 255 characters.
|
@@ -1237,16 +859,6 @@ module Aws::DatabaseMigrationService
|
|
1237
859
|
include Aws::Structure
|
1238
860
|
end
|
1239
861
|
|
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
862
|
# @!attribute [rw] collector_name
|
1251
863
|
# The name of your Fleet Advisor collector (for example,
|
1252
864
|
# `sample-collector`).
|
@@ -1312,34 +924,6 @@ module Aws::DatabaseMigrationService
|
|
1312
924
|
include Aws::Structure
|
1313
925
|
end
|
1314
926
|
|
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
927
|
# @!attribute [rw] replication_instance_identifier
|
1344
928
|
# The replication instance identifier. This parameter is stored as a
|
1345
929
|
# lowercase string.
|
@@ -1516,22 +1100,6 @@ module Aws::DatabaseMigrationService
|
|
1516
1100
|
include Aws::Structure
|
1517
1101
|
end
|
1518
1102
|
|
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
1103
|
# @!attribute [rw] replication_subnet_group_identifier
|
1536
1104
|
# The name for the replication subnet group. This value is stored as a
|
1537
1105
|
# lowercase string.
|
@@ -1577,31 +1145,6 @@ module Aws::DatabaseMigrationService
|
|
1577
1145
|
include Aws::Structure
|
1578
1146
|
end
|
1579
1147
|
|
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
1148
|
# @!attribute [rw] replication_task_identifier
|
1606
1149
|
# An identifier for the replication task.
|
1607
1150
|
#
|
@@ -1889,13 +1432,6 @@ module Aws::DatabaseMigrationService
|
|
1889
1432
|
include Aws::Structure
|
1890
1433
|
end
|
1891
1434
|
|
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
1435
|
# @!attribute [rw] certificate_arn
|
1900
1436
|
# The Amazon Resource Name (ARN) of the certificate.
|
1901
1437
|
# @return [String]
|
@@ -1920,13 +1456,6 @@ module Aws::DatabaseMigrationService
|
|
1920
1456
|
include Aws::Structure
|
1921
1457
|
end
|
1922
1458
|
|
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
1459
|
# @!attribute [rw] collector_referenced_id
|
1931
1460
|
# The reference ID of the Fleet Advisor collector to delete.
|
1932
1461
|
# @return [String]
|
@@ -1939,14 +1468,6 @@ module Aws::DatabaseMigrationService
|
|
1939
1468
|
include Aws::Structure
|
1940
1469
|
end
|
1941
1470
|
|
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
1471
|
# @!attribute [rw] endpoint_arn
|
1951
1472
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1952
1473
|
# endpoint.
|
@@ -1977,13 +1498,6 @@ module Aws::DatabaseMigrationService
|
|
1977
1498
|
include Aws::Structure
|
1978
1499
|
end
|
1979
1500
|
|
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
1501
|
# @!attribute [rw] endpoint_arn
|
1988
1502
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1989
1503
|
# endpoint.
|
@@ -2009,13 +1523,6 @@ module Aws::DatabaseMigrationService
|
|
2009
1523
|
include Aws::Structure
|
2010
1524
|
end
|
2011
1525
|
|
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
1526
|
# @!attribute [rw] subscription_name
|
2020
1527
|
# The name of the DMS event notification subscription to be deleted.
|
2021
1528
|
# @return [String]
|
@@ -2040,13 +1547,6 @@ module Aws::DatabaseMigrationService
|
|
2040
1547
|
include Aws::Structure
|
2041
1548
|
end
|
2042
1549
|
|
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
1550
|
# @!attribute [rw] database_ids
|
2051
1551
|
# The IDs of the Fleet Advisor collector databases to delete.
|
2052
1552
|
# @return [Array<String>]
|
@@ -2071,13 +1571,6 @@ module Aws::DatabaseMigrationService
|
|
2071
1571
|
include Aws::Structure
|
2072
1572
|
end
|
2073
1573
|
|
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
1574
|
# @!attribute [rw] replication_instance_arn
|
2082
1575
|
# The Amazon Resource Name (ARN) of the replication instance to be
|
2083
1576
|
# deleted.
|
@@ -2103,13 +1596,6 @@ module Aws::DatabaseMigrationService
|
|
2103
1596
|
include Aws::Structure
|
2104
1597
|
end
|
2105
1598
|
|
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
1599
|
# @!attribute [rw] replication_subnet_group_identifier
|
2114
1600
|
# The subnet group name of the replication instance.
|
2115
1601
|
# @return [String]
|
@@ -2126,13 +1612,6 @@ module Aws::DatabaseMigrationService
|
|
2126
1612
|
#
|
2127
1613
|
class DeleteReplicationSubnetGroupResponse < Aws::EmptyStructure; end
|
2128
1614
|
|
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
1615
|
# @!attribute [rw] replication_task_assessment_run_arn
|
2137
1616
|
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
2138
1617
|
# deleted.
|
@@ -2159,13 +1638,6 @@ module Aws::DatabaseMigrationService
|
|
2159
1638
|
include Aws::Structure
|
2160
1639
|
end
|
2161
1640
|
|
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
1641
|
# @!attribute [rw] replication_task_arn
|
2170
1642
|
# The Amazon Resource Name (ARN) of the replication task to be
|
2171
1643
|
# deleted.
|
@@ -2226,19 +1698,6 @@ module Aws::DatabaseMigrationService
|
|
2226
1698
|
include Aws::Structure
|
2227
1699
|
end
|
2228
1700
|
|
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
1701
|
# @!attribute [rw] replication_task_arn
|
2243
1702
|
# Amazon Resource Name (ARN) of a migration task on which you want to
|
2244
1703
|
# base the default list of individual assessments.
|
@@ -2320,20 +1779,6 @@ module Aws::DatabaseMigrationService
|
|
2320
1779
|
include Aws::Structure
|
2321
1780
|
end
|
2322
1781
|
|
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
1782
|
# @!attribute [rw] filters
|
2338
1783
|
# Filters applied to the certificates described in the form of
|
2339
1784
|
# key-value pairs. Valid values are `certificate-arn` and
|
@@ -2383,20 +1828,6 @@ module Aws::DatabaseMigrationService
|
|
2383
1828
|
include Aws::Structure
|
2384
1829
|
end
|
2385
1830
|
|
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
1831
|
# @!attribute [rw] filters
|
2401
1832
|
# The filters applied to the connection.
|
2402
1833
|
#
|
@@ -2449,15 +1880,6 @@ module Aws::DatabaseMigrationService
|
|
2449
1880
|
include Aws::Structure
|
2450
1881
|
end
|
2451
1882
|
|
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
1883
|
# @!attribute [rw] engine_name
|
2462
1884
|
# The databse engine used for your source or target endpoint.
|
2463
1885
|
# @return [String]
|
@@ -2505,20 +1927,6 @@ module Aws::DatabaseMigrationService
|
|
2505
1927
|
include Aws::Structure
|
2506
1928
|
end
|
2507
1929
|
|
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
1930
|
# @!attribute [rw] filters
|
2523
1931
|
# Filters applied to the endpoint types.
|
2524
1932
|
#
|
@@ -2571,20 +1979,6 @@ module Aws::DatabaseMigrationService
|
|
2571
1979
|
include Aws::Structure
|
2572
1980
|
end
|
2573
1981
|
|
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
1982
|
# @!attribute [rw] filters
|
2589
1983
|
# Filters applied to the endpoints.
|
2590
1984
|
#
|
@@ -2638,19 +2032,6 @@ module Aws::DatabaseMigrationService
|
|
2638
2032
|
include Aws::Structure
|
2639
2033
|
end
|
2640
2034
|
|
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
2035
|
# @!attribute [rw] source_type
|
2655
2036
|
# The type of DMS resource that generates events.
|
2656
2037
|
#
|
@@ -2682,21 +2063,6 @@ module Aws::DatabaseMigrationService
|
|
2682
2063
|
include Aws::Structure
|
2683
2064
|
end
|
2684
2065
|
|
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
2066
|
# @!attribute [rw] subscription_name
|
2701
2067
|
# The name of the DMS event subscription to be described.
|
2702
2068
|
# @return [String]
|
@@ -2754,26 +2120,6 @@ module Aws::DatabaseMigrationService
|
|
2754
2120
|
include Aws::Structure
|
2755
2121
|
end
|
2756
2122
|
|
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
2123
|
# @!attribute [rw] source_identifier
|
2778
2124
|
# The identifier of an event source.
|
2779
2125
|
# @return [String]
|
@@ -2857,20 +2203,6 @@ module Aws::DatabaseMigrationService
|
|
2857
2203
|
include Aws::Structure
|
2858
2204
|
end
|
2859
2205
|
|
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
2206
|
# @!attribute [rw] filters
|
2875
2207
|
# If you specify any of the following filters, the output includes
|
2876
2208
|
# information for only those collectors that meet the filter criteria:
|
@@ -2926,20 +2258,6 @@ module Aws::DatabaseMigrationService
|
|
2926
2258
|
include Aws::Structure
|
2927
2259
|
end
|
2928
2260
|
|
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
2261
|
# @!attribute [rw] filters
|
2944
2262
|
# If you specify any of the following filters, the output includes
|
2945
2263
|
# information for only those databases that meet the filter criteria:
|
@@ -3003,14 +2321,6 @@ module Aws::DatabaseMigrationService
|
|
3003
2321
|
include Aws::Structure
|
3004
2322
|
end
|
3005
2323
|
|
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
2324
|
# @!attribute [rw] max_records
|
3015
2325
|
# Sets the maximum number of records returned in the response.
|
3016
2326
|
# @return [Integer]
|
@@ -3051,20 +2361,6 @@ module Aws::DatabaseMigrationService
|
|
3051
2361
|
include Aws::Structure
|
3052
2362
|
end
|
3053
2363
|
|
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
2364
|
# @!attribute [rw] filters
|
3069
2365
|
# If you specify any of the following filters, the output includes
|
3070
2366
|
# information for only those schema objects that meet the filter
|
@@ -3120,20 +2416,6 @@ module Aws::DatabaseMigrationService
|
|
3120
2416
|
include Aws::Structure
|
3121
2417
|
end
|
3122
2418
|
|
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
2419
|
# @!attribute [rw] filters
|
3138
2420
|
# If you specify any of the following filters, the output includes
|
3139
2421
|
# information for only those schemas that meet the filter criteria:
|
@@ -3203,14 +2485,6 @@ module Aws::DatabaseMigrationService
|
|
3203
2485
|
include Aws::Structure
|
3204
2486
|
end
|
3205
2487
|
|
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
2488
|
# @!attribute [rw] max_records
|
3215
2489
|
# The maximum number of records to include in the response. If more
|
3216
2490
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -3256,21 +2530,6 @@ module Aws::DatabaseMigrationService
|
|
3256
2530
|
include Aws::Structure
|
3257
2531
|
end
|
3258
2532
|
|
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
2533
|
# @!attribute [rw] replication_instance_arn
|
3275
2534
|
# The Amazon Resource Name (ARN) of the replication instance.
|
3276
2535
|
# @return [String]
|
@@ -3325,13 +2584,6 @@ module Aws::DatabaseMigrationService
|
|
3325
2584
|
include Aws::Structure
|
3326
2585
|
end
|
3327
2586
|
|
3328
|
-
# @note When making an API call, you may pass DescribeRefreshSchemasStatusMessage
|
3329
|
-
# data as a hash:
|
3330
|
-
#
|
3331
|
-
# {
|
3332
|
-
# endpoint_arn: "String", # required
|
3333
|
-
# }
|
3334
|
-
#
|
3335
2587
|
# @!attribute [rw] endpoint_arn
|
3336
2588
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3337
2589
|
# endpoint.
|
@@ -3357,15 +2609,6 @@ module Aws::DatabaseMigrationService
|
|
3357
2609
|
include Aws::Structure
|
3358
2610
|
end
|
3359
2611
|
|
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
2612
|
# @!attribute [rw] replication_instance_arn
|
3370
2613
|
# The Amazon Resource Name (ARN) of the replication instance.
|
3371
2614
|
# @return [String]
|
@@ -3423,20 +2666,6 @@ module Aws::DatabaseMigrationService
|
|
3423
2666
|
include Aws::Structure
|
3424
2667
|
end
|
3425
2668
|
|
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
2669
|
# @!attribute [rw] filters
|
3441
2670
|
# Filters applied to replication instances.
|
3442
2671
|
#
|
@@ -3491,20 +2720,6 @@ module Aws::DatabaseMigrationService
|
|
3491
2720
|
include Aws::Structure
|
3492
2721
|
end
|
3493
2722
|
|
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
2723
|
# @!attribute [rw] filters
|
3509
2724
|
# Filters applied to replication subnet groups.
|
3510
2725
|
#
|
@@ -3557,15 +2772,6 @@ module Aws::DatabaseMigrationService
|
|
3557
2772
|
include Aws::Structure
|
3558
2773
|
end
|
3559
2774
|
|
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
2775
|
# @!attribute [rw] replication_task_arn
|
3570
2776
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3571
2777
|
# task. When this input parameter is specified, the API returns only
|
@@ -3624,20 +2830,6 @@ module Aws::DatabaseMigrationService
|
|
3624
2830
|
include Aws::Structure
|
3625
2831
|
end
|
3626
2832
|
|
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
2833
|
# @!attribute [rw] filters
|
3642
2834
|
# Filters applied to the premigration assessment runs described in the
|
3643
2835
|
# form of key-value pairs.
|
@@ -3689,20 +2881,6 @@ module Aws::DatabaseMigrationService
|
|
3689
2881
|
include Aws::Structure
|
3690
2882
|
end
|
3691
2883
|
|
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
2884
|
# @!attribute [rw] filters
|
3707
2885
|
# Filters applied to the individual assessments described in the form
|
3708
2886
|
# of key-value pairs.
|
@@ -3754,21 +2932,6 @@ module Aws::DatabaseMigrationService
|
|
3754
2932
|
include Aws::Structure
|
3755
2933
|
end
|
3756
2934
|
|
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
2935
|
# @!attribute [rw] filters
|
3773
2936
|
# Filters applied to replication tasks.
|
3774
2937
|
#
|
@@ -3830,15 +2993,6 @@ module Aws::DatabaseMigrationService
|
|
3830
2993
|
include Aws::Structure
|
3831
2994
|
end
|
3832
2995
|
|
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
2996
|
# @!attribute [rw] endpoint_arn
|
3843
2997
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3844
2998
|
# endpoint.
|
@@ -3890,21 +3044,6 @@ module Aws::DatabaseMigrationService
|
|
3890
3044
|
include Aws::Structure
|
3891
3045
|
end
|
3892
3046
|
|
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
3047
|
# @!attribute [rw] replication_task_arn
|
3909
3048
|
# The Amazon Resource Name (ARN) of the replication task.
|
3910
3049
|
# @return [String]
|
@@ -3972,14 +3111,6 @@ module Aws::DatabaseMigrationService
|
|
3972
3111
|
|
3973
3112
|
# The settings in JSON format for the DMS Transfer type source endpoint.
|
3974
3113
|
#
|
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
3114
|
# @!attribute [rw] service_access_role_arn
|
3984
3115
|
# The Amazon Resource Name (ARN) used by the service access IAM role.
|
3985
3116
|
# The role must allow the `iam:PassRole` action.
|
@@ -4000,23 +3131,6 @@ module Aws::DatabaseMigrationService
|
|
4000
3131
|
|
4001
3132
|
# Provides information that defines a DocumentDB endpoint.
|
4002
3133
|
#
|
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
3134
|
# @!attribute [rw] username
|
4021
3135
|
# The user name you use to access the DocumentDB source endpoint.
|
4022
3136
|
# @return [String]
|
@@ -4122,13 +3236,6 @@ module Aws::DatabaseMigrationService
|
|
4122
3236
|
# Management (IAM) role used to define an Amazon DynamoDB target
|
4123
3237
|
# endpoint.
|
4124
3238
|
#
|
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
3239
|
# @!attribute [rw] service_access_role_arn
|
4133
3240
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
4134
3241
|
# role. The role must allow the `iam:PassRole` action.
|
@@ -4144,17 +3251,6 @@ module Aws::DatabaseMigrationService
|
|
4144
3251
|
|
4145
3252
|
# Provides information that defines an OpenSearch endpoint.
|
4146
3253
|
#
|
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
3254
|
# @!attribute [rw] service_access_role_arn
|
4159
3255
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
4160
3256
|
# role. The role must allow the `iam:PassRole` action.
|
@@ -4627,14 +3723,6 @@ module Aws::DatabaseMigrationService
|
|
4627
3723
|
# particular `Describe*` call or similar operation. Filters are used as
|
4628
3724
|
# an optional parameter for certain API operations.
|
4629
3725
|
#
|
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
3726
|
# @!attribute [rw] name
|
4639
3727
|
# The name of the filter as specified for a `Describe*` or similar
|
4640
3728
|
# operation.
|
@@ -4722,26 +3810,6 @@ module Aws::DatabaseMigrationService
|
|
4722
3810
|
|
4723
3811
|
# Settings in JSON format for the source GCP MySQL endpoint.
|
4724
3812
|
#
|
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
3813
|
# @!attribute [rw] after_connect_script
|
4746
3814
|
# Specifies a script to run immediately after DMS connects to the
|
4747
3815
|
# endpoint. The migration task continues running regardless if the SQL
|
@@ -4881,22 +3949,6 @@ module Aws::DatabaseMigrationService
|
|
4881
3949
|
|
4882
3950
|
# Provides information that defines an IBM Db2 LUW endpoint.
|
4883
3951
|
#
|
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
3952
|
# @!attribute [rw] database_name
|
4901
3953
|
# Database name for the endpoint.
|
4902
3954
|
# @return [String]
|
@@ -4980,22 +4032,6 @@ module Aws::DatabaseMigrationService
|
|
4980
4032
|
include Aws::Structure
|
4981
4033
|
end
|
4982
4034
|
|
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
4035
|
# @!attribute [rw] certificate_identifier
|
5000
4036
|
# A customer-assigned name for the certificate. Identifiers must begin
|
5001
4037
|
# with a letter and must contain only ASCII letters, digits, and
|
@@ -5224,30 +4260,6 @@ module Aws::DatabaseMigrationService
|
|
5224
4260
|
# endpoint and details of transaction and control table data
|
5225
4261
|
# information.
|
5226
4262
|
#
|
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
4263
|
# @!attribute [rw] broker
|
5252
4264
|
# A comma-separated list of one or more broker locations in your Kafka
|
5253
4265
|
# cluster that host your Kafka instance. Specify each broker location
|
@@ -5398,22 +4410,6 @@ module Aws::DatabaseMigrationService
|
|
5398
4410
|
# applied to the endpoint and details of transaction and control table
|
5399
4411
|
# data information.
|
5400
4412
|
#
|
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
4413
|
# @!attribute [rw] stream_arn
|
5418
4414
|
# The Amazon Resource Name (ARN) for the Amazon Kinesis Data Streams
|
5419
4415
|
# endpoint.
|
@@ -5498,14 +4494,6 @@ module Aws::DatabaseMigrationService
|
|
5498
4494
|
include Aws::Structure
|
5499
4495
|
end
|
5500
4496
|
|
5501
|
-
# @note When making an API call, you may pass ListTagsForResourceMessage
|
5502
|
-
# data as a hash:
|
5503
|
-
#
|
5504
|
-
# {
|
5505
|
-
# resource_arn: "String",
|
5506
|
-
# resource_arn_list: ["String"],
|
5507
|
-
# }
|
5508
|
-
#
|
5509
4497
|
# @!attribute [rw] resource_arn
|
5510
4498
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
5511
4499
|
# DMS resource to list tags for. This returns a list of keys (names of
|
@@ -5543,27 +4531,6 @@ module Aws::DatabaseMigrationService
|
|
5543
4531
|
|
5544
4532
|
# Provides information that defines a Microsoft SQL Server endpoint.
|
5545
4533
|
#
|
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
4534
|
# @!attribute [rw] port
|
5568
4535
|
# Endpoint TCP port.
|
5569
4536
|
# @return [Integer]
|
@@ -5705,328 +4672,6 @@ module Aws::DatabaseMigrationService
|
|
5705
4672
|
include Aws::Structure
|
5706
4673
|
end
|
5707
4674
|
|
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
4675
|
# @!attribute [rw] endpoint_arn
|
6031
4676
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
6032
4677
|
# endpoint.
|
@@ -6371,17 +5016,6 @@ module Aws::DatabaseMigrationService
|
|
6371
5016
|
include Aws::Structure
|
6372
5017
|
end
|
6373
5018
|
|
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
5019
|
# @!attribute [rw] subscription_name
|
6386
5020
|
# The name of the DMS event notification subscription to be modified.
|
6387
5021
|
# @return [String]
|
@@ -6433,24 +5067,6 @@ module Aws::DatabaseMigrationService
|
|
6433
5067
|
include Aws::Structure
|
6434
5068
|
end
|
6435
5069
|
|
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
5070
|
# @!attribute [rw] replication_instance_arn
|
6455
5071
|
# The Amazon Resource Name (ARN) of the replication instance.
|
6456
5072
|
# @return [String]
|
@@ -6585,15 +5201,6 @@ module Aws::DatabaseMigrationService
|
|
6585
5201
|
include Aws::Structure
|
6586
5202
|
end
|
6587
5203
|
|
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
5204
|
# @!attribute [rw] replication_subnet_group_identifier
|
6598
5205
|
# The name of the replication instance subnet group.
|
6599
5206
|
# @return [String]
|
@@ -6628,21 +5235,6 @@ module Aws::DatabaseMigrationService
|
|
6628
5235
|
include Aws::Structure
|
6629
5236
|
end
|
6630
5237
|
|
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
5238
|
# @!attribute [rw] replication_task_arn
|
6647
5239
|
# The Amazon Resource Name (ARN) of the replication task.
|
6648
5240
|
# @return [String]
|
@@ -6766,26 +5358,6 @@ module Aws::DatabaseMigrationService
|
|
6766
5358
|
|
6767
5359
|
# Provides information that defines a MongoDB endpoint.
|
6768
5360
|
#
|
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
5361
|
# @!attribute [rw] username
|
6790
5362
|
# The user name you use to access the MongoDB source endpoint.
|
6791
5363
|
# @return [String]
|
@@ -6915,14 +5487,6 @@ module Aws::DatabaseMigrationService
|
|
6915
5487
|
include Aws::Structure
|
6916
5488
|
end
|
6917
5489
|
|
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
5490
|
# @!attribute [rw] replication_task_arn
|
6927
5491
|
# The Amazon Resource Name (ARN) of the task that you want to move.
|
6928
5492
|
# @return [String]
|
@@ -6955,26 +5519,6 @@ module Aws::DatabaseMigrationService
|
|
6955
5519
|
|
6956
5520
|
# Provides information that defines a MySQL endpoint.
|
6957
5521
|
#
|
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
5522
|
# @!attribute [rw] after_connect_script
|
6979
5523
|
# Specifies a script to run immediately after DMS connects to the
|
6980
5524
|
# endpoint. The migration task continues running regardless if the SQL
|
@@ -7117,19 +5661,6 @@ module Aws::DatabaseMigrationService
|
|
7117
5661
|
|
7118
5662
|
# Provides information that defines an Amazon Neptune endpoint.
|
7119
5663
|
#
|
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
5664
|
# @!attribute [rw] service_access_role_arn
|
7134
5665
|
# The Amazon Resource Name (ARN) of the service role that you created
|
7135
5666
|
# for the Neptune target endpoint. The role must allow the
|
@@ -7197,53 +5728,6 @@ module Aws::DatabaseMigrationService
|
|
7197
5728
|
|
7198
5729
|
# Provides information that defines an Oracle endpoint.
|
7199
5730
|
#
|
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
5731
|
# @!attribute [rw] add_supplemental_logging
|
7248
5732
|
# Set this attribute to set up table-level supplemental logging for
|
7249
5733
|
# the Oracle database. This attribute enables PRIMARY KEY supplemental
|
@@ -7828,31 +6312,6 @@ module Aws::DatabaseMigrationService
|
|
7828
6312
|
|
7829
6313
|
# Provides information that defines a PostgreSQL endpoint.
|
7830
6314
|
#
|
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
6315
|
# @!attribute [rw] after_connect_script
|
7857
6316
|
# For use with change data capture (CDC) only, this attribute has DMS
|
7858
6317
|
# bypass foreign keys and user triggers to reduce the time it takes to
|
@@ -8028,15 +6487,6 @@ module Aws::DatabaseMigrationService
|
|
8028
6487
|
include Aws::Structure
|
8029
6488
|
end
|
8030
6489
|
|
8031
|
-
# @note When making an API call, you may pass RebootReplicationInstanceMessage
|
8032
|
-
# data as a hash:
|
8033
|
-
#
|
8034
|
-
# {
|
8035
|
-
# replication_instance_arn: "String", # required
|
8036
|
-
# force_failover: false,
|
8037
|
-
# force_planned_failover: false,
|
8038
|
-
# }
|
8039
|
-
#
|
8040
6490
|
# @!attribute [rw] replication_instance_arn
|
8041
6491
|
# The Amazon Resource Name (ARN) of the replication instance.
|
8042
6492
|
# @return [String]
|
@@ -8081,19 +6531,6 @@ module Aws::DatabaseMigrationService
|
|
8081
6531
|
|
8082
6532
|
# Provides information that defines a Redis target endpoint.
|
8083
6533
|
#
|
8084
|
-
# @note When making an API call, you may pass RedisSettings
|
8085
|
-
# data as a hash:
|
8086
|
-
#
|
8087
|
-
# {
|
8088
|
-
# server_name: "String", # required
|
8089
|
-
# port: 1, # required
|
8090
|
-
# ssl_security_protocol: "plaintext", # accepts plaintext, ssl-encryption
|
8091
|
-
# auth_type: "none", # accepts none, auth-role, auth-token
|
8092
|
-
# auth_user_name: "String",
|
8093
|
-
# auth_password: "SecretString",
|
8094
|
-
# ssl_ca_certificate_arn: "String",
|
8095
|
-
# }
|
8096
|
-
#
|
8097
6534
|
# @!attribute [rw] server_name
|
8098
6535
|
# Fully qualified domain name of the endpoint.
|
8099
6536
|
# @return [String]
|
@@ -8154,42 +6591,6 @@ module Aws::DatabaseMigrationService
|
|
8154
6591
|
|
8155
6592
|
# Provides information that defines an Amazon Redshift endpoint.
|
8156
6593
|
#
|
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
6594
|
# @!attribute [rw] accept_any_date
|
8194
6595
|
# A value that indicates to allow any date format, including invalid
|
8195
6596
|
# formats such as 00/00/00 00:00:00, to be loaded without generating
|
@@ -8471,14 +6872,6 @@ module Aws::DatabaseMigrationService
|
|
8471
6872
|
include Aws::Structure
|
8472
6873
|
end
|
8473
6874
|
|
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
6875
|
# @!attribute [rw] endpoint_arn
|
8483
6876
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
8484
6877
|
# endpoint.
|
@@ -8545,20 +6938,6 @@ module Aws::DatabaseMigrationService
|
|
8545
6938
|
include Aws::Structure
|
8546
6939
|
end
|
8547
6940
|
|
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
6941
|
# @!attribute [rw] replication_task_arn
|
8563
6942
|
# The Amazon Resource Name (ARN) of the replication task.
|
8564
6943
|
# @return [String]
|
@@ -8602,14 +6981,6 @@ module Aws::DatabaseMigrationService
|
|
8602
6981
|
|
8603
6982
|
# Removes one or more tags from an DMS resource.
|
8604
6983
|
#
|
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
6984
|
# @!attribute [rw] resource_arn
|
8614
6985
|
# An DMS resource from which you want to remove tag(s). The value for
|
8615
6986
|
# this parameter is an Amazon Resource Name (ARN).
|
@@ -9655,52 +8026,6 @@ module Aws::DatabaseMigrationService
|
|
9655
8026
|
|
9656
8027
|
# Settings for exporting data to Amazon S3.
|
9657
8028
|
#
|
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
8029
|
# @!attribute [rw] service_access_role_arn
|
9705
8030
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
9706
8031
|
# role. The role must allow the `iam:PassRole` action. It is a
|
@@ -10460,13 +8785,6 @@ module Aws::DatabaseMigrationService
|
|
10460
8785
|
include Aws::Structure
|
10461
8786
|
end
|
10462
8787
|
|
10463
|
-
# @note When making an API call, you may pass StartReplicationTaskAssessmentMessage
|
10464
|
-
# data as a hash:
|
10465
|
-
#
|
10466
|
-
# {
|
10467
|
-
# replication_task_arn: "String", # required
|
10468
|
-
# }
|
10469
|
-
#
|
10470
8788
|
# @!attribute [rw] replication_task_arn
|
10471
8789
|
# The Amazon Resource Name (ARN) of the replication task.
|
10472
8790
|
# @return [String]
|
@@ -10491,21 +8809,6 @@ module Aws::DatabaseMigrationService
|
|
10491
8809
|
include Aws::Structure
|
10492
8810
|
end
|
10493
8811
|
|
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
8812
|
# @!attribute [rw] replication_task_arn
|
10510
8813
|
# Amazon Resource Name (ARN) of the migration task associated with the
|
10511
8814
|
# premigration assessment run that you want to start.
|
@@ -10611,17 +8914,6 @@ module Aws::DatabaseMigrationService
|
|
10611
8914
|
include Aws::Structure
|
10612
8915
|
end
|
10613
8916
|
|
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
8917
|
# @!attribute [rw] replication_task_arn
|
10626
8918
|
# The Amazon Resource Name (ARN) of the replication task to be
|
10627
8919
|
# started.
|
@@ -10714,13 +9006,6 @@ module Aws::DatabaseMigrationService
|
|
10714
9006
|
include Aws::Structure
|
10715
9007
|
end
|
10716
9008
|
|
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
9009
|
# @!attribute [rw] replication_task_arn
|
10725
9010
|
# The Amazon Resource Name(ARN) of the replication task to be stopped.
|
10726
9011
|
# @return [String]
|
@@ -10845,19 +9130,6 @@ module Aws::DatabaseMigrationService
|
|
10845
9130
|
|
10846
9131
|
# Provides information that defines a SAP ASE endpoint.
|
10847
9132
|
#
|
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
9133
|
# @!attribute [rw] database_name
|
10862
9134
|
# Database name for the endpoint.
|
10863
9135
|
# @return [String]
|
@@ -11094,14 +9366,6 @@ module Aws::DatabaseMigrationService
|
|
11094
9366
|
|
11095
9367
|
# Provides the name of the schema and table to be reloaded.
|
11096
9368
|
#
|
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
9369
|
# @!attribute [rw] schema_name
|
11106
9370
|
# The schema name of the table to be reloaded.
|
11107
9371
|
# @return [String]
|
@@ -11128,15 +9392,6 @@ module Aws::DatabaseMigrationService
|
|
11128
9392
|
#
|
11129
9393
|
# * `RemoveTagsFromResource`
|
11130
9394
|
#
|
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
9395
|
# @!attribute [rw] key
|
11141
9396
|
# A key is the required name of the tag. The string value can be 1-128
|
11142
9397
|
# Unicode characters in length and can't be prefixed with "aws:" or
|
@@ -11170,14 +9425,6 @@ module Aws::DatabaseMigrationService
|
|
11170
9425
|
include Aws::Structure
|
11171
9426
|
end
|
11172
9427
|
|
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
9428
|
# @!attribute [rw] replication_instance_arn
|
11182
9429
|
# The Amazon Resource Name (ARN) of the replication instance.
|
11183
9430
|
# @return [String]
|
@@ -11208,13 +9455,6 @@ module Aws::DatabaseMigrationService
|
|
11208
9455
|
include Aws::Structure
|
11209
9456
|
end
|
11210
9457
|
|
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
9458
|
# @!attribute [rw] force_move
|
11219
9459
|
# When set to true, this operation migrates DMS subscriptions for
|
11220
9460
|
# Amazon SNS notifications no matter what your replication instance
|