aws-sdk-databasemigrationservice 1.30.0 → 1.35.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4525a0a0391d6504c5b15a61944e2c6cf5c701ac
4
- data.tar.gz: 218d1fb49ac53acd4d7ee5802fb95024e81bd4dc
2
+ SHA256:
3
+ metadata.gz: ff65e12847cf7080ed5ad4c651e1f3adcdb4cc194793dbb706ce863ca2379d91
4
+ data.tar.gz: 24e85c0dc11e95f0a51243ffae6bb007c0019324e39c3c4877c2cc0fd8381ef5
5
5
  SHA512:
6
- metadata.gz: 0c103edc4a22ef73ab34a245fbca6074c059a404d47c062737b025b263e3d5a12377998d14e132478817ab9eeec2646f8b8d3888cd154c0b789b6e3b9e8e8a48
7
- data.tar.gz: 197d0c646810435fbb15e113c69ade94de00c5633246aef945fd4b31809734b3b02b7d8565d4646bfd64254f734b1f4a077c3a78039e16ce23d8de863a6ce527
6
+ metadata.gz: df25e51f86203ec91e5b10d7f34a7ff14978b57f230af95cfe0ef001a63232af68d2e1730e844b7c2d52104e7a8152409d74eb95dc68f309a1cab6d1d17738b8
7
+ data.tar.gz: 3fd62f5f4974b102a6126f28ef631218ce824be7a0e23dc6180d6f4736ff5dc3adeb88e098b33a72577b8e3881da8b3abb907e027d4c3f46d55baa498528c18c
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
25
25
  # methods each accept a hash of request parameters and return a response
26
26
  # structure.
27
27
  #
28
+ # database_migration_service = Aws::DatabaseMigrationService::Client.new
29
+ # resp = database_migration_service.add_tags_to_resource(params)
30
+ #
28
31
  # See {Client} for more information.
29
32
  #
30
33
  # # Errors
31
34
  #
32
- # Errors returned from AWS Database Migration Service all
33
- # extend {Errors::ServiceError}.
35
+ # Errors returned from AWS Database Migration Service are defined in the
36
+ # {Errors} module and all extend {Errors::ServiceError}.
34
37
  #
35
38
  # begin
36
39
  # # do stuff
37
40
  # rescue Aws::DatabaseMigrationService::Errors::ServiceError
38
- # # rescues all service API errors
41
+ # # rescues all AWS Database Migration Service API errors
39
42
  # end
40
43
  #
41
44
  # See {Errors} for more information.
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
43
46
  # @service
44
47
  module Aws::DatabaseMigrationService
45
48
 
46
- GEM_VERSION = '1.30.0'
49
+ GEM_VERSION = '1.35.1'
47
50
 
48
51
  end
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
30
 
30
31
  Aws::Plugins::GlobalConfiguration.add_identifier(:databasemigrationservice)
31
32
 
32
33
  module Aws::DatabaseMigrationService
34
+ # An API client for DatabaseMigrationService. To construct a client, you need to configure a `:region` and `:credentials`.
35
+ #
36
+ # client = Aws::DatabaseMigrationService::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
+ #
42
+ # For details on configuring region and credentials see
43
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
44
+ #
45
+ # See {#initialize} for a full list of supported configuration options.
33
46
  class Client < Seahorse::Client::Base
34
47
 
35
48
  include Aws::ClientStubs
@@ -57,6 +70,7 @@ module Aws::DatabaseMigrationService
57
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
60
74
  add_plugin(Aws::Plugins::SignatureV4)
61
75
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
62
76
 
@@ -93,7 +107,7 @@ module Aws::DatabaseMigrationService
93
107
  # @option options [required, String] :region
94
108
  # The AWS region to connect to. The configured `:region` is
95
109
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
97
111
  #
98
112
  # * `Aws.config[:region]`
99
113
  # * `ENV['AWS_REGION']`
@@ -108,6 +122,12 @@ module Aws::DatabaseMigrationService
108
122
  # When set to `true`, a thread polling for endpoints will be running in
109
123
  # the background every 60 secs (default). Defaults to `false`.
110
124
  #
125
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
126
+ # Used only in `adaptive` retry mode. When true, the request will sleep
127
+ # until there is sufficent client side capacity to retry the request.
128
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
129
+ # not retry instead of sleeping.
130
+ #
111
131
  # @option options [Boolean] :client_side_monitoring (false)
112
132
  # When `true`, client-side metrics will be collected for all API requests from
113
133
  # this client.
@@ -132,6 +152,10 @@ module Aws::DatabaseMigrationService
132
152
  # When `true`, an attempt is made to coerce request parameters into
133
153
  # the required types.
134
154
  #
155
+ # @option options [Boolean] :correct_clock_skew (true)
156
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
157
+ # a clock skew correction and retry requests with skewed client clocks.
158
+ #
135
159
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
160
  # Set to true to disable SDK automatically adding host prefix
137
161
  # to default service endpoint when available.
@@ -139,7 +163,7 @@ module Aws::DatabaseMigrationService
139
163
  # @option options [String] :endpoint
140
164
  # The client endpoint is normally constructed from the `:region`
141
165
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
167
  #
144
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +178,7 @@ module Aws::DatabaseMigrationService
154
178
  # requests fetching endpoints information. Defaults to 60 sec.
155
179
  #
156
180
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
182
  #
159
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
184
  # The log formatter.
@@ -166,15 +190,29 @@ module Aws::DatabaseMigrationService
166
190
  # The Logger instance to send log messages to. If this option
167
191
  # is not set, logging will be disabled.
168
192
  #
193
+ # @option options [Integer] :max_attempts (3)
194
+ # An integer representing the maximum number attempts that will be made for
195
+ # a single request, including the initial attempt. For example,
196
+ # setting this value to 5 will result in a request being retried up to
197
+ # 4 times. Used in `standard` and `adaptive` retry modes.
198
+ #
169
199
  # @option options [String] :profile ("default")
170
200
  # Used when loading credentials from the shared credentials file
171
201
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
202
  #
203
+ # @option options [Proc] :retry_backoff
204
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
205
+ # This option is only used in the `legacy` retry mode.
206
+ #
173
207
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
208
+ # The base delay in seconds used by the default backoff function. This option
209
+ # is only used in the `legacy` retry mode.
175
210
  #
176
211
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
212
+ # A delay randomiser function used by the default backoff function.
213
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
214
+ # otherwise a Proc that takes and returns a number. This option is only used
215
+ # in the `legacy` retry mode.
178
216
  #
179
217
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
218
  #
@@ -182,11 +220,30 @@ module Aws::DatabaseMigrationService
182
220
  # The maximum number of times to retry failed requests. Only
183
221
  # ~ 500 level server errors and certain ~ 400 level client errors
184
222
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
223
+ # checksum errors, networking errors, timeout errors, auth errors,
224
+ # endpoint discovery, and errors from expired credentials.
225
+ # This option is only used in the `legacy` retry mode.
187
226
  #
188
227
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
228
+ # The maximum number of seconds to delay between retries (0 for no limit)
229
+ # used by the default backoff function. This option is only used in the
230
+ # `legacy` retry mode.
231
+ #
232
+ # @option options [String] :retry_mode ("legacy")
233
+ # Specifies which retry algorithm to use. Values are:
234
+ #
235
+ # * `legacy` - The pre-existing retry behavior. This is default value if
236
+ # no retry mode is provided.
237
+ #
238
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
239
+ # This includes support for retry quotas, which limit the number of
240
+ # unsuccessful retries a client can make.
241
+ #
242
+ # * `adaptive` - An experimental retry mode that includes all the
243
+ # functionality of `standard` mode along with automatic client side
244
+ # throttling. This is a provisional mode that may change behavior
245
+ # in the future.
246
+ #
190
247
  #
191
248
  # @option options [String] :secret_access_key
192
249
  #
@@ -219,16 +276,15 @@ module Aws::DatabaseMigrationService
219
276
  # requests through. Formatted like 'http://proxy.com:123'.
220
277
  #
221
278
  # @option options [Float] :http_open_timeout (15) The number of
222
- # seconds to wait when opening a HTTP session before rasing a
279
+ # seconds to wait when opening a HTTP session before raising a
223
280
  # `Timeout::Error`.
224
281
  #
225
282
  # @option options [Integer] :http_read_timeout (60) The default
226
283
  # number of seconds to wait for response data. This value can
227
- # safely be set
228
- # per-request on the session yeidled by {#session_for}.
284
+ # safely be set per-request on the session.
229
285
  #
230
286
  # @option options [Float] :http_idle_timeout (5) The number of
231
- # seconds a connection is allowed to sit idble before it is
287
+ # seconds a connection is allowed to sit idle before it is
232
288
  # considered stale. Stale connections are closed and removed
233
289
  # from the pool before making a request.
234
290
  #
@@ -237,7 +293,7 @@ module Aws::DatabaseMigrationService
237
293
  # request body. This option has no effect unless the request has
238
294
  # "Expect" header set to "100-continue". Defaults to `nil` which
239
295
  # disables this behaviour. This value can safely be set per
240
- # request on the session yeidled by {#session_for}.
296
+ # request on the session.
241
297
  #
242
298
  # @option options [Boolean] :http_wire_trace (false) When `true`,
243
299
  # HTTP debug output will be sent to the `:logger`.
@@ -383,18 +439,20 @@ module Aws::DatabaseMigrationService
383
439
  # Creates an endpoint using the provided settings.
384
440
  #
385
441
  # @option params [required, String] :endpoint_identifier
386
- # The database endpoint identifier. Identifiers must begin with a
387
- # letter; must contain only ASCII letters, digits, and hyphens; and must
388
- # not end with a hyphen or contain two consecutive hyphens.
442
+ # The database endpoint identifier. Identifiers must begin with a letter
443
+ # and must contain only ASCII letters, digits, and hyphens. They can't
444
+ # end with a hyphen or contain two consecutive hyphens.
389
445
  #
390
446
  # @option params [required, String] :endpoint_type
391
447
  # The type of endpoint. Valid values are `source` and `target`.
392
448
  #
393
449
  # @option params [required, String] :engine_name
394
450
  # The type of engine for the endpoint. Valid values, depending on the
395
- # `EndpointType` value, include `mysql`, `oracle`, `postgres`,
396
- # `mariadb`, `aurora`, `aurora-postgresql`, `redshift`, `s3`, `db2`,
397
- # `azuredb`, `sybase`, `dynamodb`, `mongodb`, and `sqlserver`.
451
+ # `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
452
+ # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
453
+ # `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
454
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
455
+ # `"sqlserver"`.
398
456
  #
399
457
  # @option params [String] :username
400
458
  # The user name to be used to log in to the endpoint database.
@@ -453,9 +511,9 @@ module Aws::DatabaseMigrationService
453
511
  #
454
512
  # @option params [Types::DynamoDbSettings] :dynamo_db_settings
455
513
  # Settings in JSON format for the target Amazon DynamoDB endpoint. For
456
- # more information about the available settings, see [Using Object
457
- # Mapping to Migrate Data to DynamoDB][1] in the *AWS Database Migration
458
- # Service User Guide.*
514
+ # information about other available settings, see [Using Object Mapping
515
+ # to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
516
+ # User Guide.*
459
517
  #
460
518
  #
461
519
  #
@@ -495,24 +553,33 @@ module Aws::DatabaseMigrationService
495
553
  #
496
554
  # @option params [Types::MongoDbSettings] :mongo_db_settings
497
555
  # Settings in JSON format for the source MongoDB endpoint. For more
498
- # information about the available settings, see the configuration
499
- # properties section in [ Using MongoDB as a Target for AWS Database
500
- # Migration Service][1] in the *AWS Database Migration Service User
501
- # Guide.*
556
+ # information about the available settings, see [Using MongoDB as a
557
+ # Target for AWS Database Migration Service][1] in the *AWS Database
558
+ # Migration Service User Guide.*
502
559
  #
503
560
  #
504
561
  #
505
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
562
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration
506
563
  #
507
564
  # @option params [Types::KinesisSettings] :kinesis_settings
508
- # Settings in JSON format for the target Amazon Kinesis Data Streams
509
- # endpoint. For more information about the available settings, see
510
- # [Using Object Mapping to Migrate Data to a Kinesis Data Stream][1] in
511
- # the *AWS Database Migration User Guide.*
565
+ # Settings in JSON format for the target endpoint for Amazon Kinesis
566
+ # Data Streams. For more information about the available settings, see
567
+ # [Using Amazon Kinesis Data Streams as a Target for AWS Database
568
+ # Migration Service][1] in the *AWS Database Migration User Guide.*
569
+ #
570
+ #
571
+ #
572
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
573
+ #
574
+ # @option params [Types::KafkaSettings] :kafka_settings
575
+ # Settings in JSON format for the target Apache Kafka endpoint. For more
576
+ # information about the available settings, see [Using Apache Kafka as a
577
+ # Target for AWS Database Migration Service][1] in the *AWS Database
578
+ # Migration User Guide.*
512
579
  #
513
580
  #
514
581
  #
515
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
582
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
516
583
  #
517
584
  # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
518
585
  # Settings in JSON format for the target Elasticsearch endpoint. For
@@ -524,7 +591,18 @@ module Aws::DatabaseMigrationService
524
591
  #
525
592
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
526
593
  #
594
+ # @option params [Types::NeptuneSettings] :neptune_settings
595
+ # Settings in JSON format for the target Amazon Neptune endpoint. For
596
+ # more information about the available settings, see
597
+ # [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
598
+ # in the *AWS Database Migration Service User Guide.*
599
+ #
600
+ #
601
+ #
602
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
603
+ #
527
604
  # @option params [Types::RedshiftSettings] :redshift_settings
605
+ # Provides information that defines an Amazon Redshift endpoint.
528
606
  #
529
607
  # @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
530
608
  #
@@ -618,6 +696,7 @@ module Aws::DatabaseMigrationService
618
696
  # cdc_inserts_only: false,
619
697
  # timestamp_column_name: "String",
620
698
  # parquet_timestamp_in_millisecond: false,
699
+ # cdc_inserts_and_updates: false,
621
700
  # },
622
701
  # dms_transfer_settings: {
623
702
  # service_access_role_arn: "String",
@@ -639,8 +718,17 @@ module Aws::DatabaseMigrationService
639
718
  # },
640
719
  # kinesis_settings: {
641
720
  # stream_arn: "String",
642
- # message_format: "json", # accepts json
721
+ # message_format: "json", # accepts json, json-unformatted
643
722
  # service_access_role_arn: "String",
723
+ # include_transaction_details: false,
724
+ # include_partition_value: false,
725
+ # partition_include_schema_table: false,
726
+ # include_table_alter_operations: false,
727
+ # include_control_details: false,
728
+ # },
729
+ # kafka_settings: {
730
+ # broker: "String",
731
+ # topic: "String",
644
732
  # },
645
733
  # elasticsearch_settings: {
646
734
  # service_access_role_arn: "String", # required
@@ -648,6 +736,15 @@ module Aws::DatabaseMigrationService
648
736
  # full_load_error_percentage: 1,
649
737
  # error_retry_duration: 1,
650
738
  # },
739
+ # neptune_settings: {
740
+ # service_access_role_arn: "String",
741
+ # s3_bucket_name: "String", # required
742
+ # s3_bucket_folder: "String", # required
743
+ # error_retry_duration: 1,
744
+ # max_file_size: 1,
745
+ # max_retry_count: 1,
746
+ # iam_auth_enabled: false,
747
+ # },
651
748
  # redshift_settings: {
652
749
  # accept_any_date: false,
653
750
  # after_connect_script: "String",
@@ -717,6 +814,7 @@ module Aws::DatabaseMigrationService
717
814
  # resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
718
815
  # resp.endpoint.s3_settings.timestamp_column_name #=> String
719
816
  # resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
817
+ # resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
720
818
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
721
819
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
722
820
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -732,12 +830,26 @@ module Aws::DatabaseMigrationService
732
830
  # resp.endpoint.mongo_db_settings.auth_source #=> String
733
831
  # resp.endpoint.mongo_db_settings.kms_key_id #=> String
734
832
  # resp.endpoint.kinesis_settings.stream_arn #=> String
735
- # resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
833
+ # resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
736
834
  # resp.endpoint.kinesis_settings.service_access_role_arn #=> String
835
+ # resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
836
+ # resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
837
+ # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
838
+ # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
839
+ # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
840
+ # resp.endpoint.kafka_settings.broker #=> String
841
+ # resp.endpoint.kafka_settings.topic #=> String
737
842
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
738
843
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
739
844
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
740
845
  # resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
846
+ # resp.endpoint.neptune_settings.service_access_role_arn #=> String
847
+ # resp.endpoint.neptune_settings.s3_bucket_name #=> String
848
+ # resp.endpoint.neptune_settings.s3_bucket_folder #=> String
849
+ # resp.endpoint.neptune_settings.error_retry_duration #=> Integer
850
+ # resp.endpoint.neptune_settings.max_file_size #=> Integer
851
+ # resp.endpoint.neptune_settings.max_retry_count #=> Integer
852
+ # resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
741
853
  # resp.endpoint.redshift_settings.accept_any_date #=> Boolean
742
854
  # resp.endpoint.redshift_settings.after_connect_script #=> String
743
855
  # resp.endpoint.redshift_settings.bucket_folder #=> String
@@ -809,7 +921,7 @@ module Aws::DatabaseMigrationService
809
921
  # The type of AWS DMS resource that generates the events. For example,
810
922
  # if you want to be notified of events generated by a replication
811
923
  # instance, you set this parameter to `replication-instance`. If this
812
- # value is not specified, all events are returned.
924
+ # value isn't specified, all events are returned.
813
925
  #
814
926
  # Valid values: `replication-instance` \| `replication-task`
815
927
  #
@@ -906,7 +1018,7 @@ module Aws::DatabaseMigrationService
906
1018
  #
907
1019
  # * First character must be a letter.
908
1020
  #
909
- # * Cannot end with a hyphen or contain two consecutive hyphens.
1021
+ # * Can't end with a hyphen or contain two consecutive hyphens.
910
1022
  #
911
1023
  # Example: `myrepinstance`
912
1024
  #
@@ -928,9 +1040,9 @@ module Aws::DatabaseMigrationService
928
1040
  # replication instance.
929
1041
  #
930
1042
  # @option params [String] :availability_zone
931
- # The AWS Availability Zone where the replication instance will be
932
- # created. The default value is a random, system-chosen Availability
933
- # Zone in the endpoint's AWS Region, for example: `us-east-1d`
1043
+ # The Availability Zone where the replication instance will be created.
1044
+ # The default value is a random, system-chosen Availability Zone in the
1045
+ # endpoint's AWS Region, for example: `us-east-1d`
934
1046
  #
935
1047
  # @option params [String] :replication_subnet_group_identifier
936
1048
  # A subnet group to associate with the replication instance.
@@ -950,16 +1062,16 @@ module Aws::DatabaseMigrationService
950
1062
  #
951
1063
  # @option params [Boolean] :multi_az
952
1064
  # Specifies whether the replication instance is a Multi-AZ deployment.
953
- # You cannot set the `AvailabilityZone` parameter if the Multi-AZ
1065
+ # You can't set the `AvailabilityZone` parameter if the Multi-AZ
954
1066
  # parameter is set to `true`.
955
1067
  #
956
1068
  # @option params [String] :engine_version
957
1069
  # The engine version number of the replication instance.
958
1070
  #
959
1071
  # @option params [Boolean] :auto_minor_version_upgrade
960
- # Indicates whether minor engine upgrades will be applied automatically
961
- # to the replication instance during the maintenance window. This
962
- # parameter defaults to `true`.
1072
+ # A value that indicates whether minor engine upgrades are applied
1073
+ # automatically to the replication instance during the maintenance
1074
+ # window. This parameter defaults to `true`.
963
1075
  #
964
1076
  # Default: `true`
965
1077
  #
@@ -1259,7 +1371,8 @@ module Aws::DatabaseMigrationService
1259
1371
  #
1260
1372
  # @option params [required, String] :table_mappings
1261
1373
  # The table mappings for the task, in JSON format. For more information,
1262
- # see [Table Mapping][1] in the *AWS Database Migration User Guide.*
1374
+ # see [Using Table Mapping to Specify Task Settings][1] in the *AWS
1375
+ # Database Migration User Guide.*
1263
1376
  #
1264
1377
  #
1265
1378
  #
@@ -1267,7 +1380,8 @@ module Aws::DatabaseMigrationService
1267
1380
  #
1268
1381
  # @option params [String] :replication_task_settings
1269
1382
  # Overall settings for the task, in JSON format. For more information,
1270
- # see [Task Settings][1] in the *AWS Database Migration User Guide.*
1383
+ # see [Specifying Task Settings for AWS Database Migration Service
1384
+ # Tasks][1] in the *AWS Database Migration User Guide.*
1271
1385
  #
1272
1386
  #
1273
1387
  #
@@ -1321,6 +1435,16 @@ module Aws::DatabaseMigrationService
1321
1435
  # @option params [Array<Types::Tag>] :tags
1322
1436
  # One or more tags to be assigned to the replication task.
1323
1437
  #
1438
+ # @option params [String] :task_data
1439
+ # Supplemental information that the task requires to migrate the data
1440
+ # for certain source and target endpoints. For more information, see
1441
+ # [Specifying Supplemental Data for Task Settings][1] in the *AWS
1442
+ # Database Migration User Guide.*
1443
+ #
1444
+ #
1445
+ #
1446
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
1447
+ #
1324
1448
  # @return [Types::CreateReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1325
1449
  #
1326
1450
  # * {Types::CreateReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
@@ -1382,6 +1506,7 @@ module Aws::DatabaseMigrationService
1382
1506
  # value: "String",
1383
1507
  # },
1384
1508
  # ],
1509
+ # task_data: "String",
1385
1510
  # })
1386
1511
  #
1387
1512
  # @example Response structure
@@ -1413,6 +1538,7 @@ module Aws::DatabaseMigrationService
1413
1538
  # resp.replication_task.replication_task_stats.stop_date #=> Time
1414
1539
  # resp.replication_task.replication_task_stats.full_load_start_date #=> Time
1415
1540
  # resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
1541
+ # resp.replication_task.task_data #=> String
1416
1542
  #
1417
1543
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTask AWS API Documentation
1418
1544
  #
@@ -1615,6 +1741,7 @@ module Aws::DatabaseMigrationService
1615
1741
  # resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
1616
1742
  # resp.endpoint.s3_settings.timestamp_column_name #=> String
1617
1743
  # resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
1744
+ # resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
1618
1745
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
1619
1746
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
1620
1747
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -1630,12 +1757,26 @@ module Aws::DatabaseMigrationService
1630
1757
  # resp.endpoint.mongo_db_settings.auth_source #=> String
1631
1758
  # resp.endpoint.mongo_db_settings.kms_key_id #=> String
1632
1759
  # resp.endpoint.kinesis_settings.stream_arn #=> String
1633
- # resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
1760
+ # resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
1634
1761
  # resp.endpoint.kinesis_settings.service_access_role_arn #=> String
1762
+ # resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
1763
+ # resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
1764
+ # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
1765
+ # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
1766
+ # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
1767
+ # resp.endpoint.kafka_settings.broker #=> String
1768
+ # resp.endpoint.kafka_settings.topic #=> String
1635
1769
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1636
1770
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1637
1771
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
1638
1772
  # resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
1773
+ # resp.endpoint.neptune_settings.service_access_role_arn #=> String
1774
+ # resp.endpoint.neptune_settings.s3_bucket_name #=> String
1775
+ # resp.endpoint.neptune_settings.s3_bucket_folder #=> String
1776
+ # resp.endpoint.neptune_settings.error_retry_duration #=> Integer
1777
+ # resp.endpoint.neptune_settings.max_file_size #=> Integer
1778
+ # resp.endpoint.neptune_settings.max_retry_count #=> Integer
1779
+ # resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
1639
1780
  # resp.endpoint.redshift_settings.accept_any_date #=> Boolean
1640
1781
  # resp.endpoint.redshift_settings.after_connect_script #=> String
1641
1782
  # resp.endpoint.redshift_settings.bucket_folder #=> String
@@ -1947,6 +2088,7 @@ module Aws::DatabaseMigrationService
1947
2088
  # resp.replication_task.replication_task_stats.stop_date #=> Time
1948
2089
  # resp.replication_task.replication_task_stats.full_load_start_date #=> Time
1949
2090
  # resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
2091
+ # resp.replication_task.task_data #=> String
1950
2092
  #
1951
2093
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTask AWS API Documentation
1952
2094
  #
@@ -2038,13 +2180,15 @@ module Aws::DatabaseMigrationService
2038
2180
  # @option params [String] :marker
2039
2181
  # An optional pagination token provided by a previous request. If this
2040
2182
  # parameter is specified, the response includes only records beyond the
2041
- # marker, up to the vlue specified by `MaxRecords`.
2183
+ # marker, up to the value specified by `MaxRecords`.
2042
2184
  #
2043
2185
  # @return [Types::DescribeCertificatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2044
2186
  #
2045
2187
  # * {Types::DescribeCertificatesResponse#marker #marker} => String
2046
2188
  # * {Types::DescribeCertificatesResponse#certificates #certificates} => Array&lt;Types::Certificate&gt;
2047
2189
  #
2190
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2191
+ #
2048
2192
  #
2049
2193
  # @example Example: Describe certificates
2050
2194
  #
@@ -2137,6 +2281,8 @@ module Aws::DatabaseMigrationService
2137
2281
  # * {Types::DescribeConnectionsResponse#marker #marker} => String
2138
2282
  # * {Types::DescribeConnectionsResponse#connections #connections} => Array&lt;Types::Connection&gt;
2139
2283
  #
2284
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2285
+ #
2140
2286
  #
2141
2287
  # @example Example: Describe connections
2142
2288
  #
@@ -2195,6 +2341,11 @@ module Aws::DatabaseMigrationService
2195
2341
  # resp.connections[0].endpoint_identifier #=> String
2196
2342
  # resp.connections[0].replication_instance_identifier #=> String
2197
2343
  #
2344
+ #
2345
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
2346
+ #
2347
+ # * test_connection_succeeds
2348
+ #
2198
2349
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConnections AWS API Documentation
2199
2350
  #
2200
2351
  # @overload describe_connections(params = {})
@@ -2231,6 +2382,8 @@ module Aws::DatabaseMigrationService
2231
2382
  # * {Types::DescribeEndpointTypesResponse#marker #marker} => String
2232
2383
  # * {Types::DescribeEndpointTypesResponse#supported_endpoint_types #supported_endpoint_types} => Array&lt;Types::SupportedEndpointType&gt;
2233
2384
  #
2385
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2386
+ #
2234
2387
  #
2235
2388
  # @example Example: Describe endpoint types
2236
2389
  #
@@ -2277,6 +2430,7 @@ module Aws::DatabaseMigrationService
2277
2430
  # resp.supported_endpoint_types[0].engine_name #=> String
2278
2431
  # resp.supported_endpoint_types[0].supports_cdc #=> Boolean
2279
2432
  # resp.supported_endpoint_types[0].endpoint_type #=> String, one of "source", "target"
2433
+ # resp.supported_endpoint_types[0].replication_instance_engine_minimum_version #=> String
2280
2434
  # resp.supported_endpoint_types[0].engine_display_name #=> String
2281
2435
  #
2282
2436
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypes AWS API Documentation
@@ -2317,6 +2471,8 @@ module Aws::DatabaseMigrationService
2317
2471
  # * {Types::DescribeEndpointsResponse#marker #marker} => String
2318
2472
  # * {Types::DescribeEndpointsResponse#endpoints #endpoints} => Array&lt;Types::Endpoint&gt;
2319
2473
  #
2474
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2475
+ #
2320
2476
  #
2321
2477
  # @example Example: Describe endpoints
2322
2478
  #
@@ -2398,6 +2554,7 @@ module Aws::DatabaseMigrationService
2398
2554
  # resp.endpoints[0].s3_settings.cdc_inserts_only #=> Boolean
2399
2555
  # resp.endpoints[0].s3_settings.timestamp_column_name #=> String
2400
2556
  # resp.endpoints[0].s3_settings.parquet_timestamp_in_millisecond #=> Boolean
2557
+ # resp.endpoints[0].s3_settings.cdc_inserts_and_updates #=> Boolean
2401
2558
  # resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
2402
2559
  # resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
2403
2560
  # resp.endpoints[0].mongo_db_settings.username #=> String
@@ -2413,12 +2570,26 @@ module Aws::DatabaseMigrationService
2413
2570
  # resp.endpoints[0].mongo_db_settings.auth_source #=> String
2414
2571
  # resp.endpoints[0].mongo_db_settings.kms_key_id #=> String
2415
2572
  # resp.endpoints[0].kinesis_settings.stream_arn #=> String
2416
- # resp.endpoints[0].kinesis_settings.message_format #=> String, one of "json"
2573
+ # resp.endpoints[0].kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
2417
2574
  # resp.endpoints[0].kinesis_settings.service_access_role_arn #=> String
2575
+ # resp.endpoints[0].kinesis_settings.include_transaction_details #=> Boolean
2576
+ # resp.endpoints[0].kinesis_settings.include_partition_value #=> Boolean
2577
+ # resp.endpoints[0].kinesis_settings.partition_include_schema_table #=> Boolean
2578
+ # resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
2579
+ # resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
2580
+ # resp.endpoints[0].kafka_settings.broker #=> String
2581
+ # resp.endpoints[0].kafka_settings.topic #=> String
2418
2582
  # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
2419
2583
  # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
2420
2584
  # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
2421
2585
  # resp.endpoints[0].elasticsearch_settings.error_retry_duration #=> Integer
2586
+ # resp.endpoints[0].neptune_settings.service_access_role_arn #=> String
2587
+ # resp.endpoints[0].neptune_settings.s3_bucket_name #=> String
2588
+ # resp.endpoints[0].neptune_settings.s3_bucket_folder #=> String
2589
+ # resp.endpoints[0].neptune_settings.error_retry_duration #=> Integer
2590
+ # resp.endpoints[0].neptune_settings.max_file_size #=> Integer
2591
+ # resp.endpoints[0].neptune_settings.max_retry_count #=> Integer
2592
+ # resp.endpoints[0].neptune_settings.iam_auth_enabled #=> Boolean
2422
2593
  # resp.endpoints[0].redshift_settings.accept_any_date #=> Boolean
2423
2594
  # resp.endpoints[0].redshift_settings.after_connect_script #=> String
2424
2595
  # resp.endpoints[0].redshift_settings.bucket_folder #=> String
@@ -2445,6 +2616,11 @@ module Aws::DatabaseMigrationService
2445
2616
  # resp.endpoints[0].redshift_settings.username #=> String
2446
2617
  # resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
2447
2618
  #
2619
+ #
2620
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
2621
+ #
2622
+ # * endpoint_deleted
2623
+ #
2448
2624
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints AWS API Documentation
2449
2625
  #
2450
2626
  # @overload describe_endpoints(params = {})
@@ -2537,6 +2713,8 @@ module Aws::DatabaseMigrationService
2537
2713
  # * {Types::DescribeEventSubscriptionsResponse#marker #marker} => String
2538
2714
  # * {Types::DescribeEventSubscriptionsResponse#event_subscriptions_list #event_subscriptions_list} => Array&lt;Types::EventSubscription&gt;
2539
2715
  #
2716
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2717
+ #
2540
2718
  # @example Request syntax with placeholder values
2541
2719
  #
2542
2720
  # resp = client.describe_event_subscriptions({
@@ -2628,6 +2806,8 @@ module Aws::DatabaseMigrationService
2628
2806
  # * {Types::DescribeEventsResponse#marker #marker} => String
2629
2807
  # * {Types::DescribeEventsResponse#events #events} => Array&lt;Types::Event&gt;
2630
2808
  #
2809
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2810
+ #
2631
2811
  # @example Request syntax with placeholder values
2632
2812
  #
2633
2813
  # resp = client.describe_events({
@@ -2690,6 +2870,8 @@ module Aws::DatabaseMigrationService
2690
2870
  # * {Types::DescribeOrderableReplicationInstancesResponse#orderable_replication_instances #orderable_replication_instances} => Array&lt;Types::OrderableReplicationInstance&gt;
2691
2871
  # * {Types::DescribeOrderableReplicationInstancesResponse#marker #marker} => String
2692
2872
  #
2873
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2874
+ #
2693
2875
  #
2694
2876
  # @example Example: Describe orderable replication instances
2695
2877
  #
@@ -2765,6 +2947,8 @@ module Aws::DatabaseMigrationService
2765
2947
  # * {Types::DescribePendingMaintenanceActionsResponse#pending_maintenance_actions #pending_maintenance_actions} => Array&lt;Types::ResourcePendingMaintenanceActions&gt;
2766
2948
  # * {Types::DescribePendingMaintenanceActionsResponse#marker #marker} => String
2767
2949
  #
2950
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2951
+ #
2768
2952
  # @example Request syntax with placeholder values
2769
2953
  #
2770
2954
  # resp = client.describe_pending_maintenance_actions({
@@ -2875,6 +3059,8 @@ module Aws::DatabaseMigrationService
2875
3059
  # * {Types::DescribeReplicationInstanceTaskLogsResponse#replication_instance_task_logs #replication_instance_task_logs} => Array&lt;Types::ReplicationInstanceTaskLog&gt;
2876
3060
  # * {Types::DescribeReplicationInstanceTaskLogsResponse#marker #marker} => String
2877
3061
  #
3062
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3063
+ #
2878
3064
  # @example Request syntax with placeholder values
2879
3065
  #
2880
3066
  # resp = client.describe_replication_instance_task_logs({
@@ -2931,6 +3117,8 @@ module Aws::DatabaseMigrationService
2931
3117
  # * {Types::DescribeReplicationInstancesResponse#marker #marker} => String
2932
3118
  # * {Types::DescribeReplicationInstancesResponse#replication_instances #replication_instances} => Array&lt;Types::ReplicationInstance&gt;
2933
3119
  #
3120
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3121
+ #
2934
3122
  #
2935
3123
  # @example Example: Describe replication instances
2936
3124
  #
@@ -3012,6 +3200,12 @@ module Aws::DatabaseMigrationService
3012
3200
  # resp.replication_instances[0].free_until #=> Time
3013
3201
  # resp.replication_instances[0].dns_name_servers #=> String
3014
3202
  #
3203
+ #
3204
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
3205
+ #
3206
+ # * replication_instance_available
3207
+ # * replication_instance_deleted
3208
+ #
3015
3209
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances AWS API Documentation
3016
3210
  #
3017
3211
  # @overload describe_replication_instances(params = {})
@@ -3026,6 +3220,8 @@ module Aws::DatabaseMigrationService
3026
3220
  # @option params [Array<Types::Filter>] :filters
3027
3221
  # Filters applied to the describe action.
3028
3222
  #
3223
+ # Valid filter names: replication-subnet-group-id
3224
+ #
3029
3225
  # @option params [Integer] :max_records
3030
3226
  # The maximum number of records to include in the response. If more
3031
3227
  # records exist than the specified `MaxRecords` value, a pagination
@@ -3046,6 +3242,8 @@ module Aws::DatabaseMigrationService
3046
3242
  # * {Types::DescribeReplicationSubnetGroupsResponse#marker #marker} => String
3047
3243
  # * {Types::DescribeReplicationSubnetGroupsResponse#replication_subnet_groups #replication_subnet_groups} => Array&lt;Types::ReplicationSubnetGroup&gt;
3048
3244
  #
3245
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3246
+ #
3049
3247
  #
3050
3248
  # @example Example: Describe replication subnet groups
3051
3249
  #
@@ -3111,9 +3309,9 @@ module Aws::DatabaseMigrationService
3111
3309
  # returns the latest results.
3112
3310
  #
3113
3311
  # @option params [String] :replication_task_arn
3114
- # \- The Amazon Resource Name (ARN) string that uniquely identifies the
3115
- # task. When this input parameter is specified the API will return only
3116
- # one result and ignore the values of the max-records and marker
3312
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
3313
+ # task. When this input parameter is specified, the API returns only one
3314
+ # result and ignore the values of the `MaxRecords` and `Marker`
3117
3315
  # parameters.
3118
3316
  #
3119
3317
  # @option params [Integer] :max_records
@@ -3137,6 +3335,8 @@ module Aws::DatabaseMigrationService
3137
3335
  # * {Types::DescribeReplicationTaskAssessmentResultsResponse#bucket_name #bucket_name} => String
3138
3336
  # * {Types::DescribeReplicationTaskAssessmentResultsResponse#replication_task_assessment_results #replication_task_assessment_results} => Array&lt;Types::ReplicationTaskAssessmentResult&gt;
3139
3337
  #
3338
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3339
+ #
3140
3340
  # @example Request syntax with placeholder values
3141
3341
  #
3142
3342
  # resp = client.describe_replication_task_assessment_results({
@@ -3201,6 +3401,8 @@ module Aws::DatabaseMigrationService
3201
3401
  # * {Types::DescribeReplicationTasksResponse#marker #marker} => String
3202
3402
  # * {Types::DescribeReplicationTasksResponse#replication_tasks #replication_tasks} => Array&lt;Types::ReplicationTask&gt;
3203
3403
  #
3404
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3405
+ #
3204
3406
  #
3205
3407
  # @example Example: Describe replication tasks
3206
3408
  #
@@ -3272,6 +3474,15 @@ module Aws::DatabaseMigrationService
3272
3474
  # resp.replication_tasks[0].replication_task_stats.stop_date #=> Time
3273
3475
  # resp.replication_tasks[0].replication_task_stats.full_load_start_date #=> Time
3274
3476
  # resp.replication_tasks[0].replication_task_stats.full_load_finish_date #=> Time
3477
+ # resp.replication_tasks[0].task_data #=> String
3478
+ #
3479
+ #
3480
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
3481
+ #
3482
+ # * replication_task_deleted
3483
+ # * replication_task_ready
3484
+ # * replication_task_running
3485
+ # * replication_task_stopped
3275
3486
  #
3276
3487
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasks AWS API Documentation
3277
3488
  #
@@ -3308,6 +3519,8 @@ module Aws::DatabaseMigrationService
3308
3519
  # * {Types::DescribeSchemasResponse#marker #marker} => String
3309
3520
  # * {Types::DescribeSchemasResponse#schemas #schemas} => Array&lt;String&gt;
3310
3521
  #
3522
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3523
+ #
3311
3524
  #
3312
3525
  # @example Example: Describe schemas
3313
3526
  #
@@ -3388,6 +3601,8 @@ module Aws::DatabaseMigrationService
3388
3601
  # * {Types::DescribeTableStatisticsResponse#table_statistics #table_statistics} => Array&lt;Types::TableStatistics&gt;
3389
3602
  # * {Types::DescribeTableStatisticsResponse#marker #marker} => String
3390
3603
  #
3604
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3605
+ #
3391
3606
  #
3392
3607
  # @example Example: Describe table statistics
3393
3608
  #
@@ -3435,6 +3650,9 @@ module Aws::DatabaseMigrationService
3435
3650
  # resp.table_statistics[0].full_load_rows #=> Integer
3436
3651
  # resp.table_statistics[0].full_load_condtnl_chk_failed_rows #=> Integer
3437
3652
  # resp.table_statistics[0].full_load_error_rows #=> Integer
3653
+ # resp.table_statistics[0].full_load_start_time #=> Time
3654
+ # resp.table_statistics[0].full_load_end_time #=> Time
3655
+ # resp.table_statistics[0].full_load_reloaded #=> Boolean
3438
3656
  # resp.table_statistics[0].last_update_time #=> Time
3439
3657
  # resp.table_statistics[0].table_state #=> String
3440
3658
  # resp.table_statistics[0].validation_pending_records #=> Integer
@@ -3457,8 +3675,9 @@ module Aws::DatabaseMigrationService
3457
3675
  #
3458
3676
  # @option params [required, String] :certificate_identifier
3459
3677
  # A customer-assigned name for the certificate. Identifiers must begin
3460
- # with a letter; must contain only ASCII letters, digits, and hyphens;
3461
- # and must not end with a hyphen or contain two consecutive hyphens.
3678
+ # with a letter and must contain only ASCII letters, digits, and
3679
+ # hyphens. They can't end with a hyphen or contain two consecutive
3680
+ # hyphens.
3462
3681
  #
3463
3682
  # @option params [String] :certificate_pem
3464
3683
  # The contents of a `.pem` file, which contains an X.509 certificate.
@@ -3579,18 +3798,20 @@ module Aws::DatabaseMigrationService
3579
3798
  # endpoint.
3580
3799
  #
3581
3800
  # @option params [String] :endpoint_identifier
3582
- # The database endpoint identifier. Identifiers must begin with a
3583
- # letter; must contain only ASCII letters, digits, and hyphens; and must
3584
- # not end with a hyphen or contain two consecutive hyphens.
3801
+ # The database endpoint identifier. Identifiers must begin with a letter
3802
+ # and must contain only ASCII letters, digits, and hyphens. They can't
3803
+ # end with a hyphen or contain two consecutive hyphens.
3585
3804
  #
3586
3805
  # @option params [String] :endpoint_type
3587
3806
  # The type of endpoint. Valid values are `source` and `target`.
3588
3807
  #
3589
3808
  # @option params [String] :engine_name
3590
3809
  # The type of engine for the endpoint. Valid values, depending on the
3591
- # EndpointType, include mysql, oracle, postgres, mariadb, aurora,
3592
- # aurora-postgresql, redshift, s3, db2, azuredb, sybase, dynamodb,
3593
- # mongodb, and sqlserver.
3810
+ # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
3811
+ # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
3812
+ # `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
3813
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
3814
+ # `"sqlserver"`.
3594
3815
  #
3595
3816
  # @option params [String] :username
3596
3817
  # The user name to be used to login to the endpoint database.
@@ -3628,9 +3849,9 @@ module Aws::DatabaseMigrationService
3628
3849
  #
3629
3850
  # @option params [Types::DynamoDbSettings] :dynamo_db_settings
3630
3851
  # Settings in JSON format for the target Amazon DynamoDB endpoint. For
3631
- # more information about the available settings, see [Using Object
3632
- # Mapping to Migrate Data to DynamoDB][1] in the *AWS Database Migration
3633
- # Service User Guide.*
3852
+ # information about other available settings, see [Using Object Mapping
3853
+ # to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
3854
+ # User Guide.*
3634
3855
  #
3635
3856
  #
3636
3857
  #
@@ -3652,22 +3873,22 @@ module Aws::DatabaseMigrationService
3652
3873
  #
3653
3874
  # Attributes include the following:
3654
3875
  #
3655
- # * serviceAccessRoleArn - The IAM role that has permission to access
3656
- # the Amazon S3 bucket.
3876
+ # * serviceAccessRoleArn - The AWS Identity and Access Management (IAM)
3877
+ # role that has permission to access the Amazon S3 bucket.
3657
3878
  #
3658
3879
  # * BucketName - The name of the S3 bucket to use.
3659
3880
  #
3660
3881
  # * compressionType - An optional parameter to use GZIP to compress the
3661
- # target files. Set to NONE (the default) or do not use to leave the
3662
- # files uncompressed.
3663
- #
3664
- # Shorthand syntax: ServiceAccessRoleArn=string
3665
- # ,BucketName=string,CompressionType=string
3882
+ # target files. Either set this parameter to NONE (the default) or
3883
+ # don't use it to leave the files uncompressed.
3666
3884
  #
3667
- # JSON syntax:
3885
+ # Shorthand syntax for these settings is as follows:
3886
+ # `ServiceAccessRoleArn=string
3887
+ # ,BucketName=string,CompressionType=string`
3668
3888
  #
3669
- # \\\{ "ServiceAccessRoleArn": "string", "BucketName": "string",
3670
- # "CompressionType": "none"\|"gzip" \\}
3889
+ # JSON syntax for these settings is as follows: `\{
3890
+ # "ServiceAccessRoleArn": "string", "BucketName": "string",
3891
+ # "CompressionType": "none"|"gzip" \} `
3671
3892
  #
3672
3893
  # @option params [Types::MongoDbSettings] :mongo_db_settings
3673
3894
  # Settings in JSON format for the source MongoDB endpoint. For more
@@ -3681,14 +3902,24 @@ module Aws::DatabaseMigrationService
3681
3902
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
3682
3903
  #
3683
3904
  # @option params [Types::KinesisSettings] :kinesis_settings
3684
- # Settings in JSON format for the target Amazon Kinesis Data Streams
3685
- # endpoint. For more information about the available settings, see
3686
- # [Using Object Mapping to Migrate Data to a Kinesis Data Stream][1] in
3687
- # the *AWS Database Migration User Guide.*
3905
+ # Settings in JSON format for the target endpoint for Amazon Kinesis
3906
+ # Data Streams. For more information about the available settings, see
3907
+ # [Using Amazon Kinesis Data Streams as a Target for AWS Database
3908
+ # Migration Service][1] in the *AWS Database Migration User Guide.*
3909
+ #
3910
+ #
3688
3911
  #
3912
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
3689
3913
  #
3914
+ # @option params [Types::KafkaSettings] :kafka_settings
3915
+ # Settings in JSON format for the target Apache Kafka endpoint. For more
3916
+ # information about the available settings, see [Using Apache Kafka as a
3917
+ # Target for AWS Database Migration Service][1] in the *AWS Database
3918
+ # Migration User Guide.*
3690
3919
  #
3691
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
3920
+ #
3921
+ #
3922
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
3692
3923
  #
3693
3924
  # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
3694
3925
  # Settings in JSON format for the target Elasticsearch endpoint. For
@@ -3700,7 +3931,18 @@ module Aws::DatabaseMigrationService
3700
3931
  #
3701
3932
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
3702
3933
  #
3934
+ # @option params [Types::NeptuneSettings] :neptune_settings
3935
+ # Settings in JSON format for the target Amazon Neptune endpoint. For
3936
+ # more information about the available settings, see
3937
+ # [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
3938
+ # in the *AWS Database Migration Service User Guide.*
3939
+ #
3940
+ #
3941
+ #
3942
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
3943
+ #
3703
3944
  # @option params [Types::RedshiftSettings] :redshift_settings
3945
+ # Provides information that defines an Amazon Redshift endpoint.
3704
3946
  #
3705
3947
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3706
3948
  #
@@ -3773,6 +4015,7 @@ module Aws::DatabaseMigrationService
3773
4015
  # cdc_inserts_only: false,
3774
4016
  # timestamp_column_name: "String",
3775
4017
  # parquet_timestamp_in_millisecond: false,
4018
+ # cdc_inserts_and_updates: false,
3776
4019
  # },
3777
4020
  # dms_transfer_settings: {
3778
4021
  # service_access_role_arn: "String",
@@ -3794,8 +4037,17 @@ module Aws::DatabaseMigrationService
3794
4037
  # },
3795
4038
  # kinesis_settings: {
3796
4039
  # stream_arn: "String",
3797
- # message_format: "json", # accepts json
4040
+ # message_format: "json", # accepts json, json-unformatted
3798
4041
  # service_access_role_arn: "String",
4042
+ # include_transaction_details: false,
4043
+ # include_partition_value: false,
4044
+ # partition_include_schema_table: false,
4045
+ # include_table_alter_operations: false,
4046
+ # include_control_details: false,
4047
+ # },
4048
+ # kafka_settings: {
4049
+ # broker: "String",
4050
+ # topic: "String",
3799
4051
  # },
3800
4052
  # elasticsearch_settings: {
3801
4053
  # service_access_role_arn: "String", # required
@@ -3803,6 +4055,15 @@ module Aws::DatabaseMigrationService
3803
4055
  # full_load_error_percentage: 1,
3804
4056
  # error_retry_duration: 1,
3805
4057
  # },
4058
+ # neptune_settings: {
4059
+ # service_access_role_arn: "String",
4060
+ # s3_bucket_name: "String", # required
4061
+ # s3_bucket_folder: "String", # required
4062
+ # error_retry_duration: 1,
4063
+ # max_file_size: 1,
4064
+ # max_retry_count: 1,
4065
+ # iam_auth_enabled: false,
4066
+ # },
3806
4067
  # redshift_settings: {
3807
4068
  # accept_any_date: false,
3808
4069
  # after_connect_script: "String",
@@ -3872,6 +4133,7 @@ module Aws::DatabaseMigrationService
3872
4133
  # resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
3873
4134
  # resp.endpoint.s3_settings.timestamp_column_name #=> String
3874
4135
  # resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
4136
+ # resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
3875
4137
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
3876
4138
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
3877
4139
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -3887,12 +4149,26 @@ module Aws::DatabaseMigrationService
3887
4149
  # resp.endpoint.mongo_db_settings.auth_source #=> String
3888
4150
  # resp.endpoint.mongo_db_settings.kms_key_id #=> String
3889
4151
  # resp.endpoint.kinesis_settings.stream_arn #=> String
3890
- # resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
4152
+ # resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
3891
4153
  # resp.endpoint.kinesis_settings.service_access_role_arn #=> String
4154
+ # resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
4155
+ # resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
4156
+ # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
4157
+ # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
4158
+ # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
4159
+ # resp.endpoint.kafka_settings.broker #=> String
4160
+ # resp.endpoint.kafka_settings.topic #=> String
3892
4161
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
3893
4162
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
3894
4163
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
3895
4164
  # resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
4165
+ # resp.endpoint.neptune_settings.service_access_role_arn #=> String
4166
+ # resp.endpoint.neptune_settings.s3_bucket_name #=> String
4167
+ # resp.endpoint.neptune_settings.s3_bucket_folder #=> String
4168
+ # resp.endpoint.neptune_settings.error_retry_duration #=> Integer
4169
+ # resp.endpoint.neptune_settings.max_file_size #=> Integer
4170
+ # resp.endpoint.neptune_settings.max_retry_count #=> Integer
4171
+ # resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
3896
4172
  # resp.endpoint.redshift_settings.accept_any_date #=> Boolean
3897
4173
  # resp.endpoint.redshift_settings.after_connect_script #=> String
3898
4174
  # resp.endpoint.redshift_settings.bucket_folder #=> String
@@ -4038,7 +4314,7 @@ module Aws::DatabaseMigrationService
4038
4314
  #
4039
4315
  # @option params [Boolean] :multi_az
4040
4316
  # Specifies whether the replication instance is a Multi-AZ deployment.
4041
- # You cannot set the `AvailabilityZone` parameter if the Multi-AZ
4317
+ # You can't set the `AvailabilityZone` parameter if the Multi-AZ
4042
4318
  # parameter is set to `true`.
4043
4319
  #
4044
4320
  # @option params [String] :engine_version
@@ -4054,13 +4330,19 @@ module Aws::DatabaseMigrationService
4054
4330
  # replication instance's current version.
4055
4331
  #
4056
4332
  # @option params [Boolean] :auto_minor_version_upgrade
4057
- # Indicates that minor version upgrades will be applied automatically to
4058
- # the replication instance during the maintenance window. Changing this
4059
- # parameter does not result in an outage except in the following case
4060
- # and the change is asynchronously applied as soon as possible. An
4061
- # outage will result if this parameter is set to `true` during the
4062
- # maintenance window, and a newer minor version is available, and AWS
4063
- # DMS has enabled auto patching for that engine version.
4333
+ # A value that indicates that minor version upgrades are applied
4334
+ # automatically to the replication instance during the maintenance
4335
+ # window. Changing this parameter doesn't result in an outage, except
4336
+ # in the case dsecribed following. The change is asynchronously applied
4337
+ # as soon as possible.
4338
+ #
4339
+ # An outage does result if these factors apply:
4340
+ #
4341
+ # * This parameter is set to `true` during the maintenance window.
4342
+ #
4343
+ # * A newer minor version is available.
4344
+ #
4345
+ # * AWS DMS has enabled automatic patching for the given engine version.
4064
4346
  #
4065
4347
  # @option params [String] :replication_instance_identifier
4066
4348
  # The replication instance identifier. This parameter is stored as a
@@ -4308,7 +4590,7 @@ module Aws::DatabaseMigrationService
4308
4590
  # value, for example: `--table-mappings file://mappingfile.json`
4309
4591
  #
4310
4592
  # @option params [String] :replication_task_settings
4311
- # JSON file that contains settings for the task, such as target metadata
4593
+ # JSON file that contains settings for the task, such as task metadata
4312
4594
  # settings.
4313
4595
  #
4314
4596
  # @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
@@ -4356,6 +4638,16 @@ module Aws::DatabaseMigrationService
4356
4638
  # Commit time example: --cdc-stop-position “commit\_time:
4357
4639
  # 3018-02-09T12:12:12 “
4358
4640
  #
4641
+ # @option params [String] :task_data
4642
+ # Supplemental information that the task requires to migrate the data
4643
+ # for certain source and target endpoints. For more information, see
4644
+ # [Specifying Supplemental Data for Task Settings][1] in the *AWS
4645
+ # Database Migration User Guide.*
4646
+ #
4647
+ #
4648
+ #
4649
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
4650
+ #
4359
4651
  # @return [Types::ModifyReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4360
4652
  #
4361
4653
  # * {Types::ModifyReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
@@ -4371,6 +4663,7 @@ module Aws::DatabaseMigrationService
4371
4663
  # cdc_start_time: Time.now,
4372
4664
  # cdc_start_position: "String",
4373
4665
  # cdc_stop_position: "String",
4666
+ # task_data: "String",
4374
4667
  # })
4375
4668
  #
4376
4669
  # @example Response structure
@@ -4402,6 +4695,7 @@ module Aws::DatabaseMigrationService
4402
4695
  # resp.replication_task.replication_task_stats.stop_date #=> Time
4403
4696
  # resp.replication_task.replication_task_stats.full_load_start_date #=> Time
4404
4697
  # resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
4698
+ # resp.replication_task.task_data #=> String
4405
4699
  #
4406
4700
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTask AWS API Documentation
4407
4701
  #
@@ -4760,6 +5054,7 @@ module Aws::DatabaseMigrationService
4760
5054
  # resp.replication_task.replication_task_stats.stop_date #=> Time
4761
5055
  # resp.replication_task.replication_task_stats.full_load_start_date #=> Time
4762
5056
  # resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
5057
+ # resp.replication_task.task_data #=> String
4763
5058
  #
4764
5059
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTask AWS API Documentation
4765
5060
  #
@@ -4815,6 +5110,7 @@ module Aws::DatabaseMigrationService
4815
5110
  # resp.replication_task.replication_task_stats.stop_date #=> Time
4816
5111
  # resp.replication_task.replication_task_stats.full_load_start_date #=> Time
4817
5112
  # resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
5113
+ # resp.replication_task.task_data #=> String
4818
5114
  #
4819
5115
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessment AWS API Documentation
4820
5116
  #
@@ -4894,6 +5190,7 @@ module Aws::DatabaseMigrationService
4894
5190
  # resp.replication_task.replication_task_stats.stop_date #=> Time
4895
5191
  # resp.replication_task.replication_task_stats.full_load_start_date #=> Time
4896
5192
  # resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
5193
+ # resp.replication_task.task_data #=> String
4897
5194
  #
4898
5195
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplicationTask AWS API Documentation
4899
5196
  #
@@ -4972,7 +5269,7 @@ module Aws::DatabaseMigrationService
4972
5269
  params: params,
4973
5270
  config: config)
4974
5271
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
4975
- context[:gem_version] = '1.30.0'
5272
+ context[:gem_version] = '1.35.1'
4976
5273
  Seahorse::Client::Request.new(handlers, context)
4977
5274
  end
4978
5275
 
@@ -5038,16 +5335,16 @@ module Aws::DatabaseMigrationService
5038
5335
  # The following table lists the valid waiter names, the operations they call,
5039
5336
  # and the default `:delay` and `:max_attempts` values.
5040
5337
  #
5041
- # | waiter_name | params | :delay | :max_attempts |
5042
- # | ------------------------------ | --------------------------------- | -------- | ------------- |
5043
- # | endpoint_deleted | {#describe_endpoints} | 5 | 60 |
5044
- # | replication_instance_available | {#describe_replication_instances} | 60 | 60 |
5045
- # | replication_instance_deleted | {#describe_replication_instances} | 15 | 60 |
5046
- # | replication_task_deleted | {#describe_replication_tasks} | 15 | 60 |
5047
- # | replication_task_ready | {#describe_replication_tasks} | 15 | 60 |
5048
- # | replication_task_running | {#describe_replication_tasks} | 15 | 60 |
5049
- # | replication_task_stopped | {#describe_replication_tasks} | 15 | 60 |
5050
- # | test_connection_succeeds | {#describe_connections} | 5 | 60 |
5338
+ # | waiter_name | params | :delay | :max_attempts |
5339
+ # | ------------------------------ | --------------------------------------- | -------- | ------------- |
5340
+ # | endpoint_deleted | {Client#describe_endpoints} | 5 | 60 |
5341
+ # | replication_instance_available | {Client#describe_replication_instances} | 60 | 60 |
5342
+ # | replication_instance_deleted | {Client#describe_replication_instances} | 15 | 60 |
5343
+ # | replication_task_deleted | {Client#describe_replication_tasks} | 15 | 60 |
5344
+ # | replication_task_ready | {Client#describe_replication_tasks} | 15 | 60 |
5345
+ # | replication_task_running | {Client#describe_replication_tasks} | 15 | 60 |
5346
+ # | replication_task_stopped | {Client#describe_replication_tasks} | 15 | 60 |
5347
+ # | test_connection_succeeds | {Client#describe_connections} | 5 | 60 |
5051
5348
  #
5052
5349
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
5053
5350
  # because the waiter has entered a state that it will not transition