aws-sdk-databasemigrationservice 1.31.0 → 1.36.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 +5 -5
- data/lib/aws-sdk-databasemigrationservice.rb +3 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +217 -57
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +19 -0
- data/lib/aws-sdk-databasemigrationservice/customizations.rb +1 -0
- data/lib/aws-sdk-databasemigrationservice/errors.rb +2 -0
- data/lib/aws-sdk-databasemigrationservice/resource.rb +3 -7
- data/lib/aws-sdk-databasemigrationservice/types.rb +348 -29
- data/lib/aws-sdk-databasemigrationservice/waiters.rb +70 -0
- metadata +5 -5
| @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -143,6 +145,7 @@ module Aws::DatabaseMigrationService | |
| 143 145 | 
             
                ModifyReplicationTaskMessage = Shapes::StructureShape.new(name: 'ModifyReplicationTaskMessage')
         | 
| 144 146 | 
             
                ModifyReplicationTaskResponse = Shapes::StructureShape.new(name: 'ModifyReplicationTaskResponse')
         | 
| 145 147 | 
             
                MongoDbSettings = Shapes::StructureShape.new(name: 'MongoDbSettings')
         | 
| 148 | 
            +
                NeptuneSettings = Shapes::StructureShape.new(name: 'NeptuneSettings')
         | 
| 146 149 | 
             
                NestingLevelValue = Shapes::StringShape.new(name: 'NestingLevelValue')
         | 
| 147 150 | 
             
                OrderableReplicationInstance = Shapes::StructureShape.new(name: 'OrderableReplicationInstance')
         | 
| 148 151 | 
             
                OrderableReplicationInstanceList = Shapes::ListShape.new(name: 'OrderableReplicationInstanceList')
         | 
| @@ -295,6 +298,7 @@ module Aws::DatabaseMigrationService | |
| 295 298 | 
             
                CreateEndpointMessage.add_member(:kinesis_settings, Shapes::ShapeRef.new(shape: KinesisSettings, location_name: "KinesisSettings"))
         | 
| 296 299 | 
             
                CreateEndpointMessage.add_member(:kafka_settings, Shapes::ShapeRef.new(shape: KafkaSettings, location_name: "KafkaSettings"))
         | 
| 297 300 | 
             
                CreateEndpointMessage.add_member(:elasticsearch_settings, Shapes::ShapeRef.new(shape: ElasticsearchSettings, location_name: "ElasticsearchSettings"))
         | 
| 301 | 
            +
                CreateEndpointMessage.add_member(:neptune_settings, Shapes::ShapeRef.new(shape: NeptuneSettings, location_name: "NeptuneSettings"))
         | 
| 298 302 | 
             
                CreateEndpointMessage.add_member(:redshift_settings, Shapes::ShapeRef.new(shape: RedshiftSettings, location_name: "RedshiftSettings"))
         | 
| 299 303 | 
             
                CreateEndpointMessage.struct_class = Types::CreateEndpointMessage
         | 
| 300 304 |  | 
| @@ -352,6 +356,7 @@ module Aws::DatabaseMigrationService | |
| 352 356 | 
             
                CreateReplicationTaskMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
         | 
| 353 357 | 
             
                CreateReplicationTaskMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
         | 
| 354 358 | 
             
                CreateReplicationTaskMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
         | 
| 359 | 
            +
                CreateReplicationTaskMessage.add_member(:task_data, Shapes::ShapeRef.new(shape: String, location_name: "TaskData"))
         | 
| 355 360 | 
             
                CreateReplicationTaskMessage.struct_class = Types::CreateReplicationTaskMessage
         | 
| 356 361 |  | 
| 357 362 | 
             
                CreateReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
         | 
| @@ -602,6 +607,7 @@ module Aws::DatabaseMigrationService | |
| 602 607 | 
             
                Endpoint.add_member(:kinesis_settings, Shapes::ShapeRef.new(shape: KinesisSettings, location_name: "KinesisSettings"))
         | 
| 603 608 | 
             
                Endpoint.add_member(:kafka_settings, Shapes::ShapeRef.new(shape: KafkaSettings, location_name: "KafkaSettings"))
         | 
| 604 609 | 
             
                Endpoint.add_member(:elasticsearch_settings, Shapes::ShapeRef.new(shape: ElasticsearchSettings, location_name: "ElasticsearchSettings"))
         | 
| 610 | 
            +
                Endpoint.add_member(:neptune_settings, Shapes::ShapeRef.new(shape: NeptuneSettings, location_name: "NeptuneSettings"))
         | 
| 605 611 | 
             
                Endpoint.add_member(:redshift_settings, Shapes::ShapeRef.new(shape: RedshiftSettings, location_name: "RedshiftSettings"))
         | 
| 606 612 | 
             
                Endpoint.struct_class = Types::Endpoint
         | 
| 607 613 |  | 
| @@ -727,6 +733,7 @@ module Aws::DatabaseMigrationService | |
| 727 733 | 
             
                ModifyEndpointMessage.add_member(:kinesis_settings, Shapes::ShapeRef.new(shape: KinesisSettings, location_name: "KinesisSettings"))
         | 
| 728 734 | 
             
                ModifyEndpointMessage.add_member(:kafka_settings, Shapes::ShapeRef.new(shape: KafkaSettings, location_name: "KafkaSettings"))
         | 
| 729 735 | 
             
                ModifyEndpointMessage.add_member(:elasticsearch_settings, Shapes::ShapeRef.new(shape: ElasticsearchSettings, location_name: "ElasticsearchSettings"))
         | 
| 736 | 
            +
                ModifyEndpointMessage.add_member(:neptune_settings, Shapes::ShapeRef.new(shape: NeptuneSettings, location_name: "NeptuneSettings"))
         | 
| 730 737 | 
             
                ModifyEndpointMessage.add_member(:redshift_settings, Shapes::ShapeRef.new(shape: RedshiftSettings, location_name: "RedshiftSettings"))
         | 
| 731 738 | 
             
                ModifyEndpointMessage.struct_class = Types::ModifyEndpointMessage
         | 
| 732 739 |  | 
| @@ -775,6 +782,7 @@ module Aws::DatabaseMigrationService | |
| 775 782 | 
             
                ModifyReplicationTaskMessage.add_member(:cdc_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CdcStartTime"))
         | 
| 776 783 | 
             
                ModifyReplicationTaskMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
         | 
| 777 784 | 
             
                ModifyReplicationTaskMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
         | 
| 785 | 
            +
                ModifyReplicationTaskMessage.add_member(:task_data, Shapes::ShapeRef.new(shape: String, location_name: "TaskData"))
         | 
| 778 786 | 
             
                ModifyReplicationTaskMessage.struct_class = Types::ModifyReplicationTaskMessage
         | 
| 779 787 |  | 
| 780 788 | 
             
                ModifyReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
         | 
| @@ -794,6 +802,15 @@ module Aws::DatabaseMigrationService | |
| 794 802 | 
             
                MongoDbSettings.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
         | 
| 795 803 | 
             
                MongoDbSettings.struct_class = Types::MongoDbSettings
         | 
| 796 804 |  | 
| 805 | 
            +
                NeptuneSettings.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
         | 
| 806 | 
            +
                NeptuneSettings.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketName"))
         | 
| 807 | 
            +
                NeptuneSettings.add_member(:s3_bucket_folder, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketFolder"))
         | 
| 808 | 
            +
                NeptuneSettings.add_member(:error_retry_duration, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ErrorRetryDuration"))
         | 
| 809 | 
            +
                NeptuneSettings.add_member(:max_file_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxFileSize"))
         | 
| 810 | 
            +
                NeptuneSettings.add_member(:max_retry_count, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRetryCount"))
         | 
| 811 | 
            +
                NeptuneSettings.add_member(:iam_auth_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IamAuthEnabled"))
         | 
| 812 | 
            +
                NeptuneSettings.struct_class = Types::NeptuneSettings
         | 
| 813 | 
            +
             | 
| 797 814 | 
             
                OrderableReplicationInstance.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
         | 
| 798 815 | 
             
                OrderableReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceClass"))
         | 
| 799 816 | 
             
                OrderableReplicationInstance.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
         | 
| @@ -954,6 +971,7 @@ module Aws::DatabaseMigrationService | |
| 954 971 | 
             
                ReplicationTask.add_member(:recovery_checkpoint, Shapes::ShapeRef.new(shape: String, location_name: "RecoveryCheckpoint"))
         | 
| 955 972 | 
             
                ReplicationTask.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskArn"))
         | 
| 956 973 | 
             
                ReplicationTask.add_member(:replication_task_stats, Shapes::ShapeRef.new(shape: ReplicationTaskStats, location_name: "ReplicationTaskStats"))
         | 
| 974 | 
            +
                ReplicationTask.add_member(:task_data, Shapes::ShapeRef.new(shape: String, location_name: "TaskData"))
         | 
| 957 975 | 
             
                ReplicationTask.struct_class = Types::ReplicationTask
         | 
| 958 976 |  | 
| 959 977 | 
             
                ReplicationTaskAssessmentResult.add_member(:replication_task_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskIdentifier"))
         | 
| @@ -1069,6 +1087,7 @@ module Aws::DatabaseMigrationService | |
| 1069 1087 | 
             
                SupportedEndpointType.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineName"))
         | 
| 1070 1088 | 
             
                SupportedEndpointType.add_member(:supports_cdc, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsCDC"))
         | 
| 1071 1089 | 
             
                SupportedEndpointType.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: ReplicationEndpointTypeValue, location_name: "EndpointType"))
         | 
| 1090 | 
            +
                SupportedEndpointType.add_member(:replication_instance_engine_minimum_version, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceEngineMinimumVersion"))
         | 
| 1072 1091 | 
             
                SupportedEndpointType.add_member(:engine_display_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineDisplayName"))
         | 
| 1073 1092 | 
             
                SupportedEndpointType.struct_class = Types::SupportedEndpointType
         | 
| 1074 1093 |  | 
| @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -6,13 +8,7 @@ | |
| 6 8 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 7 9 |  | 
| 8 10 | 
             
            module Aws::DatabaseMigrationService
         | 
| 9 | 
            -
             | 
| 10 | 
            -
              # To create a resource object:
         | 
| 11 | 
            -
              #     resource = Aws::DatabaseMigrationService::Resource.new(region: 'us-west-2')
         | 
| 12 | 
            -
              # You can supply a client object with custom configuration that will be used for all resource operations.
         | 
| 13 | 
            -
              # If you do not pass +:client+, a default client will be constructed.
         | 
| 14 | 
            -
              #     client = Aws::DatabaseMigrationService::Client.new(region: 'us-west-2')
         | 
| 15 | 
            -
              #     resource = Aws::DatabaseMigrationService::Resource.new(client: client)
         | 
| 11 | 
            +
             | 
| 16 12 | 
             
              class Resource
         | 
| 17 13 |  | 
| 18 14 | 
             
                # @param options ({})
         | 
| @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -18,6 +20,7 @@ module Aws::DatabaseMigrationService | |
| 18 20 | 
             
                #
         | 
| 19 21 | 
             
                class AccessDeniedFault < Struct.new(
         | 
| 20 22 | 
             
                  :message)
         | 
| 23 | 
            +
                  SENSITIVE = []
         | 
| 21 24 | 
             
                  include Aws::Structure
         | 
| 22 25 | 
             
                end
         | 
| 23 26 |  | 
| @@ -42,6 +45,7 @@ module Aws::DatabaseMigrationService | |
| 42 45 | 
             
                  :account_quota_name,
         | 
| 43 46 | 
             
                  :used,
         | 
| 44 47 | 
             
                  :max)
         | 
| 48 | 
            +
                  SENSITIVE = []
         | 
| 45 49 | 
             
                  include Aws::Structure
         | 
| 46 50 | 
             
                end
         | 
| 47 51 |  | 
| @@ -77,6 +81,7 @@ module Aws::DatabaseMigrationService | |
| 77 81 | 
             
                class AddTagsToResourceMessage < Struct.new(
         | 
| 78 82 | 
             
                  :resource_arn,
         | 
| 79 83 | 
             
                  :tags)
         | 
| 84 | 
            +
                  SENSITIVE = []
         | 
| 80 85 | 
             
                  include Aws::Structure
         | 
| 81 86 | 
             
                end
         | 
| 82 87 |  | 
| @@ -124,6 +129,7 @@ module Aws::DatabaseMigrationService | |
| 124 129 | 
             
                  :replication_instance_arn,
         | 
| 125 130 | 
             
                  :apply_action,
         | 
| 126 131 | 
             
                  :opt_in_type)
         | 
| 132 | 
            +
                  SENSITIVE = []
         | 
| 127 133 | 
             
                  include Aws::Structure
         | 
| 128 134 | 
             
                end
         | 
| 129 135 |  | 
| @@ -136,6 +142,7 @@ module Aws::DatabaseMigrationService | |
| 136 142 | 
             
                #
         | 
| 137 143 | 
             
                class ApplyPendingMaintenanceActionResponse < Struct.new(
         | 
| 138 144 | 
             
                  :resource_pending_maintenance_actions)
         | 
| 145 | 
            +
                  SENSITIVE = []
         | 
| 139 146 | 
             
                  include Aws::Structure
         | 
| 140 147 | 
             
                end
         | 
| 141 148 |  | 
| @@ -149,6 +156,7 @@ module Aws::DatabaseMigrationService | |
| 149 156 | 
             
                #
         | 
| 150 157 | 
             
                class AvailabilityZone < Struct.new(
         | 
| 151 158 | 
             
                  :name)
         | 
| 159 | 
            +
                  SENSITIVE = []
         | 
| 152 160 | 
             
                  include Aws::Structure
         | 
| 153 161 | 
             
                end
         | 
| 154 162 |  | 
| @@ -212,6 +220,7 @@ module Aws::DatabaseMigrationService | |
| 212 220 | 
             
                  :valid_to_date,
         | 
| 213 221 | 
             
                  :signing_algorithm,
         | 
| 214 222 | 
             
                  :key_length)
         | 
| 223 | 
            +
                  SENSITIVE = []
         | 
| 215 224 | 
             
                  include Aws::Structure
         | 
| 216 225 | 
             
                end
         | 
| 217 226 |  | 
| @@ -255,6 +264,7 @@ module Aws::DatabaseMigrationService | |
| 255 264 | 
             
                  :last_failure_message,
         | 
| 256 265 | 
             
                  :endpoint_identifier,
         | 
| 257 266 | 
             
                  :replication_instance_identifier)
         | 
| 267 | 
            +
                  SENSITIVE = []
         | 
| 258 268 | 
             
                  include Aws::Structure
         | 
| 259 269 | 
             
                end
         | 
| 260 270 |  | 
| @@ -346,6 +356,15 @@ module Aws::DatabaseMigrationService | |
| 346 356 | 
             
                #           full_load_error_percentage: 1,
         | 
| 347 357 | 
             
                #           error_retry_duration: 1,
         | 
| 348 358 | 
             
                #         },
         | 
| 359 | 
            +
                #         neptune_settings: {
         | 
| 360 | 
            +
                #           service_access_role_arn: "String",
         | 
| 361 | 
            +
                #           s3_bucket_name: "String", # required
         | 
| 362 | 
            +
                #           s3_bucket_folder: "String", # required
         | 
| 363 | 
            +
                #           error_retry_duration: 1,
         | 
| 364 | 
            +
                #           max_file_size: 1,
         | 
| 365 | 
            +
                #           max_retry_count: 1,
         | 
| 366 | 
            +
                #           iam_auth_enabled: false,
         | 
| 367 | 
            +
                #         },
         | 
| 349 368 | 
             
                #         redshift_settings: {
         | 
| 350 369 | 
             
                #           accept_any_date: false,
         | 
| 351 370 | 
             
                #           after_connect_script: "String",
         | 
| @@ -509,36 +528,35 @@ module Aws::DatabaseMigrationService | |
| 509 528 | 
             
                #
         | 
| 510 529 | 
             
                # @!attribute [rw] mongo_db_settings
         | 
| 511 530 | 
             
                #   Settings in JSON format for the source MongoDB endpoint. For more
         | 
| 512 | 
            -
                #   information about the available settings, see  | 
| 513 | 
            -
                #    | 
| 514 | 
            -
                #   Migration Service | 
| 515 | 
            -
                #   Guide.*
         | 
| 531 | 
            +
                #   information about the available settings, see [Using MongoDB as a
         | 
| 532 | 
            +
                #   Target for AWS Database Migration Service][1] in the *AWS Database
         | 
| 533 | 
            +
                #   Migration Service User Guide.*
         | 
| 516 534 | 
             
                #
         | 
| 517 535 | 
             
                #
         | 
| 518 536 | 
             
                #
         | 
| 519 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
         | 
| 537 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration
         | 
| 520 538 | 
             
                #   @return [Types::MongoDbSettings]
         | 
| 521 539 | 
             
                #
         | 
| 522 540 | 
             
                # @!attribute [rw] kinesis_settings
         | 
| 523 541 | 
             
                #   Settings in JSON format for the target endpoint for Amazon Kinesis
         | 
| 524 | 
            -
                #   Data Streams. For information about  | 
| 525 | 
            -
                #   [Using  | 
| 526 | 
            -
                #   in the *AWS Database Migration User Guide.*
         | 
| 542 | 
            +
                #   Data Streams. For more information about the available settings, see
         | 
| 543 | 
            +
                #   [Using Amazon Kinesis Data Streams as a Target for AWS Database
         | 
| 544 | 
            +
                #   Migration Service][1] in the *AWS Database Migration User Guide.*
         | 
| 527 545 | 
             
                #
         | 
| 528 546 | 
             
                #
         | 
| 529 547 | 
             
                #
         | 
| 530 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html | 
| 548 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
         | 
| 531 549 | 
             
                #   @return [Types::KinesisSettings]
         | 
| 532 550 | 
             
                #
         | 
| 533 551 | 
             
                # @!attribute [rw] kafka_settings
         | 
| 534 552 | 
             
                #   Settings in JSON format for the target Apache Kafka endpoint. For
         | 
| 535 | 
            -
                #   information about  | 
| 536 | 
            -
                #    | 
| 537 | 
            -
                #   Migration User Guide.*
         | 
| 553 | 
            +
                #   more information about the available settings, see [Using Apache
         | 
| 554 | 
            +
                #   Kafka as a Target for AWS Database Migration Service][1] in the *AWS
         | 
| 555 | 
            +
                #   Database Migration User Guide.*
         | 
| 538 556 | 
             
                #
         | 
| 539 557 | 
             
                #
         | 
| 540 558 | 
             
                #
         | 
| 541 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html | 
| 559 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
         | 
| 542 560 | 
             
                #   @return [Types::KafkaSettings]
         | 
| 543 561 | 
             
                #
         | 
| 544 562 | 
             
                # @!attribute [rw] elasticsearch_settings
         | 
| @@ -552,6 +570,17 @@ module Aws::DatabaseMigrationService | |
| 552 570 | 
             
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
         | 
| 553 571 | 
             
                #   @return [Types::ElasticsearchSettings]
         | 
| 554 572 | 
             
                #
         | 
| 573 | 
            +
                # @!attribute [rw] neptune_settings
         | 
| 574 | 
            +
                #   Settings in JSON format for the target Amazon Neptune endpoint. For
         | 
| 575 | 
            +
                #   more information about the available settings, see
         | 
| 576 | 
            +
                #   [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
         | 
| 577 | 
            +
                #   in the *AWS Database Migration Service User Guide.*
         | 
| 578 | 
            +
                #
         | 
| 579 | 
            +
                #
         | 
| 580 | 
            +
                #
         | 
| 581 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
         | 
| 582 | 
            +
                #   @return [Types::NeptuneSettings]
         | 
| 583 | 
            +
                #
         | 
| 555 584 | 
             
                # @!attribute [rw] redshift_settings
         | 
| 556 585 | 
             
                #   Provides information that defines an Amazon Redshift endpoint.
         | 
| 557 586 | 
             
                #   @return [Types::RedshiftSettings]
         | 
| @@ -581,7 +610,9 @@ module Aws::DatabaseMigrationService | |
| 581 610 | 
             
                  :kinesis_settings,
         | 
| 582 611 | 
             
                  :kafka_settings,
         | 
| 583 612 | 
             
                  :elasticsearch_settings,
         | 
| 613 | 
            +
                  :neptune_settings,
         | 
| 584 614 | 
             
                  :redshift_settings)
         | 
| 615 | 
            +
                  SENSITIVE = [:password]
         | 
| 585 616 | 
             
                  include Aws::Structure
         | 
| 586 617 | 
             
                end
         | 
| 587 618 |  | 
| @@ -593,6 +624,7 @@ module Aws::DatabaseMigrationService | |
| 593 624 | 
             
                #
         | 
| 594 625 | 
             
                class CreateEndpointResponse < Struct.new(
         | 
| 595 626 | 
             
                  :endpoint)
         | 
| 627 | 
            +
                  SENSITIVE = []
         | 
| 596 628 | 
             
                  include Aws::Structure
         | 
| 597 629 | 
             
                end
         | 
| 598 630 |  | 
| @@ -676,6 +708,7 @@ module Aws::DatabaseMigrationService | |
| 676 708 | 
             
                  :source_ids,
         | 
| 677 709 | 
             
                  :enabled,
         | 
| 678 710 | 
             
                  :tags)
         | 
| 711 | 
            +
                  SENSITIVE = []
         | 
| 679 712 | 
             
                  include Aws::Structure
         | 
| 680 713 | 
             
                end
         | 
| 681 714 |  | 
| @@ -687,6 +720,7 @@ module Aws::DatabaseMigrationService | |
| 687 720 | 
             
                #
         | 
| 688 721 | 
             
                class CreateEventSubscriptionResponse < Struct.new(
         | 
| 689 722 | 
             
                  :event_subscription)
         | 
| 723 | 
            +
                  SENSITIVE = []
         | 
| 690 724 | 
             
                  include Aws::Structure
         | 
| 691 725 | 
             
                end
         | 
| 692 726 |  | 
| @@ -836,6 +870,7 @@ module Aws::DatabaseMigrationService | |
| 836 870 | 
             
                  :kms_key_id,
         | 
| 837 871 | 
             
                  :publicly_accessible,
         | 
| 838 872 | 
             
                  :dns_name_servers)
         | 
| 873 | 
            +
                  SENSITIVE = []
         | 
| 839 874 | 
             
                  include Aws::Structure
         | 
| 840 875 | 
             
                end
         | 
| 841 876 |  | 
| @@ -847,6 +882,7 @@ module Aws::DatabaseMigrationService | |
| 847 882 | 
             
                #
         | 
| 848 883 | 
             
                class CreateReplicationInstanceResponse < Struct.new(
         | 
| 849 884 | 
             
                  :replication_instance)
         | 
| 885 | 
            +
                  SENSITIVE = []
         | 
| 850 886 | 
             
                  include Aws::Structure
         | 
| 851 887 | 
             
                end
         | 
| 852 888 |  | 
| @@ -894,6 +930,7 @@ module Aws::DatabaseMigrationService | |
| 894 930 | 
             
                  :replication_subnet_group_description,
         | 
| 895 931 | 
             
                  :subnet_ids,
         | 
| 896 932 | 
             
                  :tags)
         | 
| 933 | 
            +
                  SENSITIVE = []
         | 
| 897 934 | 
             
                  include Aws::Structure
         | 
| 898 935 | 
             
                end
         | 
| 899 936 |  | 
| @@ -905,6 +942,7 @@ module Aws::DatabaseMigrationService | |
| 905 942 | 
             
                #
         | 
| 906 943 | 
             
                class CreateReplicationSubnetGroupResponse < Struct.new(
         | 
| 907 944 | 
             
                  :replication_subnet_group)
         | 
| 945 | 
            +
                  SENSITIVE = []
         | 
| 908 946 | 
             
                  include Aws::Structure
         | 
| 909 947 | 
             
                end
         | 
| 910 948 |  | 
| @@ -928,6 +966,7 @@ module Aws::DatabaseMigrationService | |
| 928 966 | 
             
                #             value: "String",
         | 
| 929 967 | 
             
                #           },
         | 
| 930 968 | 
             
                #         ],
         | 
| 969 | 
            +
                #         task_data: "String",
         | 
| 931 970 | 
             
                #       }
         | 
| 932 971 | 
             
                #
         | 
| 933 972 | 
             
                # @!attribute [rw] replication_task_identifier
         | 
| @@ -963,8 +1002,8 @@ module Aws::DatabaseMigrationService | |
| 963 1002 | 
             
                #
         | 
| 964 1003 | 
             
                # @!attribute [rw] table_mappings
         | 
| 965 1004 | 
             
                #   The table mappings for the task, in JSON format. For more
         | 
| 966 | 
            -
                #   information, see [Table Mapping][1] | 
| 967 | 
            -
                #   User Guide.*
         | 
| 1005 | 
            +
                #   information, see [Using Table Mapping to Specify Task Settings][1]
         | 
| 1006 | 
            +
                #   in the *AWS Database Migration User Guide.*
         | 
| 968 1007 | 
             
                #
         | 
| 969 1008 | 
             
                #
         | 
| 970 1009 | 
             
                #
         | 
| @@ -973,7 +1012,8 @@ module Aws::DatabaseMigrationService | |
| 973 1012 | 
             
                #
         | 
| 974 1013 | 
             
                # @!attribute [rw] replication_task_settings
         | 
| 975 1014 | 
             
                #   Overall settings for the task, in JSON format. For more information,
         | 
| 976 | 
            -
                #   see [Task Settings | 
| 1015 | 
            +
                #   see [Specifying Task Settings for AWS Database Migration Service
         | 
| 1016 | 
            +
                #   Tasks][1] in the *AWS Database Migration User Guide.*
         | 
| 977 1017 | 
             
                #
         | 
| 978 1018 | 
             
                #
         | 
| 979 1019 | 
             
                #
         | 
| @@ -1033,6 +1073,17 @@ module Aws::DatabaseMigrationService | |
| 1033 1073 | 
             
                #   One or more tags to be assigned to the replication task.
         | 
| 1034 1074 | 
             
                #   @return [Array<Types::Tag>]
         | 
| 1035 1075 | 
             
                #
         | 
| 1076 | 
            +
                # @!attribute [rw] task_data
         | 
| 1077 | 
            +
                #   Supplemental information that the task requires to migrate the data
         | 
| 1078 | 
            +
                #   for certain source and target endpoints. For more information, see
         | 
| 1079 | 
            +
                #   [Specifying Supplemental Data for Task Settings][1] in the *AWS
         | 
| 1080 | 
            +
                #   Database Migration User Guide.*
         | 
| 1081 | 
            +
                #
         | 
| 1082 | 
            +
                #
         | 
| 1083 | 
            +
                #
         | 
| 1084 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
         | 
| 1085 | 
            +
                #   @return [String]
         | 
| 1086 | 
            +
                #
         | 
| 1036 1087 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTaskMessage AWS API Documentation
         | 
| 1037 1088 | 
             
                #
         | 
| 1038 1089 | 
             
                class CreateReplicationTaskMessage < Struct.new(
         | 
| @@ -1046,7 +1097,9 @@ module Aws::DatabaseMigrationService | |
| 1046 1097 | 
             
                  :cdc_start_time,
         | 
| 1047 1098 | 
             
                  :cdc_start_position,
         | 
| 1048 1099 | 
             
                  :cdc_stop_position,
         | 
| 1049 | 
            -
                  :tags | 
| 1100 | 
            +
                  :tags,
         | 
| 1101 | 
            +
                  :task_data)
         | 
| 1102 | 
            +
                  SENSITIVE = []
         | 
| 1050 1103 | 
             
                  include Aws::Structure
         | 
| 1051 1104 | 
             
                end
         | 
| 1052 1105 |  | 
| @@ -1058,6 +1111,7 @@ module Aws::DatabaseMigrationService | |
| 1058 1111 | 
             
                #
         | 
| 1059 1112 | 
             
                class CreateReplicationTaskResponse < Struct.new(
         | 
| 1060 1113 | 
             
                  :replication_task)
         | 
| 1114 | 
            +
                  SENSITIVE = []
         | 
| 1061 1115 | 
             
                  include Aws::Structure
         | 
| 1062 1116 | 
             
                end
         | 
| 1063 1117 |  | 
| @@ -1076,6 +1130,7 @@ module Aws::DatabaseMigrationService | |
| 1076 1130 | 
             
                #
         | 
| 1077 1131 | 
             
                class DeleteCertificateMessage < Struct.new(
         | 
| 1078 1132 | 
             
                  :certificate_arn)
         | 
| 1133 | 
            +
                  SENSITIVE = []
         | 
| 1079 1134 | 
             
                  include Aws::Structure
         | 
| 1080 1135 | 
             
                end
         | 
| 1081 1136 |  | 
| @@ -1087,6 +1142,7 @@ module Aws::DatabaseMigrationService | |
| 1087 1142 | 
             
                #
         | 
| 1088 1143 | 
             
                class DeleteCertificateResponse < Struct.new(
         | 
| 1089 1144 | 
             
                  :certificate)
         | 
| 1145 | 
            +
                  SENSITIVE = []
         | 
| 1090 1146 | 
             
                  include Aws::Structure
         | 
| 1091 1147 | 
             
                end
         | 
| 1092 1148 |  | 
| @@ -1112,6 +1168,7 @@ module Aws::DatabaseMigrationService | |
| 1112 1168 | 
             
                class DeleteConnectionMessage < Struct.new(
         | 
| 1113 1169 | 
             
                  :endpoint_arn,
         | 
| 1114 1170 | 
             
                  :replication_instance_arn)
         | 
| 1171 | 
            +
                  SENSITIVE = []
         | 
| 1115 1172 | 
             
                  include Aws::Structure
         | 
| 1116 1173 | 
             
                end
         | 
| 1117 1174 |  | 
| @@ -1123,6 +1180,7 @@ module Aws::DatabaseMigrationService | |
| 1123 1180 | 
             
                #
         | 
| 1124 1181 | 
             
                class DeleteConnectionResponse < Struct.new(
         | 
| 1125 1182 | 
             
                  :connection)
         | 
| 1183 | 
            +
                  SENSITIVE = []
         | 
| 1126 1184 | 
             
                  include Aws::Structure
         | 
| 1127 1185 | 
             
                end
         | 
| 1128 1186 |  | 
| @@ -1142,6 +1200,7 @@ module Aws::DatabaseMigrationService | |
| 1142 1200 | 
             
                #
         | 
| 1143 1201 | 
             
                class DeleteEndpointMessage < Struct.new(
         | 
| 1144 1202 | 
             
                  :endpoint_arn)
         | 
| 1203 | 
            +
                  SENSITIVE = []
         | 
| 1145 1204 | 
             
                  include Aws::Structure
         | 
| 1146 1205 | 
             
                end
         | 
| 1147 1206 |  | 
| @@ -1153,6 +1212,7 @@ module Aws::DatabaseMigrationService | |
| 1153 1212 | 
             
                #
         | 
| 1154 1213 | 
             
                class DeleteEndpointResponse < Struct.new(
         | 
| 1155 1214 | 
             
                  :endpoint)
         | 
| 1215 | 
            +
                  SENSITIVE = []
         | 
| 1156 1216 | 
             
                  include Aws::Structure
         | 
| 1157 1217 | 
             
                end
         | 
| 1158 1218 |  | 
| @@ -1171,6 +1231,7 @@ module Aws::DatabaseMigrationService | |
| 1171 1231 | 
             
                #
         | 
| 1172 1232 | 
             
                class DeleteEventSubscriptionMessage < Struct.new(
         | 
| 1173 1233 | 
             
                  :subscription_name)
         | 
| 1234 | 
            +
                  SENSITIVE = []
         | 
| 1174 1235 | 
             
                  include Aws::Structure
         | 
| 1175 1236 | 
             
                end
         | 
| 1176 1237 |  | 
| @@ -1182,6 +1243,7 @@ module Aws::DatabaseMigrationService | |
| 1182 1243 | 
             
                #
         | 
| 1183 1244 | 
             
                class DeleteEventSubscriptionResponse < Struct.new(
         | 
| 1184 1245 | 
             
                  :event_subscription)
         | 
| 1246 | 
            +
                  SENSITIVE = []
         | 
| 1185 1247 | 
             
                  include Aws::Structure
         | 
| 1186 1248 | 
             
                end
         | 
| 1187 1249 |  | 
| @@ -1201,6 +1263,7 @@ module Aws::DatabaseMigrationService | |
| 1201 1263 | 
             
                #
         | 
| 1202 1264 | 
             
                class DeleteReplicationInstanceMessage < Struct.new(
         | 
| 1203 1265 | 
             
                  :replication_instance_arn)
         | 
| 1266 | 
            +
                  SENSITIVE = []
         | 
| 1204 1267 | 
             
                  include Aws::Structure
         | 
| 1205 1268 | 
             
                end
         | 
| 1206 1269 |  | 
| @@ -1212,6 +1275,7 @@ module Aws::DatabaseMigrationService | |
| 1212 1275 | 
             
                #
         | 
| 1213 1276 | 
             
                class DeleteReplicationInstanceResponse < Struct.new(
         | 
| 1214 1277 | 
             
                  :replication_instance)
         | 
| 1278 | 
            +
                  SENSITIVE = []
         | 
| 1215 1279 | 
             
                  include Aws::Structure
         | 
| 1216 1280 | 
             
                end
         | 
| 1217 1281 |  | 
| @@ -1230,6 +1294,7 @@ module Aws::DatabaseMigrationService | |
| 1230 1294 | 
             
                #
         | 
| 1231 1295 | 
             
                class DeleteReplicationSubnetGroupMessage < Struct.new(
         | 
| 1232 1296 | 
             
                  :replication_subnet_group_identifier)
         | 
| 1297 | 
            +
                  SENSITIVE = []
         | 
| 1233 1298 | 
             
                  include Aws::Structure
         | 
| 1234 1299 | 
             
                end
         | 
| 1235 1300 |  | 
| @@ -1253,6 +1318,7 @@ module Aws::DatabaseMigrationService | |
| 1253 1318 | 
             
                #
         | 
| 1254 1319 | 
             
                class DeleteReplicationTaskMessage < Struct.new(
         | 
| 1255 1320 | 
             
                  :replication_task_arn)
         | 
| 1321 | 
            +
                  SENSITIVE = []
         | 
| 1256 1322 | 
             
                  include Aws::Structure
         | 
| 1257 1323 | 
             
                end
         | 
| 1258 1324 |  | 
| @@ -1264,6 +1330,7 @@ module Aws::DatabaseMigrationService | |
| 1264 1330 | 
             
                #
         | 
| 1265 1331 | 
             
                class DeleteReplicationTaskResponse < Struct.new(
         | 
| 1266 1332 | 
             
                  :replication_task)
         | 
| 1333 | 
            +
                  SENSITIVE = []
         | 
| 1267 1334 | 
             
                  include Aws::Structure
         | 
| 1268 1335 | 
             
                end
         | 
| 1269 1336 |  | 
| @@ -1298,6 +1365,7 @@ module Aws::DatabaseMigrationService | |
| 1298 1365 | 
             
                class DescribeAccountAttributesResponse < Struct.new(
         | 
| 1299 1366 | 
             
                  :account_quotas,
         | 
| 1300 1367 | 
             
                  :unique_account_identifier)
         | 
| 1368 | 
            +
                  SENSITIVE = []
         | 
| 1301 1369 | 
             
                  include Aws::Structure
         | 
| 1302 1370 | 
             
                end
         | 
| 1303 1371 |  | 
| @@ -1341,6 +1409,7 @@ module Aws::DatabaseMigrationService | |
| 1341 1409 | 
             
                  :filters,
         | 
| 1342 1410 | 
             
                  :max_records,
         | 
| 1343 1411 | 
             
                  :marker)
         | 
| 1412 | 
            +
                  SENSITIVE = []
         | 
| 1344 1413 | 
             
                  include Aws::Structure
         | 
| 1345 1414 | 
             
                end
         | 
| 1346 1415 |  | 
| @@ -1358,6 +1427,7 @@ module Aws::DatabaseMigrationService | |
| 1358 1427 | 
             
                class DescribeCertificatesResponse < Struct.new(
         | 
| 1359 1428 | 
             
                  :marker,
         | 
| 1360 1429 | 
             
                  :certificates)
         | 
| 1430 | 
            +
                  SENSITIVE = []
         | 
| 1361 1431 | 
             
                  include Aws::Structure
         | 
| 1362 1432 | 
             
                end
         | 
| 1363 1433 |  | 
| @@ -1404,6 +1474,7 @@ module Aws::DatabaseMigrationService | |
| 1404 1474 | 
             
                  :filters,
         | 
| 1405 1475 | 
             
                  :max_records,
         | 
| 1406 1476 | 
             
                  :marker)
         | 
| 1477 | 
            +
                  SENSITIVE = []
         | 
| 1407 1478 | 
             
                  include Aws::Structure
         | 
| 1408 1479 | 
             
                end
         | 
| 1409 1480 |  | 
| @@ -1422,6 +1493,7 @@ module Aws::DatabaseMigrationService | |
| 1422 1493 | 
             
                class DescribeConnectionsResponse < Struct.new(
         | 
| 1423 1494 | 
             
                  :marker,
         | 
| 1424 1495 | 
             
                  :connections)
         | 
| 1496 | 
            +
                  SENSITIVE = []
         | 
| 1425 1497 | 
             
                  include Aws::Structure
         | 
| 1426 1498 | 
             
                end
         | 
| 1427 1499 |  | 
| @@ -1468,6 +1540,7 @@ module Aws::DatabaseMigrationService | |
| 1468 1540 | 
             
                  :filters,
         | 
| 1469 1541 | 
             
                  :max_records,
         | 
| 1470 1542 | 
             
                  :marker)
         | 
| 1543 | 
            +
                  SENSITIVE = []
         | 
| 1471 1544 | 
             
                  include Aws::Structure
         | 
| 1472 1545 | 
             
                end
         | 
| 1473 1546 |  | 
| @@ -1486,6 +1559,7 @@ module Aws::DatabaseMigrationService | |
| 1486 1559 | 
             
                class DescribeEndpointTypesResponse < Struct.new(
         | 
| 1487 1560 | 
             
                  :marker,
         | 
| 1488 1561 | 
             
                  :supported_endpoint_types)
         | 
| 1562 | 
            +
                  SENSITIVE = []
         | 
| 1489 1563 | 
             
                  include Aws::Structure
         | 
| 1490 1564 | 
             
                end
         | 
| 1491 1565 |  | 
| @@ -1533,6 +1607,7 @@ module Aws::DatabaseMigrationService | |
| 1533 1607 | 
             
                  :filters,
         | 
| 1534 1608 | 
             
                  :max_records,
         | 
| 1535 1609 | 
             
                  :marker)
         | 
| 1610 | 
            +
                  SENSITIVE = []
         | 
| 1536 1611 | 
             
                  include Aws::Structure
         | 
| 1537 1612 | 
             
                end
         | 
| 1538 1613 |  | 
| @@ -1551,6 +1626,7 @@ module Aws::DatabaseMigrationService | |
| 1551 1626 | 
             
                class DescribeEndpointsResponse < Struct.new(
         | 
| 1552 1627 | 
             
                  :marker,
         | 
| 1553 1628 | 
             
                  :endpoints)
         | 
| 1629 | 
            +
                  SENSITIVE = []
         | 
| 1554 1630 | 
             
                  include Aws::Structure
         | 
| 1555 1631 | 
             
                end
         | 
| 1556 1632 |  | 
| @@ -1582,6 +1658,7 @@ module Aws::DatabaseMigrationService | |
| 1582 1658 | 
             
                class DescribeEventCategoriesMessage < Struct.new(
         | 
| 1583 1659 | 
             
                  :source_type,
         | 
| 1584 1660 | 
             
                  :filters)
         | 
| 1661 | 
            +
                  SENSITIVE = []
         | 
| 1585 1662 | 
             
                  include Aws::Structure
         | 
| 1586 1663 | 
             
                end
         | 
| 1587 1664 |  | 
| @@ -1593,6 +1670,7 @@ module Aws::DatabaseMigrationService | |
| 1593 1670 | 
             
                #
         | 
| 1594 1671 | 
             
                class DescribeEventCategoriesResponse < Struct.new(
         | 
| 1595 1672 | 
             
                  :event_category_group_list)
         | 
| 1673 | 
            +
                  SENSITIVE = []
         | 
| 1596 1674 | 
             
                  include Aws::Structure
         | 
| 1597 1675 | 
             
                end
         | 
| 1598 1676 |  | 
| @@ -1643,6 +1721,7 @@ module Aws::DatabaseMigrationService | |
| 1643 1721 | 
             
                  :filters,
         | 
| 1644 1722 | 
             
                  :max_records,
         | 
| 1645 1723 | 
             
                  :marker)
         | 
| 1724 | 
            +
                  SENSITIVE = []
         | 
| 1646 1725 | 
             
                  include Aws::Structure
         | 
| 1647 1726 | 
             
                end
         | 
| 1648 1727 |  | 
| @@ -1661,6 +1740,7 @@ module Aws::DatabaseMigrationService | |
| 1661 1740 | 
             
                class DescribeEventSubscriptionsResponse < Struct.new(
         | 
| 1662 1741 | 
             
                  :marker,
         | 
| 1663 1742 | 
             
                  :event_subscriptions_list)
         | 
| 1743 | 
            +
                  SENSITIVE = []
         | 
| 1664 1744 | 
             
                  include Aws::Structure
         | 
| 1665 1745 | 
             
                end
         | 
| 1666 1746 |  | 
| @@ -1743,6 +1823,7 @@ module Aws::DatabaseMigrationService | |
| 1743 1823 | 
             
                  :filters,
         | 
| 1744 1824 | 
             
                  :max_records,
         | 
| 1745 1825 | 
             
                  :marker)
         | 
| 1826 | 
            +
                  SENSITIVE = []
         | 
| 1746 1827 | 
             
                  include Aws::Structure
         | 
| 1747 1828 | 
             
                end
         | 
| 1748 1829 |  | 
| @@ -1761,6 +1842,7 @@ module Aws::DatabaseMigrationService | |
| 1761 1842 | 
             
                class DescribeEventsResponse < Struct.new(
         | 
| 1762 1843 | 
             
                  :marker,
         | 
| 1763 1844 | 
             
                  :events)
         | 
| 1845 | 
            +
                  SENSITIVE = []
         | 
| 1764 1846 | 
             
                  include Aws::Structure
         | 
| 1765 1847 | 
             
                end
         | 
| 1766 1848 |  | 
| @@ -1794,6 +1876,7 @@ module Aws::DatabaseMigrationService | |
| 1794 1876 | 
             
                class DescribeOrderableReplicationInstancesMessage < Struct.new(
         | 
| 1795 1877 | 
             
                  :max_records,
         | 
| 1796 1878 | 
             
                  :marker)
         | 
| 1879 | 
            +
                  SENSITIVE = []
         | 
| 1797 1880 | 
             
                  include Aws::Structure
         | 
| 1798 1881 | 
             
                end
         | 
| 1799 1882 |  | 
| @@ -1812,6 +1895,7 @@ module Aws::DatabaseMigrationService | |
| 1812 1895 | 
             
                class DescribeOrderableReplicationInstancesResponse < Struct.new(
         | 
| 1813 1896 | 
             
                  :orderable_replication_instances,
         | 
| 1814 1897 | 
             
                  :marker)
         | 
| 1898 | 
            +
                  SENSITIVE = []
         | 
| 1815 1899 | 
             
                  include Aws::Structure
         | 
| 1816 1900 | 
             
                end
         | 
| 1817 1901 |  | 
| @@ -1861,6 +1945,7 @@ module Aws::DatabaseMigrationService | |
| 1861 1945 | 
             
                  :filters,
         | 
| 1862 1946 | 
             
                  :marker,
         | 
| 1863 1947 | 
             
                  :max_records)
         | 
| 1948 | 
            +
                  SENSITIVE = []
         | 
| 1864 1949 | 
             
                  include Aws::Structure
         | 
| 1865 1950 | 
             
                end
         | 
| 1866 1951 |  | 
| @@ -1879,6 +1964,7 @@ module Aws::DatabaseMigrationService | |
| 1879 1964 | 
             
                class DescribePendingMaintenanceActionsResponse < Struct.new(
         | 
| 1880 1965 | 
             
                  :pending_maintenance_actions,
         | 
| 1881 1966 | 
             
                  :marker)
         | 
| 1967 | 
            +
                  SENSITIVE = []
         | 
| 1882 1968 | 
             
                  include Aws::Structure
         | 
| 1883 1969 | 
             
                end
         | 
| 1884 1970 |  | 
| @@ -1898,6 +1984,7 @@ module Aws::DatabaseMigrationService | |
| 1898 1984 | 
             
                #
         | 
| 1899 1985 | 
             
                class DescribeRefreshSchemasStatusMessage < Struct.new(
         | 
| 1900 1986 | 
             
                  :endpoint_arn)
         | 
| 1987 | 
            +
                  SENSITIVE = []
         | 
| 1901 1988 | 
             
                  include Aws::Structure
         | 
| 1902 1989 | 
             
                end
         | 
| 1903 1990 |  | 
| @@ -1909,6 +1996,7 @@ module Aws::DatabaseMigrationService | |
| 1909 1996 | 
             
                #
         | 
| 1910 1997 | 
             
                class DescribeRefreshSchemasStatusResponse < Struct.new(
         | 
| 1911 1998 | 
             
                  :refresh_schemas_status)
         | 
| 1999 | 
            +
                  SENSITIVE = []
         | 
| 1912 2000 | 
             
                  include Aws::Structure
         | 
| 1913 2001 | 
             
                end
         | 
| 1914 2002 |  | 
| @@ -1948,6 +2036,7 @@ module Aws::DatabaseMigrationService | |
| 1948 2036 | 
             
                  :replication_instance_arn,
         | 
| 1949 2037 | 
             
                  :max_records,
         | 
| 1950 2038 | 
             
                  :marker)
         | 
| 2039 | 
            +
                  SENSITIVE = []
         | 
| 1951 2040 | 
             
                  include Aws::Structure
         | 
| 1952 2041 | 
             
                end
         | 
| 1953 2042 |  | 
| @@ -1973,6 +2062,7 @@ module Aws::DatabaseMigrationService | |
| 1973 2062 | 
             
                  :replication_instance_arn,
         | 
| 1974 2063 | 
             
                  :replication_instance_task_logs,
         | 
| 1975 2064 | 
             
                  :marker)
         | 
| 2065 | 
            +
                  SENSITIVE = []
         | 
| 1976 2066 | 
             
                  include Aws::Structure
         | 
| 1977 2067 | 
             
                end
         | 
| 1978 2068 |  | 
| @@ -2021,6 +2111,7 @@ module Aws::DatabaseMigrationService | |
| 2021 2111 | 
             
                  :filters,
         | 
| 2022 2112 | 
             
                  :max_records,
         | 
| 2023 2113 | 
             
                  :marker)
         | 
| 2114 | 
            +
                  SENSITIVE = []
         | 
| 2024 2115 | 
             
                  include Aws::Structure
         | 
| 2025 2116 | 
             
                end
         | 
| 2026 2117 |  | 
| @@ -2039,6 +2130,7 @@ module Aws::DatabaseMigrationService | |
| 2039 2130 | 
             
                class DescribeReplicationInstancesResponse < Struct.new(
         | 
| 2040 2131 | 
             
                  :marker,
         | 
| 2041 2132 | 
             
                  :replication_instances)
         | 
| 2133 | 
            +
                  SENSITIVE = []
         | 
| 2042 2134 | 
             
                  include Aws::Structure
         | 
| 2043 2135 | 
             
                end
         | 
| 2044 2136 |  | 
| @@ -2058,6 +2150,8 @@ module Aws::DatabaseMigrationService | |
| 2058 2150 | 
             
                #
         | 
| 2059 2151 | 
             
                # @!attribute [rw] filters
         | 
| 2060 2152 | 
             
                #   Filters applied to the describe action.
         | 
| 2153 | 
            +
                #
         | 
| 2154 | 
            +
                #   Valid filter names: replication-subnet-group-id
         | 
| 2061 2155 | 
             
                #   @return [Array<Types::Filter>]
         | 
| 2062 2156 | 
             
                #
         | 
| 2063 2157 | 
             
                # @!attribute [rw] max_records
         | 
| @@ -2083,6 +2177,7 @@ module Aws::DatabaseMigrationService | |
| 2083 2177 | 
             
                  :filters,
         | 
| 2084 2178 | 
             
                  :max_records,
         | 
| 2085 2179 | 
             
                  :marker)
         | 
| 2180 | 
            +
                  SENSITIVE = []
         | 
| 2086 2181 | 
             
                  include Aws::Structure
         | 
| 2087 2182 | 
             
                end
         | 
| 2088 2183 |  | 
| @@ -2101,6 +2196,7 @@ module Aws::DatabaseMigrationService | |
| 2101 2196 | 
             
                class DescribeReplicationSubnetGroupsResponse < Struct.new(
         | 
| 2102 2197 | 
             
                  :marker,
         | 
| 2103 2198 | 
             
                  :replication_subnet_groups)
         | 
| 2199 | 
            +
                  SENSITIVE = []
         | 
| 2104 2200 | 
             
                  include Aws::Structure
         | 
| 2105 2201 | 
             
                end
         | 
| 2106 2202 |  | 
| @@ -2143,6 +2239,7 @@ module Aws::DatabaseMigrationService | |
| 2143 2239 | 
             
                  :replication_task_arn,
         | 
| 2144 2240 | 
             
                  :max_records,
         | 
| 2145 2241 | 
             
                  :marker)
         | 
| 2242 | 
            +
                  SENSITIVE = []
         | 
| 2146 2243 | 
             
                  include Aws::Structure
         | 
| 2147 2244 | 
             
                end
         | 
| 2148 2245 |  | 
| @@ -2166,6 +2263,7 @@ module Aws::DatabaseMigrationService | |
| 2166 2263 | 
             
                  :marker,
         | 
| 2167 2264 | 
             
                  :bucket_name,
         | 
| 2168 2265 | 
             
                  :replication_task_assessment_results)
         | 
| 2266 | 
            +
                  SENSITIVE = []
         | 
| 2169 2267 | 
             
                  include Aws::Structure
         | 
| 2170 2268 | 
             
                end
         | 
| 2171 2269 |  | 
| @@ -2222,6 +2320,7 @@ module Aws::DatabaseMigrationService | |
| 2222 2320 | 
             
                  :max_records,
         | 
| 2223 2321 | 
             
                  :marker,
         | 
| 2224 2322 | 
             
                  :without_settings)
         | 
| 2323 | 
            +
                  SENSITIVE = []
         | 
| 2225 2324 | 
             
                  include Aws::Structure
         | 
| 2226 2325 | 
             
                end
         | 
| 2227 2326 |  | 
| @@ -2240,6 +2339,7 @@ module Aws::DatabaseMigrationService | |
| 2240 2339 | 
             
                class DescribeReplicationTasksResponse < Struct.new(
         | 
| 2241 2340 | 
             
                  :marker,
         | 
| 2242 2341 | 
             
                  :replication_tasks)
         | 
| 2342 | 
            +
                  SENSITIVE = []
         | 
| 2243 2343 | 
             
                  include Aws::Structure
         | 
| 2244 2344 | 
             
                end
         | 
| 2245 2345 |  | 
| @@ -2280,6 +2380,7 @@ module Aws::DatabaseMigrationService | |
| 2280 2380 | 
             
                  :endpoint_arn,
         | 
| 2281 2381 | 
             
                  :max_records,
         | 
| 2282 2382 | 
             
                  :marker)
         | 
| 2383 | 
            +
                  SENSITIVE = []
         | 
| 2283 2384 | 
             
                  include Aws::Structure
         | 
| 2284 2385 | 
             
                end
         | 
| 2285 2386 |  | 
| @@ -2298,6 +2399,7 @@ module Aws::DatabaseMigrationService | |
| 2298 2399 | 
             
                class DescribeSchemasResponse < Struct.new(
         | 
| 2299 2400 | 
             
                  :marker,
         | 
| 2300 2401 | 
             
                  :schemas)
         | 
| 2402 | 
            +
                  SENSITIVE = []
         | 
| 2301 2403 | 
             
                  include Aws::Structure
         | 
| 2302 2404 | 
             
                end
         | 
| 2303 2405 |  | 
| @@ -2353,6 +2455,7 @@ module Aws::DatabaseMigrationService | |
| 2353 2455 | 
             
                  :max_records,
         | 
| 2354 2456 | 
             
                  :marker,
         | 
| 2355 2457 | 
             
                  :filters)
         | 
| 2458 | 
            +
                  SENSITIVE = []
         | 
| 2356 2459 | 
             
                  include Aws::Structure
         | 
| 2357 2460 | 
             
                end
         | 
| 2358 2461 |  | 
| @@ -2376,6 +2479,7 @@ module Aws::DatabaseMigrationService | |
| 2376 2479 | 
             
                  :replication_task_arn,
         | 
| 2377 2480 | 
             
                  :table_statistics,
         | 
| 2378 2481 | 
             
                  :marker)
         | 
| 2482 | 
            +
                  SENSITIVE = []
         | 
| 2379 2483 | 
             
                  include Aws::Structure
         | 
| 2380 2484 | 
             
                end
         | 
| 2381 2485 |  | 
| @@ -2402,6 +2506,7 @@ module Aws::DatabaseMigrationService | |
| 2402 2506 | 
             
                class DmsTransferSettings < Struct.new(
         | 
| 2403 2507 | 
             
                  :service_access_role_arn,
         | 
| 2404 2508 | 
             
                  :bucket_name)
         | 
| 2509 | 
            +
                  SENSITIVE = []
         | 
| 2405 2510 | 
             
                  include Aws::Structure
         | 
| 2406 2511 | 
             
                end
         | 
| 2407 2512 |  | 
| @@ -2424,6 +2529,7 @@ module Aws::DatabaseMigrationService | |
| 2424 2529 | 
             
                #
         | 
| 2425 2530 | 
             
                class DynamoDbSettings < Struct.new(
         | 
| 2426 2531 | 
             
                  :service_access_role_arn)
         | 
| 2532 | 
            +
                  SENSITIVE = []
         | 
| 2427 2533 | 
             
                  include Aws::Structure
         | 
| 2428 2534 | 
             
                end
         | 
| 2429 2535 |  | 
| @@ -2465,6 +2571,7 @@ module Aws::DatabaseMigrationService | |
| 2465 2571 | 
             
                  :endpoint_uri,
         | 
| 2466 2572 | 
             
                  :full_load_error_percentage,
         | 
| 2467 2573 | 
             
                  :error_retry_duration)
         | 
| 2574 | 
            +
                  SENSITIVE = []
         | 
| 2468 2575 | 
             
                  include Aws::Structure
         | 
| 2469 2576 | 
             
                end
         | 
| 2470 2577 |  | 
| @@ -2622,6 +2729,11 @@ module Aws::DatabaseMigrationService | |
| 2622 2729 | 
             
                #   information, see the `ElasticsearchSettings` structure.
         | 
| 2623 2730 | 
             
                #   @return [Types::ElasticsearchSettings]
         | 
| 2624 2731 | 
             
                #
         | 
| 2732 | 
            +
                # @!attribute [rw] neptune_settings
         | 
| 2733 | 
            +
                #   The settings for the MongoDB source endpoint. For more information,
         | 
| 2734 | 
            +
                #   see the `NeptuneSettings` structure.
         | 
| 2735 | 
            +
                #   @return [Types::NeptuneSettings]
         | 
| 2736 | 
            +
                #
         | 
| 2625 2737 | 
             
                # @!attribute [rw] redshift_settings
         | 
| 2626 2738 | 
             
                #   Settings for the Amazon Redshift endpoint.
         | 
| 2627 2739 | 
             
                #   @return [Types::RedshiftSettings]
         | 
| @@ -2653,7 +2765,9 @@ module Aws::DatabaseMigrationService | |
| 2653 2765 | 
             
                  :kinesis_settings,
         | 
| 2654 2766 | 
             
                  :kafka_settings,
         | 
| 2655 2767 | 
             
                  :elasticsearch_settings,
         | 
| 2768 | 
            +
                  :neptune_settings,
         | 
| 2656 2769 | 
             
                  :redshift_settings)
         | 
| 2770 | 
            +
                  SENSITIVE = []
         | 
| 2657 2771 | 
             
                  include Aws::Structure
         | 
| 2658 2772 | 
             
                end
         | 
| 2659 2773 |  | 
| @@ -2692,6 +2806,7 @@ module Aws::DatabaseMigrationService | |
| 2692 2806 | 
             
                  :message,
         | 
| 2693 2807 | 
             
                  :event_categories,
         | 
| 2694 2808 | 
             
                  :date)
         | 
| 2809 | 
            +
                  SENSITIVE = []
         | 
| 2695 2810 | 
             
                  include Aws::Structure
         | 
| 2696 2811 | 
             
                end
         | 
| 2697 2812 |  | 
| @@ -2714,6 +2829,7 @@ module Aws::DatabaseMigrationService | |
| 2714 2829 | 
             
                class EventCategoryGroup < Struct.new(
         | 
| 2715 2830 | 
             
                  :source_type,
         | 
| 2716 2831 | 
             
                  :event_categories)
         | 
| 2832 | 
            +
                  SENSITIVE = []
         | 
| 2717 2833 | 
             
                  include Aws::Structure
         | 
| 2718 2834 | 
             
                end
         | 
| 2719 2835 |  | 
| @@ -2782,6 +2898,7 @@ module Aws::DatabaseMigrationService | |
| 2782 2898 | 
             
                  :source_ids_list,
         | 
| 2783 2899 | 
             
                  :event_categories_list,
         | 
| 2784 2900 | 
             
                  :enabled)
         | 
| 2901 | 
            +
                  SENSITIVE = []
         | 
| 2785 2902 | 
             
                  include Aws::Structure
         | 
| 2786 2903 | 
             
                end
         | 
| 2787 2904 |  | 
| @@ -2810,6 +2927,7 @@ module Aws::DatabaseMigrationService | |
| 2810 2927 | 
             
                class Filter < Struct.new(
         | 
| 2811 2928 | 
             
                  :name,
         | 
| 2812 2929 | 
             
                  :values)
         | 
| 2930 | 
            +
                  SENSITIVE = []
         | 
| 2813 2931 | 
             
                  include Aws::Structure
         | 
| 2814 2932 | 
             
                end
         | 
| 2815 2933 |  | 
| @@ -2855,6 +2973,7 @@ module Aws::DatabaseMigrationService | |
| 2855 2973 | 
             
                  :certificate_pem,
         | 
| 2856 2974 | 
             
                  :certificate_wallet,
         | 
| 2857 2975 | 
             
                  :tags)
         | 
| 2976 | 
            +
                  SENSITIVE = []
         | 
| 2858 2977 | 
             
                  include Aws::Structure
         | 
| 2859 2978 | 
             
                end
         | 
| 2860 2979 |  | 
| @@ -2866,6 +2985,7 @@ module Aws::DatabaseMigrationService | |
| 2866 2985 | 
             
                #
         | 
| 2867 2986 | 
             
                class ImportCertificateResponse < Struct.new(
         | 
| 2868 2987 | 
             
                  :certificate)
         | 
| 2988 | 
            +
                  SENSITIVE = []
         | 
| 2869 2989 | 
             
                  include Aws::Structure
         | 
| 2870 2990 | 
             
                end
         | 
| 2871 2991 |  | 
| @@ -2878,6 +2998,7 @@ module Aws::DatabaseMigrationService | |
| 2878 2998 | 
             
                #
         | 
| 2879 2999 | 
             
                class InsufficientResourceCapacityFault < Struct.new(
         | 
| 2880 3000 | 
             
                  :message)
         | 
| 3001 | 
            +
                  SENSITIVE = []
         | 
| 2881 3002 | 
             
                  include Aws::Structure
         | 
| 2882 3003 | 
             
                end
         | 
| 2883 3004 |  | 
| @@ -2890,6 +3011,7 @@ module Aws::DatabaseMigrationService | |
| 2890 3011 | 
             
                #
         | 
| 2891 3012 | 
             
                class InvalidCertificateFault < Struct.new(
         | 
| 2892 3013 | 
             
                  :message)
         | 
| 3014 | 
            +
                  SENSITIVE = []
         | 
| 2893 3015 | 
             
                  include Aws::Structure
         | 
| 2894 3016 | 
             
                end
         | 
| 2895 3017 |  | 
| @@ -2903,6 +3025,7 @@ module Aws::DatabaseMigrationService | |
| 2903 3025 | 
             
                #
         | 
| 2904 3026 | 
             
                class InvalidResourceStateFault < Struct.new(
         | 
| 2905 3027 | 
             
                  :message)
         | 
| 3028 | 
            +
                  SENSITIVE = []
         | 
| 2906 3029 | 
             
                  include Aws::Structure
         | 
| 2907 3030 | 
             
                end
         | 
| 2908 3031 |  | 
| @@ -2915,6 +3038,7 @@ module Aws::DatabaseMigrationService | |
| 2915 3038 | 
             
                #
         | 
| 2916 3039 | 
             
                class InvalidSubnet < Struct.new(
         | 
| 2917 3040 | 
             
                  :message)
         | 
| 3041 | 
            +
                  SENSITIVE = []
         | 
| 2918 3042 | 
             
                  include Aws::Structure
         | 
| 2919 3043 | 
             
                end
         | 
| 2920 3044 |  | 
| @@ -2928,6 +3052,7 @@ module Aws::DatabaseMigrationService | |
| 2928 3052 | 
             
                #
         | 
| 2929 3053 | 
             
                class KMSAccessDeniedFault < Struct.new(
         | 
| 2930 3054 | 
             
                  :message)
         | 
| 3055 | 
            +
                  SENSITIVE = []
         | 
| 2931 3056 | 
             
                  include Aws::Structure
         | 
| 2932 3057 | 
             
                end
         | 
| 2933 3058 |  | 
| @@ -2940,6 +3065,7 @@ module Aws::DatabaseMigrationService | |
| 2940 3065 | 
             
                #
         | 
| 2941 3066 | 
             
                class KMSDisabledFault < Struct.new(
         | 
| 2942 3067 | 
             
                  :message)
         | 
| 3068 | 
            +
                  SENSITIVE = []
         | 
| 2943 3069 | 
             
                  include Aws::Structure
         | 
| 2944 3070 | 
             
                end
         | 
| 2945 3071 |  | 
| @@ -2953,6 +3079,7 @@ module Aws::DatabaseMigrationService | |
| 2953 3079 | 
             
                #
         | 
| 2954 3080 | 
             
                class KMSInvalidStateFault < Struct.new(
         | 
| 2955 3081 | 
             
                  :message)
         | 
| 3082 | 
            +
                  SENSITIVE = []
         | 
| 2956 3083 | 
             
                  include Aws::Structure
         | 
| 2957 3084 | 
             
                end
         | 
| 2958 3085 |  | 
| @@ -2965,6 +3092,7 @@ module Aws::DatabaseMigrationService | |
| 2965 3092 | 
             
                #
         | 
| 2966 3093 | 
             
                class KMSKeyNotAccessibleFault < Struct.new(
         | 
| 2967 3094 | 
             
                  :message)
         | 
| 3095 | 
            +
                  SENSITIVE = []
         | 
| 2968 3096 | 
             
                  include Aws::Structure
         | 
| 2969 3097 | 
             
                end
         | 
| 2970 3098 |  | 
| @@ -2977,6 +3105,7 @@ module Aws::DatabaseMigrationService | |
| 2977 3105 | 
             
                #
         | 
| 2978 3106 | 
             
                class KMSNotFoundFault < Struct.new(
         | 
| 2979 3107 | 
             
                  :message)
         | 
| 3108 | 
            +
                  SENSITIVE = []
         | 
| 2980 3109 | 
             
                  include Aws::Structure
         | 
| 2981 3110 | 
             
                end
         | 
| 2982 3111 |  | 
| @@ -2989,6 +3118,7 @@ module Aws::DatabaseMigrationService | |
| 2989 3118 | 
             
                #
         | 
| 2990 3119 | 
             
                class KMSThrottlingFault < Struct.new(
         | 
| 2991 3120 | 
             
                  :message)
         | 
| 3121 | 
            +
                  SENSITIVE = []
         | 
| 2992 3122 | 
             
                  include Aws::Structure
         | 
| 2993 3123 | 
             
                end
         | 
| 2994 3124 |  | 
| @@ -3023,6 +3153,7 @@ module Aws::DatabaseMigrationService | |
| 3023 3153 | 
             
                class KafkaSettings < Struct.new(
         | 
| 3024 3154 | 
             
                  :broker,
         | 
| 3025 3155 | 
             
                  :topic)
         | 
| 3156 | 
            +
                  SENSITIVE = []
         | 
| 3026 3157 | 
             
                  include Aws::Structure
         | 
| 3027 3158 | 
             
                end
         | 
| 3028 3159 |  | 
| @@ -3109,6 +3240,7 @@ module Aws::DatabaseMigrationService | |
| 3109 3240 | 
             
                  :partition_include_schema_table,
         | 
| 3110 3241 | 
             
                  :include_table_alter_operations,
         | 
| 3111 3242 | 
             
                  :include_control_details)
         | 
| 3243 | 
            +
                  SENSITIVE = []
         | 
| 3112 3244 | 
             
                  include Aws::Structure
         | 
| 3113 3245 | 
             
                end
         | 
| 3114 3246 |  | 
| @@ -3128,6 +3260,7 @@ module Aws::DatabaseMigrationService | |
| 3128 3260 | 
             
                #
         | 
| 3129 3261 | 
             
                class ListTagsForResourceMessage < Struct.new(
         | 
| 3130 3262 | 
             
                  :resource_arn)
         | 
| 3263 | 
            +
                  SENSITIVE = []
         | 
| 3131 3264 | 
             
                  include Aws::Structure
         | 
| 3132 3265 | 
             
                end
         | 
| 3133 3266 |  | 
| @@ -3139,6 +3272,7 @@ module Aws::DatabaseMigrationService | |
| 3139 3272 | 
             
                #
         | 
| 3140 3273 | 
             
                class ListTagsForResourceResponse < Struct.new(
         | 
| 3141 3274 | 
             
                  :tag_list)
         | 
| 3275 | 
            +
                  SENSITIVE = []
         | 
| 3142 3276 | 
             
                  include Aws::Structure
         | 
| 3143 3277 | 
             
                end
         | 
| 3144 3278 |  | 
| @@ -3224,6 +3358,15 @@ module Aws::DatabaseMigrationService | |
| 3224 3358 | 
             
                #           full_load_error_percentage: 1,
         | 
| 3225 3359 | 
             
                #           error_retry_duration: 1,
         | 
| 3226 3360 | 
             
                #         },
         | 
| 3361 | 
            +
                #         neptune_settings: {
         | 
| 3362 | 
            +
                #           service_access_role_arn: "String",
         | 
| 3363 | 
            +
                #           s3_bucket_name: "String", # required
         | 
| 3364 | 
            +
                #           s3_bucket_folder: "String", # required
         | 
| 3365 | 
            +
                #           error_retry_duration: 1,
         | 
| 3366 | 
            +
                #           max_file_size: 1,
         | 
| 3367 | 
            +
                #           max_retry_count: 1,
         | 
| 3368 | 
            +
                #           iam_auth_enabled: false,
         | 
| 3369 | 
            +
                #         },
         | 
| 3227 3370 | 
             
                #         redshift_settings: {
         | 
| 3228 3371 | 
             
                #           accept_any_date: false,
         | 
| 3229 3372 | 
             
                #           after_connect_script: "String",
         | 
| @@ -3381,24 +3524,24 @@ module Aws::DatabaseMigrationService | |
| 3381 3524 | 
             
                #
         | 
| 3382 3525 | 
             
                # @!attribute [rw] kinesis_settings
         | 
| 3383 3526 | 
             
                #   Settings in JSON format for the target endpoint for Amazon Kinesis
         | 
| 3384 | 
            -
                #   Data Streams. For information about  | 
| 3385 | 
            -
                #   [Using  | 
| 3386 | 
            -
                #   in the *AWS Database Migration User Guide.*
         | 
| 3527 | 
            +
                #   Data Streams. For more information about the available settings, see
         | 
| 3528 | 
            +
                #   [Using Amazon Kinesis Data Streams as a Target for AWS Database
         | 
| 3529 | 
            +
                #   Migration Service][1] in the *AWS Database Migration User Guide.*
         | 
| 3387 3530 | 
             
                #
         | 
| 3388 3531 | 
             
                #
         | 
| 3389 3532 | 
             
                #
         | 
| 3390 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html | 
| 3533 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
         | 
| 3391 3534 | 
             
                #   @return [Types::KinesisSettings]
         | 
| 3392 3535 | 
             
                #
         | 
| 3393 3536 | 
             
                # @!attribute [rw] kafka_settings
         | 
| 3394 3537 | 
             
                #   Settings in JSON format for the target Apache Kafka endpoint. For
         | 
| 3395 | 
            -
                #   information about  | 
| 3396 | 
            -
                #    | 
| 3397 | 
            -
                #   Migration User Guide.*
         | 
| 3538 | 
            +
                #   more information about the available settings, see [Using Apache
         | 
| 3539 | 
            +
                #   Kafka as a Target for AWS Database Migration Service][1] in the *AWS
         | 
| 3540 | 
            +
                #   Database Migration User Guide.*
         | 
| 3398 3541 | 
             
                #
         | 
| 3399 3542 | 
             
                #
         | 
| 3400 3543 | 
             
                #
         | 
| 3401 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html | 
| 3544 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
         | 
| 3402 3545 | 
             
                #   @return [Types::KafkaSettings]
         | 
| 3403 3546 | 
             
                #
         | 
| 3404 3547 | 
             
                # @!attribute [rw] elasticsearch_settings
         | 
| @@ -3412,6 +3555,17 @@ module Aws::DatabaseMigrationService | |
| 3412 3555 | 
             
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
         | 
| 3413 3556 | 
             
                #   @return [Types::ElasticsearchSettings]
         | 
| 3414 3557 | 
             
                #
         | 
| 3558 | 
            +
                # @!attribute [rw] neptune_settings
         | 
| 3559 | 
            +
                #   Settings in JSON format for the target Amazon Neptune endpoint. For
         | 
| 3560 | 
            +
                #   more information about the available settings, see
         | 
| 3561 | 
            +
                #   [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
         | 
| 3562 | 
            +
                #   in the *AWS Database Migration Service User Guide.*
         | 
| 3563 | 
            +
                #
         | 
| 3564 | 
            +
                #
         | 
| 3565 | 
            +
                #
         | 
| 3566 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
         | 
| 3567 | 
            +
                #   @return [Types::NeptuneSettings]
         | 
| 3568 | 
            +
                #
         | 
| 3415 3569 | 
             
                # @!attribute [rw] redshift_settings
         | 
| 3416 3570 | 
             
                #   Provides information that defines an Amazon Redshift endpoint.
         | 
| 3417 3571 | 
             
                #   @return [Types::RedshiftSettings]
         | 
| @@ -3440,7 +3594,9 @@ module Aws::DatabaseMigrationService | |
| 3440 3594 | 
             
                  :kinesis_settings,
         | 
| 3441 3595 | 
             
                  :kafka_settings,
         | 
| 3442 3596 | 
             
                  :elasticsearch_settings,
         | 
| 3597 | 
            +
                  :neptune_settings,
         | 
| 3443 3598 | 
             
                  :redshift_settings)
         | 
| 3599 | 
            +
                  SENSITIVE = [:password]
         | 
| 3444 3600 | 
             
                  include Aws::Structure
         | 
| 3445 3601 | 
             
                end
         | 
| 3446 3602 |  | 
| @@ -3452,6 +3608,7 @@ module Aws::DatabaseMigrationService | |
| 3452 3608 | 
             
                #
         | 
| 3453 3609 | 
             
                class ModifyEndpointResponse < Struct.new(
         | 
| 3454 3610 | 
             
                  :endpoint)
         | 
| 3611 | 
            +
                  SENSITIVE = []
         | 
| 3455 3612 | 
             
                  include Aws::Structure
         | 
| 3456 3613 | 
             
                end
         | 
| 3457 3614 |  | 
| @@ -3502,6 +3659,7 @@ module Aws::DatabaseMigrationService | |
| 3502 3659 | 
             
                  :source_type,
         | 
| 3503 3660 | 
             
                  :event_categories,
         | 
| 3504 3661 | 
             
                  :enabled)
         | 
| 3662 | 
            +
                  SENSITIVE = []
         | 
| 3505 3663 | 
             
                  include Aws::Structure
         | 
| 3506 3664 | 
             
                end
         | 
| 3507 3665 |  | 
| @@ -3513,6 +3671,7 @@ module Aws::DatabaseMigrationService | |
| 3513 3671 | 
             
                #
         | 
| 3514 3672 | 
             
                class ModifyEventSubscriptionResponse < Struct.new(
         | 
| 3515 3673 | 
             
                  :event_subscription)
         | 
| 3674 | 
            +
                  SENSITIVE = []
         | 
| 3516 3675 | 
             
                  include Aws::Structure
         | 
| 3517 3676 | 
             
                end
         | 
| 3518 3677 |  | 
| @@ -3635,6 +3794,7 @@ module Aws::DatabaseMigrationService | |
| 3635 3794 | 
             
                  :allow_major_version_upgrade,
         | 
| 3636 3795 | 
             
                  :auto_minor_version_upgrade,
         | 
| 3637 3796 | 
             
                  :replication_instance_identifier)
         | 
| 3797 | 
            +
                  SENSITIVE = []
         | 
| 3638 3798 | 
             
                  include Aws::Structure
         | 
| 3639 3799 | 
             
                end
         | 
| 3640 3800 |  | 
| @@ -3646,6 +3806,7 @@ module Aws::DatabaseMigrationService | |
| 3646 3806 | 
             
                #
         | 
| 3647 3807 | 
             
                class ModifyReplicationInstanceResponse < Struct.new(
         | 
| 3648 3808 | 
             
                  :replication_instance)
         | 
| 3809 | 
            +
                  SENSITIVE = []
         | 
| 3649 3810 | 
             
                  include Aws::Structure
         | 
| 3650 3811 | 
             
                end
         | 
| 3651 3812 |  | 
| @@ -3676,6 +3837,7 @@ module Aws::DatabaseMigrationService | |
| 3676 3837 | 
             
                  :replication_subnet_group_identifier,
         | 
| 3677 3838 | 
             
                  :replication_subnet_group_description,
         | 
| 3678 3839 | 
             
                  :subnet_ids)
         | 
| 3840 | 
            +
                  SENSITIVE = []
         | 
| 3679 3841 | 
             
                  include Aws::Structure
         | 
| 3680 3842 | 
             
                end
         | 
| 3681 3843 |  | 
| @@ -3687,6 +3849,7 @@ module Aws::DatabaseMigrationService | |
| 3687 3849 | 
             
                #
         | 
| 3688 3850 | 
             
                class ModifyReplicationSubnetGroupResponse < Struct.new(
         | 
| 3689 3851 | 
             
                  :replication_subnet_group)
         | 
| 3852 | 
            +
                  SENSITIVE = []
         | 
| 3690 3853 | 
             
                  include Aws::Structure
         | 
| 3691 3854 | 
             
                end
         | 
| 3692 3855 |  | 
| @@ -3702,6 +3865,7 @@ module Aws::DatabaseMigrationService | |
| 3702 3865 | 
             
                #         cdc_start_time: Time.now,
         | 
| 3703 3866 | 
             
                #         cdc_start_position: "String",
         | 
| 3704 3867 | 
             
                #         cdc_stop_position: "String",
         | 
| 3868 | 
            +
                #         task_data: "String",
         | 
| 3705 3869 | 
             
                #       }
         | 
| 3706 3870 | 
             
                #
         | 
| 3707 3871 | 
             
                # @!attribute [rw] replication_task_arn
         | 
| @@ -3733,8 +3897,8 @@ module Aws::DatabaseMigrationService | |
| 3733 3897 | 
             
                #   @return [String]
         | 
| 3734 3898 | 
             
                #
         | 
| 3735 3899 | 
             
                # @!attribute [rw] replication_task_settings
         | 
| 3736 | 
            -
                #   JSON file that contains settings for the task, such as  | 
| 3737 | 
            -
                #    | 
| 3900 | 
            +
                #   JSON file that contains settings for the task, such as task metadata
         | 
| 3901 | 
            +
                #   settings.
         | 
| 3738 3902 | 
             
                #   @return [String]
         | 
| 3739 3903 | 
             
                #
         | 
| 3740 3904 | 
             
                # @!attribute [rw] cdc_start_time
         | 
| @@ -3786,6 +3950,17 @@ module Aws::DatabaseMigrationService | |
| 3786 3950 | 
             
                #   3018-02-09T12:12:12 “
         | 
| 3787 3951 | 
             
                #   @return [String]
         | 
| 3788 3952 | 
             
                #
         | 
| 3953 | 
            +
                # @!attribute [rw] task_data
         | 
| 3954 | 
            +
                #   Supplemental information that the task requires to migrate the data
         | 
| 3955 | 
            +
                #   for certain source and target endpoints. For more information, see
         | 
| 3956 | 
            +
                #   [Specifying Supplemental Data for Task Settings][1] in the *AWS
         | 
| 3957 | 
            +
                #   Database Migration User Guide.*
         | 
| 3958 | 
            +
                #
         | 
| 3959 | 
            +
                #
         | 
| 3960 | 
            +
                #
         | 
| 3961 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
         | 
| 3962 | 
            +
                #   @return [String]
         | 
| 3963 | 
            +
                #
         | 
| 3789 3964 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTaskMessage AWS API Documentation
         | 
| 3790 3965 | 
             
                #
         | 
| 3791 3966 | 
             
                class ModifyReplicationTaskMessage < Struct.new(
         | 
| @@ -3796,7 +3971,9 @@ module Aws::DatabaseMigrationService | |
| 3796 3971 | 
             
                  :replication_task_settings,
         | 
| 3797 3972 | 
             
                  :cdc_start_time,
         | 
| 3798 3973 | 
             
                  :cdc_start_position,
         | 
| 3799 | 
            -
                  :cdc_stop_position | 
| 3974 | 
            +
                  :cdc_stop_position,
         | 
| 3975 | 
            +
                  :task_data)
         | 
| 3976 | 
            +
                  SENSITIVE = []
         | 
| 3800 3977 | 
             
                  include Aws::Structure
         | 
| 3801 3978 | 
             
                end
         | 
| 3802 3979 |  | 
| @@ -3808,6 +3985,7 @@ module Aws::DatabaseMigrationService | |
| 3808 3985 | 
             
                #
         | 
| 3809 3986 | 
             
                class ModifyReplicationTaskResponse < Struct.new(
         | 
| 3810 3987 | 
             
                  :replication_task)
         | 
| 3988 | 
            +
                  SENSITIVE = []
         | 
| 3811 3989 | 
             
                  include Aws::Structure
         | 
| 3812 3990 | 
             
                end
         | 
| 3813 3991 |  | 
| @@ -3928,6 +4106,85 @@ module Aws::DatabaseMigrationService | |
| 3928 4106 | 
             
                  :docs_to_investigate,
         | 
| 3929 4107 | 
             
                  :auth_source,
         | 
| 3930 4108 | 
             
                  :kms_key_id)
         | 
| 4109 | 
            +
                  SENSITIVE = [:password]
         | 
| 4110 | 
            +
                  include Aws::Structure
         | 
| 4111 | 
            +
                end
         | 
| 4112 | 
            +
             | 
| 4113 | 
            +
                # Provides information that defines an Amazon Neptune endpoint.
         | 
| 4114 | 
            +
                #
         | 
| 4115 | 
            +
                # @note When making an API call, you may pass NeptuneSettings
         | 
| 4116 | 
            +
                #   data as a hash:
         | 
| 4117 | 
            +
                #
         | 
| 4118 | 
            +
                #       {
         | 
| 4119 | 
            +
                #         service_access_role_arn: "String",
         | 
| 4120 | 
            +
                #         s3_bucket_name: "String", # required
         | 
| 4121 | 
            +
                #         s3_bucket_folder: "String", # required
         | 
| 4122 | 
            +
                #         error_retry_duration: 1,
         | 
| 4123 | 
            +
                #         max_file_size: 1,
         | 
| 4124 | 
            +
                #         max_retry_count: 1,
         | 
| 4125 | 
            +
                #         iam_auth_enabled: false,
         | 
| 4126 | 
            +
                #       }
         | 
| 4127 | 
            +
                #
         | 
| 4128 | 
            +
                # @!attribute [rw] service_access_role_arn
         | 
| 4129 | 
            +
                #   The ARN of the service role you have created for the Neptune target
         | 
| 4130 | 
            +
                #   endpoint. For more information, see
         | 
| 4131 | 
            +
                #   [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.ServiceRole][1]
         | 
| 4132 | 
            +
                #   in the *AWS Database Migration Service User Guide.*
         | 
| 4133 | 
            +
                #
         | 
| 4134 | 
            +
                #
         | 
| 4135 | 
            +
                #
         | 
| 4136 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.ServiceRole
         | 
| 4137 | 
            +
                #   @return [String]
         | 
| 4138 | 
            +
                #
         | 
| 4139 | 
            +
                # @!attribute [rw] s3_bucket_name
         | 
| 4140 | 
            +
                #   The name of the S3 bucket for AWS DMS to temporarily store migrated
         | 
| 4141 | 
            +
                #   graph data in CSV files before bulk-loading it to the Neptune target
         | 
| 4142 | 
            +
                #   database. AWS DMS maps the SQL source data to graph data before
         | 
| 4143 | 
            +
                #   storing it in these CSV files.
         | 
| 4144 | 
            +
                #   @return [String]
         | 
| 4145 | 
            +
                #
         | 
| 4146 | 
            +
                # @!attribute [rw] s3_bucket_folder
         | 
| 4147 | 
            +
                #   A folder path where you where you want AWS DMS to store migrated
         | 
| 4148 | 
            +
                #   graph data in the S3 bucket specified by `S3BucketName`
         | 
| 4149 | 
            +
                #   @return [String]
         | 
| 4150 | 
            +
                #
         | 
| 4151 | 
            +
                # @!attribute [rw] error_retry_duration
         | 
| 4152 | 
            +
                #   The number of milliseconds for AWS DMS to wait to retry a bulk-load
         | 
| 4153 | 
            +
                #   of migrated graph data to the Neptune target database before raising
         | 
| 4154 | 
            +
                #   an error. The default is 250.
         | 
| 4155 | 
            +
                #   @return [Integer]
         | 
| 4156 | 
            +
                #
         | 
| 4157 | 
            +
                # @!attribute [rw] max_file_size
         | 
| 4158 | 
            +
                #   The maximum size in KB of migrated graph data stored in a CSV file
         | 
| 4159 | 
            +
                #   before AWS DMS bulk-loads the data to the Neptune target database.
         | 
| 4160 | 
            +
                #   The default is 1048576 KB. If successful, AWS DMS clears the bucket,
         | 
| 4161 | 
            +
                #   ready to store the next batch of migrated graph data.
         | 
| 4162 | 
            +
                #   @return [Integer]
         | 
| 4163 | 
            +
                #
         | 
| 4164 | 
            +
                # @!attribute [rw] max_retry_count
         | 
| 4165 | 
            +
                #   The number of times for AWS DMS to retry a bulk-load of migrated
         | 
| 4166 | 
            +
                #   graph data to the Neptune target database before raising an error.
         | 
| 4167 | 
            +
                #   The default is 5.
         | 
| 4168 | 
            +
                #   @return [Integer]
         | 
| 4169 | 
            +
                #
         | 
| 4170 | 
            +
                # @!attribute [rw] iam_auth_enabled
         | 
| 4171 | 
            +
                #   If you want IAM authorization enabled for this endpoint, set this
         | 
| 4172 | 
            +
                #   parameter to `true` and attach the appropriate role policy document
         | 
| 4173 | 
            +
                #   to your service role specified by `ServiceAccessRoleArn`. The
         | 
| 4174 | 
            +
                #   default is `false`.
         | 
| 4175 | 
            +
                #   @return [Boolean]
         | 
| 4176 | 
            +
                #
         | 
| 4177 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/NeptuneSettings AWS API Documentation
         | 
| 4178 | 
            +
                #
         | 
| 4179 | 
            +
                class NeptuneSettings < Struct.new(
         | 
| 4180 | 
            +
                  :service_access_role_arn,
         | 
| 4181 | 
            +
                  :s3_bucket_name,
         | 
| 4182 | 
            +
                  :s3_bucket_folder,
         | 
| 4183 | 
            +
                  :error_retry_duration,
         | 
| 4184 | 
            +
                  :max_file_size,
         | 
| 4185 | 
            +
                  :max_retry_count,
         | 
| 4186 | 
            +
                  :iam_auth_enabled)
         | 
| 4187 | 
            +
                  SENSITIVE = []
         | 
| 3931 4188 | 
             
                  include Aws::Structure
         | 
| 3932 4189 | 
             
                end
         | 
| 3933 4190 |  | 
| @@ -3999,6 +4256,7 @@ module Aws::DatabaseMigrationService | |
| 3999 4256 | 
             
                  :included_allocated_storage,
         | 
| 4000 4257 | 
             
                  :availability_zones,
         | 
| 4001 4258 | 
             
                  :release_status)
         | 
| 4259 | 
            +
                  SENSITIVE = []
         | 
| 4002 4260 | 
             
                  include Aws::Structure
         | 
| 4003 4261 | 
             
                end
         | 
| 4004 4262 |  | 
| @@ -4052,6 +4310,7 @@ module Aws::DatabaseMigrationService | |
| 4052 4310 | 
             
                  :opt_in_status,
         | 
| 4053 4311 | 
             
                  :current_apply_date,
         | 
| 4054 4312 | 
             
                  :description)
         | 
| 4313 | 
            +
                  SENSITIVE = []
         | 
| 4055 4314 | 
             
                  include Aws::Structure
         | 
| 4056 4315 | 
             
                end
         | 
| 4057 4316 |  | 
| @@ -4078,6 +4337,7 @@ module Aws::DatabaseMigrationService | |
| 4078 4337 | 
             
                class RebootReplicationInstanceMessage < Struct.new(
         | 
| 4079 4338 | 
             
                  :replication_instance_arn,
         | 
| 4080 4339 | 
             
                  :force_failover)
         | 
| 4340 | 
            +
                  SENSITIVE = []
         | 
| 4081 4341 | 
             
                  include Aws::Structure
         | 
| 4082 4342 | 
             
                end
         | 
| 4083 4343 |  | 
| @@ -4089,6 +4349,7 @@ module Aws::DatabaseMigrationService | |
| 4089 4349 | 
             
                #
         | 
| 4090 4350 | 
             
                class RebootReplicationInstanceResponse < Struct.new(
         | 
| 4091 4351 | 
             
                  :replication_instance)
         | 
| 4352 | 
            +
                  SENSITIVE = []
         | 
| 4092 4353 | 
             
                  include Aws::Structure
         | 
| 4093 4354 | 
             
                end
         | 
| 4094 4355 |  | 
| @@ -4310,6 +4571,7 @@ module Aws::DatabaseMigrationService | |
| 4310 4571 | 
             
                  :truncate_columns,
         | 
| 4311 4572 | 
             
                  :username,
         | 
| 4312 4573 | 
             
                  :write_buffer_size)
         | 
| 4574 | 
            +
                  SENSITIVE = [:password]
         | 
| 4313 4575 | 
             
                  include Aws::Structure
         | 
| 4314 4576 | 
             
                end
         | 
| 4315 4577 |  | 
| @@ -4335,6 +4597,7 @@ module Aws::DatabaseMigrationService | |
| 4335 4597 | 
             
                class RefreshSchemasMessage < Struct.new(
         | 
| 4336 4598 | 
             
                  :endpoint_arn,
         | 
| 4337 4599 | 
             
                  :replication_instance_arn)
         | 
| 4600 | 
            +
                  SENSITIVE = []
         | 
| 4338 4601 | 
             
                  include Aws::Structure
         | 
| 4339 4602 | 
             
                end
         | 
| 4340 4603 |  | 
| @@ -4346,6 +4609,7 @@ module Aws::DatabaseMigrationService | |
| 4346 4609 | 
             
                #
         | 
| 4347 4610 | 
             
                class RefreshSchemasResponse < Struct.new(
         | 
| 4348 4611 | 
             
                  :refresh_schemas_status)
         | 
| 4612 | 
            +
                  SENSITIVE = []
         | 
| 4349 4613 | 
             
                  include Aws::Structure
         | 
| 4350 4614 | 
             
                end
         | 
| 4351 4615 |  | 
| @@ -4381,6 +4645,7 @@ module Aws::DatabaseMigrationService | |
| 4381 4645 | 
             
                  :status,
         | 
| 4382 4646 | 
             
                  :last_refresh_date,
         | 
| 4383 4647 | 
             
                  :last_failure_message)
         | 
| 4648 | 
            +
                  SENSITIVE = []
         | 
| 4384 4649 | 
             
                  include Aws::Structure
         | 
| 4385 4650 | 
             
                end
         | 
| 4386 4651 |  | 
| @@ -4423,6 +4688,7 @@ module Aws::DatabaseMigrationService | |
| 4423 4688 | 
             
                  :replication_task_arn,
         | 
| 4424 4689 | 
             
                  :tables_to_reload,
         | 
| 4425 4690 | 
             
                  :reload_option)
         | 
| 4691 | 
            +
                  SENSITIVE = []
         | 
| 4426 4692 | 
             
                  include Aws::Structure
         | 
| 4427 4693 | 
             
                end
         | 
| 4428 4694 |  | 
| @@ -4434,6 +4700,7 @@ module Aws::DatabaseMigrationService | |
| 4434 4700 | 
             
                #
         | 
| 4435 4701 | 
             
                class ReloadTablesResponse < Struct.new(
         | 
| 4436 4702 | 
             
                  :replication_task_arn)
         | 
| 4703 | 
            +
                  SENSITIVE = []
         | 
| 4437 4704 | 
             
                  include Aws::Structure
         | 
| 4438 4705 | 
             
                end
         | 
| 4439 4706 |  | 
| @@ -4461,6 +4728,7 @@ module Aws::DatabaseMigrationService | |
| 4461 4728 | 
             
                class RemoveTagsFromResourceMessage < Struct.new(
         | 
| 4462 4729 | 
             
                  :resource_arn,
         | 
| 4463 4730 | 
             
                  :tag_keys)
         | 
| 4731 | 
            +
                  SENSITIVE = []
         | 
| 4464 4732 | 
             
                  include Aws::Structure
         | 
| 4465 4733 | 
             
                end
         | 
| 4466 4734 |  | 
| @@ -4620,6 +4888,7 @@ module Aws::DatabaseMigrationService | |
| 4620 4888 | 
             
                  :secondary_availability_zone,
         | 
| 4621 4889 | 
             
                  :free_until,
         | 
| 4622 4890 | 
             
                  :dns_name_servers)
         | 
| 4891 | 
            +
                  SENSITIVE = []
         | 
| 4623 4892 | 
             
                  include Aws::Structure
         | 
| 4624 4893 | 
             
                end
         | 
| 4625 4894 |  | 
| @@ -4643,6 +4912,7 @@ module Aws::DatabaseMigrationService | |
| 4643 4912 | 
             
                  :replication_task_name,
         | 
| 4644 4913 | 
             
                  :replication_task_arn,
         | 
| 4645 4914 | 
             
                  :replication_instance_task_log_size)
         | 
| 4915 | 
            +
                  SENSITIVE = []
         | 
| 4646 4916 | 
             
                  include Aws::Structure
         | 
| 4647 4917 | 
             
                end
         | 
| 4648 4918 |  | 
| @@ -4680,6 +4950,7 @@ module Aws::DatabaseMigrationService | |
| 4680 4950 | 
             
                  :allocated_storage,
         | 
| 4681 4951 | 
             
                  :multi_az,
         | 
| 4682 4952 | 
             
                  :engine_version)
         | 
| 4953 | 
            +
                  SENSITIVE = []
         | 
| 4683 4954 | 
             
                  include Aws::Structure
         | 
| 4684 4955 | 
             
                end
         | 
| 4685 4956 |  | 
| @@ -4714,6 +4985,7 @@ module Aws::DatabaseMigrationService | |
| 4714 4985 | 
             
                  :vpc_id,
         | 
| 4715 4986 | 
             
                  :subnet_group_status,
         | 
| 4716 4987 | 
             
                  :subnets)
         | 
| 4988 | 
            +
                  SENSITIVE = []
         | 
| 4717 4989 | 
             
                  include Aws::Structure
         | 
| 4718 4990 | 
             
                end
         | 
| 4719 4991 |  | 
| @@ -4727,6 +4999,7 @@ module Aws::DatabaseMigrationService | |
| 4727 4999 | 
             
                #
         | 
| 4728 5000 | 
             
                class ReplicationSubnetGroupDoesNotCoverEnoughAZs < Struct.new(
         | 
| 4729 5001 | 
             
                  :message)
         | 
| 5002 | 
            +
                  SENSITIVE = []
         | 
| 4730 5003 | 
             
                  include Aws::Structure
         | 
| 4731 5004 | 
             
                end
         | 
| 4732 5005 |  | 
| @@ -4835,6 +5108,17 @@ module Aws::DatabaseMigrationService | |
| 4835 5108 | 
             
                #   and table errors.
         | 
| 4836 5109 | 
             
                #   @return [Types::ReplicationTaskStats]
         | 
| 4837 5110 | 
             
                #
         | 
| 5111 | 
            +
                # @!attribute [rw] task_data
         | 
| 5112 | 
            +
                #   Supplemental information that the task requires to migrate the data
         | 
| 5113 | 
            +
                #   for certain source and target endpoints. For more information, see
         | 
| 5114 | 
            +
                #   [Specifying Supplemental Data for Task Settings][1] in the *AWS
         | 
| 5115 | 
            +
                #   Database Migration User Guide.*
         | 
| 5116 | 
            +
                #
         | 
| 5117 | 
            +
                #
         | 
| 5118 | 
            +
                #
         | 
| 5119 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
         | 
| 5120 | 
            +
                #   @return [String]
         | 
| 5121 | 
            +
                #
         | 
| 4838 5122 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTask AWS API Documentation
         | 
| 4839 5123 | 
             
                #
         | 
| 4840 5124 | 
             
                class ReplicationTask < Struct.new(
         | 
| @@ -4854,7 +5138,9 @@ module Aws::DatabaseMigrationService | |
| 4854 5138 | 
             
                  :cdc_stop_position,
         | 
| 4855 5139 | 
             
                  :recovery_checkpoint,
         | 
| 4856 5140 | 
             
                  :replication_task_arn,
         | 
| 4857 | 
            -
                  :replication_task_stats | 
| 5141 | 
            +
                  :replication_task_stats,
         | 
| 5142 | 
            +
                  :task_data)
         | 
| 5143 | 
            +
                  SENSITIVE = []
         | 
| 4858 5144 | 
             
                  include Aws::Structure
         | 
| 4859 5145 | 
             
                end
         | 
| 4860 5146 |  | 
| @@ -4899,6 +5185,7 @@ module Aws::DatabaseMigrationService | |
| 4899 5185 | 
             
                  :assessment_results_file,
         | 
| 4900 5186 | 
             
                  :assessment_results,
         | 
| 4901 5187 | 
             
                  :s3_object_url)
         | 
| 5188 | 
            +
                  SENSITIVE = []
         | 
| 4902 5189 | 
             
                  include Aws::Structure
         | 
| 4903 5190 | 
             
                end
         | 
| 4904 5191 |  | 
| @@ -4971,6 +5258,7 @@ module Aws::DatabaseMigrationService | |
| 4971 5258 | 
             
                  :stop_date,
         | 
| 4972 5259 | 
             
                  :full_load_start_date,
         | 
| 4973 5260 | 
             
                  :full_load_finish_date)
         | 
| 5261 | 
            +
                  SENSITIVE = []
         | 
| 4974 5262 | 
             
                  include Aws::Structure
         | 
| 4975 5263 | 
             
                end
         | 
| 4976 5264 |  | 
| @@ -4987,6 +5275,7 @@ module Aws::DatabaseMigrationService | |
| 4987 5275 | 
             
                class ResourceAlreadyExistsFault < Struct.new(
         | 
| 4988 5276 | 
             
                  :message,
         | 
| 4989 5277 | 
             
                  :resource_arn)
         | 
| 5278 | 
            +
                  SENSITIVE = []
         | 
| 4990 5279 | 
             
                  include Aws::Structure
         | 
| 4991 5280 | 
             
                end
         | 
| 4992 5281 |  | 
| @@ -4999,6 +5288,7 @@ module Aws::DatabaseMigrationService | |
| 4999 5288 | 
             
                #
         | 
| 5000 5289 | 
             
                class ResourceNotFoundFault < Struct.new(
         | 
| 5001 5290 | 
             
                  :message)
         | 
| 5291 | 
            +
                  SENSITIVE = []
         | 
| 5002 5292 | 
             
                  include Aws::Structure
         | 
| 5003 5293 | 
             
                end
         | 
| 5004 5294 |  | 
| @@ -5024,6 +5314,7 @@ module Aws::DatabaseMigrationService | |
| 5024 5314 | 
             
                class ResourcePendingMaintenanceActions < Struct.new(
         | 
| 5025 5315 | 
             
                  :resource_identifier,
         | 
| 5026 5316 | 
             
                  :pending_maintenance_action_details)
         | 
| 5317 | 
            +
                  SENSITIVE = []
         | 
| 5027 5318 | 
             
                  include Aws::Structure
         | 
| 5028 5319 | 
             
                end
         | 
| 5029 5320 |  | 
| @@ -5036,6 +5327,7 @@ module Aws::DatabaseMigrationService | |
| 5036 5327 | 
             
                #
         | 
| 5037 5328 | 
             
                class ResourceQuotaExceededFault < Struct.new(
         | 
| 5038 5329 | 
             
                  :message)
         | 
| 5330 | 
            +
                  SENSITIVE = []
         | 
| 5039 5331 | 
             
                  include Aws::Structure
         | 
| 5040 5332 | 
             
                end
         | 
| 5041 5333 |  | 
| @@ -5399,6 +5691,7 @@ module Aws::DatabaseMigrationService | |
| 5399 5691 | 
             
                  :timestamp_column_name,
         | 
| 5400 5692 | 
             
                  :parquet_timestamp_in_millisecond,
         | 
| 5401 5693 | 
             
                  :cdc_inserts_and_updates)
         | 
| 5694 | 
            +
                  SENSITIVE = []
         | 
| 5402 5695 | 
             
                  include Aws::Structure
         | 
| 5403 5696 | 
             
                end
         | 
| 5404 5697 |  | 
| @@ -5411,6 +5704,7 @@ module Aws::DatabaseMigrationService | |
| 5411 5704 | 
             
                #
         | 
| 5412 5705 | 
             
                class SNSInvalidTopicFault < Struct.new(
         | 
| 5413 5706 | 
             
                  :message)
         | 
| 5707 | 
            +
                  SENSITIVE = []
         | 
| 5414 5708 | 
             
                  include Aws::Structure
         | 
| 5415 5709 | 
             
                end
         | 
| 5416 5710 |  | 
| @@ -5423,6 +5717,7 @@ module Aws::DatabaseMigrationService | |
| 5423 5717 | 
             
                #
         | 
| 5424 5718 | 
             
                class SNSNoAuthorizationFault < Struct.new(
         | 
| 5425 5719 | 
             
                  :message)
         | 
| 5720 | 
            +
                  SENSITIVE = []
         | 
| 5426 5721 | 
             
                  include Aws::Structure
         | 
| 5427 5722 | 
             
                end
         | 
| 5428 5723 |  | 
| @@ -5441,6 +5736,7 @@ module Aws::DatabaseMigrationService | |
| 5441 5736 | 
             
                #
         | 
| 5442 5737 | 
             
                class StartReplicationTaskAssessmentMessage < Struct.new(
         | 
| 5443 5738 | 
             
                  :replication_task_arn)
         | 
| 5739 | 
            +
                  SENSITIVE = []
         | 
| 5444 5740 | 
             
                  include Aws::Structure
         | 
| 5445 5741 | 
             
                end
         | 
| 5446 5742 |  | 
| @@ -5452,6 +5748,7 @@ module Aws::DatabaseMigrationService | |
| 5452 5748 | 
             
                #
         | 
| 5453 5749 | 
             
                class StartReplicationTaskAssessmentResponse < Struct.new(
         | 
| 5454 5750 | 
             
                  :replication_task)
         | 
| 5751 | 
            +
                  SENSITIVE = []
         | 
| 5455 5752 | 
             
                  include Aws::Structure
         | 
| 5456 5753 | 
             
                end
         | 
| 5457 5754 |  | 
| @@ -5532,6 +5829,7 @@ module Aws::DatabaseMigrationService | |
| 5532 5829 | 
             
                  :cdc_start_time,
         | 
| 5533 5830 | 
             
                  :cdc_start_position,
         | 
| 5534 5831 | 
             
                  :cdc_stop_position)
         | 
| 5832 | 
            +
                  SENSITIVE = []
         | 
| 5535 5833 | 
             
                  include Aws::Structure
         | 
| 5536 5834 | 
             
                end
         | 
| 5537 5835 |  | 
| @@ -5543,6 +5841,7 @@ module Aws::DatabaseMigrationService | |
| 5543 5841 | 
             
                #
         | 
| 5544 5842 | 
             
                class StartReplicationTaskResponse < Struct.new(
         | 
| 5545 5843 | 
             
                  :replication_task)
         | 
| 5844 | 
            +
                  SENSITIVE = []
         | 
| 5546 5845 | 
             
                  include Aws::Structure
         | 
| 5547 5846 | 
             
                end
         | 
| 5548 5847 |  | 
| @@ -5561,6 +5860,7 @@ module Aws::DatabaseMigrationService | |
| 5561 5860 | 
             
                #
         | 
| 5562 5861 | 
             
                class StopReplicationTaskMessage < Struct.new(
         | 
| 5563 5862 | 
             
                  :replication_task_arn)
         | 
| 5863 | 
            +
                  SENSITIVE = []
         | 
| 5564 5864 | 
             
                  include Aws::Structure
         | 
| 5565 5865 | 
             
                end
         | 
| 5566 5866 |  | 
| @@ -5572,6 +5872,7 @@ module Aws::DatabaseMigrationService | |
| 5572 5872 | 
             
                #
         | 
| 5573 5873 | 
             
                class StopReplicationTaskResponse < Struct.new(
         | 
| 5574 5874 | 
             
                  :replication_task)
         | 
| 5875 | 
            +
                  SENSITIVE = []
         | 
| 5575 5876 | 
             
                  include Aws::Structure
         | 
| 5576 5877 | 
             
                end
         | 
| 5577 5878 |  | 
| @@ -5584,6 +5885,7 @@ module Aws::DatabaseMigrationService | |
| 5584 5885 | 
             
                #
         | 
| 5585 5886 | 
             
                class StorageQuotaExceededFault < Struct.new(
         | 
| 5586 5887 | 
             
                  :message)
         | 
| 5888 | 
            +
                  SENSITIVE = []
         | 
| 5587 5889 | 
             
                  include Aws::Structure
         | 
| 5588 5890 | 
             
                end
         | 
| 5589 5891 |  | 
| @@ -5609,6 +5911,7 @@ module Aws::DatabaseMigrationService | |
| 5609 5911 | 
             
                  :subnet_identifier,
         | 
| 5610 5912 | 
             
                  :subnet_availability_zone,
         | 
| 5611 5913 | 
             
                  :subnet_status)
         | 
| 5914 | 
            +
                  SENSITIVE = []
         | 
| 5612 5915 | 
             
                  include Aws::Structure
         | 
| 5613 5916 | 
             
                end
         | 
| 5614 5917 |  | 
| @@ -5621,6 +5924,7 @@ module Aws::DatabaseMigrationService | |
| 5621 5924 | 
             
                #
         | 
| 5622 5925 | 
             
                class SubnetAlreadyInUse < Struct.new(
         | 
| 5623 5926 | 
             
                  :message)
         | 
| 5927 | 
            +
                  SENSITIVE = []
         | 
| 5624 5928 | 
             
                  include Aws::Structure
         | 
| 5625 5929 | 
             
                end
         | 
| 5626 5930 |  | 
| @@ -5646,6 +5950,12 @@ module Aws::DatabaseMigrationService | |
| 5646 5950 | 
             
                #   The type of endpoint. Valid values are `source` and `target`.
         | 
| 5647 5951 | 
             
                #   @return [String]
         | 
| 5648 5952 | 
             
                #
         | 
| 5953 | 
            +
                # @!attribute [rw] replication_instance_engine_minimum_version
         | 
| 5954 | 
            +
                #   The earliest AWS DMS engine version that supports this endpoint
         | 
| 5955 | 
            +
                #   engine. Note that endpoint engines released with AWS DMS versions
         | 
| 5956 | 
            +
                #   earlier than 3.1.1 do not return a value for this parameter.
         | 
| 5957 | 
            +
                #   @return [String]
         | 
| 5958 | 
            +
                #
         | 
| 5649 5959 | 
             
                # @!attribute [rw] engine_display_name
         | 
| 5650 5960 | 
             
                #   The expanded name for the engine name. For example, if the
         | 
| 5651 5961 | 
             
                #   `EngineName` parameter is "aurora," this value would be "Amazon
         | 
| @@ -5658,7 +5968,9 @@ module Aws::DatabaseMigrationService | |
| 5658 5968 | 
             
                  :engine_name,
         | 
| 5659 5969 | 
             
                  :supports_cdc,
         | 
| 5660 5970 | 
             
                  :endpoint_type,
         | 
| 5971 | 
            +
                  :replication_instance_engine_minimum_version,
         | 
| 5661 5972 | 
             
                  :engine_display_name)
         | 
| 5973 | 
            +
                  SENSITIVE = []
         | 
| 5662 5974 | 
             
                  include Aws::Structure
         | 
| 5663 5975 | 
             
                end
         | 
| 5664 5976 |  | 
| @@ -5798,6 +6110,7 @@ module Aws::DatabaseMigrationService | |
| 5798 6110 | 
             
                  :validation_suspended_records,
         | 
| 5799 6111 | 
             
                  :validation_state,
         | 
| 5800 6112 | 
             
                  :validation_state_details)
         | 
| 6113 | 
            +
                  SENSITIVE = []
         | 
| 5801 6114 | 
             
                  include Aws::Structure
         | 
| 5802 6115 | 
             
                end
         | 
| 5803 6116 |  | 
| @@ -5824,6 +6137,7 @@ module Aws::DatabaseMigrationService | |
| 5824 6137 | 
             
                class TableToReload < Struct.new(
         | 
| 5825 6138 | 
             
                  :schema_name,
         | 
| 5826 6139 | 
             
                  :table_name)
         | 
| 6140 | 
            +
                  SENSITIVE = []
         | 
| 5827 6141 | 
             
                  include Aws::Structure
         | 
| 5828 6142 | 
             
                end
         | 
| 5829 6143 |  | 
| @@ -5867,6 +6181,7 @@ module Aws::DatabaseMigrationService | |
| 5867 6181 | 
             
                class Tag < Struct.new(
         | 
| 5868 6182 | 
             
                  :key,
         | 
| 5869 6183 | 
             
                  :value)
         | 
| 6184 | 
            +
                  SENSITIVE = []
         | 
| 5870 6185 | 
             
                  include Aws::Structure
         | 
| 5871 6186 | 
             
                end
         | 
| 5872 6187 |  | 
| @@ -5892,6 +6207,7 @@ module Aws::DatabaseMigrationService | |
| 5892 6207 | 
             
                class TestConnectionMessage < Struct.new(
         | 
| 5893 6208 | 
             
                  :replication_instance_arn,
         | 
| 5894 6209 | 
             
                  :endpoint_arn)
         | 
| 6210 | 
            +
                  SENSITIVE = []
         | 
| 5895 6211 | 
             
                  include Aws::Structure
         | 
| 5896 6212 | 
             
                end
         | 
| 5897 6213 |  | 
| @@ -5903,6 +6219,7 @@ module Aws::DatabaseMigrationService | |
| 5903 6219 | 
             
                #
         | 
| 5904 6220 | 
             
                class TestConnectionResponse < Struct.new(
         | 
| 5905 6221 | 
             
                  :connection)
         | 
| 6222 | 
            +
                  SENSITIVE = []
         | 
| 5906 6223 | 
             
                  include Aws::Structure
         | 
| 5907 6224 | 
             
                end
         | 
| 5908 6225 |  | 
| @@ -5915,6 +6232,7 @@ module Aws::DatabaseMigrationService | |
| 5915 6232 | 
             
                #
         | 
| 5916 6233 | 
             
                class UpgradeDependencyFailureFault < Struct.new(
         | 
| 5917 6234 | 
             
                  :message)
         | 
| 6235 | 
            +
                  SENSITIVE = []
         | 
| 5918 6236 | 
             
                  include Aws::Structure
         | 
| 5919 6237 | 
             
                end
         | 
| 5920 6238 |  | 
| @@ -5934,6 +6252,7 @@ module Aws::DatabaseMigrationService | |
| 5934 6252 | 
             
                class VpcSecurityGroupMembership < Struct.new(
         | 
| 5935 6253 | 
             
                  :vpc_security_group_id,
         | 
| 5936 6254 | 
             
                  :status)
         | 
| 6255 | 
            +
                  SENSITIVE = []
         | 
| 5937 6256 | 
             
                  include Aws::Structure
         | 
| 5938 6257 | 
             
                end
         | 
| 5939 6258 |  |