aws-sdk-databasemigrationservice 1.73.0 → 1.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +62 -10
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +13 -0
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +56 -127
- data/lib/aws-sdk-databasemigrationservice/types.rb +95 -1789
- 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.
|
@@ -809,9 +450,10 @@ module Aws::DatabaseMigrationService
|
|
809
450
|
# The type of engine for the endpoint. Valid values, depending on the
|
810
451
|
# `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
|
811
452
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
|
812
|
-
# `"redshift"`, `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`,
|
453
|
+
# `"redshift"`, `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`,
|
813
454
|
# `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
|
814
|
-
# `"elasticsearch"`, `"docdb"`, `"sqlserver"`,
|
455
|
+
# `"elasticsearch"`, `"docdb"`, `"sqlserver"`, `"neptune"`, and
|
456
|
+
# `"babelfish"`.
|
815
457
|
# @return [String]
|
816
458
|
#
|
817
459
|
# @!attribute [rw] username
|
@@ -1141,25 +783,6 @@ module Aws::DatabaseMigrationService
|
|
1141
783
|
include Aws::Structure
|
1142
784
|
end
|
1143
785
|
|
1144
|
-
# @note When making an API call, you may pass CreateEventSubscriptionMessage
|
1145
|
-
# data as a hash:
|
1146
|
-
#
|
1147
|
-
# {
|
1148
|
-
# subscription_name: "String", # required
|
1149
|
-
# sns_topic_arn: "String", # required
|
1150
|
-
# source_type: "String",
|
1151
|
-
# event_categories: ["String"],
|
1152
|
-
# source_ids: ["String"],
|
1153
|
-
# enabled: false,
|
1154
|
-
# tags: [
|
1155
|
-
# {
|
1156
|
-
# key: "String",
|
1157
|
-
# value: "String",
|
1158
|
-
# resource_arn: "String",
|
1159
|
-
# },
|
1160
|
-
# ],
|
1161
|
-
# }
|
1162
|
-
#
|
1163
786
|
# @!attribute [rw] subscription_name
|
1164
787
|
# The name of the DMS event notification subscription. This name must
|
1165
788
|
# be less than 255 characters.
|
@@ -1236,16 +859,6 @@ module Aws::DatabaseMigrationService
|
|
1236
859
|
include Aws::Structure
|
1237
860
|
end
|
1238
861
|
|
1239
|
-
# @note When making an API call, you may pass CreateFleetAdvisorCollectorRequest
|
1240
|
-
# data as a hash:
|
1241
|
-
#
|
1242
|
-
# {
|
1243
|
-
# collector_name: "String", # required
|
1244
|
-
# description: "String",
|
1245
|
-
# service_access_role_arn: "String", # required
|
1246
|
-
# s3_bucket_name: "String", # required
|
1247
|
-
# }
|
1248
|
-
#
|
1249
862
|
# @!attribute [rw] collector_name
|
1250
863
|
# The name of your Fleet Advisor collector (for example,
|
1251
864
|
# `sample-collector`).
|
@@ -1311,33 +924,6 @@ module Aws::DatabaseMigrationService
|
|
1311
924
|
include Aws::Structure
|
1312
925
|
end
|
1313
926
|
|
1314
|
-
# @note When making an API call, you may pass CreateReplicationInstanceMessage
|
1315
|
-
# data as a hash:
|
1316
|
-
#
|
1317
|
-
# {
|
1318
|
-
# replication_instance_identifier: "String", # required
|
1319
|
-
# allocated_storage: 1,
|
1320
|
-
# replication_instance_class: "String", # required
|
1321
|
-
# vpc_security_group_ids: ["String"],
|
1322
|
-
# availability_zone: "String",
|
1323
|
-
# replication_subnet_group_identifier: "String",
|
1324
|
-
# preferred_maintenance_window: "String",
|
1325
|
-
# multi_az: false,
|
1326
|
-
# engine_version: "String",
|
1327
|
-
# auto_minor_version_upgrade: false,
|
1328
|
-
# tags: [
|
1329
|
-
# {
|
1330
|
-
# key: "String",
|
1331
|
-
# value: "String",
|
1332
|
-
# resource_arn: "String",
|
1333
|
-
# },
|
1334
|
-
# ],
|
1335
|
-
# kms_key_id: "String",
|
1336
|
-
# publicly_accessible: false,
|
1337
|
-
# dns_name_servers: "String",
|
1338
|
-
# resource_identifier: "String",
|
1339
|
-
# }
|
1340
|
-
#
|
1341
927
|
# @!attribute [rw] replication_instance_identifier
|
1342
928
|
# The replication instance identifier. This parameter is stored as a
|
1343
929
|
# lowercase string.
|
@@ -1473,6 +1059,12 @@ module Aws::DatabaseMigrationService
|
|
1473
1059
|
# identifier value for the end of `EndpointArn`.
|
1474
1060
|
# @return [String]
|
1475
1061
|
#
|
1062
|
+
# @!attribute [rw] network_type
|
1063
|
+
# The type of IP address protocol used by a replication instance, such
|
1064
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
1065
|
+
# addressing. IPv6 only is not yet supported.
|
1066
|
+
# @return [String]
|
1067
|
+
#
|
1476
1068
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
|
1477
1069
|
#
|
1478
1070
|
class CreateReplicationInstanceMessage < Struct.new(
|
@@ -1490,7 +1082,8 @@ module Aws::DatabaseMigrationService
|
|
1490
1082
|
:kms_key_id,
|
1491
1083
|
:publicly_accessible,
|
1492
1084
|
:dns_name_servers,
|
1493
|
-
:resource_identifier
|
1085
|
+
:resource_identifier,
|
1086
|
+
:network_type)
|
1494
1087
|
SENSITIVE = []
|
1495
1088
|
include Aws::Structure
|
1496
1089
|
end
|
@@ -1507,22 +1100,6 @@ module Aws::DatabaseMigrationService
|
|
1507
1100
|
include Aws::Structure
|
1508
1101
|
end
|
1509
1102
|
|
1510
|
-
# @note When making an API call, you may pass CreateReplicationSubnetGroupMessage
|
1511
|
-
# data as a hash:
|
1512
|
-
#
|
1513
|
-
# {
|
1514
|
-
# replication_subnet_group_identifier: "String", # required
|
1515
|
-
# replication_subnet_group_description: "String", # required
|
1516
|
-
# subnet_ids: ["String"], # required
|
1517
|
-
# tags: [
|
1518
|
-
# {
|
1519
|
-
# key: "String",
|
1520
|
-
# value: "String",
|
1521
|
-
# resource_arn: "String",
|
1522
|
-
# },
|
1523
|
-
# ],
|
1524
|
-
# }
|
1525
|
-
#
|
1526
1103
|
# @!attribute [rw] replication_subnet_group_identifier
|
1527
1104
|
# The name for the replication subnet group. This value is stored as a
|
1528
1105
|
# lowercase string.
|
@@ -1568,31 +1145,6 @@ module Aws::DatabaseMigrationService
|
|
1568
1145
|
include Aws::Structure
|
1569
1146
|
end
|
1570
1147
|
|
1571
|
-
# @note When making an API call, you may pass CreateReplicationTaskMessage
|
1572
|
-
# data as a hash:
|
1573
|
-
#
|
1574
|
-
# {
|
1575
|
-
# replication_task_identifier: "String", # required
|
1576
|
-
# source_endpoint_arn: "String", # required
|
1577
|
-
# target_endpoint_arn: "String", # required
|
1578
|
-
# replication_instance_arn: "String", # required
|
1579
|
-
# migration_type: "full-load", # required, accepts full-load, cdc, full-load-and-cdc
|
1580
|
-
# table_mappings: "String", # required
|
1581
|
-
# replication_task_settings: "String",
|
1582
|
-
# cdc_start_time: Time.now,
|
1583
|
-
# cdc_start_position: "String",
|
1584
|
-
# cdc_stop_position: "String",
|
1585
|
-
# tags: [
|
1586
|
-
# {
|
1587
|
-
# key: "String",
|
1588
|
-
# value: "String",
|
1589
|
-
# resource_arn: "String",
|
1590
|
-
# },
|
1591
|
-
# ],
|
1592
|
-
# task_data: "String",
|
1593
|
-
# resource_identifier: "String",
|
1594
|
-
# }
|
1595
|
-
#
|
1596
1148
|
# @!attribute [rw] replication_task_identifier
|
1597
1149
|
# An identifier for the replication task.
|
1598
1150
|
#
|
@@ -1880,13 +1432,6 @@ module Aws::DatabaseMigrationService
|
|
1880
1432
|
include Aws::Structure
|
1881
1433
|
end
|
1882
1434
|
|
1883
|
-
# @note When making an API call, you may pass DeleteCertificateMessage
|
1884
|
-
# data as a hash:
|
1885
|
-
#
|
1886
|
-
# {
|
1887
|
-
# certificate_arn: "String", # required
|
1888
|
-
# }
|
1889
|
-
#
|
1890
1435
|
# @!attribute [rw] certificate_arn
|
1891
1436
|
# The Amazon Resource Name (ARN) of the certificate.
|
1892
1437
|
# @return [String]
|
@@ -1911,13 +1456,6 @@ module Aws::DatabaseMigrationService
|
|
1911
1456
|
include Aws::Structure
|
1912
1457
|
end
|
1913
1458
|
|
1914
|
-
# @note When making an API call, you may pass DeleteCollectorRequest
|
1915
|
-
# data as a hash:
|
1916
|
-
#
|
1917
|
-
# {
|
1918
|
-
# collector_referenced_id: "String", # required
|
1919
|
-
# }
|
1920
|
-
#
|
1921
1459
|
# @!attribute [rw] collector_referenced_id
|
1922
1460
|
# The reference ID of the Fleet Advisor collector to delete.
|
1923
1461
|
# @return [String]
|
@@ -1930,14 +1468,6 @@ module Aws::DatabaseMigrationService
|
|
1930
1468
|
include Aws::Structure
|
1931
1469
|
end
|
1932
1470
|
|
1933
|
-
# @note When making an API call, you may pass DeleteConnectionMessage
|
1934
|
-
# data as a hash:
|
1935
|
-
#
|
1936
|
-
# {
|
1937
|
-
# endpoint_arn: "String", # required
|
1938
|
-
# replication_instance_arn: "String", # required
|
1939
|
-
# }
|
1940
|
-
#
|
1941
1471
|
# @!attribute [rw] endpoint_arn
|
1942
1472
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1943
1473
|
# endpoint.
|
@@ -1968,13 +1498,6 @@ module Aws::DatabaseMigrationService
|
|
1968
1498
|
include Aws::Structure
|
1969
1499
|
end
|
1970
1500
|
|
1971
|
-
# @note When making an API call, you may pass DeleteEndpointMessage
|
1972
|
-
# data as a hash:
|
1973
|
-
#
|
1974
|
-
# {
|
1975
|
-
# endpoint_arn: "String", # required
|
1976
|
-
# }
|
1977
|
-
#
|
1978
1501
|
# @!attribute [rw] endpoint_arn
|
1979
1502
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1980
1503
|
# endpoint.
|
@@ -2000,13 +1523,6 @@ module Aws::DatabaseMigrationService
|
|
2000
1523
|
include Aws::Structure
|
2001
1524
|
end
|
2002
1525
|
|
2003
|
-
# @note When making an API call, you may pass DeleteEventSubscriptionMessage
|
2004
|
-
# data as a hash:
|
2005
|
-
#
|
2006
|
-
# {
|
2007
|
-
# subscription_name: "String", # required
|
2008
|
-
# }
|
2009
|
-
#
|
2010
1526
|
# @!attribute [rw] subscription_name
|
2011
1527
|
# The name of the DMS event notification subscription to be deleted.
|
2012
1528
|
# @return [String]
|
@@ -2031,13 +1547,6 @@ module Aws::DatabaseMigrationService
|
|
2031
1547
|
include Aws::Structure
|
2032
1548
|
end
|
2033
1549
|
|
2034
|
-
# @note When making an API call, you may pass DeleteFleetAdvisorDatabasesRequest
|
2035
|
-
# data as a hash:
|
2036
|
-
#
|
2037
|
-
# {
|
2038
|
-
# database_ids: ["String"], # required
|
2039
|
-
# }
|
2040
|
-
#
|
2041
1550
|
# @!attribute [rw] database_ids
|
2042
1551
|
# The IDs of the Fleet Advisor collector databases to delete.
|
2043
1552
|
# @return [Array<String>]
|
@@ -2062,13 +1571,6 @@ module Aws::DatabaseMigrationService
|
|
2062
1571
|
include Aws::Structure
|
2063
1572
|
end
|
2064
1573
|
|
2065
|
-
# @note When making an API call, you may pass DeleteReplicationInstanceMessage
|
2066
|
-
# data as a hash:
|
2067
|
-
#
|
2068
|
-
# {
|
2069
|
-
# replication_instance_arn: "String", # required
|
2070
|
-
# }
|
2071
|
-
#
|
2072
1574
|
# @!attribute [rw] replication_instance_arn
|
2073
1575
|
# The Amazon Resource Name (ARN) of the replication instance to be
|
2074
1576
|
# deleted.
|
@@ -2094,13 +1596,6 @@ module Aws::DatabaseMigrationService
|
|
2094
1596
|
include Aws::Structure
|
2095
1597
|
end
|
2096
1598
|
|
2097
|
-
# @note When making an API call, you may pass DeleteReplicationSubnetGroupMessage
|
2098
|
-
# data as a hash:
|
2099
|
-
#
|
2100
|
-
# {
|
2101
|
-
# replication_subnet_group_identifier: "String", # required
|
2102
|
-
# }
|
2103
|
-
#
|
2104
1599
|
# @!attribute [rw] replication_subnet_group_identifier
|
2105
1600
|
# The subnet group name of the replication instance.
|
2106
1601
|
# @return [String]
|
@@ -2117,13 +1612,6 @@ module Aws::DatabaseMigrationService
|
|
2117
1612
|
#
|
2118
1613
|
class DeleteReplicationSubnetGroupResponse < Aws::EmptyStructure; end
|
2119
1614
|
|
2120
|
-
# @note When making an API call, you may pass DeleteReplicationTaskAssessmentRunMessage
|
2121
|
-
# data as a hash:
|
2122
|
-
#
|
2123
|
-
# {
|
2124
|
-
# replication_task_assessment_run_arn: "String", # required
|
2125
|
-
# }
|
2126
|
-
#
|
2127
1615
|
# @!attribute [rw] replication_task_assessment_run_arn
|
2128
1616
|
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
2129
1617
|
# deleted.
|
@@ -2150,13 +1638,6 @@ module Aws::DatabaseMigrationService
|
|
2150
1638
|
include Aws::Structure
|
2151
1639
|
end
|
2152
1640
|
|
2153
|
-
# @note When making an API call, you may pass DeleteReplicationTaskMessage
|
2154
|
-
# data as a hash:
|
2155
|
-
#
|
2156
|
-
# {
|
2157
|
-
# replication_task_arn: "String", # required
|
2158
|
-
# }
|
2159
|
-
#
|
2160
1641
|
# @!attribute [rw] replication_task_arn
|
2161
1642
|
# The Amazon Resource Name (ARN) of the replication task to be
|
2162
1643
|
# deleted.
|
@@ -2217,19 +1698,6 @@ module Aws::DatabaseMigrationService
|
|
2217
1698
|
include Aws::Structure
|
2218
1699
|
end
|
2219
1700
|
|
2220
|
-
# @note When making an API call, you may pass DescribeApplicableIndividualAssessmentsMessage
|
2221
|
-
# data as a hash:
|
2222
|
-
#
|
2223
|
-
# {
|
2224
|
-
# replication_task_arn: "String",
|
2225
|
-
# replication_instance_arn: "String",
|
2226
|
-
# source_engine_name: "String",
|
2227
|
-
# target_engine_name: "String",
|
2228
|
-
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
2229
|
-
# max_records: 1,
|
2230
|
-
# marker: "String",
|
2231
|
-
# }
|
2232
|
-
#
|
2233
1701
|
# @!attribute [rw] replication_task_arn
|
2234
1702
|
# Amazon Resource Name (ARN) of a migration task on which you want to
|
2235
1703
|
# base the default list of individual assessments.
|
@@ -2311,20 +1779,6 @@ module Aws::DatabaseMigrationService
|
|
2311
1779
|
include Aws::Structure
|
2312
1780
|
end
|
2313
1781
|
|
2314
|
-
# @note When making an API call, you may pass DescribeCertificatesMessage
|
2315
|
-
# data as a hash:
|
2316
|
-
#
|
2317
|
-
# {
|
2318
|
-
# filters: [
|
2319
|
-
# {
|
2320
|
-
# name: "String", # required
|
2321
|
-
# values: ["String"], # required
|
2322
|
-
# },
|
2323
|
-
# ],
|
2324
|
-
# max_records: 1,
|
2325
|
-
# marker: "String",
|
2326
|
-
# }
|
2327
|
-
#
|
2328
1782
|
# @!attribute [rw] filters
|
2329
1783
|
# Filters applied to the certificates described in the form of
|
2330
1784
|
# key-value pairs. Valid values are `certificate-arn` and
|
@@ -2374,20 +1828,6 @@ module Aws::DatabaseMigrationService
|
|
2374
1828
|
include Aws::Structure
|
2375
1829
|
end
|
2376
1830
|
|
2377
|
-
# @note When making an API call, you may pass DescribeConnectionsMessage
|
2378
|
-
# data as a hash:
|
2379
|
-
#
|
2380
|
-
# {
|
2381
|
-
# filters: [
|
2382
|
-
# {
|
2383
|
-
# name: "String", # required
|
2384
|
-
# values: ["String"], # required
|
2385
|
-
# },
|
2386
|
-
# ],
|
2387
|
-
# max_records: 1,
|
2388
|
-
# marker: "String",
|
2389
|
-
# }
|
2390
|
-
#
|
2391
1831
|
# @!attribute [rw] filters
|
2392
1832
|
# The filters applied to the connection.
|
2393
1833
|
#
|
@@ -2440,15 +1880,6 @@ module Aws::DatabaseMigrationService
|
|
2440
1880
|
include Aws::Structure
|
2441
1881
|
end
|
2442
1882
|
|
2443
|
-
# @note When making an API call, you may pass DescribeEndpointSettingsMessage
|
2444
|
-
# data as a hash:
|
2445
|
-
#
|
2446
|
-
# {
|
2447
|
-
# engine_name: "String", # required
|
2448
|
-
# max_records: 1,
|
2449
|
-
# marker: "String",
|
2450
|
-
# }
|
2451
|
-
#
|
2452
1883
|
# @!attribute [rw] engine_name
|
2453
1884
|
# The databse engine used for your source or target endpoint.
|
2454
1885
|
# @return [String]
|
@@ -2496,20 +1927,6 @@ module Aws::DatabaseMigrationService
|
|
2496
1927
|
include Aws::Structure
|
2497
1928
|
end
|
2498
1929
|
|
2499
|
-
# @note When making an API call, you may pass DescribeEndpointTypesMessage
|
2500
|
-
# data as a hash:
|
2501
|
-
#
|
2502
|
-
# {
|
2503
|
-
# filters: [
|
2504
|
-
# {
|
2505
|
-
# name: "String", # required
|
2506
|
-
# values: ["String"], # required
|
2507
|
-
# },
|
2508
|
-
# ],
|
2509
|
-
# max_records: 1,
|
2510
|
-
# marker: "String",
|
2511
|
-
# }
|
2512
|
-
#
|
2513
1930
|
# @!attribute [rw] filters
|
2514
1931
|
# Filters applied to the endpoint types.
|
2515
1932
|
#
|
@@ -2562,20 +1979,6 @@ module Aws::DatabaseMigrationService
|
|
2562
1979
|
include Aws::Structure
|
2563
1980
|
end
|
2564
1981
|
|
2565
|
-
# @note When making an API call, you may pass DescribeEndpointsMessage
|
2566
|
-
# data as a hash:
|
2567
|
-
#
|
2568
|
-
# {
|
2569
|
-
# filters: [
|
2570
|
-
# {
|
2571
|
-
# name: "String", # required
|
2572
|
-
# values: ["String"], # required
|
2573
|
-
# },
|
2574
|
-
# ],
|
2575
|
-
# max_records: 1,
|
2576
|
-
# marker: "String",
|
2577
|
-
# }
|
2578
|
-
#
|
2579
1982
|
# @!attribute [rw] filters
|
2580
1983
|
# Filters applied to the endpoints.
|
2581
1984
|
#
|
@@ -2629,19 +2032,6 @@ module Aws::DatabaseMigrationService
|
|
2629
2032
|
include Aws::Structure
|
2630
2033
|
end
|
2631
2034
|
|
2632
|
-
# @note When making an API call, you may pass DescribeEventCategoriesMessage
|
2633
|
-
# data as a hash:
|
2634
|
-
#
|
2635
|
-
# {
|
2636
|
-
# source_type: "String",
|
2637
|
-
# filters: [
|
2638
|
-
# {
|
2639
|
-
# name: "String", # required
|
2640
|
-
# values: ["String"], # required
|
2641
|
-
# },
|
2642
|
-
# ],
|
2643
|
-
# }
|
2644
|
-
#
|
2645
2035
|
# @!attribute [rw] source_type
|
2646
2036
|
# The type of DMS resource that generates events.
|
2647
2037
|
#
|
@@ -2673,21 +2063,6 @@ module Aws::DatabaseMigrationService
|
|
2673
2063
|
include Aws::Structure
|
2674
2064
|
end
|
2675
2065
|
|
2676
|
-
# @note When making an API call, you may pass DescribeEventSubscriptionsMessage
|
2677
|
-
# data as a hash:
|
2678
|
-
#
|
2679
|
-
# {
|
2680
|
-
# subscription_name: "String",
|
2681
|
-
# filters: [
|
2682
|
-
# {
|
2683
|
-
# name: "String", # required
|
2684
|
-
# values: ["String"], # required
|
2685
|
-
# },
|
2686
|
-
# ],
|
2687
|
-
# max_records: 1,
|
2688
|
-
# marker: "String",
|
2689
|
-
# }
|
2690
|
-
#
|
2691
2066
|
# @!attribute [rw] subscription_name
|
2692
2067
|
# The name of the DMS event subscription to be described.
|
2693
2068
|
# @return [String]
|
@@ -2745,26 +2120,6 @@ module Aws::DatabaseMigrationService
|
|
2745
2120
|
include Aws::Structure
|
2746
2121
|
end
|
2747
2122
|
|
2748
|
-
# @note When making an API call, you may pass DescribeEventsMessage
|
2749
|
-
# data as a hash:
|
2750
|
-
#
|
2751
|
-
# {
|
2752
|
-
# source_identifier: "String",
|
2753
|
-
# source_type: "replication-instance", # accepts replication-instance
|
2754
|
-
# start_time: Time.now,
|
2755
|
-
# end_time: Time.now,
|
2756
|
-
# duration: 1,
|
2757
|
-
# event_categories: ["String"],
|
2758
|
-
# filters: [
|
2759
|
-
# {
|
2760
|
-
# name: "String", # required
|
2761
|
-
# values: ["String"], # required
|
2762
|
-
# },
|
2763
|
-
# ],
|
2764
|
-
# max_records: 1,
|
2765
|
-
# marker: "String",
|
2766
|
-
# }
|
2767
|
-
#
|
2768
2123
|
# @!attribute [rw] source_identifier
|
2769
2124
|
# The identifier of an event source.
|
2770
2125
|
# @return [String]
|
@@ -2848,20 +2203,6 @@ module Aws::DatabaseMigrationService
|
|
2848
2203
|
include Aws::Structure
|
2849
2204
|
end
|
2850
2205
|
|
2851
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorCollectorsRequest
|
2852
|
-
# data as a hash:
|
2853
|
-
#
|
2854
|
-
# {
|
2855
|
-
# filters: [
|
2856
|
-
# {
|
2857
|
-
# name: "String", # required
|
2858
|
-
# values: ["String"], # required
|
2859
|
-
# },
|
2860
|
-
# ],
|
2861
|
-
# max_records: 1,
|
2862
|
-
# next_token: "String",
|
2863
|
-
# }
|
2864
|
-
#
|
2865
2206
|
# @!attribute [rw] filters
|
2866
2207
|
# If you specify any of the following filters, the output includes
|
2867
2208
|
# information for only those collectors that meet the filter criteria:
|
@@ -2917,20 +2258,6 @@ module Aws::DatabaseMigrationService
|
|
2917
2258
|
include Aws::Structure
|
2918
2259
|
end
|
2919
2260
|
|
2920
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorDatabasesRequest
|
2921
|
-
# data as a hash:
|
2922
|
-
#
|
2923
|
-
# {
|
2924
|
-
# filters: [
|
2925
|
-
# {
|
2926
|
-
# name: "String", # required
|
2927
|
-
# values: ["String"], # required
|
2928
|
-
# },
|
2929
|
-
# ],
|
2930
|
-
# max_records: 1,
|
2931
|
-
# next_token: "String",
|
2932
|
-
# }
|
2933
|
-
#
|
2934
2261
|
# @!attribute [rw] filters
|
2935
2262
|
# If you specify any of the following filters, the output includes
|
2936
2263
|
# information for only those databases that meet the filter criteria:
|
@@ -2994,14 +2321,6 @@ module Aws::DatabaseMigrationService
|
|
2994
2321
|
include Aws::Structure
|
2995
2322
|
end
|
2996
2323
|
|
2997
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorLsaAnalysisRequest
|
2998
|
-
# data as a hash:
|
2999
|
-
#
|
3000
|
-
# {
|
3001
|
-
# max_records: 1,
|
3002
|
-
# next_token: "String",
|
3003
|
-
# }
|
3004
|
-
#
|
3005
2324
|
# @!attribute [rw] max_records
|
3006
2325
|
# Sets the maximum number of records returned in the response.
|
3007
2326
|
# @return [Integer]
|
@@ -3042,20 +2361,6 @@ module Aws::DatabaseMigrationService
|
|
3042
2361
|
include Aws::Structure
|
3043
2362
|
end
|
3044
2363
|
|
3045
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorSchemaObjectSummaryRequest
|
3046
|
-
# data as a hash:
|
3047
|
-
#
|
3048
|
-
# {
|
3049
|
-
# filters: [
|
3050
|
-
# {
|
3051
|
-
# name: "String", # required
|
3052
|
-
# values: ["String"], # required
|
3053
|
-
# },
|
3054
|
-
# ],
|
3055
|
-
# max_records: 1,
|
3056
|
-
# next_token: "String",
|
3057
|
-
# }
|
3058
|
-
#
|
3059
2364
|
# @!attribute [rw] filters
|
3060
2365
|
# If you specify any of the following filters, the output includes
|
3061
2366
|
# information for only those schema objects that meet the filter
|
@@ -3111,20 +2416,6 @@ module Aws::DatabaseMigrationService
|
|
3111
2416
|
include Aws::Structure
|
3112
2417
|
end
|
3113
2418
|
|
3114
|
-
# @note When making an API call, you may pass DescribeFleetAdvisorSchemasRequest
|
3115
|
-
# data as a hash:
|
3116
|
-
#
|
3117
|
-
# {
|
3118
|
-
# filters: [
|
3119
|
-
# {
|
3120
|
-
# name: "String", # required
|
3121
|
-
# values: ["String"], # required
|
3122
|
-
# },
|
3123
|
-
# ],
|
3124
|
-
# max_records: 1,
|
3125
|
-
# next_token: "String",
|
3126
|
-
# }
|
3127
|
-
#
|
3128
2419
|
# @!attribute [rw] filters
|
3129
2420
|
# If you specify any of the following filters, the output includes
|
3130
2421
|
# information for only those schemas that meet the filter criteria:
|
@@ -3194,14 +2485,6 @@ module Aws::DatabaseMigrationService
|
|
3194
2485
|
include Aws::Structure
|
3195
2486
|
end
|
3196
2487
|
|
3197
|
-
# @note When making an API call, you may pass DescribeOrderableReplicationInstancesMessage
|
3198
|
-
# data as a hash:
|
3199
|
-
#
|
3200
|
-
# {
|
3201
|
-
# max_records: 1,
|
3202
|
-
# marker: "String",
|
3203
|
-
# }
|
3204
|
-
#
|
3205
2488
|
# @!attribute [rw] max_records
|
3206
2489
|
# The maximum number of records to include in the response. If more
|
3207
2490
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -3247,21 +2530,6 @@ module Aws::DatabaseMigrationService
|
|
3247
2530
|
include Aws::Structure
|
3248
2531
|
end
|
3249
2532
|
|
3250
|
-
# @note When making an API call, you may pass DescribePendingMaintenanceActionsMessage
|
3251
|
-
# data as a hash:
|
3252
|
-
#
|
3253
|
-
# {
|
3254
|
-
# replication_instance_arn: "String",
|
3255
|
-
# filters: [
|
3256
|
-
# {
|
3257
|
-
# name: "String", # required
|
3258
|
-
# values: ["String"], # required
|
3259
|
-
# },
|
3260
|
-
# ],
|
3261
|
-
# marker: "String",
|
3262
|
-
# max_records: 1,
|
3263
|
-
# }
|
3264
|
-
#
|
3265
2533
|
# @!attribute [rw] replication_instance_arn
|
3266
2534
|
# The Amazon Resource Name (ARN) of the replication instance.
|
3267
2535
|
# @return [String]
|
@@ -3316,13 +2584,6 @@ module Aws::DatabaseMigrationService
|
|
3316
2584
|
include Aws::Structure
|
3317
2585
|
end
|
3318
2586
|
|
3319
|
-
# @note When making an API call, you may pass DescribeRefreshSchemasStatusMessage
|
3320
|
-
# data as a hash:
|
3321
|
-
#
|
3322
|
-
# {
|
3323
|
-
# endpoint_arn: "String", # required
|
3324
|
-
# }
|
3325
|
-
#
|
3326
2587
|
# @!attribute [rw] endpoint_arn
|
3327
2588
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3328
2589
|
# endpoint.
|
@@ -3348,15 +2609,6 @@ module Aws::DatabaseMigrationService
|
|
3348
2609
|
include Aws::Structure
|
3349
2610
|
end
|
3350
2611
|
|
3351
|
-
# @note When making an API call, you may pass DescribeReplicationInstanceTaskLogsMessage
|
3352
|
-
# data as a hash:
|
3353
|
-
#
|
3354
|
-
# {
|
3355
|
-
# replication_instance_arn: "String", # required
|
3356
|
-
# max_records: 1,
|
3357
|
-
# marker: "String",
|
3358
|
-
# }
|
3359
|
-
#
|
3360
2612
|
# @!attribute [rw] replication_instance_arn
|
3361
2613
|
# The Amazon Resource Name (ARN) of the replication instance.
|
3362
2614
|
# @return [String]
|
@@ -3414,20 +2666,6 @@ module Aws::DatabaseMigrationService
|
|
3414
2666
|
include Aws::Structure
|
3415
2667
|
end
|
3416
2668
|
|
3417
|
-
# @note When making an API call, you may pass DescribeReplicationInstancesMessage
|
3418
|
-
# data as a hash:
|
3419
|
-
#
|
3420
|
-
# {
|
3421
|
-
# filters: [
|
3422
|
-
# {
|
3423
|
-
# name: "String", # required
|
3424
|
-
# values: ["String"], # required
|
3425
|
-
# },
|
3426
|
-
# ],
|
3427
|
-
# max_records: 1,
|
3428
|
-
# marker: "String",
|
3429
|
-
# }
|
3430
|
-
#
|
3431
2669
|
# @!attribute [rw] filters
|
3432
2670
|
# Filters applied to replication instances.
|
3433
2671
|
#
|
@@ -3482,20 +2720,6 @@ module Aws::DatabaseMigrationService
|
|
3482
2720
|
include Aws::Structure
|
3483
2721
|
end
|
3484
2722
|
|
3485
|
-
# @note When making an API call, you may pass DescribeReplicationSubnetGroupsMessage
|
3486
|
-
# data as a hash:
|
3487
|
-
#
|
3488
|
-
# {
|
3489
|
-
# filters: [
|
3490
|
-
# {
|
3491
|
-
# name: "String", # required
|
3492
|
-
# values: ["String"], # required
|
3493
|
-
# },
|
3494
|
-
# ],
|
3495
|
-
# max_records: 1,
|
3496
|
-
# marker: "String",
|
3497
|
-
# }
|
3498
|
-
#
|
3499
2723
|
# @!attribute [rw] filters
|
3500
2724
|
# Filters applied to replication subnet groups.
|
3501
2725
|
#
|
@@ -3548,15 +2772,6 @@ module Aws::DatabaseMigrationService
|
|
3548
2772
|
include Aws::Structure
|
3549
2773
|
end
|
3550
2774
|
|
3551
|
-
# @note When making an API call, you may pass DescribeReplicationTaskAssessmentResultsMessage
|
3552
|
-
# data as a hash:
|
3553
|
-
#
|
3554
|
-
# {
|
3555
|
-
# replication_task_arn: "String",
|
3556
|
-
# max_records: 1,
|
3557
|
-
# marker: "String",
|
3558
|
-
# }
|
3559
|
-
#
|
3560
2775
|
# @!attribute [rw] replication_task_arn
|
3561
2776
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3562
2777
|
# task. When this input parameter is specified, the API returns only
|
@@ -3615,20 +2830,6 @@ module Aws::DatabaseMigrationService
|
|
3615
2830
|
include Aws::Structure
|
3616
2831
|
end
|
3617
2832
|
|
3618
|
-
# @note When making an API call, you may pass DescribeReplicationTaskAssessmentRunsMessage
|
3619
|
-
# data as a hash:
|
3620
|
-
#
|
3621
|
-
# {
|
3622
|
-
# filters: [
|
3623
|
-
# {
|
3624
|
-
# name: "String", # required
|
3625
|
-
# values: ["String"], # required
|
3626
|
-
# },
|
3627
|
-
# ],
|
3628
|
-
# max_records: 1,
|
3629
|
-
# marker: "String",
|
3630
|
-
# }
|
3631
|
-
#
|
3632
2833
|
# @!attribute [rw] filters
|
3633
2834
|
# Filters applied to the premigration assessment runs described in the
|
3634
2835
|
# form of key-value pairs.
|
@@ -3680,20 +2881,6 @@ module Aws::DatabaseMigrationService
|
|
3680
2881
|
include Aws::Structure
|
3681
2882
|
end
|
3682
2883
|
|
3683
|
-
# @note When making an API call, you may pass DescribeReplicationTaskIndividualAssessmentsMessage
|
3684
|
-
# data as a hash:
|
3685
|
-
#
|
3686
|
-
# {
|
3687
|
-
# filters: [
|
3688
|
-
# {
|
3689
|
-
# name: "String", # required
|
3690
|
-
# values: ["String"], # required
|
3691
|
-
# },
|
3692
|
-
# ],
|
3693
|
-
# max_records: 1,
|
3694
|
-
# marker: "String",
|
3695
|
-
# }
|
3696
|
-
#
|
3697
2884
|
# @!attribute [rw] filters
|
3698
2885
|
# Filters applied to the individual assessments described in the form
|
3699
2886
|
# of key-value pairs.
|
@@ -3745,21 +2932,6 @@ module Aws::DatabaseMigrationService
|
|
3745
2932
|
include Aws::Structure
|
3746
2933
|
end
|
3747
2934
|
|
3748
|
-
# @note When making an API call, you may pass DescribeReplicationTasksMessage
|
3749
|
-
# data as a hash:
|
3750
|
-
#
|
3751
|
-
# {
|
3752
|
-
# filters: [
|
3753
|
-
# {
|
3754
|
-
# name: "String", # required
|
3755
|
-
# values: ["String"], # required
|
3756
|
-
# },
|
3757
|
-
# ],
|
3758
|
-
# max_records: 1,
|
3759
|
-
# marker: "String",
|
3760
|
-
# without_settings: false,
|
3761
|
-
# }
|
3762
|
-
#
|
3763
2935
|
# @!attribute [rw] filters
|
3764
2936
|
# Filters applied to replication tasks.
|
3765
2937
|
#
|
@@ -3821,15 +2993,6 @@ module Aws::DatabaseMigrationService
|
|
3821
2993
|
include Aws::Structure
|
3822
2994
|
end
|
3823
2995
|
|
3824
|
-
# @note When making an API call, you may pass DescribeSchemasMessage
|
3825
|
-
# data as a hash:
|
3826
|
-
#
|
3827
|
-
# {
|
3828
|
-
# endpoint_arn: "String", # required
|
3829
|
-
# max_records: 1,
|
3830
|
-
# marker: "String",
|
3831
|
-
# }
|
3832
|
-
#
|
3833
2996
|
# @!attribute [rw] endpoint_arn
|
3834
2997
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3835
2998
|
# endpoint.
|
@@ -3881,21 +3044,6 @@ module Aws::DatabaseMigrationService
|
|
3881
3044
|
include Aws::Structure
|
3882
3045
|
end
|
3883
3046
|
|
3884
|
-
# @note When making an API call, you may pass DescribeTableStatisticsMessage
|
3885
|
-
# data as a hash:
|
3886
|
-
#
|
3887
|
-
# {
|
3888
|
-
# replication_task_arn: "String", # required
|
3889
|
-
# max_records: 1,
|
3890
|
-
# marker: "String",
|
3891
|
-
# filters: [
|
3892
|
-
# {
|
3893
|
-
# name: "String", # required
|
3894
|
-
# values: ["String"], # required
|
3895
|
-
# },
|
3896
|
-
# ],
|
3897
|
-
# }
|
3898
|
-
#
|
3899
3047
|
# @!attribute [rw] replication_task_arn
|
3900
3048
|
# The Amazon Resource Name (ARN) of the replication task.
|
3901
3049
|
# @return [String]
|
@@ -3963,14 +3111,6 @@ module Aws::DatabaseMigrationService
|
|
3963
3111
|
|
3964
3112
|
# The settings in JSON format for the DMS Transfer type source endpoint.
|
3965
3113
|
#
|
3966
|
-
# @note When making an API call, you may pass DmsTransferSettings
|
3967
|
-
# data as a hash:
|
3968
|
-
#
|
3969
|
-
# {
|
3970
|
-
# service_access_role_arn: "String",
|
3971
|
-
# bucket_name: "String",
|
3972
|
-
# }
|
3973
|
-
#
|
3974
3114
|
# @!attribute [rw] service_access_role_arn
|
3975
3115
|
# The Amazon Resource Name (ARN) used by the service access IAM role.
|
3976
3116
|
# The role must allow the `iam:PassRole` action.
|
@@ -3991,23 +3131,6 @@ module Aws::DatabaseMigrationService
|
|
3991
3131
|
|
3992
3132
|
# Provides information that defines a DocumentDB endpoint.
|
3993
3133
|
#
|
3994
|
-
# @note When making an API call, you may pass DocDbSettings
|
3995
|
-
# data as a hash:
|
3996
|
-
#
|
3997
|
-
# {
|
3998
|
-
# username: "String",
|
3999
|
-
# password: "SecretString",
|
4000
|
-
# server_name: "String",
|
4001
|
-
# port: 1,
|
4002
|
-
# database_name: "String",
|
4003
|
-
# nesting_level: "none", # accepts none, one
|
4004
|
-
# extract_doc_id: false,
|
4005
|
-
# docs_to_investigate: 1,
|
4006
|
-
# kms_key_id: "String",
|
4007
|
-
# secrets_manager_access_role_arn: "String",
|
4008
|
-
# secrets_manager_secret_id: "String",
|
4009
|
-
# }
|
4010
|
-
#
|
4011
3134
|
# @!attribute [rw] username
|
4012
3135
|
# The user name you use to access the DocumentDB source endpoint.
|
4013
3136
|
# @return [String]
|
@@ -4113,13 +3236,6 @@ module Aws::DatabaseMigrationService
|
|
4113
3236
|
# Management (IAM) role used to define an Amazon DynamoDB target
|
4114
3237
|
# endpoint.
|
4115
3238
|
#
|
4116
|
-
# @note When making an API call, you may pass DynamoDbSettings
|
4117
|
-
# data as a hash:
|
4118
|
-
#
|
4119
|
-
# {
|
4120
|
-
# service_access_role_arn: "String", # required
|
4121
|
-
# }
|
4122
|
-
#
|
4123
3239
|
# @!attribute [rw] service_access_role_arn
|
4124
3240
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
4125
3241
|
# role. The role must allow the `iam:PassRole` action.
|
@@ -4135,17 +3251,6 @@ module Aws::DatabaseMigrationService
|
|
4135
3251
|
|
4136
3252
|
# Provides information that defines an OpenSearch endpoint.
|
4137
3253
|
#
|
4138
|
-
# @note When making an API call, you may pass ElasticsearchSettings
|
4139
|
-
# data as a hash:
|
4140
|
-
#
|
4141
|
-
# {
|
4142
|
-
# service_access_role_arn: "String", # required
|
4143
|
-
# endpoint_uri: "String", # required
|
4144
|
-
# full_load_error_percentage: 1,
|
4145
|
-
# error_retry_duration: 1,
|
4146
|
-
# use_new_mapping_type: false,
|
4147
|
-
# }
|
4148
|
-
#
|
4149
3254
|
# @!attribute [rw] service_access_role_arn
|
4150
3255
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
4151
3256
|
# role. The role must allow the `iam:PassRole` action.
|
@@ -4213,16 +3318,16 @@ module Aws::DatabaseMigrationService
|
|
4213
3318
|
# @!attribute [rw] engine_name
|
4214
3319
|
# The database engine name. Valid values, depending on the
|
4215
3320
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
4216
|
-
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"
|
4217
|
-
# `"
|
4218
|
-
# `"
|
4219
|
-
# `"
|
3321
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
3322
|
+
# `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
|
3323
|
+
# `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
|
3324
|
+
# `"documentdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
|
4220
3325
|
# @return [String]
|
4221
3326
|
#
|
4222
3327
|
# @!attribute [rw] engine_display_name
|
4223
3328
|
# The expanded name for the engine name. For example, if the
|
4224
|
-
# `EngineName` parameter is "aurora,
|
4225
|
-
# Aurora MySQL.
|
3329
|
+
# `EngineName` parameter is "aurora", this value would be "Amazon
|
3330
|
+
# Aurora MySQL".
|
4226
3331
|
# @return [String]
|
4227
3332
|
#
|
4228
3333
|
# @!attribute [rw] username
|
@@ -4618,14 +3723,6 @@ module Aws::DatabaseMigrationService
|
|
4618
3723
|
# particular `Describe*` call or similar operation. Filters are used as
|
4619
3724
|
# an optional parameter for certain API operations.
|
4620
3725
|
#
|
4621
|
-
# @note When making an API call, you may pass Filter
|
4622
|
-
# data as a hash:
|
4623
|
-
#
|
4624
|
-
# {
|
4625
|
-
# name: "String", # required
|
4626
|
-
# values: ["String"], # required
|
4627
|
-
# }
|
4628
|
-
#
|
4629
3726
|
# @!attribute [rw] name
|
4630
3727
|
# The name of the filter as specified for a `Describe*` or similar
|
4631
3728
|
# operation.
|
@@ -4713,26 +3810,6 @@ module Aws::DatabaseMigrationService
|
|
4713
3810
|
|
4714
3811
|
# Settings in JSON format for the source GCP MySQL endpoint.
|
4715
3812
|
#
|
4716
|
-
# @note When making an API call, you may pass GcpMySQLSettings
|
4717
|
-
# data as a hash:
|
4718
|
-
#
|
4719
|
-
# {
|
4720
|
-
# after_connect_script: "String",
|
4721
|
-
# clean_source_metadata_on_mismatch: false,
|
4722
|
-
# database_name: "String",
|
4723
|
-
# events_poll_interval: 1,
|
4724
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
4725
|
-
# max_file_size: 1,
|
4726
|
-
# parallel_load_threads: 1,
|
4727
|
-
# password: "SecretString",
|
4728
|
-
# port: 1,
|
4729
|
-
# server_name: "String",
|
4730
|
-
# server_timezone: "String",
|
4731
|
-
# username: "String",
|
4732
|
-
# secrets_manager_access_role_arn: "String",
|
4733
|
-
# secrets_manager_secret_id: "String",
|
4734
|
-
# }
|
4735
|
-
#
|
4736
3813
|
# @!attribute [rw] after_connect_script
|
4737
3814
|
# Specifies a script to run immediately after DMS connects to the
|
4738
3815
|
# endpoint. The migration task continues running regardless if the SQL
|
@@ -4872,22 +3949,6 @@ module Aws::DatabaseMigrationService
|
|
4872
3949
|
|
4873
3950
|
# Provides information that defines an IBM Db2 LUW endpoint.
|
4874
3951
|
#
|
4875
|
-
# @note When making an API call, you may pass IBMDb2Settings
|
4876
|
-
# data as a hash:
|
4877
|
-
#
|
4878
|
-
# {
|
4879
|
-
# database_name: "String",
|
4880
|
-
# password: "SecretString",
|
4881
|
-
# port: 1,
|
4882
|
-
# server_name: "String",
|
4883
|
-
# set_data_capture_changes: false,
|
4884
|
-
# current_lsn: "String",
|
4885
|
-
# max_k_bytes_per_read: 1,
|
4886
|
-
# username: "String",
|
4887
|
-
# secrets_manager_access_role_arn: "String",
|
4888
|
-
# secrets_manager_secret_id: "String",
|
4889
|
-
# }
|
4890
|
-
#
|
4891
3952
|
# @!attribute [rw] database_name
|
4892
3953
|
# Database name for the endpoint.
|
4893
3954
|
# @return [String]
|
@@ -4971,22 +4032,6 @@ module Aws::DatabaseMigrationService
|
|
4971
4032
|
include Aws::Structure
|
4972
4033
|
end
|
4973
4034
|
|
4974
|
-
# @note When making an API call, you may pass ImportCertificateMessage
|
4975
|
-
# data as a hash:
|
4976
|
-
#
|
4977
|
-
# {
|
4978
|
-
# certificate_identifier: "String", # required
|
4979
|
-
# certificate_pem: "SecretString",
|
4980
|
-
# certificate_wallet: "data",
|
4981
|
-
# tags: [
|
4982
|
-
# {
|
4983
|
-
# key: "String",
|
4984
|
-
# value: "String",
|
4985
|
-
# resource_arn: "String",
|
4986
|
-
# },
|
4987
|
-
# ],
|
4988
|
-
# }
|
4989
|
-
#
|
4990
4035
|
# @!attribute [rw] certificate_identifier
|
4991
4036
|
# A customer-assigned name for the certificate. Identifiers must begin
|
4992
4037
|
# with a letter and must contain only ASCII letters, digits, and
|
@@ -5215,30 +4260,6 @@ module Aws::DatabaseMigrationService
|
|
5215
4260
|
# endpoint and details of transaction and control table data
|
5216
4261
|
# information.
|
5217
4262
|
#
|
5218
|
-
# @note When making an API call, you may pass KafkaSettings
|
5219
|
-
# data as a hash:
|
5220
|
-
#
|
5221
|
-
# {
|
5222
|
-
# broker: "String",
|
5223
|
-
# topic: "String",
|
5224
|
-
# message_format: "json", # accepts json, json-unformatted
|
5225
|
-
# include_transaction_details: false,
|
5226
|
-
# include_partition_value: false,
|
5227
|
-
# partition_include_schema_table: false,
|
5228
|
-
# include_table_alter_operations: false,
|
5229
|
-
# include_control_details: false,
|
5230
|
-
# message_max_bytes: 1,
|
5231
|
-
# include_null_and_empty: false,
|
5232
|
-
# security_protocol: "plaintext", # accepts plaintext, ssl-authentication, ssl-encryption, sasl-ssl
|
5233
|
-
# ssl_client_certificate_arn: "String",
|
5234
|
-
# ssl_client_key_arn: "String",
|
5235
|
-
# ssl_client_key_password: "SecretString",
|
5236
|
-
# ssl_ca_certificate_arn: "String",
|
5237
|
-
# sasl_username: "String",
|
5238
|
-
# sasl_password: "SecretString",
|
5239
|
-
# no_hex_prefix: false,
|
5240
|
-
# }
|
5241
|
-
#
|
5242
4263
|
# @!attribute [rw] broker
|
5243
4264
|
# A comma-separated list of one or more broker locations in your Kafka
|
5244
4265
|
# cluster that host your Kafka instance. Specify each broker location
|
@@ -5389,22 +4410,6 @@ module Aws::DatabaseMigrationService
|
|
5389
4410
|
# applied to the endpoint and details of transaction and control table
|
5390
4411
|
# data information.
|
5391
4412
|
#
|
5392
|
-
# @note When making an API call, you may pass KinesisSettings
|
5393
|
-
# data as a hash:
|
5394
|
-
#
|
5395
|
-
# {
|
5396
|
-
# stream_arn: "String",
|
5397
|
-
# message_format: "json", # accepts json, json-unformatted
|
5398
|
-
# service_access_role_arn: "String",
|
5399
|
-
# include_transaction_details: false,
|
5400
|
-
# include_partition_value: false,
|
5401
|
-
# partition_include_schema_table: false,
|
5402
|
-
# include_table_alter_operations: false,
|
5403
|
-
# include_control_details: false,
|
5404
|
-
# include_null_and_empty: false,
|
5405
|
-
# no_hex_prefix: false,
|
5406
|
-
# }
|
5407
|
-
#
|
5408
4413
|
# @!attribute [rw] stream_arn
|
5409
4414
|
# The Amazon Resource Name (ARN) for the Amazon Kinesis Data Streams
|
5410
4415
|
# endpoint.
|
@@ -5489,14 +4494,6 @@ module Aws::DatabaseMigrationService
|
|
5489
4494
|
include Aws::Structure
|
5490
4495
|
end
|
5491
4496
|
|
5492
|
-
# @note When making an API call, you may pass ListTagsForResourceMessage
|
5493
|
-
# data as a hash:
|
5494
|
-
#
|
5495
|
-
# {
|
5496
|
-
# resource_arn: "String",
|
5497
|
-
# resource_arn_list: ["String"],
|
5498
|
-
# }
|
5499
|
-
#
|
5500
4497
|
# @!attribute [rw] resource_arn
|
5501
4498
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
5502
4499
|
# DMS resource to list tags for. This returns a list of keys (names of
|
@@ -5534,27 +4531,6 @@ module Aws::DatabaseMigrationService
|
|
5534
4531
|
|
5535
4532
|
# Provides information that defines a Microsoft SQL Server endpoint.
|
5536
4533
|
#
|
5537
|
-
# @note When making an API call, you may pass MicrosoftSQLServerSettings
|
5538
|
-
# data as a hash:
|
5539
|
-
#
|
5540
|
-
# {
|
5541
|
-
# port: 1,
|
5542
|
-
# bcp_packet_size: 1,
|
5543
|
-
# database_name: "String",
|
5544
|
-
# control_tables_file_group: "String",
|
5545
|
-
# password: "SecretString",
|
5546
|
-
# query_single_always_on_node: false,
|
5547
|
-
# read_backup_only: false,
|
5548
|
-
# safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
|
5549
|
-
# server_name: "String",
|
5550
|
-
# username: "String",
|
5551
|
-
# use_bcp_full_load: false,
|
5552
|
-
# use_third_party_backup_device: false,
|
5553
|
-
# secrets_manager_access_role_arn: "String",
|
5554
|
-
# secrets_manager_secret_id: "String",
|
5555
|
-
# trim_space_in_char: false,
|
5556
|
-
# }
|
5557
|
-
#
|
5558
4534
|
# @!attribute [rw] port
|
5559
4535
|
# Endpoint TCP port.
|
5560
4536
|
# @return [Integer]
|
@@ -5696,328 +4672,6 @@ module Aws::DatabaseMigrationService
|
|
5696
4672
|
include Aws::Structure
|
5697
4673
|
end
|
5698
4674
|
|
5699
|
-
# @note When making an API call, you may pass ModifyEndpointMessage
|
5700
|
-
# data as a hash:
|
5701
|
-
#
|
5702
|
-
# {
|
5703
|
-
# endpoint_arn: "String", # required
|
5704
|
-
# endpoint_identifier: "String",
|
5705
|
-
# endpoint_type: "source", # accepts source, target
|
5706
|
-
# engine_name: "String",
|
5707
|
-
# username: "String",
|
5708
|
-
# password: "SecretString",
|
5709
|
-
# server_name: "String",
|
5710
|
-
# port: 1,
|
5711
|
-
# database_name: "String",
|
5712
|
-
# extra_connection_attributes: "String",
|
5713
|
-
# certificate_arn: "String",
|
5714
|
-
# ssl_mode: "none", # accepts none, require, verify-ca, verify-full
|
5715
|
-
# service_access_role_arn: "String",
|
5716
|
-
# external_table_definition: "String",
|
5717
|
-
# dynamo_db_settings: {
|
5718
|
-
# service_access_role_arn: "String", # required
|
5719
|
-
# },
|
5720
|
-
# s3_settings: {
|
5721
|
-
# service_access_role_arn: "String",
|
5722
|
-
# external_table_definition: "String",
|
5723
|
-
# csv_row_delimiter: "String",
|
5724
|
-
# csv_delimiter: "String",
|
5725
|
-
# bucket_folder: "String",
|
5726
|
-
# bucket_name: "String",
|
5727
|
-
# compression_type: "none", # accepts none, gzip
|
5728
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
5729
|
-
# server_side_encryption_kms_key_id: "String",
|
5730
|
-
# data_format: "csv", # accepts csv, parquet
|
5731
|
-
# encoding_type: "plain", # accepts plain, plain-dictionary, rle-dictionary
|
5732
|
-
# dict_page_size_limit: 1,
|
5733
|
-
# row_group_length: 1,
|
5734
|
-
# data_page_size: 1,
|
5735
|
-
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
5736
|
-
# enable_statistics: false,
|
5737
|
-
# include_op_for_full_load: false,
|
5738
|
-
# cdc_inserts_only: false,
|
5739
|
-
# timestamp_column_name: "String",
|
5740
|
-
# parquet_timestamp_in_millisecond: false,
|
5741
|
-
# cdc_inserts_and_updates: false,
|
5742
|
-
# date_partition_enabled: false,
|
5743
|
-
# date_partition_sequence: "YYYYMMDD", # accepts YYYYMMDD, YYYYMMDDHH, YYYYMM, MMYYYYDD, DDMMYYYY
|
5744
|
-
# date_partition_delimiter: "SLASH", # accepts SLASH, UNDERSCORE, DASH, NONE
|
5745
|
-
# use_csv_no_sup_value: false,
|
5746
|
-
# csv_no_sup_value: "String",
|
5747
|
-
# preserve_transactions: false,
|
5748
|
-
# cdc_path: "String",
|
5749
|
-
# use_task_start_time_for_full_load_timestamp: false,
|
5750
|
-
# 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
|
5751
|
-
# add_column_name: false,
|
5752
|
-
# cdc_max_batch_interval: 1,
|
5753
|
-
# cdc_min_file_size: 1,
|
5754
|
-
# csv_null_value: "String",
|
5755
|
-
# ignore_header_rows: 1,
|
5756
|
-
# max_file_size: 1,
|
5757
|
-
# rfc_4180: false,
|
5758
|
-
# date_partition_timezone: "String",
|
5759
|
-
# add_trailing_padding_character: false,
|
5760
|
-
# expected_bucket_owner: "String",
|
5761
|
-
# },
|
5762
|
-
# dms_transfer_settings: {
|
5763
|
-
# service_access_role_arn: "String",
|
5764
|
-
# bucket_name: "String",
|
5765
|
-
# },
|
5766
|
-
# mongo_db_settings: {
|
5767
|
-
# username: "String",
|
5768
|
-
# password: "SecretString",
|
5769
|
-
# server_name: "String",
|
5770
|
-
# port: 1,
|
5771
|
-
# database_name: "String",
|
5772
|
-
# auth_type: "no", # accepts no, password
|
5773
|
-
# auth_mechanism: "default", # accepts default, mongodb_cr, scram_sha_1
|
5774
|
-
# nesting_level: "none", # accepts none, one
|
5775
|
-
# extract_doc_id: "String",
|
5776
|
-
# docs_to_investigate: "String",
|
5777
|
-
# auth_source: "String",
|
5778
|
-
# kms_key_id: "String",
|
5779
|
-
# secrets_manager_access_role_arn: "String",
|
5780
|
-
# secrets_manager_secret_id: "String",
|
5781
|
-
# },
|
5782
|
-
# kinesis_settings: {
|
5783
|
-
# stream_arn: "String",
|
5784
|
-
# message_format: "json", # accepts json, json-unformatted
|
5785
|
-
# service_access_role_arn: "String",
|
5786
|
-
# include_transaction_details: false,
|
5787
|
-
# include_partition_value: false,
|
5788
|
-
# partition_include_schema_table: false,
|
5789
|
-
# include_table_alter_operations: false,
|
5790
|
-
# include_control_details: false,
|
5791
|
-
# include_null_and_empty: false,
|
5792
|
-
# no_hex_prefix: false,
|
5793
|
-
# },
|
5794
|
-
# kafka_settings: {
|
5795
|
-
# broker: "String",
|
5796
|
-
# topic: "String",
|
5797
|
-
# message_format: "json", # accepts json, json-unformatted
|
5798
|
-
# include_transaction_details: false,
|
5799
|
-
# include_partition_value: false,
|
5800
|
-
# partition_include_schema_table: false,
|
5801
|
-
# include_table_alter_operations: false,
|
5802
|
-
# include_control_details: false,
|
5803
|
-
# message_max_bytes: 1,
|
5804
|
-
# include_null_and_empty: false,
|
5805
|
-
# security_protocol: "plaintext", # accepts plaintext, ssl-authentication, ssl-encryption, sasl-ssl
|
5806
|
-
# ssl_client_certificate_arn: "String",
|
5807
|
-
# ssl_client_key_arn: "String",
|
5808
|
-
# ssl_client_key_password: "SecretString",
|
5809
|
-
# ssl_ca_certificate_arn: "String",
|
5810
|
-
# sasl_username: "String",
|
5811
|
-
# sasl_password: "SecretString",
|
5812
|
-
# no_hex_prefix: false,
|
5813
|
-
# },
|
5814
|
-
# elasticsearch_settings: {
|
5815
|
-
# service_access_role_arn: "String", # required
|
5816
|
-
# endpoint_uri: "String", # required
|
5817
|
-
# full_load_error_percentage: 1,
|
5818
|
-
# error_retry_duration: 1,
|
5819
|
-
# use_new_mapping_type: false,
|
5820
|
-
# },
|
5821
|
-
# neptune_settings: {
|
5822
|
-
# service_access_role_arn: "String",
|
5823
|
-
# s3_bucket_name: "String", # required
|
5824
|
-
# s3_bucket_folder: "String", # required
|
5825
|
-
# error_retry_duration: 1,
|
5826
|
-
# max_file_size: 1,
|
5827
|
-
# max_retry_count: 1,
|
5828
|
-
# iam_auth_enabled: false,
|
5829
|
-
# },
|
5830
|
-
# redshift_settings: {
|
5831
|
-
# accept_any_date: false,
|
5832
|
-
# after_connect_script: "String",
|
5833
|
-
# bucket_folder: "String",
|
5834
|
-
# bucket_name: "String",
|
5835
|
-
# case_sensitive_names: false,
|
5836
|
-
# comp_update: false,
|
5837
|
-
# connection_timeout: 1,
|
5838
|
-
# database_name: "String",
|
5839
|
-
# date_format: "String",
|
5840
|
-
# empty_as_null: false,
|
5841
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
5842
|
-
# explicit_ids: false,
|
5843
|
-
# file_transfer_upload_streams: 1,
|
5844
|
-
# load_timeout: 1,
|
5845
|
-
# max_file_size: 1,
|
5846
|
-
# password: "SecretString",
|
5847
|
-
# port: 1,
|
5848
|
-
# remove_quotes: false,
|
5849
|
-
# replace_invalid_chars: "String",
|
5850
|
-
# replace_chars: "String",
|
5851
|
-
# server_name: "String",
|
5852
|
-
# service_access_role_arn: "String",
|
5853
|
-
# server_side_encryption_kms_key_id: "String",
|
5854
|
-
# time_format: "String",
|
5855
|
-
# trim_blanks: false,
|
5856
|
-
# truncate_columns: false,
|
5857
|
-
# username: "String",
|
5858
|
-
# write_buffer_size: 1,
|
5859
|
-
# secrets_manager_access_role_arn: "String",
|
5860
|
-
# secrets_manager_secret_id: "String",
|
5861
|
-
# },
|
5862
|
-
# postgre_sql_settings: {
|
5863
|
-
# after_connect_script: "String",
|
5864
|
-
# capture_ddls: false,
|
5865
|
-
# max_file_size: 1,
|
5866
|
-
# database_name: "String",
|
5867
|
-
# ddl_artifacts_schema: "String",
|
5868
|
-
# execute_timeout: 1,
|
5869
|
-
# fail_tasks_on_lob_truncation: false,
|
5870
|
-
# heartbeat_enable: false,
|
5871
|
-
# heartbeat_schema: "String",
|
5872
|
-
# heartbeat_frequency: 1,
|
5873
|
-
# password: "SecretString",
|
5874
|
-
# port: 1,
|
5875
|
-
# server_name: "String",
|
5876
|
-
# username: "String",
|
5877
|
-
# slot_name: "String",
|
5878
|
-
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
5879
|
-
# secrets_manager_access_role_arn: "String",
|
5880
|
-
# secrets_manager_secret_id: "String",
|
5881
|
-
# trim_space_in_char: false,
|
5882
|
-
# },
|
5883
|
-
# my_sql_settings: {
|
5884
|
-
# after_connect_script: "String",
|
5885
|
-
# clean_source_metadata_on_mismatch: false,
|
5886
|
-
# database_name: "String",
|
5887
|
-
# events_poll_interval: 1,
|
5888
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
5889
|
-
# max_file_size: 1,
|
5890
|
-
# parallel_load_threads: 1,
|
5891
|
-
# password: "SecretString",
|
5892
|
-
# port: 1,
|
5893
|
-
# server_name: "String",
|
5894
|
-
# server_timezone: "String",
|
5895
|
-
# username: "String",
|
5896
|
-
# secrets_manager_access_role_arn: "String",
|
5897
|
-
# secrets_manager_secret_id: "String",
|
5898
|
-
# },
|
5899
|
-
# oracle_settings: {
|
5900
|
-
# add_supplemental_logging: false,
|
5901
|
-
# archived_log_dest_id: 1,
|
5902
|
-
# additional_archived_log_dest_id: 1,
|
5903
|
-
# extra_archived_log_dest_ids: [1],
|
5904
|
-
# allow_select_nested_tables: false,
|
5905
|
-
# parallel_asm_read_threads: 1,
|
5906
|
-
# read_ahead_blocks: 1,
|
5907
|
-
# access_alternate_directly: false,
|
5908
|
-
# use_alternate_folder_for_online: false,
|
5909
|
-
# oracle_path_prefix: "String",
|
5910
|
-
# use_path_prefix: "String",
|
5911
|
-
# replace_path_prefix: false,
|
5912
|
-
# enable_homogenous_tablespace: false,
|
5913
|
-
# direct_path_no_log: false,
|
5914
|
-
# archived_logs_only: false,
|
5915
|
-
# asm_password: "SecretString",
|
5916
|
-
# asm_server: "String",
|
5917
|
-
# asm_user: "String",
|
5918
|
-
# char_length_semantics: "default", # accepts default, char, byte
|
5919
|
-
# database_name: "String",
|
5920
|
-
# direct_path_parallel_load: false,
|
5921
|
-
# fail_tasks_on_lob_truncation: false,
|
5922
|
-
# number_datatype_scale: 1,
|
5923
|
-
# password: "SecretString",
|
5924
|
-
# port: 1,
|
5925
|
-
# read_table_space_name: false,
|
5926
|
-
# retry_interval: 1,
|
5927
|
-
# security_db_encryption: "SecretString",
|
5928
|
-
# security_db_encryption_name: "String",
|
5929
|
-
# server_name: "String",
|
5930
|
-
# spatial_data_option_to_geo_json_function_name: "String",
|
5931
|
-
# standby_delay_time: 1,
|
5932
|
-
# username: "String",
|
5933
|
-
# use_b_file: false,
|
5934
|
-
# use_direct_path_full_load: false,
|
5935
|
-
# use_logminer_reader: false,
|
5936
|
-
# secrets_manager_access_role_arn: "String",
|
5937
|
-
# secrets_manager_secret_id: "String",
|
5938
|
-
# secrets_manager_oracle_asm_access_role_arn: "String",
|
5939
|
-
# secrets_manager_oracle_asm_secret_id: "String",
|
5940
|
-
# trim_space_in_char: false,
|
5941
|
-
# },
|
5942
|
-
# sybase_settings: {
|
5943
|
-
# database_name: "String",
|
5944
|
-
# password: "SecretString",
|
5945
|
-
# port: 1,
|
5946
|
-
# server_name: "String",
|
5947
|
-
# username: "String",
|
5948
|
-
# secrets_manager_access_role_arn: "String",
|
5949
|
-
# secrets_manager_secret_id: "String",
|
5950
|
-
# },
|
5951
|
-
# microsoft_sql_server_settings: {
|
5952
|
-
# port: 1,
|
5953
|
-
# bcp_packet_size: 1,
|
5954
|
-
# database_name: "String",
|
5955
|
-
# control_tables_file_group: "String",
|
5956
|
-
# password: "SecretString",
|
5957
|
-
# query_single_always_on_node: false,
|
5958
|
-
# read_backup_only: false,
|
5959
|
-
# safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
|
5960
|
-
# server_name: "String",
|
5961
|
-
# username: "String",
|
5962
|
-
# use_bcp_full_load: false,
|
5963
|
-
# use_third_party_backup_device: false,
|
5964
|
-
# secrets_manager_access_role_arn: "String",
|
5965
|
-
# secrets_manager_secret_id: "String",
|
5966
|
-
# trim_space_in_char: false,
|
5967
|
-
# },
|
5968
|
-
# ibm_db_2_settings: {
|
5969
|
-
# database_name: "String",
|
5970
|
-
# password: "SecretString",
|
5971
|
-
# port: 1,
|
5972
|
-
# server_name: "String",
|
5973
|
-
# set_data_capture_changes: false,
|
5974
|
-
# current_lsn: "String",
|
5975
|
-
# max_k_bytes_per_read: 1,
|
5976
|
-
# username: "String",
|
5977
|
-
# secrets_manager_access_role_arn: "String",
|
5978
|
-
# secrets_manager_secret_id: "String",
|
5979
|
-
# },
|
5980
|
-
# doc_db_settings: {
|
5981
|
-
# username: "String",
|
5982
|
-
# password: "SecretString",
|
5983
|
-
# server_name: "String",
|
5984
|
-
# port: 1,
|
5985
|
-
# database_name: "String",
|
5986
|
-
# nesting_level: "none", # accepts none, one
|
5987
|
-
# extract_doc_id: false,
|
5988
|
-
# docs_to_investigate: 1,
|
5989
|
-
# kms_key_id: "String",
|
5990
|
-
# secrets_manager_access_role_arn: "String",
|
5991
|
-
# secrets_manager_secret_id: "String",
|
5992
|
-
# },
|
5993
|
-
# redis_settings: {
|
5994
|
-
# server_name: "String", # required
|
5995
|
-
# port: 1, # required
|
5996
|
-
# ssl_security_protocol: "plaintext", # accepts plaintext, ssl-encryption
|
5997
|
-
# auth_type: "none", # accepts none, auth-role, auth-token
|
5998
|
-
# auth_user_name: "String",
|
5999
|
-
# auth_password: "SecretString",
|
6000
|
-
# ssl_ca_certificate_arn: "String",
|
6001
|
-
# },
|
6002
|
-
# exact_settings: false,
|
6003
|
-
# gcp_my_sql_settings: {
|
6004
|
-
# after_connect_script: "String",
|
6005
|
-
# clean_source_metadata_on_mismatch: false,
|
6006
|
-
# database_name: "String",
|
6007
|
-
# events_poll_interval: 1,
|
6008
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
6009
|
-
# max_file_size: 1,
|
6010
|
-
# parallel_load_threads: 1,
|
6011
|
-
# password: "SecretString",
|
6012
|
-
# port: 1,
|
6013
|
-
# server_name: "String",
|
6014
|
-
# server_timezone: "String",
|
6015
|
-
# username: "String",
|
6016
|
-
# secrets_manager_access_role_arn: "String",
|
6017
|
-
# secrets_manager_secret_id: "String",
|
6018
|
-
# },
|
6019
|
-
# }
|
6020
|
-
#
|
6021
4675
|
# @!attribute [rw] endpoint_arn
|
6022
4676
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
6023
4677
|
# endpoint.
|
@@ -6034,12 +4688,12 @@ module Aws::DatabaseMigrationService
|
|
6034
4688
|
# @return [String]
|
6035
4689
|
#
|
6036
4690
|
# @!attribute [rw] engine_name
|
6037
|
-
# The
|
4691
|
+
# The database engine name. Valid values, depending on the
|
6038
4692
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
6039
|
-
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"
|
6040
|
-
# `"
|
6041
|
-
# `"
|
6042
|
-
# `"
|
4693
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
4694
|
+
# `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
|
4695
|
+
# `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
|
4696
|
+
# `"documentdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
|
6043
4697
|
# @return [String]
|
6044
4698
|
#
|
6045
4699
|
# @!attribute [rw] username
|
@@ -6362,17 +5016,6 @@ module Aws::DatabaseMigrationService
|
|
6362
5016
|
include Aws::Structure
|
6363
5017
|
end
|
6364
5018
|
|
6365
|
-
# @note When making an API call, you may pass ModifyEventSubscriptionMessage
|
6366
|
-
# data as a hash:
|
6367
|
-
#
|
6368
|
-
# {
|
6369
|
-
# subscription_name: "String", # required
|
6370
|
-
# sns_topic_arn: "String",
|
6371
|
-
# source_type: "String",
|
6372
|
-
# event_categories: ["String"],
|
6373
|
-
# enabled: false,
|
6374
|
-
# }
|
6375
|
-
#
|
6376
5019
|
# @!attribute [rw] subscription_name
|
6377
5020
|
# The name of the DMS event notification subscription to be modified.
|
6378
5021
|
# @return [String]
|
@@ -6424,23 +5067,6 @@ module Aws::DatabaseMigrationService
|
|
6424
5067
|
include Aws::Structure
|
6425
5068
|
end
|
6426
5069
|
|
6427
|
-
# @note When making an API call, you may pass ModifyReplicationInstanceMessage
|
6428
|
-
# data as a hash:
|
6429
|
-
#
|
6430
|
-
# {
|
6431
|
-
# replication_instance_arn: "String", # required
|
6432
|
-
# allocated_storage: 1,
|
6433
|
-
# apply_immediately: false,
|
6434
|
-
# replication_instance_class: "String",
|
6435
|
-
# vpc_security_group_ids: ["String"],
|
6436
|
-
# preferred_maintenance_window: "String",
|
6437
|
-
# multi_az: false,
|
6438
|
-
# engine_version: "String",
|
6439
|
-
# allow_major_version_upgrade: false,
|
6440
|
-
# auto_minor_version_upgrade: false,
|
6441
|
-
# replication_instance_identifier: "String",
|
6442
|
-
# }
|
6443
|
-
#
|
6444
5070
|
# @!attribute [rw] replication_instance_arn
|
6445
5071
|
# The Amazon Resource Name (ARN) of the replication instance.
|
6446
5072
|
# @return [String]
|
@@ -6538,6 +5164,12 @@ module Aws::DatabaseMigrationService
|
|
6538
5164
|
# lowercase string.
|
6539
5165
|
# @return [String]
|
6540
5166
|
#
|
5167
|
+
# @!attribute [rw] network_type
|
5168
|
+
# The type of IP address protocol used by a replication instance, such
|
5169
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
5170
|
+
# addressing. IPv6 only is not yet supported.
|
5171
|
+
# @return [String]
|
5172
|
+
#
|
6541
5173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstanceMessage AWS API Documentation
|
6542
5174
|
#
|
6543
5175
|
class ModifyReplicationInstanceMessage < Struct.new(
|
@@ -6551,7 +5183,8 @@ module Aws::DatabaseMigrationService
|
|
6551
5183
|
:engine_version,
|
6552
5184
|
:allow_major_version_upgrade,
|
6553
5185
|
:auto_minor_version_upgrade,
|
6554
|
-
:replication_instance_identifier
|
5186
|
+
:replication_instance_identifier,
|
5187
|
+
:network_type)
|
6555
5188
|
SENSITIVE = []
|
6556
5189
|
include Aws::Structure
|
6557
5190
|
end
|
@@ -6568,15 +5201,6 @@ module Aws::DatabaseMigrationService
|
|
6568
5201
|
include Aws::Structure
|
6569
5202
|
end
|
6570
5203
|
|
6571
|
-
# @note When making an API call, you may pass ModifyReplicationSubnetGroupMessage
|
6572
|
-
# data as a hash:
|
6573
|
-
#
|
6574
|
-
# {
|
6575
|
-
# replication_subnet_group_identifier: "String", # required
|
6576
|
-
# replication_subnet_group_description: "String",
|
6577
|
-
# subnet_ids: ["String"], # required
|
6578
|
-
# }
|
6579
|
-
#
|
6580
5204
|
# @!attribute [rw] replication_subnet_group_identifier
|
6581
5205
|
# The name of the replication instance subnet group.
|
6582
5206
|
# @return [String]
|
@@ -6611,21 +5235,6 @@ module Aws::DatabaseMigrationService
|
|
6611
5235
|
include Aws::Structure
|
6612
5236
|
end
|
6613
5237
|
|
6614
|
-
# @note When making an API call, you may pass ModifyReplicationTaskMessage
|
6615
|
-
# data as a hash:
|
6616
|
-
#
|
6617
|
-
# {
|
6618
|
-
# replication_task_arn: "String", # required
|
6619
|
-
# replication_task_identifier: "String",
|
6620
|
-
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
6621
|
-
# table_mappings: "String",
|
6622
|
-
# replication_task_settings: "String",
|
6623
|
-
# cdc_start_time: Time.now,
|
6624
|
-
# cdc_start_position: "String",
|
6625
|
-
# cdc_stop_position: "String",
|
6626
|
-
# task_data: "String",
|
6627
|
-
# }
|
6628
|
-
#
|
6629
5238
|
# @!attribute [rw] replication_task_arn
|
6630
5239
|
# The Amazon Resource Name (ARN) of the replication task.
|
6631
5240
|
# @return [String]
|
@@ -6749,26 +5358,6 @@ module Aws::DatabaseMigrationService
|
|
6749
5358
|
|
6750
5359
|
# Provides information that defines a MongoDB endpoint.
|
6751
5360
|
#
|
6752
|
-
# @note When making an API call, you may pass MongoDbSettings
|
6753
|
-
# data as a hash:
|
6754
|
-
#
|
6755
|
-
# {
|
6756
|
-
# username: "String",
|
6757
|
-
# password: "SecretString",
|
6758
|
-
# server_name: "String",
|
6759
|
-
# port: 1,
|
6760
|
-
# database_name: "String",
|
6761
|
-
# auth_type: "no", # accepts no, password
|
6762
|
-
# auth_mechanism: "default", # accepts default, mongodb_cr, scram_sha_1
|
6763
|
-
# nesting_level: "none", # accepts none, one
|
6764
|
-
# extract_doc_id: "String",
|
6765
|
-
# docs_to_investigate: "String",
|
6766
|
-
# auth_source: "String",
|
6767
|
-
# kms_key_id: "String",
|
6768
|
-
# secrets_manager_access_role_arn: "String",
|
6769
|
-
# secrets_manager_secret_id: "String",
|
6770
|
-
# }
|
6771
|
-
#
|
6772
5361
|
# @!attribute [rw] username
|
6773
5362
|
# The user name you use to access the MongoDB source endpoint.
|
6774
5363
|
# @return [String]
|
@@ -6898,14 +5487,6 @@ module Aws::DatabaseMigrationService
|
|
6898
5487
|
include Aws::Structure
|
6899
5488
|
end
|
6900
5489
|
|
6901
|
-
# @note When making an API call, you may pass MoveReplicationTaskMessage
|
6902
|
-
# data as a hash:
|
6903
|
-
#
|
6904
|
-
# {
|
6905
|
-
# replication_task_arn: "String", # required
|
6906
|
-
# target_replication_instance_arn: "String", # required
|
6907
|
-
# }
|
6908
|
-
#
|
6909
5490
|
# @!attribute [rw] replication_task_arn
|
6910
5491
|
# The Amazon Resource Name (ARN) of the task that you want to move.
|
6911
5492
|
# @return [String]
|
@@ -6938,26 +5519,6 @@ module Aws::DatabaseMigrationService
|
|
6938
5519
|
|
6939
5520
|
# Provides information that defines a MySQL endpoint.
|
6940
5521
|
#
|
6941
|
-
# @note When making an API call, you may pass MySQLSettings
|
6942
|
-
# data as a hash:
|
6943
|
-
#
|
6944
|
-
# {
|
6945
|
-
# after_connect_script: "String",
|
6946
|
-
# clean_source_metadata_on_mismatch: false,
|
6947
|
-
# database_name: "String",
|
6948
|
-
# events_poll_interval: 1,
|
6949
|
-
# target_db_type: "specific-database", # accepts specific-database, multiple-databases
|
6950
|
-
# max_file_size: 1,
|
6951
|
-
# parallel_load_threads: 1,
|
6952
|
-
# password: "SecretString",
|
6953
|
-
# port: 1,
|
6954
|
-
# server_name: "String",
|
6955
|
-
# server_timezone: "String",
|
6956
|
-
# username: "String",
|
6957
|
-
# secrets_manager_access_role_arn: "String",
|
6958
|
-
# secrets_manager_secret_id: "String",
|
6959
|
-
# }
|
6960
|
-
#
|
6961
5522
|
# @!attribute [rw] after_connect_script
|
6962
5523
|
# Specifies a script to run immediately after DMS connects to the
|
6963
5524
|
# endpoint. The migration task continues running regardless if the SQL
|
@@ -7100,19 +5661,6 @@ module Aws::DatabaseMigrationService
|
|
7100
5661
|
|
7101
5662
|
# Provides information that defines an Amazon Neptune endpoint.
|
7102
5663
|
#
|
7103
|
-
# @note When making an API call, you may pass NeptuneSettings
|
7104
|
-
# data as a hash:
|
7105
|
-
#
|
7106
|
-
# {
|
7107
|
-
# service_access_role_arn: "String",
|
7108
|
-
# s3_bucket_name: "String", # required
|
7109
|
-
# s3_bucket_folder: "String", # required
|
7110
|
-
# error_retry_duration: 1,
|
7111
|
-
# max_file_size: 1,
|
7112
|
-
# max_retry_count: 1,
|
7113
|
-
# iam_auth_enabled: false,
|
7114
|
-
# }
|
7115
|
-
#
|
7116
5664
|
# @!attribute [rw] service_access_role_arn
|
7117
5665
|
# The Amazon Resource Name (ARN) of the service role that you created
|
7118
5666
|
# for the Neptune target endpoint. The role must allow the
|
@@ -7180,53 +5728,6 @@ module Aws::DatabaseMigrationService
|
|
7180
5728
|
|
7181
5729
|
# Provides information that defines an Oracle endpoint.
|
7182
5730
|
#
|
7183
|
-
# @note When making an API call, you may pass OracleSettings
|
7184
|
-
# data as a hash:
|
7185
|
-
#
|
7186
|
-
# {
|
7187
|
-
# add_supplemental_logging: false,
|
7188
|
-
# archived_log_dest_id: 1,
|
7189
|
-
# additional_archived_log_dest_id: 1,
|
7190
|
-
# extra_archived_log_dest_ids: [1],
|
7191
|
-
# allow_select_nested_tables: false,
|
7192
|
-
# parallel_asm_read_threads: 1,
|
7193
|
-
# read_ahead_blocks: 1,
|
7194
|
-
# access_alternate_directly: false,
|
7195
|
-
# use_alternate_folder_for_online: false,
|
7196
|
-
# oracle_path_prefix: "String",
|
7197
|
-
# use_path_prefix: "String",
|
7198
|
-
# replace_path_prefix: false,
|
7199
|
-
# enable_homogenous_tablespace: false,
|
7200
|
-
# direct_path_no_log: false,
|
7201
|
-
# archived_logs_only: false,
|
7202
|
-
# asm_password: "SecretString",
|
7203
|
-
# asm_server: "String",
|
7204
|
-
# asm_user: "String",
|
7205
|
-
# char_length_semantics: "default", # accepts default, char, byte
|
7206
|
-
# database_name: "String",
|
7207
|
-
# direct_path_parallel_load: false,
|
7208
|
-
# fail_tasks_on_lob_truncation: false,
|
7209
|
-
# number_datatype_scale: 1,
|
7210
|
-
# password: "SecretString",
|
7211
|
-
# port: 1,
|
7212
|
-
# read_table_space_name: false,
|
7213
|
-
# retry_interval: 1,
|
7214
|
-
# security_db_encryption: "SecretString",
|
7215
|
-
# security_db_encryption_name: "String",
|
7216
|
-
# server_name: "String",
|
7217
|
-
# spatial_data_option_to_geo_json_function_name: "String",
|
7218
|
-
# standby_delay_time: 1,
|
7219
|
-
# username: "String",
|
7220
|
-
# use_b_file: false,
|
7221
|
-
# use_direct_path_full_load: false,
|
7222
|
-
# use_logminer_reader: false,
|
7223
|
-
# secrets_manager_access_role_arn: "String",
|
7224
|
-
# secrets_manager_secret_id: "String",
|
7225
|
-
# secrets_manager_oracle_asm_access_role_arn: "String",
|
7226
|
-
# secrets_manager_oracle_asm_secret_id: "String",
|
7227
|
-
# trim_space_in_char: false,
|
7228
|
-
# }
|
7229
|
-
#
|
7230
5731
|
# @!attribute [rw] add_supplemental_logging
|
7231
5732
|
# Set this attribute to set up table-level supplemental logging for
|
7232
5733
|
# the Oracle database. This attribute enables PRIMARY KEY supplemental
|
@@ -7364,8 +5865,9 @@ module Aws::DatabaseMigrationService
|
|
7364
5865
|
#
|
7365
5866
|
# @!attribute [rw] archived_logs_only
|
7366
5867
|
# When this field is set to `Y`, DMS only accesses the archived redo
|
7367
|
-
# logs. If the archived redo logs are stored on
|
7368
|
-
# DMS user account needs to be granted ASM
|
5868
|
+
# logs. If the archived redo logs are stored on Automatic Storage
|
5869
|
+
# Management (ASM) only, the DMS user account needs to be granted ASM
|
5870
|
+
# privileges.
|
7369
5871
|
# @return [Boolean]
|
7370
5872
|
#
|
7371
5873
|
# @!attribute [rw] asm_password
|
@@ -7589,9 +6091,9 @@ module Aws::DatabaseMigrationService
|
|
7589
6091
|
# @return [String]
|
7590
6092
|
#
|
7591
6093
|
# @!attribute [rw] secrets_manager_oracle_asm_access_role_arn
|
7592
|
-
# Required only if your Oracle endpoint uses
|
7593
|
-
# (ASM). The full ARN of the IAM role that specifies DMS as
|
7594
|
-
# trusted entity and grants the required permissions to access the
|
6094
|
+
# Required only if your Oracle endpoint uses Automatic Storage
|
6095
|
+
# Management (ASM). The full ARN of the IAM role that specifies DMS as
|
6096
|
+
# the trusted entity and grants the required permissions to access the
|
7595
6097
|
# `SecretsManagerOracleAsmSecret`. This
|
7596
6098
|
# `SecretsManagerOracleAsmSecret` has the secret value that allows
|
7597
6099
|
# access to the Oracle ASM of the endpoint.
|
@@ -7615,8 +6117,8 @@ module Aws::DatabaseMigrationService
|
|
7615
6117
|
# @return [String]
|
7616
6118
|
#
|
7617
6119
|
# @!attribute [rw] secrets_manager_oracle_asm_secret_id
|
7618
|
-
# Required only if your Oracle endpoint uses
|
7619
|
-
# (ASM). The full ARN, partial ARN, or friendly name of the
|
6120
|
+
# Required only if your Oracle endpoint uses Automatic Storage
|
6121
|
+
# Management (ASM). The full ARN, partial ARN, or friendly name of the
|
7620
6122
|
# `SecretsManagerOracleAsmSecret` that contains the Oracle ASM
|
7621
6123
|
# connection details for the Oracle endpoint.
|
7622
6124
|
# @return [String]
|
@@ -7810,31 +6312,6 @@ module Aws::DatabaseMigrationService
|
|
7810
6312
|
|
7811
6313
|
# Provides information that defines a PostgreSQL endpoint.
|
7812
6314
|
#
|
7813
|
-
# @note When making an API call, you may pass PostgreSQLSettings
|
7814
|
-
# data as a hash:
|
7815
|
-
#
|
7816
|
-
# {
|
7817
|
-
# after_connect_script: "String",
|
7818
|
-
# capture_ddls: false,
|
7819
|
-
# max_file_size: 1,
|
7820
|
-
# database_name: "String",
|
7821
|
-
# ddl_artifacts_schema: "String",
|
7822
|
-
# execute_timeout: 1,
|
7823
|
-
# fail_tasks_on_lob_truncation: false,
|
7824
|
-
# heartbeat_enable: false,
|
7825
|
-
# heartbeat_schema: "String",
|
7826
|
-
# heartbeat_frequency: 1,
|
7827
|
-
# password: "SecretString",
|
7828
|
-
# port: 1,
|
7829
|
-
# server_name: "String",
|
7830
|
-
# username: "String",
|
7831
|
-
# slot_name: "String",
|
7832
|
-
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
7833
|
-
# secrets_manager_access_role_arn: "String",
|
7834
|
-
# secrets_manager_secret_id: "String",
|
7835
|
-
# trim_space_in_char: false,
|
7836
|
-
# }
|
7837
|
-
#
|
7838
6315
|
# @!attribute [rw] after_connect_script
|
7839
6316
|
# For use with change data capture (CDC) only, this attribute has DMS
|
7840
6317
|
# bypass foreign keys and user triggers to reduce the time it takes to
|
@@ -8010,15 +6487,6 @@ module Aws::DatabaseMigrationService
|
|
8010
6487
|
include Aws::Structure
|
8011
6488
|
end
|
8012
6489
|
|
8013
|
-
# @note When making an API call, you may pass RebootReplicationInstanceMessage
|
8014
|
-
# data as a hash:
|
8015
|
-
#
|
8016
|
-
# {
|
8017
|
-
# replication_instance_arn: "String", # required
|
8018
|
-
# force_failover: false,
|
8019
|
-
# force_planned_failover: false,
|
8020
|
-
# }
|
8021
|
-
#
|
8022
6490
|
# @!attribute [rw] replication_instance_arn
|
8023
6491
|
# The Amazon Resource Name (ARN) of the replication instance.
|
8024
6492
|
# @return [String]
|
@@ -8063,19 +6531,6 @@ module Aws::DatabaseMigrationService
|
|
8063
6531
|
|
8064
6532
|
# Provides information that defines a Redis target endpoint.
|
8065
6533
|
#
|
8066
|
-
# @note When making an API call, you may pass RedisSettings
|
8067
|
-
# data as a hash:
|
8068
|
-
#
|
8069
|
-
# {
|
8070
|
-
# server_name: "String", # required
|
8071
|
-
# port: 1, # required
|
8072
|
-
# ssl_security_protocol: "plaintext", # accepts plaintext, ssl-encryption
|
8073
|
-
# auth_type: "none", # accepts none, auth-role, auth-token
|
8074
|
-
# auth_user_name: "String",
|
8075
|
-
# auth_password: "SecretString",
|
8076
|
-
# ssl_ca_certificate_arn: "String",
|
8077
|
-
# }
|
8078
|
-
#
|
8079
6534
|
# @!attribute [rw] server_name
|
8080
6535
|
# Fully qualified domain name of the endpoint.
|
8081
6536
|
# @return [String]
|
@@ -8136,42 +6591,6 @@ module Aws::DatabaseMigrationService
|
|
8136
6591
|
|
8137
6592
|
# Provides information that defines an Amazon Redshift endpoint.
|
8138
6593
|
#
|
8139
|
-
# @note When making an API call, you may pass RedshiftSettings
|
8140
|
-
# data as a hash:
|
8141
|
-
#
|
8142
|
-
# {
|
8143
|
-
# accept_any_date: false,
|
8144
|
-
# after_connect_script: "String",
|
8145
|
-
# bucket_folder: "String",
|
8146
|
-
# bucket_name: "String",
|
8147
|
-
# case_sensitive_names: false,
|
8148
|
-
# comp_update: false,
|
8149
|
-
# connection_timeout: 1,
|
8150
|
-
# database_name: "String",
|
8151
|
-
# date_format: "String",
|
8152
|
-
# empty_as_null: false,
|
8153
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
8154
|
-
# explicit_ids: false,
|
8155
|
-
# file_transfer_upload_streams: 1,
|
8156
|
-
# load_timeout: 1,
|
8157
|
-
# max_file_size: 1,
|
8158
|
-
# password: "SecretString",
|
8159
|
-
# port: 1,
|
8160
|
-
# remove_quotes: false,
|
8161
|
-
# replace_invalid_chars: "String",
|
8162
|
-
# replace_chars: "String",
|
8163
|
-
# server_name: "String",
|
8164
|
-
# service_access_role_arn: "String",
|
8165
|
-
# server_side_encryption_kms_key_id: "String",
|
8166
|
-
# time_format: "String",
|
8167
|
-
# trim_blanks: false,
|
8168
|
-
# truncate_columns: false,
|
8169
|
-
# username: "String",
|
8170
|
-
# write_buffer_size: 1,
|
8171
|
-
# secrets_manager_access_role_arn: "String",
|
8172
|
-
# secrets_manager_secret_id: "String",
|
8173
|
-
# }
|
8174
|
-
#
|
8175
6594
|
# @!attribute [rw] accept_any_date
|
8176
6595
|
# A value that indicates to allow any date format, including invalid
|
8177
6596
|
# formats such as 00/00/00 00:00:00, to be loaded without generating
|
@@ -8453,14 +6872,6 @@ module Aws::DatabaseMigrationService
|
|
8453
6872
|
include Aws::Structure
|
8454
6873
|
end
|
8455
6874
|
|
8456
|
-
# @note When making an API call, you may pass RefreshSchemasMessage
|
8457
|
-
# data as a hash:
|
8458
|
-
#
|
8459
|
-
# {
|
8460
|
-
# endpoint_arn: "String", # required
|
8461
|
-
# replication_instance_arn: "String", # required
|
8462
|
-
# }
|
8463
|
-
#
|
8464
6875
|
# @!attribute [rw] endpoint_arn
|
8465
6876
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
8466
6877
|
# endpoint.
|
@@ -8527,20 +6938,6 @@ module Aws::DatabaseMigrationService
|
|
8527
6938
|
include Aws::Structure
|
8528
6939
|
end
|
8529
6940
|
|
8530
|
-
# @note When making an API call, you may pass ReloadTablesMessage
|
8531
|
-
# data as a hash:
|
8532
|
-
#
|
8533
|
-
# {
|
8534
|
-
# replication_task_arn: "String", # required
|
8535
|
-
# tables_to_reload: [ # required
|
8536
|
-
# {
|
8537
|
-
# schema_name: "String", # required
|
8538
|
-
# table_name: "String", # required
|
8539
|
-
# },
|
8540
|
-
# ],
|
8541
|
-
# reload_option: "data-reload", # accepts data-reload, validate-only
|
8542
|
-
# }
|
8543
|
-
#
|
8544
6941
|
# @!attribute [rw] replication_task_arn
|
8545
6942
|
# The Amazon Resource Name (ARN) of the replication task.
|
8546
6943
|
# @return [String]
|
@@ -8584,14 +6981,6 @@ module Aws::DatabaseMigrationService
|
|
8584
6981
|
|
8585
6982
|
# Removes one or more tags from an DMS resource.
|
8586
6983
|
#
|
8587
|
-
# @note When making an API call, you may pass RemoveTagsFromResourceMessage
|
8588
|
-
# data as a hash:
|
8589
|
-
#
|
8590
|
-
# {
|
8591
|
-
# resource_arn: "String", # required
|
8592
|
-
# tag_keys: ["String"], # required
|
8593
|
-
# }
|
8594
|
-
#
|
8595
6984
|
# @!attribute [rw] resource_arn
|
8596
6985
|
# An DMS resource from which you want to remove tag(s). The value for
|
8597
6986
|
# this parameter is an Amazon Resource Name (ARN).
|
@@ -8762,6 +7151,10 @@ module Aws::DatabaseMigrationService
|
|
8762
7151
|
# One or more private IP addresses for the replication instance.
|
8763
7152
|
# @return [Array<String>]
|
8764
7153
|
#
|
7154
|
+
# @!attribute [rw] replication_instance_ipv_6_addresses
|
7155
|
+
# One or more IPv6 addresses for the replication instance.
|
7156
|
+
# @return [Array<String>]
|
7157
|
+
#
|
8765
7158
|
# @!attribute [rw] publicly_accessible
|
8766
7159
|
# Specifies the accessibility options for the replication instance. A
|
8767
7160
|
# value of `true` represents an instance with a public IP address. A
|
@@ -8784,6 +7177,12 @@ module Aws::DatabaseMigrationService
|
|
8784
7177
|
# access your on-premise source or target database.
|
8785
7178
|
# @return [String]
|
8786
7179
|
#
|
7180
|
+
# @!attribute [rw] network_type
|
7181
|
+
# The type of IP address protocol used by a replication instance, such
|
7182
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
7183
|
+
# addressing. IPv6 only is not yet supported.
|
7184
|
+
# @return [String]
|
7185
|
+
#
|
8787
7186
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
|
8788
7187
|
#
|
8789
7188
|
class ReplicationInstance < Struct.new(
|
@@ -8806,10 +7205,12 @@ module Aws::DatabaseMigrationService
|
|
8806
7205
|
:replication_instance_private_ip_address,
|
8807
7206
|
:replication_instance_public_ip_addresses,
|
8808
7207
|
:replication_instance_private_ip_addresses,
|
7208
|
+
:replication_instance_ipv_6_addresses,
|
8809
7209
|
:publicly_accessible,
|
8810
7210
|
:secondary_availability_zone,
|
8811
7211
|
:free_until,
|
8812
|
-
:dns_name_servers
|
7212
|
+
:dns_name_servers,
|
7213
|
+
:network_type)
|
8813
7214
|
SENSITIVE = []
|
8814
7215
|
include Aws::Structure
|
8815
7216
|
end
|
@@ -8874,13 +7275,20 @@ module Aws::DatabaseMigrationService
|
|
8874
7275
|
# The engine version number of the replication instance.
|
8875
7276
|
# @return [String]
|
8876
7277
|
#
|
7278
|
+
# @!attribute [rw] network_type
|
7279
|
+
# The type of IP address protocol used by a replication instance, such
|
7280
|
+
# as IPv4 only or Dual-stack that supports both IPv4 and IPv6
|
7281
|
+
# addressing. IPv6 only is not yet supported.
|
7282
|
+
# @return [String]
|
7283
|
+
#
|
8877
7284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationPendingModifiedValues AWS API Documentation
|
8878
7285
|
#
|
8879
7286
|
class ReplicationPendingModifiedValues < Struct.new(
|
8880
7287
|
:replication_instance_class,
|
8881
7288
|
:allocated_storage,
|
8882
7289
|
:multi_az,
|
8883
|
-
:engine_version
|
7290
|
+
:engine_version,
|
7291
|
+
:network_type)
|
8884
7292
|
SENSITIVE = []
|
8885
7293
|
include Aws::Structure
|
8886
7294
|
end
|
@@ -8908,6 +7316,13 @@ module Aws::DatabaseMigrationService
|
|
8908
7316
|
# The subnets that are in the subnet group.
|
8909
7317
|
# @return [Array<Types::Subnet>]
|
8910
7318
|
#
|
7319
|
+
# @!attribute [rw] supported_network_types
|
7320
|
+
# The IP addressing protocol supported by the subnet group. This is
|
7321
|
+
# used by a replication instance with values such as IPv4 only or
|
7322
|
+
# Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is
|
7323
|
+
# not yet supported.
|
7324
|
+
# @return [Array<String>]
|
7325
|
+
#
|
8911
7326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationSubnetGroup AWS API Documentation
|
8912
7327
|
#
|
8913
7328
|
class ReplicationSubnetGroup < Struct.new(
|
@@ -8915,7 +7330,8 @@ module Aws::DatabaseMigrationService
|
|
8915
7330
|
:replication_subnet_group_description,
|
8916
7331
|
:vpc_id,
|
8917
7332
|
:subnet_group_status,
|
8918
|
-
:subnets
|
7333
|
+
:subnets,
|
7334
|
+
:supported_network_types)
|
8919
7335
|
SENSITIVE = []
|
8920
7336
|
include Aws::Structure
|
8921
7337
|
end
|
@@ -9610,52 +8026,6 @@ module Aws::DatabaseMigrationService
|
|
9610
8026
|
|
9611
8027
|
# Settings for exporting data to Amazon S3.
|
9612
8028
|
#
|
9613
|
-
# @note When making an API call, you may pass S3Settings
|
9614
|
-
# data as a hash:
|
9615
|
-
#
|
9616
|
-
# {
|
9617
|
-
# service_access_role_arn: "String",
|
9618
|
-
# external_table_definition: "String",
|
9619
|
-
# csv_row_delimiter: "String",
|
9620
|
-
# csv_delimiter: "String",
|
9621
|
-
# bucket_folder: "String",
|
9622
|
-
# bucket_name: "String",
|
9623
|
-
# compression_type: "none", # accepts none, gzip
|
9624
|
-
# encryption_mode: "sse-s3", # accepts sse-s3, sse-kms
|
9625
|
-
# server_side_encryption_kms_key_id: "String",
|
9626
|
-
# data_format: "csv", # accepts csv, parquet
|
9627
|
-
# encoding_type: "plain", # accepts plain, plain-dictionary, rle-dictionary
|
9628
|
-
# dict_page_size_limit: 1,
|
9629
|
-
# row_group_length: 1,
|
9630
|
-
# data_page_size: 1,
|
9631
|
-
# parquet_version: "parquet-1-0", # accepts parquet-1-0, parquet-2-0
|
9632
|
-
# enable_statistics: false,
|
9633
|
-
# include_op_for_full_load: false,
|
9634
|
-
# cdc_inserts_only: false,
|
9635
|
-
# timestamp_column_name: "String",
|
9636
|
-
# parquet_timestamp_in_millisecond: false,
|
9637
|
-
# cdc_inserts_and_updates: false,
|
9638
|
-
# date_partition_enabled: false,
|
9639
|
-
# date_partition_sequence: "YYYYMMDD", # accepts YYYYMMDD, YYYYMMDDHH, YYYYMM, MMYYYYDD, DDMMYYYY
|
9640
|
-
# date_partition_delimiter: "SLASH", # accepts SLASH, UNDERSCORE, DASH, NONE
|
9641
|
-
# use_csv_no_sup_value: false,
|
9642
|
-
# csv_no_sup_value: "String",
|
9643
|
-
# preserve_transactions: false,
|
9644
|
-
# cdc_path: "String",
|
9645
|
-
# use_task_start_time_for_full_load_timestamp: false,
|
9646
|
-
# 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
|
9647
|
-
# add_column_name: false,
|
9648
|
-
# cdc_max_batch_interval: 1,
|
9649
|
-
# cdc_min_file_size: 1,
|
9650
|
-
# csv_null_value: "String",
|
9651
|
-
# ignore_header_rows: 1,
|
9652
|
-
# max_file_size: 1,
|
9653
|
-
# rfc_4180: false,
|
9654
|
-
# date_partition_timezone: "String",
|
9655
|
-
# add_trailing_padding_character: false,
|
9656
|
-
# expected_bucket_owner: "String",
|
9657
|
-
# }
|
9658
|
-
#
|
9659
8029
|
# @!attribute [rw] service_access_role_arn
|
9660
8030
|
# The Amazon Resource Name (ARN) used by the service to access the IAM
|
9661
8031
|
# role. The role must allow the `iam:PassRole` action. It is a
|
@@ -10134,7 +8504,7 @@ module Aws::DatabaseMigrationService
|
|
10134
8504
|
# @return [Integer]
|
10135
8505
|
#
|
10136
8506
|
# @!attribute [rw] cdc_min_file_size
|
10137
|
-
# Minimum file size, defined in
|
8507
|
+
# Minimum file size, defined in kilobytes, to reach for a file output
|
10138
8508
|
# to Amazon S3.
|
10139
8509
|
#
|
10140
8510
|
# When `CdcMinFileSize` and `CdcMaxBatchInterval` are both specified,
|
@@ -10415,13 +8785,6 @@ module Aws::DatabaseMigrationService
|
|
10415
8785
|
include Aws::Structure
|
10416
8786
|
end
|
10417
8787
|
|
10418
|
-
# @note When making an API call, you may pass StartReplicationTaskAssessmentMessage
|
10419
|
-
# data as a hash:
|
10420
|
-
#
|
10421
|
-
# {
|
10422
|
-
# replication_task_arn: "String", # required
|
10423
|
-
# }
|
10424
|
-
#
|
10425
8788
|
# @!attribute [rw] replication_task_arn
|
10426
8789
|
# The Amazon Resource Name (ARN) of the replication task.
|
10427
8790
|
# @return [String]
|
@@ -10446,21 +8809,6 @@ module Aws::DatabaseMigrationService
|
|
10446
8809
|
include Aws::Structure
|
10447
8810
|
end
|
10448
8811
|
|
10449
|
-
# @note When making an API call, you may pass StartReplicationTaskAssessmentRunMessage
|
10450
|
-
# data as a hash:
|
10451
|
-
#
|
10452
|
-
# {
|
10453
|
-
# replication_task_arn: "String", # required
|
10454
|
-
# service_access_role_arn: "String", # required
|
10455
|
-
# result_location_bucket: "String", # required
|
10456
|
-
# result_location_folder: "String",
|
10457
|
-
# result_encryption_mode: "String",
|
10458
|
-
# result_kms_key_arn: "String",
|
10459
|
-
# assessment_run_name: "String", # required
|
10460
|
-
# include_only: ["String"],
|
10461
|
-
# exclude: ["String"],
|
10462
|
-
# }
|
10463
|
-
#
|
10464
8812
|
# @!attribute [rw] replication_task_arn
|
10465
8813
|
# Amazon Resource Name (ARN) of the migration task associated with the
|
10466
8814
|
# premigration assessment run that you want to start.
|
@@ -10566,17 +8914,6 @@ module Aws::DatabaseMigrationService
|
|
10566
8914
|
include Aws::Structure
|
10567
8915
|
end
|
10568
8916
|
|
10569
|
-
# @note When making an API call, you may pass StartReplicationTaskMessage
|
10570
|
-
# data as a hash:
|
10571
|
-
#
|
10572
|
-
# {
|
10573
|
-
# replication_task_arn: "String", # required
|
10574
|
-
# start_replication_task_type: "start-replication", # required, accepts start-replication, resume-processing, reload-target
|
10575
|
-
# cdc_start_time: Time.now,
|
10576
|
-
# cdc_start_position: "String",
|
10577
|
-
# cdc_stop_position: "String",
|
10578
|
-
# }
|
10579
|
-
#
|
10580
8917
|
# @!attribute [rw] replication_task_arn
|
10581
8918
|
# The Amazon Resource Name (ARN) of the replication task to be
|
10582
8919
|
# started.
|
@@ -10669,13 +9006,6 @@ module Aws::DatabaseMigrationService
|
|
10669
9006
|
include Aws::Structure
|
10670
9007
|
end
|
10671
9008
|
|
10672
|
-
# @note When making an API call, you may pass StopReplicationTaskMessage
|
10673
|
-
# data as a hash:
|
10674
|
-
#
|
10675
|
-
# {
|
10676
|
-
# replication_task_arn: "String", # required
|
10677
|
-
# }
|
10678
|
-
#
|
10679
9009
|
# @!attribute [rw] replication_task_arn
|
10680
9010
|
# The Amazon Resource Name(ARN) of the replication task to be stopped.
|
10681
9011
|
# @return [String]
|
@@ -10761,9 +9091,9 @@ module Aws::DatabaseMigrationService
|
|
10761
9091
|
# The database engine name. Valid values, depending on the
|
10762
9092
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
10763
9093
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
10764
|
-
# `"s3"`, `"db2"`, `"
|
10765
|
-
# `"
|
10766
|
-
# `"sqlserver"`, and `"
|
9094
|
+
# `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
|
9095
|
+
# `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
|
9096
|
+
# `"documentdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
|
10767
9097
|
# @return [String]
|
10768
9098
|
#
|
10769
9099
|
# @!attribute [rw] supports_cdc
|
@@ -10782,8 +9112,8 @@ module Aws::DatabaseMigrationService
|
|
10782
9112
|
#
|
10783
9113
|
# @!attribute [rw] engine_display_name
|
10784
9114
|
# The expanded name for the engine name. For example, if the
|
10785
|
-
# `EngineName` parameter is "aurora,
|
10786
|
-
# Aurora MySQL.
|
9115
|
+
# `EngineName` parameter is "aurora", this value would be "Amazon
|
9116
|
+
# Aurora MySQL".
|
10787
9117
|
# @return [String]
|
10788
9118
|
#
|
10789
9119
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SupportedEndpointType AWS API Documentation
|
@@ -10800,19 +9130,6 @@ module Aws::DatabaseMigrationService
|
|
10800
9130
|
|
10801
9131
|
# Provides information that defines a SAP ASE endpoint.
|
10802
9132
|
#
|
10803
|
-
# @note When making an API call, you may pass SybaseSettings
|
10804
|
-
# data as a hash:
|
10805
|
-
#
|
10806
|
-
# {
|
10807
|
-
# database_name: "String",
|
10808
|
-
# password: "SecretString",
|
10809
|
-
# port: 1,
|
10810
|
-
# server_name: "String",
|
10811
|
-
# username: "String",
|
10812
|
-
# secrets_manager_access_role_arn: "String",
|
10813
|
-
# secrets_manager_secret_id: "String",
|
10814
|
-
# }
|
10815
|
-
#
|
10816
9133
|
# @!attribute [rw] database_name
|
10817
9134
|
# Database name for the endpoint.
|
10818
9135
|
# @return [String]
|
@@ -10906,6 +9223,23 @@ module Aws::DatabaseMigrationService
|
|
10906
9223
|
# structure of your tables.
|
10907
9224
|
# @return [Integer]
|
10908
9225
|
#
|
9226
|
+
# @!attribute [rw] applied_inserts
|
9227
|
+
# The number of insert actions applied on a target table.
|
9228
|
+
# @return [Integer]
|
9229
|
+
#
|
9230
|
+
# @!attribute [rw] applied_deletes
|
9231
|
+
# The number of delete actions applied on a target table.
|
9232
|
+
# @return [Integer]
|
9233
|
+
#
|
9234
|
+
# @!attribute [rw] applied_updates
|
9235
|
+
# The number of update actions applied on a target table.
|
9236
|
+
# @return [Integer]
|
9237
|
+
#
|
9238
|
+
# @!attribute [rw] applied_ddls
|
9239
|
+
# The number of data definition language (DDL) statements used to
|
9240
|
+
# build and modify the structure of your tables applied on the target.
|
9241
|
+
# @return [Integer]
|
9242
|
+
#
|
10909
9243
|
# @!attribute [rw] full_load_rows
|
10910
9244
|
# The number of rows added during the full load operation.
|
10911
9245
|
# @return [Integer]
|
@@ -11009,6 +9343,10 @@ module Aws::DatabaseMigrationService
|
|
11009
9343
|
:deletes,
|
11010
9344
|
:updates,
|
11011
9345
|
:ddls,
|
9346
|
+
:applied_inserts,
|
9347
|
+
:applied_deletes,
|
9348
|
+
:applied_updates,
|
9349
|
+
:applied_ddls,
|
11012
9350
|
:full_load_rows,
|
11013
9351
|
:full_load_condtnl_chk_failed_rows,
|
11014
9352
|
:full_load_error_rows,
|
@@ -11028,14 +9366,6 @@ module Aws::DatabaseMigrationService
|
|
11028
9366
|
|
11029
9367
|
# Provides the name of the schema and table to be reloaded.
|
11030
9368
|
#
|
11031
|
-
# @note When making an API call, you may pass TableToReload
|
11032
|
-
# data as a hash:
|
11033
|
-
#
|
11034
|
-
# {
|
11035
|
-
# schema_name: "String", # required
|
11036
|
-
# table_name: "String", # required
|
11037
|
-
# }
|
11038
|
-
#
|
11039
9369
|
# @!attribute [rw] schema_name
|
11040
9370
|
# The schema name of the table to be reloaded.
|
11041
9371
|
# @return [String]
|
@@ -11062,15 +9392,6 @@ module Aws::DatabaseMigrationService
|
|
11062
9392
|
#
|
11063
9393
|
# * `RemoveTagsFromResource`
|
11064
9394
|
#
|
11065
|
-
# @note When making an API call, you may pass Tag
|
11066
|
-
# data as a hash:
|
11067
|
-
#
|
11068
|
-
# {
|
11069
|
-
# key: "String",
|
11070
|
-
# value: "String",
|
11071
|
-
# resource_arn: "String",
|
11072
|
-
# }
|
11073
|
-
#
|
11074
9395
|
# @!attribute [rw] key
|
11075
9396
|
# A key is the required name of the tag. The string value can be 1-128
|
11076
9397
|
# Unicode characters in length and can't be prefixed with "aws:" or
|
@@ -11104,14 +9425,6 @@ module Aws::DatabaseMigrationService
|
|
11104
9425
|
include Aws::Structure
|
11105
9426
|
end
|
11106
9427
|
|
11107
|
-
# @note When making an API call, you may pass TestConnectionMessage
|
11108
|
-
# data as a hash:
|
11109
|
-
#
|
11110
|
-
# {
|
11111
|
-
# replication_instance_arn: "String", # required
|
11112
|
-
# endpoint_arn: "String", # required
|
11113
|
-
# }
|
11114
|
-
#
|
11115
9428
|
# @!attribute [rw] replication_instance_arn
|
11116
9429
|
# The Amazon Resource Name (ARN) of the replication instance.
|
11117
9430
|
# @return [String]
|
@@ -11142,13 +9455,6 @@ module Aws::DatabaseMigrationService
|
|
11142
9455
|
include Aws::Structure
|
11143
9456
|
end
|
11144
9457
|
|
11145
|
-
# @note When making an API call, you may pass UpdateSubscriptionsToEventBridgeMessage
|
11146
|
-
# data as a hash:
|
11147
|
-
#
|
11148
|
-
# {
|
11149
|
-
# force_move: false,
|
11150
|
-
# }
|
11151
|
-
#
|
11152
9458
|
# @!attribute [rw] force_move
|
11153
9459
|
# When set to true, this operation migrates DMS subscriptions for
|
11154
9460
|
# Amazon SNS notifications no matter what your replication instance
|