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
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 | 
            -
             | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 2 | 
            +
            SHA256:
         | 
| 3 | 
            +
              metadata.gz: a20e7c91abfc2274d61381997407736f24a8807d4396dcbe57b5379c1cf831b1
         | 
| 4 | 
            +
              data.tar.gz: ca72e5f4d20240a8a568644952f48f6cf0a84afe769907fc1d6834f8d547158f
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: bc33fcbbb834accb0a7e695d5d21c72f0b2219a9bb8838e31d11774f06143d65de2db6e478a77f30aed1ebe2ea1f4024b8e11810ef17a16bcb2c30d8ec9fbccd
         | 
| 7 | 
            +
              data.tar.gz: fe85acf496ae3cdb830fcedf39ec607fff3118f6b8cebed52a16639bf4486a9ebf4051a8bb9fbb765d53079548956c37165224022d9a1f203e6d8d597841cec3
         | 
| @@ -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:
         | 
| @@ -46,6 +48,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations' | |
| 46 48 | 
             
            # @service
         | 
| 47 49 | 
             
            module Aws::DatabaseMigrationService
         | 
| 48 50 |  | 
| 49 | 
            -
              GEM_VERSION = '1. | 
| 51 | 
            +
              GEM_VERSION = '1.36.0'
         | 
| 50 52 |  | 
| 51 53 | 
             
            end
         | 
| @@ -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:
         | 
| @@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb' | |
| 24 26 | 
             
            require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
         | 
| 25 27 | 
             
            require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
         | 
| 26 28 | 
             
            require 'aws-sdk-core/plugins/transfer_encoding.rb'
         | 
| 29 | 
            +
            require 'aws-sdk-core/plugins/http_checksum.rb'
         | 
| 27 30 | 
             
            require 'aws-sdk-core/plugins/signature_v4.rb'
         | 
| 28 31 | 
             
            require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
         | 
| 29 32 |  | 
| @@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:databasemigrationservice) | |
| 32 35 | 
             
            module Aws::DatabaseMigrationService
         | 
| 33 36 | 
             
              # An API client for DatabaseMigrationService.  To construct a client, you need to configure a `:region` and `:credentials`.
         | 
| 34 37 | 
             
              #
         | 
| 35 | 
            -
              # | 
| 36 | 
            -
              # | 
| 37 | 
            -
              # | 
| 38 | 
            -
              # | 
| 39 | 
            -
              # | 
| 38 | 
            +
              #     client = Aws::DatabaseMigrationService::Client.new(
         | 
| 39 | 
            +
              #       region: region_name,
         | 
| 40 | 
            +
              #       credentials: credentials,
         | 
| 41 | 
            +
              #       # ...
         | 
| 42 | 
            +
              #     )
         | 
| 40 43 | 
             
              #
         | 
| 41 44 | 
             
              # For details on configuring region and credentials see
         | 
| 42 45 | 
             
              # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
         | 
| @@ -69,6 +72,7 @@ module Aws::DatabaseMigrationService | |
| 69 72 | 
             
                add_plugin(Aws::Plugins::ClientMetricsPlugin)
         | 
| 70 73 | 
             
                add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
         | 
| 71 74 | 
             
                add_plugin(Aws::Plugins::TransferEncoding)
         | 
| 75 | 
            +
                add_plugin(Aws::Plugins::HttpChecksum)
         | 
| 72 76 | 
             
                add_plugin(Aws::Plugins::SignatureV4)
         | 
| 73 77 | 
             
                add_plugin(Aws::Plugins::Protocols::JsonRpc)
         | 
| 74 78 |  | 
| @@ -105,7 +109,7 @@ module Aws::DatabaseMigrationService | |
| 105 109 | 
             
                #   @option options [required, String] :region
         | 
| 106 110 | 
             
                #     The AWS region to connect to.  The configured `:region` is
         | 
| 107 111 | 
             
                #     used to determine the service `:endpoint`. When not passed,
         | 
| 108 | 
            -
                #     a default `:region` is  | 
| 112 | 
            +
                #     a default `:region` is searched for in the following locations:
         | 
| 109 113 | 
             
                #
         | 
| 110 114 | 
             
                #     * `Aws.config[:region]`
         | 
| 111 115 | 
             
                #     * `ENV['AWS_REGION']`
         | 
| @@ -161,7 +165,7 @@ module Aws::DatabaseMigrationService | |
| 161 165 | 
             
                #   @option options [String] :endpoint
         | 
| 162 166 | 
             
                #     The client endpoint is normally constructed from the `:region`
         | 
| 163 167 | 
             
                #     option. You should only configure an `:endpoint` when connecting
         | 
| 164 | 
            -
                #     to test endpoints. This should be  | 
| 168 | 
            +
                #     to test or custom endpoints. This should be a valid HTTP(S) URI.
         | 
| 165 169 | 
             
                #
         | 
| 166 170 | 
             
                #   @option options [Integer] :endpoint_cache_max_entries (1000)
         | 
| 167 171 | 
             
                #     Used for the maximum size limit of the LRU cache storing endpoints data
         | 
| @@ -176,7 +180,7 @@ module Aws::DatabaseMigrationService | |
| 176 180 | 
             
                #     requests fetching endpoints information. Defaults to 60 sec.
         | 
| 177 181 | 
             
                #
         | 
| 178 182 | 
             
                #   @option options [Boolean] :endpoint_discovery (false)
         | 
| 179 | 
            -
                #     When set to `true`, endpoint discovery will be enabled for operations when available. | 
| 183 | 
            +
                #     When set to `true`, endpoint discovery will be enabled for operations when available.
         | 
| 180 184 | 
             
                #
         | 
| 181 185 | 
             
                #   @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
         | 
| 182 186 | 
             
                #     The log formatter.
         | 
| @@ -229,15 +233,19 @@ module Aws::DatabaseMigrationService | |
| 229 233 | 
             
                #
         | 
| 230 234 | 
             
                #   @option options [String] :retry_mode ("legacy")
         | 
| 231 235 | 
             
                #     Specifies which retry algorithm to use. Values are:
         | 
| 232 | 
            -
                # | 
| 233 | 
            -
                # | 
| 234 | 
            -
                #        | 
| 235 | 
            -
                # | 
| 236 | 
            -
                # | 
| 237 | 
            -
                #        | 
| 238 | 
            -
                # | 
| 239 | 
            -
                # | 
| 240 | 
            -
                # | 
| 236 | 
            +
                #
         | 
| 237 | 
            +
                #     * `legacy` - The pre-existing retry behavior.  This is default value if
         | 
| 238 | 
            +
                #       no retry mode is provided.
         | 
| 239 | 
            +
                #
         | 
| 240 | 
            +
                #     * `standard` - A standardized set of retry rules across the AWS SDKs.
         | 
| 241 | 
            +
                #       This includes support for retry quotas, which limit the number of
         | 
| 242 | 
            +
                #       unsuccessful retries a client can make.
         | 
| 243 | 
            +
                #
         | 
| 244 | 
            +
                #     * `adaptive` - An experimental retry mode that includes all the
         | 
| 245 | 
            +
                #       functionality of `standard` mode along with automatic client side
         | 
| 246 | 
            +
                #       throttling.  This is a provisional mode that may change behavior
         | 
| 247 | 
            +
                #       in the future.
         | 
| 248 | 
            +
                #
         | 
| 241 249 | 
             
                #
         | 
| 242 250 | 
             
                #   @option options [String] :secret_access_key
         | 
| 243 251 | 
             
                #
         | 
| @@ -275,8 +283,7 @@ module Aws::DatabaseMigrationService | |
| 275 283 | 
             
                #
         | 
| 276 284 | 
             
                #   @option options [Integer] :http_read_timeout (60) The default
         | 
| 277 285 | 
             
                #     number of seconds to wait for response data.  This value can
         | 
| 278 | 
            -
                #     safely be set
         | 
| 279 | 
            -
                #     per-request on the session yielded by {#session_for}.
         | 
| 286 | 
            +
                #     safely be set per-request on the session.
         | 
| 280 287 | 
             
                #
         | 
| 281 288 | 
             
                #   @option options [Float] :http_idle_timeout (5) The number of
         | 
| 282 289 | 
             
                #     seconds a connection is allowed to sit idle before it is
         | 
| @@ -288,7 +295,7 @@ module Aws::DatabaseMigrationService | |
| 288 295 | 
             
                #     request body.  This option has no effect unless the request has
         | 
| 289 296 | 
             
                #     "Expect" header set to "100-continue".  Defaults to `nil` which
         | 
| 290 297 | 
             
                #     disables this behaviour.  This value can safely be set per
         | 
| 291 | 
            -
                #     request on the session | 
| 298 | 
            +
                #     request on the session.
         | 
| 292 299 | 
             
                #
         | 
| 293 300 | 
             
                #   @option options [Boolean] :http_wire_trace (false) When `true`,
         | 
| 294 301 | 
             
                #     HTTP debug output will be sent to the `:logger`.
         | 
| @@ -548,34 +555,33 @@ module Aws::DatabaseMigrationService | |
| 548 555 | 
             
                #
         | 
| 549 556 | 
             
                # @option params [Types::MongoDbSettings] :mongo_db_settings
         | 
| 550 557 | 
             
                #   Settings in JSON format for the source MongoDB endpoint. For more
         | 
| 551 | 
            -
                #   information about the available settings, see  | 
| 552 | 
            -
                #    | 
| 553 | 
            -
                #   Migration Service | 
| 554 | 
            -
                #   Guide.*
         | 
| 558 | 
            +
                #   information about the available settings, see [Using MongoDB as a
         | 
| 559 | 
            +
                #   Target for AWS Database Migration Service][1] in the *AWS Database
         | 
| 560 | 
            +
                #   Migration Service User Guide.*
         | 
| 555 561 | 
             
                #
         | 
| 556 562 | 
             
                #
         | 
| 557 563 | 
             
                #
         | 
| 558 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
         | 
| 564 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration
         | 
| 559 565 | 
             
                #
         | 
| 560 566 | 
             
                # @option params [Types::KinesisSettings] :kinesis_settings
         | 
| 561 567 | 
             
                #   Settings in JSON format for the target endpoint for Amazon Kinesis
         | 
| 562 | 
            -
                #   Data Streams. For information about  | 
| 563 | 
            -
                #   [Using  | 
| 564 | 
            -
                #   the *AWS Database Migration User Guide.*
         | 
| 568 | 
            +
                #   Data Streams. For more information about the available settings, see
         | 
| 569 | 
            +
                #   [Using Amazon Kinesis Data Streams as a Target for AWS Database
         | 
| 570 | 
            +
                #   Migration Service][1] in the *AWS Database Migration User Guide.*
         | 
| 565 571 | 
             
                #
         | 
| 566 572 | 
             
                #
         | 
| 567 573 | 
             
                #
         | 
| 568 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html | 
| 574 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
         | 
| 569 575 | 
             
                #
         | 
| 570 576 | 
             
                # @option params [Types::KafkaSettings] :kafka_settings
         | 
| 571 | 
            -
                #   Settings in JSON format for the target Apache Kafka endpoint. For
         | 
| 572 | 
            -
                #   information about  | 
| 573 | 
            -
                #    | 
| 574 | 
            -
                #   User Guide.*
         | 
| 577 | 
            +
                #   Settings in JSON format for the target Apache Kafka endpoint. For more
         | 
| 578 | 
            +
                #   information about the available settings, see [Using Apache Kafka as a
         | 
| 579 | 
            +
                #   Target for AWS Database Migration Service][1] in the *AWS Database
         | 
| 580 | 
            +
                #   Migration User Guide.*
         | 
| 575 581 | 
             
                #
         | 
| 576 582 | 
             
                #
         | 
| 577 583 | 
             
                #
         | 
| 578 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html | 
| 584 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
         | 
| 579 585 | 
             
                #
         | 
| 580 586 | 
             
                # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
         | 
| 581 587 | 
             
                #   Settings in JSON format for the target Elasticsearch endpoint. For
         | 
| @@ -587,6 +593,16 @@ module Aws::DatabaseMigrationService | |
| 587 593 | 
             
                #
         | 
| 588 594 | 
             
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
         | 
| 589 595 | 
             
                #
         | 
| 596 | 
            +
                # @option params [Types::NeptuneSettings] :neptune_settings
         | 
| 597 | 
            +
                #   Settings in JSON format for the target Amazon Neptune endpoint. For
         | 
| 598 | 
            +
                #   more information about the available settings, see
         | 
| 599 | 
            +
                #   [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
         | 
| 600 | 
            +
                #   in the *AWS Database Migration Service User Guide.*
         | 
| 601 | 
            +
                #
         | 
| 602 | 
            +
                #
         | 
| 603 | 
            +
                #
         | 
| 604 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
         | 
| 605 | 
            +
                #
         | 
| 590 606 | 
             
                # @option params [Types::RedshiftSettings] :redshift_settings
         | 
| 591 607 | 
             
                #   Provides information that defines an Amazon Redshift endpoint.
         | 
| 592 608 | 
             
                #
         | 
| @@ -722,6 +738,15 @@ module Aws::DatabaseMigrationService | |
| 722 738 | 
             
                #       full_load_error_percentage: 1,
         | 
| 723 739 | 
             
                #       error_retry_duration: 1,
         | 
| 724 740 | 
             
                #     },
         | 
| 741 | 
            +
                #     neptune_settings: {
         | 
| 742 | 
            +
                #       service_access_role_arn: "String",
         | 
| 743 | 
            +
                #       s3_bucket_name: "String", # required
         | 
| 744 | 
            +
                #       s3_bucket_folder: "String", # required
         | 
| 745 | 
            +
                #       error_retry_duration: 1,
         | 
| 746 | 
            +
                #       max_file_size: 1,
         | 
| 747 | 
            +
                #       max_retry_count: 1,
         | 
| 748 | 
            +
                #       iam_auth_enabled: false,
         | 
| 749 | 
            +
                #     },
         | 
| 725 750 | 
             
                #     redshift_settings: {
         | 
| 726 751 | 
             
                #       accept_any_date: false,
         | 
| 727 752 | 
             
                #       after_connect_script: "String",
         | 
| @@ -820,6 +845,13 @@ module Aws::DatabaseMigrationService | |
| 820 845 | 
             
                #   resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
         | 
| 821 846 | 
             
                #   resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
         | 
| 822 847 | 
             
                #   resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
         | 
| 848 | 
            +
                #   resp.endpoint.neptune_settings.service_access_role_arn #=> String
         | 
| 849 | 
            +
                #   resp.endpoint.neptune_settings.s3_bucket_name #=> String
         | 
| 850 | 
            +
                #   resp.endpoint.neptune_settings.s3_bucket_folder #=> String
         | 
| 851 | 
            +
                #   resp.endpoint.neptune_settings.error_retry_duration #=> Integer
         | 
| 852 | 
            +
                #   resp.endpoint.neptune_settings.max_file_size #=> Integer
         | 
| 853 | 
            +
                #   resp.endpoint.neptune_settings.max_retry_count #=> Integer
         | 
| 854 | 
            +
                #   resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
         | 
| 823 855 | 
             
                #   resp.endpoint.redshift_settings.accept_any_date #=> Boolean
         | 
| 824 856 | 
             
                #   resp.endpoint.redshift_settings.after_connect_script #=> String
         | 
| 825 857 | 
             
                #   resp.endpoint.redshift_settings.bucket_folder #=> String
         | 
| @@ -1341,7 +1373,8 @@ module Aws::DatabaseMigrationService | |
| 1341 1373 | 
             
                #
         | 
| 1342 1374 | 
             
                # @option params [required, String] :table_mappings
         | 
| 1343 1375 | 
             
                #   The table mappings for the task, in JSON format. For more information,
         | 
| 1344 | 
            -
                #   see [Table Mapping][1] in the *AWS | 
| 1376 | 
            +
                #   see [Using Table Mapping to Specify Task Settings][1] in the *AWS
         | 
| 1377 | 
            +
                #   Database Migration User Guide.*
         | 
| 1345 1378 | 
             
                #
         | 
| 1346 1379 | 
             
                #
         | 
| 1347 1380 | 
             
                #
         | 
| @@ -1349,7 +1382,8 @@ module Aws::DatabaseMigrationService | |
| 1349 1382 | 
             
                #
         | 
| 1350 1383 | 
             
                # @option params [String] :replication_task_settings
         | 
| 1351 1384 | 
             
                #   Overall settings for the task, in JSON format. For more information,
         | 
| 1352 | 
            -
                #   see [Task Settings | 
| 1385 | 
            +
                #   see [Specifying Task Settings for AWS Database Migration Service
         | 
| 1386 | 
            +
                #   Tasks][1] in the *AWS Database Migration User Guide.*
         | 
| 1353 1387 | 
             
                #
         | 
| 1354 1388 | 
             
                #
         | 
| 1355 1389 | 
             
                #
         | 
| @@ -1403,6 +1437,16 @@ module Aws::DatabaseMigrationService | |
| 1403 1437 | 
             
                # @option params [Array<Types::Tag>] :tags
         | 
| 1404 1438 | 
             
                #   One or more tags to be assigned to the replication task.
         | 
| 1405 1439 | 
             
                #
         | 
| 1440 | 
            +
                # @option params [String] :task_data
         | 
| 1441 | 
            +
                #   Supplemental information that the task requires to migrate the data
         | 
| 1442 | 
            +
                #   for certain source and target endpoints. For more information, see
         | 
| 1443 | 
            +
                #   [Specifying Supplemental Data for Task Settings][1] in the *AWS
         | 
| 1444 | 
            +
                #   Database Migration User Guide.*
         | 
| 1445 | 
            +
                #
         | 
| 1446 | 
            +
                #
         | 
| 1447 | 
            +
                #
         | 
| 1448 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
         | 
| 1449 | 
            +
                #
         | 
| 1406 1450 | 
             
                # @return [Types::CreateReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 1407 1451 | 
             
                #
         | 
| 1408 1452 | 
             
                #   * {Types::CreateReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
         | 
| @@ -1464,6 +1508,7 @@ module Aws::DatabaseMigrationService | |
| 1464 1508 | 
             
                #         value: "String",
         | 
| 1465 1509 | 
             
                #       },
         | 
| 1466 1510 | 
             
                #     ],
         | 
| 1511 | 
            +
                #     task_data: "String",
         | 
| 1467 1512 | 
             
                #   })
         | 
| 1468 1513 | 
             
                #
         | 
| 1469 1514 | 
             
                # @example Response structure
         | 
| @@ -1495,6 +1540,7 @@ module Aws::DatabaseMigrationService | |
| 1495 1540 | 
             
                #   resp.replication_task.replication_task_stats.stop_date #=> Time
         | 
| 1496 1541 | 
             
                #   resp.replication_task.replication_task_stats.full_load_start_date #=> Time
         | 
| 1497 1542 | 
             
                #   resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
         | 
| 1543 | 
            +
                #   resp.replication_task.task_data #=> String
         | 
| 1498 1544 | 
             
                #
         | 
| 1499 1545 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTask AWS API Documentation
         | 
| 1500 1546 | 
             
                #
         | 
| @@ -1726,6 +1772,13 @@ module Aws::DatabaseMigrationService | |
| 1726 1772 | 
             
                #   resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
         | 
| 1727 1773 | 
             
                #   resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
         | 
| 1728 1774 | 
             
                #   resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
         | 
| 1775 | 
            +
                #   resp.endpoint.neptune_settings.service_access_role_arn #=> String
         | 
| 1776 | 
            +
                #   resp.endpoint.neptune_settings.s3_bucket_name #=> String
         | 
| 1777 | 
            +
                #   resp.endpoint.neptune_settings.s3_bucket_folder #=> String
         | 
| 1778 | 
            +
                #   resp.endpoint.neptune_settings.error_retry_duration #=> Integer
         | 
| 1779 | 
            +
                #   resp.endpoint.neptune_settings.max_file_size #=> Integer
         | 
| 1780 | 
            +
                #   resp.endpoint.neptune_settings.max_retry_count #=> Integer
         | 
| 1781 | 
            +
                #   resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
         | 
| 1729 1782 | 
             
                #   resp.endpoint.redshift_settings.accept_any_date #=> Boolean
         | 
| 1730 1783 | 
             
                #   resp.endpoint.redshift_settings.after_connect_script #=> String
         | 
| 1731 1784 | 
             
                #   resp.endpoint.redshift_settings.bucket_folder #=> String
         | 
| @@ -2037,6 +2090,7 @@ module Aws::DatabaseMigrationService | |
| 2037 2090 | 
             
                #   resp.replication_task.replication_task_stats.stop_date #=> Time
         | 
| 2038 2091 | 
             
                #   resp.replication_task.replication_task_stats.full_load_start_date #=> Time
         | 
| 2039 2092 | 
             
                #   resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
         | 
| 2093 | 
            +
                #   resp.replication_task.task_data #=> String
         | 
| 2040 2094 | 
             
                #
         | 
| 2041 2095 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTask AWS API Documentation
         | 
| 2042 2096 | 
             
                #
         | 
| @@ -2135,6 +2189,8 @@ module Aws::DatabaseMigrationService | |
| 2135 2189 | 
             
                #   * {Types::DescribeCertificatesResponse#marker #marker} => String
         | 
| 2136 2190 | 
             
                #   * {Types::DescribeCertificatesResponse#certificates #certificates} => Array<Types::Certificate>
         | 
| 2137 2191 | 
             
                #
         | 
| 2192 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2193 | 
            +
                #
         | 
| 2138 2194 | 
             
                #
         | 
| 2139 2195 | 
             
                # @example Example: Describe certificates
         | 
| 2140 2196 | 
             
                #
         | 
| @@ -2227,6 +2283,8 @@ module Aws::DatabaseMigrationService | |
| 2227 2283 | 
             
                #   * {Types::DescribeConnectionsResponse#marker #marker} => String
         | 
| 2228 2284 | 
             
                #   * {Types::DescribeConnectionsResponse#connections #connections} => Array<Types::Connection>
         | 
| 2229 2285 | 
             
                #
         | 
| 2286 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2287 | 
            +
                #
         | 
| 2230 2288 | 
             
                #
         | 
| 2231 2289 | 
             
                # @example Example: Describe connections
         | 
| 2232 2290 | 
             
                #
         | 
| @@ -2285,6 +2343,11 @@ module Aws::DatabaseMigrationService | |
| 2285 2343 | 
             
                #   resp.connections[0].endpoint_identifier #=> String
         | 
| 2286 2344 | 
             
                #   resp.connections[0].replication_instance_identifier #=> String
         | 
| 2287 2345 | 
             
                #
         | 
| 2346 | 
            +
                #
         | 
| 2347 | 
            +
                # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
         | 
| 2348 | 
            +
                #
         | 
| 2349 | 
            +
                #   * test_connection_succeeds
         | 
| 2350 | 
            +
                #
         | 
| 2288 2351 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConnections AWS API Documentation
         | 
| 2289 2352 | 
             
                #
         | 
| 2290 2353 | 
             
                # @overload describe_connections(params = {})
         | 
| @@ -2321,6 +2384,8 @@ module Aws::DatabaseMigrationService | |
| 2321 2384 | 
             
                #   * {Types::DescribeEndpointTypesResponse#marker #marker} => String
         | 
| 2322 2385 | 
             
                #   * {Types::DescribeEndpointTypesResponse#supported_endpoint_types #supported_endpoint_types} => Array<Types::SupportedEndpointType>
         | 
| 2323 2386 | 
             
                #
         | 
| 2387 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2388 | 
            +
                #
         | 
| 2324 2389 | 
             
                #
         | 
| 2325 2390 | 
             
                # @example Example: Describe endpoint types
         | 
| 2326 2391 | 
             
                #
         | 
| @@ -2367,6 +2432,7 @@ module Aws::DatabaseMigrationService | |
| 2367 2432 | 
             
                #   resp.supported_endpoint_types[0].engine_name #=> String
         | 
| 2368 2433 | 
             
                #   resp.supported_endpoint_types[0].supports_cdc #=> Boolean
         | 
| 2369 2434 | 
             
                #   resp.supported_endpoint_types[0].endpoint_type #=> String, one of "source", "target"
         | 
| 2435 | 
            +
                #   resp.supported_endpoint_types[0].replication_instance_engine_minimum_version #=> String
         | 
| 2370 2436 | 
             
                #   resp.supported_endpoint_types[0].engine_display_name #=> String
         | 
| 2371 2437 | 
             
                #
         | 
| 2372 2438 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypes AWS API Documentation
         | 
| @@ -2407,6 +2473,8 @@ module Aws::DatabaseMigrationService | |
| 2407 2473 | 
             
                #   * {Types::DescribeEndpointsResponse#marker #marker} => String
         | 
| 2408 2474 | 
             
                #   * {Types::DescribeEndpointsResponse#endpoints #endpoints} => Array<Types::Endpoint>
         | 
| 2409 2475 | 
             
                #
         | 
| 2476 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2477 | 
            +
                #
         | 
| 2410 2478 | 
             
                #
         | 
| 2411 2479 | 
             
                # @example Example: Describe endpoints
         | 
| 2412 2480 | 
             
                #
         | 
| @@ -2517,6 +2585,13 @@ module Aws::DatabaseMigrationService | |
| 2517 2585 | 
             
                #   resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
         | 
| 2518 2586 | 
             
                #   resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
         | 
| 2519 2587 | 
             
                #   resp.endpoints[0].elasticsearch_settings.error_retry_duration #=> Integer
         | 
| 2588 | 
            +
                #   resp.endpoints[0].neptune_settings.service_access_role_arn #=> String
         | 
| 2589 | 
            +
                #   resp.endpoints[0].neptune_settings.s3_bucket_name #=> String
         | 
| 2590 | 
            +
                #   resp.endpoints[0].neptune_settings.s3_bucket_folder #=> String
         | 
| 2591 | 
            +
                #   resp.endpoints[0].neptune_settings.error_retry_duration #=> Integer
         | 
| 2592 | 
            +
                #   resp.endpoints[0].neptune_settings.max_file_size #=> Integer
         | 
| 2593 | 
            +
                #   resp.endpoints[0].neptune_settings.max_retry_count #=> Integer
         | 
| 2594 | 
            +
                #   resp.endpoints[0].neptune_settings.iam_auth_enabled #=> Boolean
         | 
| 2520 2595 | 
             
                #   resp.endpoints[0].redshift_settings.accept_any_date #=> Boolean
         | 
| 2521 2596 | 
             
                #   resp.endpoints[0].redshift_settings.after_connect_script #=> String
         | 
| 2522 2597 | 
             
                #   resp.endpoints[0].redshift_settings.bucket_folder #=> String
         | 
| @@ -2543,6 +2618,11 @@ module Aws::DatabaseMigrationService | |
| 2543 2618 | 
             
                #   resp.endpoints[0].redshift_settings.username #=> String
         | 
| 2544 2619 | 
             
                #   resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
         | 
| 2545 2620 | 
             
                #
         | 
| 2621 | 
            +
                #
         | 
| 2622 | 
            +
                # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
         | 
| 2623 | 
            +
                #
         | 
| 2624 | 
            +
                #   * endpoint_deleted
         | 
| 2625 | 
            +
                #
         | 
| 2546 2626 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints AWS API Documentation
         | 
| 2547 2627 | 
             
                #
         | 
| 2548 2628 | 
             
                # @overload describe_endpoints(params = {})
         | 
| @@ -2635,6 +2715,8 @@ module Aws::DatabaseMigrationService | |
| 2635 2715 | 
             
                #   * {Types::DescribeEventSubscriptionsResponse#marker #marker} => String
         | 
| 2636 2716 | 
             
                #   * {Types::DescribeEventSubscriptionsResponse#event_subscriptions_list #event_subscriptions_list} => Array<Types::EventSubscription>
         | 
| 2637 2717 | 
             
                #
         | 
| 2718 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2719 | 
            +
                #
         | 
| 2638 2720 | 
             
                # @example Request syntax with placeholder values
         | 
| 2639 2721 | 
             
                #
         | 
| 2640 2722 | 
             
                #   resp = client.describe_event_subscriptions({
         | 
| @@ -2726,6 +2808,8 @@ module Aws::DatabaseMigrationService | |
| 2726 2808 | 
             
                #   * {Types::DescribeEventsResponse#marker #marker} => String
         | 
| 2727 2809 | 
             
                #   * {Types::DescribeEventsResponse#events #events} => Array<Types::Event>
         | 
| 2728 2810 | 
             
                #
         | 
| 2811 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2812 | 
            +
                #
         | 
| 2729 2813 | 
             
                # @example Request syntax with placeholder values
         | 
| 2730 2814 | 
             
                #
         | 
| 2731 2815 | 
             
                #   resp = client.describe_events({
         | 
| @@ -2788,6 +2872,8 @@ module Aws::DatabaseMigrationService | |
| 2788 2872 | 
             
                #   * {Types::DescribeOrderableReplicationInstancesResponse#orderable_replication_instances #orderable_replication_instances} => Array<Types::OrderableReplicationInstance>
         | 
| 2789 2873 | 
             
                #   * {Types::DescribeOrderableReplicationInstancesResponse#marker #marker} => String
         | 
| 2790 2874 | 
             
                #
         | 
| 2875 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2876 | 
            +
                #
         | 
| 2791 2877 | 
             
                #
         | 
| 2792 2878 | 
             
                # @example Example: Describe orderable replication instances
         | 
| 2793 2879 | 
             
                #
         | 
| @@ -2863,6 +2949,8 @@ module Aws::DatabaseMigrationService | |
| 2863 2949 | 
             
                #   * {Types::DescribePendingMaintenanceActionsResponse#pending_maintenance_actions #pending_maintenance_actions} => Array<Types::ResourcePendingMaintenanceActions>
         | 
| 2864 2950 | 
             
                #   * {Types::DescribePendingMaintenanceActionsResponse#marker #marker} => String
         | 
| 2865 2951 | 
             
                #
         | 
| 2952 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 2953 | 
            +
                #
         | 
| 2866 2954 | 
             
                # @example Request syntax with placeholder values
         | 
| 2867 2955 | 
             
                #
         | 
| 2868 2956 | 
             
                #   resp = client.describe_pending_maintenance_actions({
         | 
| @@ -2973,6 +3061,8 @@ module Aws::DatabaseMigrationService | |
| 2973 3061 | 
             
                #   * {Types::DescribeReplicationInstanceTaskLogsResponse#replication_instance_task_logs #replication_instance_task_logs} => Array<Types::ReplicationInstanceTaskLog>
         | 
| 2974 3062 | 
             
                #   * {Types::DescribeReplicationInstanceTaskLogsResponse#marker #marker} => String
         | 
| 2975 3063 | 
             
                #
         | 
| 3064 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 3065 | 
            +
                #
         | 
| 2976 3066 | 
             
                # @example Request syntax with placeholder values
         | 
| 2977 3067 | 
             
                #
         | 
| 2978 3068 | 
             
                #   resp = client.describe_replication_instance_task_logs({
         | 
| @@ -3029,6 +3119,8 @@ module Aws::DatabaseMigrationService | |
| 3029 3119 | 
             
                #   * {Types::DescribeReplicationInstancesResponse#marker #marker} => String
         | 
| 3030 3120 | 
             
                #   * {Types::DescribeReplicationInstancesResponse#replication_instances #replication_instances} => Array<Types::ReplicationInstance>
         | 
| 3031 3121 | 
             
                #
         | 
| 3122 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 3123 | 
            +
                #
         | 
| 3032 3124 | 
             
                #
         | 
| 3033 3125 | 
             
                # @example Example: Describe replication instances
         | 
| 3034 3126 | 
             
                #
         | 
| @@ -3110,6 +3202,12 @@ module Aws::DatabaseMigrationService | |
| 3110 3202 | 
             
                #   resp.replication_instances[0].free_until #=> Time
         | 
| 3111 3203 | 
             
                #   resp.replication_instances[0].dns_name_servers #=> String
         | 
| 3112 3204 | 
             
                #
         | 
| 3205 | 
            +
                #
         | 
| 3206 | 
            +
                # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
         | 
| 3207 | 
            +
                #
         | 
| 3208 | 
            +
                #   * replication_instance_available
         | 
| 3209 | 
            +
                #   * replication_instance_deleted
         | 
| 3210 | 
            +
                #
         | 
| 3113 3211 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances AWS API Documentation
         | 
| 3114 3212 | 
             
                #
         | 
| 3115 3213 | 
             
                # @overload describe_replication_instances(params = {})
         | 
| @@ -3124,6 +3222,8 @@ module Aws::DatabaseMigrationService | |
| 3124 3222 | 
             
                # @option params [Array<Types::Filter>] :filters
         | 
| 3125 3223 | 
             
                #   Filters applied to the describe action.
         | 
| 3126 3224 | 
             
                #
         | 
| 3225 | 
            +
                #   Valid filter names: replication-subnet-group-id
         | 
| 3226 | 
            +
                #
         | 
| 3127 3227 | 
             
                # @option params [Integer] :max_records
         | 
| 3128 3228 | 
             
                #   The maximum number of records to include in the response. If more
         | 
| 3129 3229 | 
             
                #   records exist than the specified `MaxRecords` value, a pagination
         | 
| @@ -3144,6 +3244,8 @@ module Aws::DatabaseMigrationService | |
| 3144 3244 | 
             
                #   * {Types::DescribeReplicationSubnetGroupsResponse#marker #marker} => String
         | 
| 3145 3245 | 
             
                #   * {Types::DescribeReplicationSubnetGroupsResponse#replication_subnet_groups #replication_subnet_groups} => Array<Types::ReplicationSubnetGroup>
         | 
| 3146 3246 | 
             
                #
         | 
| 3247 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 3248 | 
            +
                #
         | 
| 3147 3249 | 
             
                #
         | 
| 3148 3250 | 
             
                # @example Example: Describe replication subnet groups
         | 
| 3149 3251 | 
             
                #
         | 
| @@ -3235,6 +3337,8 @@ module Aws::DatabaseMigrationService | |
| 3235 3337 | 
             
                #   * {Types::DescribeReplicationTaskAssessmentResultsResponse#bucket_name #bucket_name} => String
         | 
| 3236 3338 | 
             
                #   * {Types::DescribeReplicationTaskAssessmentResultsResponse#replication_task_assessment_results #replication_task_assessment_results} => Array<Types::ReplicationTaskAssessmentResult>
         | 
| 3237 3339 | 
             
                #
         | 
| 3340 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 3341 | 
            +
                #
         | 
| 3238 3342 | 
             
                # @example Request syntax with placeholder values
         | 
| 3239 3343 | 
             
                #
         | 
| 3240 3344 | 
             
                #   resp = client.describe_replication_task_assessment_results({
         | 
| @@ -3299,6 +3403,8 @@ module Aws::DatabaseMigrationService | |
| 3299 3403 | 
             
                #   * {Types::DescribeReplicationTasksResponse#marker #marker} => String
         | 
| 3300 3404 | 
             
                #   * {Types::DescribeReplicationTasksResponse#replication_tasks #replication_tasks} => Array<Types::ReplicationTask>
         | 
| 3301 3405 | 
             
                #
         | 
| 3406 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 3407 | 
            +
                #
         | 
| 3302 3408 | 
             
                #
         | 
| 3303 3409 | 
             
                # @example Example: Describe replication tasks
         | 
| 3304 3410 | 
             
                #
         | 
| @@ -3370,6 +3476,15 @@ module Aws::DatabaseMigrationService | |
| 3370 3476 | 
             
                #   resp.replication_tasks[0].replication_task_stats.stop_date #=> Time
         | 
| 3371 3477 | 
             
                #   resp.replication_tasks[0].replication_task_stats.full_load_start_date #=> Time
         | 
| 3372 3478 | 
             
                #   resp.replication_tasks[0].replication_task_stats.full_load_finish_date #=> Time
         | 
| 3479 | 
            +
                #   resp.replication_tasks[0].task_data #=> String
         | 
| 3480 | 
            +
                #
         | 
| 3481 | 
            +
                #
         | 
| 3482 | 
            +
                # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
         | 
| 3483 | 
            +
                #
         | 
| 3484 | 
            +
                #   * replication_task_deleted
         | 
| 3485 | 
            +
                #   * replication_task_ready
         | 
| 3486 | 
            +
                #   * replication_task_running
         | 
| 3487 | 
            +
                #   * replication_task_stopped
         | 
| 3373 3488 | 
             
                #
         | 
| 3374 3489 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasks AWS API Documentation
         | 
| 3375 3490 | 
             
                #
         | 
| @@ -3406,6 +3521,8 @@ module Aws::DatabaseMigrationService | |
| 3406 3521 | 
             
                #   * {Types::DescribeSchemasResponse#marker #marker} => String
         | 
| 3407 3522 | 
             
                #   * {Types::DescribeSchemasResponse#schemas #schemas} => Array<String>
         | 
| 3408 3523 | 
             
                #
         | 
| 3524 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 3525 | 
            +
                #
         | 
| 3409 3526 | 
             
                #
         | 
| 3410 3527 | 
             
                # @example Example: Describe schemas
         | 
| 3411 3528 | 
             
                #
         | 
| @@ -3486,6 +3603,8 @@ module Aws::DatabaseMigrationService | |
| 3486 3603 | 
             
                #   * {Types::DescribeTableStatisticsResponse#table_statistics #table_statistics} => Array<Types::TableStatistics>
         | 
| 3487 3604 | 
             
                #   * {Types::DescribeTableStatisticsResponse#marker #marker} => String
         | 
| 3488 3605 | 
             
                #
         | 
| 3606 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 3607 | 
            +
                #
         | 
| 3489 3608 | 
             
                #
         | 
| 3490 3609 | 
             
                # @example Example: Describe table statistics
         | 
| 3491 3610 | 
             
                #
         | 
| @@ -3786,23 +3905,23 @@ module Aws::DatabaseMigrationService | |
| 3786 3905 | 
             
                #
         | 
| 3787 3906 | 
             
                # @option params [Types::KinesisSettings] :kinesis_settings
         | 
| 3788 3907 | 
             
                #   Settings in JSON format for the target endpoint for Amazon Kinesis
         | 
| 3789 | 
            -
                #   Data Streams. For information about  | 
| 3790 | 
            -
                #   [Using  | 
| 3791 | 
            -
                #   the *AWS Database Migration User Guide.*
         | 
| 3908 | 
            +
                #   Data Streams. For more information about the available settings, see
         | 
| 3909 | 
            +
                #   [Using Amazon Kinesis Data Streams as a Target for AWS Database
         | 
| 3910 | 
            +
                #   Migration Service][1] in the *AWS Database Migration User Guide.*
         | 
| 3792 3911 | 
             
                #
         | 
| 3793 3912 | 
             
                #
         | 
| 3794 3913 | 
             
                #
         | 
| 3795 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html | 
| 3914 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
         | 
| 3796 3915 | 
             
                #
         | 
| 3797 3916 | 
             
                # @option params [Types::KafkaSettings] :kafka_settings
         | 
| 3798 | 
            -
                #   Settings in JSON format for the target Apache Kafka endpoint. For
         | 
| 3799 | 
            -
                #   information about  | 
| 3800 | 
            -
                #    | 
| 3801 | 
            -
                #   User Guide.*
         | 
| 3917 | 
            +
                #   Settings in JSON format for the target Apache Kafka endpoint. For more
         | 
| 3918 | 
            +
                #   information about the available settings, see [Using Apache Kafka as a
         | 
| 3919 | 
            +
                #   Target for AWS Database Migration Service][1] in the *AWS Database
         | 
| 3920 | 
            +
                #   Migration User Guide.*
         | 
| 3802 3921 | 
             
                #
         | 
| 3803 3922 | 
             
                #
         | 
| 3804 3923 | 
             
                #
         | 
| 3805 | 
            -
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html | 
| 3924 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
         | 
| 3806 3925 | 
             
                #
         | 
| 3807 3926 | 
             
                # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
         | 
| 3808 3927 | 
             
                #   Settings in JSON format for the target Elasticsearch endpoint. For
         | 
| @@ -3814,6 +3933,16 @@ module Aws::DatabaseMigrationService | |
| 3814 3933 | 
             
                #
         | 
| 3815 3934 | 
             
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
         | 
| 3816 3935 | 
             
                #
         | 
| 3936 | 
            +
                # @option params [Types::NeptuneSettings] :neptune_settings
         | 
| 3937 | 
            +
                #   Settings in JSON format for the target Amazon Neptune endpoint. For
         | 
| 3938 | 
            +
                #   more information about the available settings, see
         | 
| 3939 | 
            +
                #   [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
         | 
| 3940 | 
            +
                #   in the *AWS Database Migration Service User Guide.*
         | 
| 3941 | 
            +
                #
         | 
| 3942 | 
            +
                #
         | 
| 3943 | 
            +
                #
         | 
| 3944 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
         | 
| 3945 | 
            +
                #
         | 
| 3817 3946 | 
             
                # @option params [Types::RedshiftSettings] :redshift_settings
         | 
| 3818 3947 | 
             
                #   Provides information that defines an Amazon Redshift endpoint.
         | 
| 3819 3948 | 
             
                #
         | 
| @@ -3928,6 +4057,15 @@ module Aws::DatabaseMigrationService | |
| 3928 4057 | 
             
                #       full_load_error_percentage: 1,
         | 
| 3929 4058 | 
             
                #       error_retry_duration: 1,
         | 
| 3930 4059 | 
             
                #     },
         | 
| 4060 | 
            +
                #     neptune_settings: {
         | 
| 4061 | 
            +
                #       service_access_role_arn: "String",
         | 
| 4062 | 
            +
                #       s3_bucket_name: "String", # required
         | 
| 4063 | 
            +
                #       s3_bucket_folder: "String", # required
         | 
| 4064 | 
            +
                #       error_retry_duration: 1,
         | 
| 4065 | 
            +
                #       max_file_size: 1,
         | 
| 4066 | 
            +
                #       max_retry_count: 1,
         | 
| 4067 | 
            +
                #       iam_auth_enabled: false,
         | 
| 4068 | 
            +
                #     },
         | 
| 3931 4069 | 
             
                #     redshift_settings: {
         | 
| 3932 4070 | 
             
                #       accept_any_date: false,
         | 
| 3933 4071 | 
             
                #       after_connect_script: "String",
         | 
| @@ -4026,6 +4164,13 @@ module Aws::DatabaseMigrationService | |
| 4026 4164 | 
             
                #   resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
         | 
| 4027 4165 | 
             
                #   resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
         | 
| 4028 4166 | 
             
                #   resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
         | 
| 4167 | 
            +
                #   resp.endpoint.neptune_settings.service_access_role_arn #=> String
         | 
| 4168 | 
            +
                #   resp.endpoint.neptune_settings.s3_bucket_name #=> String
         | 
| 4169 | 
            +
                #   resp.endpoint.neptune_settings.s3_bucket_folder #=> String
         | 
| 4170 | 
            +
                #   resp.endpoint.neptune_settings.error_retry_duration #=> Integer
         | 
| 4171 | 
            +
                #   resp.endpoint.neptune_settings.max_file_size #=> Integer
         | 
| 4172 | 
            +
                #   resp.endpoint.neptune_settings.max_retry_count #=> Integer
         | 
| 4173 | 
            +
                #   resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
         | 
| 4029 4174 | 
             
                #   resp.endpoint.redshift_settings.accept_any_date #=> Boolean
         | 
| 4030 4175 | 
             
                #   resp.endpoint.redshift_settings.after_connect_script #=> String
         | 
| 4031 4176 | 
             
                #   resp.endpoint.redshift_settings.bucket_folder #=> String
         | 
| @@ -4447,7 +4592,7 @@ module Aws::DatabaseMigrationService | |
| 4447 4592 | 
             
                #   value, for example: `--table-mappings file://mappingfile.json`
         | 
| 4448 4593 | 
             
                #
         | 
| 4449 4594 | 
             
                # @option params [String] :replication_task_settings
         | 
| 4450 | 
            -
                #   JSON file that contains settings for the task, such as  | 
| 4595 | 
            +
                #   JSON file that contains settings for the task, such as task metadata
         | 
| 4451 4596 | 
             
                #   settings.
         | 
| 4452 4597 | 
             
                #
         | 
| 4453 4598 | 
             
                # @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
         | 
| @@ -4495,6 +4640,16 @@ module Aws::DatabaseMigrationService | |
| 4495 4640 | 
             
                #   Commit time example: --cdc-stop-position “commit\_time:
         | 
| 4496 4641 | 
             
                #   3018-02-09T12:12:12 “
         | 
| 4497 4642 | 
             
                #
         | 
| 4643 | 
            +
                # @option params [String] :task_data
         | 
| 4644 | 
            +
                #   Supplemental information that the task requires to migrate the data
         | 
| 4645 | 
            +
                #   for certain source and target endpoints. For more information, see
         | 
| 4646 | 
            +
                #   [Specifying Supplemental Data for Task Settings][1] in the *AWS
         | 
| 4647 | 
            +
                #   Database Migration User Guide.*
         | 
| 4648 | 
            +
                #
         | 
| 4649 | 
            +
                #
         | 
| 4650 | 
            +
                #
         | 
| 4651 | 
            +
                #   [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
         | 
| 4652 | 
            +
                #
         | 
| 4498 4653 | 
             
                # @return [Types::ModifyReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 4499 4654 | 
             
                #
         | 
| 4500 4655 | 
             
                #   * {Types::ModifyReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
         | 
| @@ -4510,6 +4665,7 @@ module Aws::DatabaseMigrationService | |
| 4510 4665 | 
             
                #     cdc_start_time: Time.now,
         | 
| 4511 4666 | 
             
                #     cdc_start_position: "String",
         | 
| 4512 4667 | 
             
                #     cdc_stop_position: "String",
         | 
| 4668 | 
            +
                #     task_data: "String",
         | 
| 4513 4669 | 
             
                #   })
         | 
| 4514 4670 | 
             
                #
         | 
| 4515 4671 | 
             
                # @example Response structure
         | 
| @@ -4541,6 +4697,7 @@ module Aws::DatabaseMigrationService | |
| 4541 4697 | 
             
                #   resp.replication_task.replication_task_stats.stop_date #=> Time
         | 
| 4542 4698 | 
             
                #   resp.replication_task.replication_task_stats.full_load_start_date #=> Time
         | 
| 4543 4699 | 
             
                #   resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
         | 
| 4700 | 
            +
                #   resp.replication_task.task_data #=> String
         | 
| 4544 4701 | 
             
                #
         | 
| 4545 4702 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTask AWS API Documentation
         | 
| 4546 4703 | 
             
                #
         | 
| @@ -4899,6 +5056,7 @@ module Aws::DatabaseMigrationService | |
| 4899 5056 | 
             
                #   resp.replication_task.replication_task_stats.stop_date #=> Time
         | 
| 4900 5057 | 
             
                #   resp.replication_task.replication_task_stats.full_load_start_date #=> Time
         | 
| 4901 5058 | 
             
                #   resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
         | 
| 5059 | 
            +
                #   resp.replication_task.task_data #=> String
         | 
| 4902 5060 | 
             
                #
         | 
| 4903 5061 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTask AWS API Documentation
         | 
| 4904 5062 | 
             
                #
         | 
| @@ -4954,6 +5112,7 @@ module Aws::DatabaseMigrationService | |
| 4954 5112 | 
             
                #   resp.replication_task.replication_task_stats.stop_date #=> Time
         | 
| 4955 5113 | 
             
                #   resp.replication_task.replication_task_stats.full_load_start_date #=> Time
         | 
| 4956 5114 | 
             
                #   resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
         | 
| 5115 | 
            +
                #   resp.replication_task.task_data #=> String
         | 
| 4957 5116 | 
             
                #
         | 
| 4958 5117 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessment AWS API Documentation
         | 
| 4959 5118 | 
             
                #
         | 
| @@ -5033,6 +5192,7 @@ module Aws::DatabaseMigrationService | |
| 5033 5192 | 
             
                #   resp.replication_task.replication_task_stats.stop_date #=> Time
         | 
| 5034 5193 | 
             
                #   resp.replication_task.replication_task_stats.full_load_start_date #=> Time
         | 
| 5035 5194 | 
             
                #   resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
         | 
| 5195 | 
            +
                #   resp.replication_task.task_data #=> String
         | 
| 5036 5196 | 
             
                #
         | 
| 5037 5197 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplicationTask AWS API Documentation
         | 
| 5038 5198 | 
             
                #
         | 
| @@ -5111,7 +5271,7 @@ module Aws::DatabaseMigrationService | |
| 5111 5271 | 
             
                    params: params,
         | 
| 5112 5272 | 
             
                    config: config)
         | 
| 5113 5273 | 
             
                  context[:gem_name] = 'aws-sdk-databasemigrationservice'
         | 
| 5114 | 
            -
                  context[:gem_version] = '1. | 
| 5274 | 
            +
                  context[:gem_version] = '1.36.0'
         | 
| 5115 5275 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 5116 5276 | 
             
                end
         | 
| 5117 5277 |  | 
| @@ -5177,16 +5337,16 @@ module Aws::DatabaseMigrationService | |
| 5177 5337 | 
             
                # The following table lists the valid waiter names, the operations they call,
         | 
| 5178 5338 | 
             
                # and the default `:delay` and `:max_attempts` values.
         | 
| 5179 5339 | 
             
                #
         | 
| 5180 | 
            -
                # | waiter_name                    | params | 
| 5181 | 
            -
                # | ------------------------------ |  | 
| 5182 | 
            -
                # | endpoint_deleted               | {#describe_endpoints}             | 5        | 60            |
         | 
| 5183 | 
            -
                # | replication_instance_available | {#describe_replication_instances} | 60       | 60            |
         | 
| 5184 | 
            -
                # | replication_instance_deleted   | {#describe_replication_instances} | 15       | 60            |
         | 
| 5185 | 
            -
                # | replication_task_deleted       | {#describe_replication_tasks}     | 15       | 60            |
         | 
| 5186 | 
            -
                # | replication_task_ready         | {#describe_replication_tasks}     | 15       | 60            |
         | 
| 5187 | 
            -
                # | replication_task_running       | {#describe_replication_tasks}     | 15       | 60            |
         | 
| 5188 | 
            -
                # | replication_task_stopped       | {#describe_replication_tasks}     | 15       | 60            |
         | 
| 5189 | 
            -
                # | test_connection_succeeds       | {#describe_connections}           | 5        | 60            |
         | 
| 5340 | 
            +
                # | waiter_name                    | params                                  | :delay   | :max_attempts |
         | 
| 5341 | 
            +
                # | ------------------------------ | --------------------------------------- | -------- | ------------- |
         | 
| 5342 | 
            +
                # | endpoint_deleted               | {Client#describe_endpoints}             | 5        | 60            |
         | 
| 5343 | 
            +
                # | replication_instance_available | {Client#describe_replication_instances} | 60       | 60            |
         | 
| 5344 | 
            +
                # | replication_instance_deleted   | {Client#describe_replication_instances} | 15       | 60            |
         | 
| 5345 | 
            +
                # | replication_task_deleted       | {Client#describe_replication_tasks}     | 15       | 60            |
         | 
| 5346 | 
            +
                # | replication_task_ready         | {Client#describe_replication_tasks}     | 15       | 60            |
         | 
| 5347 | 
            +
                # | replication_task_running       | {Client#describe_replication_tasks}     | 15       | 60            |
         | 
| 5348 | 
            +
                # | replication_task_stopped       | {Client#describe_replication_tasks}     | 15       | 60            |
         | 
| 5349 | 
            +
                # | test_connection_succeeds       | {Client#describe_connections}           | 5        | 60            |
         | 
| 5190 5350 | 
             
                #
         | 
| 5191 5351 | 
             
                # @raise [Errors::FailureStateError] Raised when the waiter terminates
         | 
| 5192 5352 | 
             
                #   because the waiter has entered a state that it will not transition
         |