aws-sdk-databasemigrationservice 1.29.0 → 1.34.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 +7 -4
- data/lib/aws-sdk-databasemigrationservice/client.rb +479 -99
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +39 -0
- data/lib/aws-sdk-databasemigrationservice/errors.rb +42 -20
- data/lib/aws-sdk-databasemigrationservice/resource.rb +1 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +696 -142
- data/lib/aws-sdk-databasemigrationservice/waiters.rb +68 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 78a7b94aab94efe6182f9137b88bafb7062369050d48b6dc2c2a22b49e49b1bd
|
4
|
+
data.tar.gz: eb37ab527799e6c996c9b9e82bbf6cc461027b8deaf1a7a8bc52ab9ef1860a5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef4511ab0b661dad75b92ebb8b4a23ed877b625a64ad5dd317b40448d5e35f6d7b83ffe069c36cf417ca492b0dd0130946d11146cb67ebf2acb7c4a2ef0fa24a
|
7
|
+
data.tar.gz: ec0f3842f8e5bea90805d142dc1de8f04f1d06341651e63f2425856836306efbb3d4bf7a385ef998f2c150a956bd67b74c3363c5302af37769a083bb335aa95c
|
@@ -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
|
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
|
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.
|
49
|
+
GEM_VERSION = '1.34.0'
|
47
50
|
|
48
51
|
end
|
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:databasemigrationservice)
|
31
31
|
|
32
32
|
module Aws::DatabaseMigrationService
|
33
|
+
# An API client for DatabaseMigrationService. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
|
+
#
|
35
|
+
# client = Aws::DatabaseMigrationService::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
|
+
#
|
41
|
+
# For details on configuring region and credentials see
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
43
|
+
#
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
45
|
class Client < Seahorse::Client::Base
|
34
46
|
|
35
47
|
include Aws::ClientStubs
|
@@ -93,7 +105,7 @@ module Aws::DatabaseMigrationService
|
|
93
105
|
# @option options [required, String] :region
|
94
106
|
# The AWS region to connect to. The configured `:region` is
|
95
107
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
97
109
|
#
|
98
110
|
# * `Aws.config[:region]`
|
99
111
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +120,12 @@ module Aws::DatabaseMigrationService
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
110
122
|
#
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
127
|
+
# not retry instead of sleeping.
|
128
|
+
#
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
131
|
# this client.
|
@@ -132,6 +150,10 @@ module Aws::DatabaseMigrationService
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
133
151
|
# the required types.
|
134
152
|
#
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
156
|
+
#
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
137
159
|
# to default service endpoint when available.
|
@@ -139,7 +161,7 @@ module Aws::DatabaseMigrationService
|
|
139
161
|
# @option options [String] :endpoint
|
140
162
|
# The client endpoint is normally constructed from the `:region`
|
141
163
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
143
165
|
#
|
144
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +176,7 @@ module Aws::DatabaseMigrationService
|
|
154
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
177
|
#
|
156
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
180
|
#
|
159
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
182
|
# The log formatter.
|
@@ -166,15 +188,29 @@ module Aws::DatabaseMigrationService
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
167
189
|
# is not set, logging will be disabled.
|
168
190
|
#
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
193
|
+
# a single request, including the initial attempt. For example,
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
196
|
+
#
|
169
197
|
# @option options [String] :profile ("default")
|
170
198
|
# Used when loading credentials from the shared credentials file
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
200
|
#
|
201
|
+
# @option options [Proc] :retry_backoff
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
204
|
+
#
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
207
|
+
# is only used in the `legacy` retry mode.
|
175
208
|
#
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
213
|
+
# in the `legacy` retry mode.
|
178
214
|
#
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
216
|
#
|
@@ -182,11 +218,30 @@ module Aws::DatabaseMigrationService
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
187
224
|
#
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
227
|
+
# used by the default backoff function. This option is only used in the
|
228
|
+
# `legacy` retry mode.
|
229
|
+
#
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
231
|
+
# Specifies which retry algorithm to use. Values are:
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
190
245
|
#
|
191
246
|
# @option options [String] :secret_access_key
|
192
247
|
#
|
@@ -219,16 +274,15 @@ module Aws::DatabaseMigrationService
|
|
219
274
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
275
|
#
|
221
276
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
277
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
278
|
# `Timeout::Error`.
|
224
279
|
#
|
225
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
281
|
# 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}.
|
282
|
+
# safely be set per-request on the session.
|
229
283
|
#
|
230
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
285
|
+
# seconds a connection is allowed to sit idle before it is
|
232
286
|
# considered stale. Stale connections are closed and removed
|
233
287
|
# from the pool before making a request.
|
234
288
|
#
|
@@ -237,7 +291,7 @@ module Aws::DatabaseMigrationService
|
|
237
291
|
# request body. This option has no effect unless the request has
|
238
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
293
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
294
|
+
# request on the session.
|
241
295
|
#
|
242
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -383,18 +437,20 @@ module Aws::DatabaseMigrationService
|
|
383
437
|
# Creates an endpoint using the provided settings.
|
384
438
|
#
|
385
439
|
# @option params [required, String] :endpoint_identifier
|
386
|
-
# The database endpoint identifier. Identifiers must begin with a
|
387
|
-
#
|
388
|
-
#
|
440
|
+
# The database endpoint identifier. Identifiers must begin with a letter
|
441
|
+
# and must contain only ASCII letters, digits, and hyphens. They can't
|
442
|
+
# end with a hyphen or contain two consecutive hyphens.
|
389
443
|
#
|
390
444
|
# @option params [required, String] :endpoint_type
|
391
445
|
# The type of endpoint. Valid values are `source` and `target`.
|
392
446
|
#
|
393
447
|
# @option params [required, String] :engine_name
|
394
448
|
# 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`,
|
397
|
-
# `azuredb`, `sybase`, `dynamodb`, `mongodb`,
|
449
|
+
# `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
|
450
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
|
451
|
+
# `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
|
452
|
+
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
|
453
|
+
# `"sqlserver"`.
|
398
454
|
#
|
399
455
|
# @option params [String] :username
|
400
456
|
# The user name to be used to log in to the endpoint database.
|
@@ -453,9 +509,9 @@ module Aws::DatabaseMigrationService
|
|
453
509
|
#
|
454
510
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
455
511
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
456
|
-
#
|
457
|
-
#
|
458
|
-
#
|
512
|
+
# information about other available settings, see [Using Object Mapping
|
513
|
+
# to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
|
514
|
+
# User Guide.*
|
459
515
|
#
|
460
516
|
#
|
461
517
|
#
|
@@ -495,24 +551,33 @@ module Aws::DatabaseMigrationService
|
|
495
551
|
#
|
496
552
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
497
553
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
498
|
-
# information about the available settings, see
|
499
|
-
#
|
500
|
-
# Migration Service
|
501
|
-
# Guide.*
|
554
|
+
# information about the available settings, see [Using MongoDB as a
|
555
|
+
# Target for AWS Database Migration Service][1] in the *AWS Database
|
556
|
+
# Migration Service User Guide.*
|
502
557
|
#
|
503
558
|
#
|
504
559
|
#
|
505
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
|
560
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration
|
506
561
|
#
|
507
562
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
508
|
-
# Settings in JSON format for the target Amazon Kinesis
|
509
|
-
#
|
510
|
-
# [Using
|
511
|
-
# the *AWS Database Migration User Guide.*
|
563
|
+
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
564
|
+
# Data Streams. For more information about the available settings, see
|
565
|
+
# [Using Amazon Kinesis Data Streams as a Target for AWS Database
|
566
|
+
# Migration Service][1] in the *AWS Database Migration User Guide.*
|
512
567
|
#
|
513
568
|
#
|
514
569
|
#
|
515
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
570
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
571
|
+
#
|
572
|
+
# @option params [Types::KafkaSettings] :kafka_settings
|
573
|
+
# Settings in JSON format for the target Apache Kafka endpoint. For more
|
574
|
+
# information about the available settings, see [Using Apache Kafka as a
|
575
|
+
# Target for AWS Database Migration Service][1] in the *AWS Database
|
576
|
+
# Migration User Guide.*
|
577
|
+
#
|
578
|
+
#
|
579
|
+
#
|
580
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
516
581
|
#
|
517
582
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
518
583
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
@@ -524,7 +589,18 @@ module Aws::DatabaseMigrationService
|
|
524
589
|
#
|
525
590
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
526
591
|
#
|
592
|
+
# @option params [Types::NeptuneSettings] :neptune_settings
|
593
|
+
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
594
|
+
# more information about the available settings, see
|
595
|
+
# [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
|
596
|
+
# in the *AWS Database Migration Service User Guide.*
|
597
|
+
#
|
598
|
+
#
|
599
|
+
#
|
600
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
|
601
|
+
#
|
527
602
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
603
|
+
# Provides information that defines an Amazon Redshift endpoint.
|
528
604
|
#
|
529
605
|
# @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
530
606
|
#
|
@@ -618,6 +694,7 @@ module Aws::DatabaseMigrationService
|
|
618
694
|
# cdc_inserts_only: false,
|
619
695
|
# timestamp_column_name: "String",
|
620
696
|
# parquet_timestamp_in_millisecond: false,
|
697
|
+
# cdc_inserts_and_updates: false,
|
621
698
|
# },
|
622
699
|
# dms_transfer_settings: {
|
623
700
|
# service_access_role_arn: "String",
|
@@ -639,8 +716,17 @@ module Aws::DatabaseMigrationService
|
|
639
716
|
# },
|
640
717
|
# kinesis_settings: {
|
641
718
|
# stream_arn: "String",
|
642
|
-
# message_format: "json", # accepts json
|
719
|
+
# message_format: "json", # accepts json, json-unformatted
|
643
720
|
# service_access_role_arn: "String",
|
721
|
+
# include_transaction_details: false,
|
722
|
+
# include_partition_value: false,
|
723
|
+
# partition_include_schema_table: false,
|
724
|
+
# include_table_alter_operations: false,
|
725
|
+
# include_control_details: false,
|
726
|
+
# },
|
727
|
+
# kafka_settings: {
|
728
|
+
# broker: "String",
|
729
|
+
# topic: "String",
|
644
730
|
# },
|
645
731
|
# elasticsearch_settings: {
|
646
732
|
# service_access_role_arn: "String", # required
|
@@ -648,6 +734,15 @@ module Aws::DatabaseMigrationService
|
|
648
734
|
# full_load_error_percentage: 1,
|
649
735
|
# error_retry_duration: 1,
|
650
736
|
# },
|
737
|
+
# neptune_settings: {
|
738
|
+
# service_access_role_arn: "String",
|
739
|
+
# s3_bucket_name: "String", # required
|
740
|
+
# s3_bucket_folder: "String", # required
|
741
|
+
# error_retry_duration: 1,
|
742
|
+
# max_file_size: 1,
|
743
|
+
# max_retry_count: 1,
|
744
|
+
# iam_auth_enabled: false,
|
745
|
+
# },
|
651
746
|
# redshift_settings: {
|
652
747
|
# accept_any_date: false,
|
653
748
|
# after_connect_script: "String",
|
@@ -717,6 +812,7 @@ module Aws::DatabaseMigrationService
|
|
717
812
|
# resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
|
718
813
|
# resp.endpoint.s3_settings.timestamp_column_name #=> String
|
719
814
|
# resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
815
|
+
# resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
|
720
816
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
721
817
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
722
818
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -732,12 +828,26 @@ module Aws::DatabaseMigrationService
|
|
732
828
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
733
829
|
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
734
830
|
# resp.endpoint.kinesis_settings.stream_arn #=> String
|
735
|
-
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
|
831
|
+
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
736
832
|
# resp.endpoint.kinesis_settings.service_access_role_arn #=> String
|
833
|
+
# resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
|
834
|
+
# resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
|
835
|
+
# resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
|
836
|
+
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
837
|
+
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
838
|
+
# resp.endpoint.kafka_settings.broker #=> String
|
839
|
+
# resp.endpoint.kafka_settings.topic #=> String
|
737
840
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
738
841
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
739
842
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
740
843
|
# resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
|
844
|
+
# resp.endpoint.neptune_settings.service_access_role_arn #=> String
|
845
|
+
# resp.endpoint.neptune_settings.s3_bucket_name #=> String
|
846
|
+
# resp.endpoint.neptune_settings.s3_bucket_folder #=> String
|
847
|
+
# resp.endpoint.neptune_settings.error_retry_duration #=> Integer
|
848
|
+
# resp.endpoint.neptune_settings.max_file_size #=> Integer
|
849
|
+
# resp.endpoint.neptune_settings.max_retry_count #=> Integer
|
850
|
+
# resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
|
741
851
|
# resp.endpoint.redshift_settings.accept_any_date #=> Boolean
|
742
852
|
# resp.endpoint.redshift_settings.after_connect_script #=> String
|
743
853
|
# resp.endpoint.redshift_settings.bucket_folder #=> String
|
@@ -809,7 +919,7 @@ module Aws::DatabaseMigrationService
|
|
809
919
|
# The type of AWS DMS resource that generates the events. For example,
|
810
920
|
# if you want to be notified of events generated by a replication
|
811
921
|
# instance, you set this parameter to `replication-instance`. If this
|
812
|
-
# value
|
922
|
+
# value isn't specified, all events are returned.
|
813
923
|
#
|
814
924
|
# Valid values: `replication-instance` \| `replication-task`
|
815
925
|
#
|
@@ -885,6 +995,17 @@ module Aws::DatabaseMigrationService
|
|
885
995
|
|
886
996
|
# Creates the replication instance using the specified parameters.
|
887
997
|
#
|
998
|
+
# AWS DMS requires that your account have certain roles with appropriate
|
999
|
+
# permissions before you can create a replication instance. For
|
1000
|
+
# information on the required roles, see [Creating the IAM Roles to Use
|
1001
|
+
# With the AWS CLI and AWS DMS API][1]. For information on the required
|
1002
|
+
# permissions, see [IAM Permissions Needed to Use AWS DMS][2].
|
1003
|
+
#
|
1004
|
+
#
|
1005
|
+
#
|
1006
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.APIRole.html
|
1007
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.IAMPermissions.html
|
1008
|
+
#
|
888
1009
|
# @option params [required, String] :replication_instance_identifier
|
889
1010
|
# The replication instance identifier. This parameter is stored as a
|
890
1011
|
# lowercase string.
|
@@ -895,7 +1016,7 @@ module Aws::DatabaseMigrationService
|
|
895
1016
|
#
|
896
1017
|
# * First character must be a letter.
|
897
1018
|
#
|
898
|
-
# *
|
1019
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
899
1020
|
#
|
900
1021
|
# Example: `myrepinstance`
|
901
1022
|
#
|
@@ -917,9 +1038,9 @@ module Aws::DatabaseMigrationService
|
|
917
1038
|
# replication instance.
|
918
1039
|
#
|
919
1040
|
# @option params [String] :availability_zone
|
920
|
-
# The
|
921
|
-
#
|
922
|
-
#
|
1041
|
+
# The Availability Zone where the replication instance will be created.
|
1042
|
+
# The default value is a random, system-chosen Availability Zone in the
|
1043
|
+
# endpoint's AWS Region, for example: `us-east-1d`
|
923
1044
|
#
|
924
1045
|
# @option params [String] :replication_subnet_group_identifier
|
925
1046
|
# A subnet group to associate with the replication instance.
|
@@ -939,16 +1060,16 @@ module Aws::DatabaseMigrationService
|
|
939
1060
|
#
|
940
1061
|
# @option params [Boolean] :multi_az
|
941
1062
|
# Specifies whether the replication instance is a Multi-AZ deployment.
|
942
|
-
# You
|
1063
|
+
# You can't set the `AvailabilityZone` parameter if the Multi-AZ
|
943
1064
|
# parameter is set to `true`.
|
944
1065
|
#
|
945
1066
|
# @option params [String] :engine_version
|
946
1067
|
# The engine version number of the replication instance.
|
947
1068
|
#
|
948
1069
|
# @option params [Boolean] :auto_minor_version_upgrade
|
949
|
-
#
|
950
|
-
# to the replication instance during the maintenance
|
951
|
-
# parameter defaults to `true`.
|
1070
|
+
# A value that indicates whether minor engine upgrades are applied
|
1071
|
+
# automatically to the replication instance during the maintenance
|
1072
|
+
# window. This parameter defaults to `true`.
|
952
1073
|
#
|
953
1074
|
# Default: `true`
|
954
1075
|
#
|
@@ -1248,7 +1369,8 @@ module Aws::DatabaseMigrationService
|
|
1248
1369
|
#
|
1249
1370
|
# @option params [required, String] :table_mappings
|
1250
1371
|
# The table mappings for the task, in JSON format. For more information,
|
1251
|
-
# see [Table Mapping][1] in the *AWS
|
1372
|
+
# see [Using Table Mapping to Specify Task Settings][1] in the *AWS
|
1373
|
+
# Database Migration User Guide.*
|
1252
1374
|
#
|
1253
1375
|
#
|
1254
1376
|
#
|
@@ -1256,7 +1378,8 @@ module Aws::DatabaseMigrationService
|
|
1256
1378
|
#
|
1257
1379
|
# @option params [String] :replication_task_settings
|
1258
1380
|
# Overall settings for the task, in JSON format. For more information,
|
1259
|
-
# see [Task Settings
|
1381
|
+
# see [Specifying Task Settings for AWS Database Migration Service
|
1382
|
+
# Tasks][1] in the *AWS Database Migration User Guide.*
|
1260
1383
|
#
|
1261
1384
|
#
|
1262
1385
|
#
|
@@ -1284,6 +1407,19 @@ module Aws::DatabaseMigrationService
|
|
1284
1407
|
#
|
1285
1408
|
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
1286
1409
|
#
|
1410
|
+
# <note markdown="1"> When you use this task setting with a source PostgreSQL database, a
|
1411
|
+
# logical replication slot should already be created and associated with
|
1412
|
+
# the source endpoint. You can verify this by setting the `slotName`
|
1413
|
+
# extra connection attribute to the name of this logical replication
|
1414
|
+
# slot. For more information, see [Extra Connection Attributes When
|
1415
|
+
# Using PostgreSQL as a Source for AWS DMS][1].
|
1416
|
+
#
|
1417
|
+
# </note>
|
1418
|
+
#
|
1419
|
+
#
|
1420
|
+
#
|
1421
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib
|
1422
|
+
#
|
1287
1423
|
# @option params [String] :cdc_stop_position
|
1288
1424
|
# Indicates when you want a change data capture (CDC) operation to stop.
|
1289
1425
|
# The value can be either server time or commit time.
|
@@ -1297,6 +1433,16 @@ module Aws::DatabaseMigrationService
|
|
1297
1433
|
# @option params [Array<Types::Tag>] :tags
|
1298
1434
|
# One or more tags to be assigned to the replication task.
|
1299
1435
|
#
|
1436
|
+
# @option params [String] :task_data
|
1437
|
+
# Supplemental information that the task requires to migrate the data
|
1438
|
+
# for certain source and target endpoints. For more information, see
|
1439
|
+
# [Specifying Supplemental Data for Task Settings][1] in the *AWS
|
1440
|
+
# Database Migration User Guide.*
|
1441
|
+
#
|
1442
|
+
#
|
1443
|
+
#
|
1444
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
|
1445
|
+
#
|
1300
1446
|
# @return [Types::CreateReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1301
1447
|
#
|
1302
1448
|
# * {Types::CreateReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
|
@@ -1358,6 +1504,7 @@ module Aws::DatabaseMigrationService
|
|
1358
1504
|
# value: "String",
|
1359
1505
|
# },
|
1360
1506
|
# ],
|
1507
|
+
# task_data: "String",
|
1361
1508
|
# })
|
1362
1509
|
#
|
1363
1510
|
# @example Response structure
|
@@ -1384,6 +1531,12 @@ module Aws::DatabaseMigrationService
|
|
1384
1531
|
# resp.replication_task.replication_task_stats.tables_loading #=> Integer
|
1385
1532
|
# resp.replication_task.replication_task_stats.tables_queued #=> Integer
|
1386
1533
|
# resp.replication_task.replication_task_stats.tables_errored #=> Integer
|
1534
|
+
# resp.replication_task.replication_task_stats.fresh_start_date #=> Time
|
1535
|
+
# resp.replication_task.replication_task_stats.start_date #=> Time
|
1536
|
+
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
1537
|
+
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
1538
|
+
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
1539
|
+
# resp.replication_task.task_data #=> String
|
1387
1540
|
#
|
1388
1541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTask AWS API Documentation
|
1389
1542
|
#
|
@@ -1586,6 +1739,7 @@ module Aws::DatabaseMigrationService
|
|
1586
1739
|
# resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
|
1587
1740
|
# resp.endpoint.s3_settings.timestamp_column_name #=> String
|
1588
1741
|
# resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
1742
|
+
# resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
|
1589
1743
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
1590
1744
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
1591
1745
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -1601,12 +1755,26 @@ module Aws::DatabaseMigrationService
|
|
1601
1755
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
1602
1756
|
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
1603
1757
|
# resp.endpoint.kinesis_settings.stream_arn #=> String
|
1604
|
-
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
|
1758
|
+
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
1605
1759
|
# resp.endpoint.kinesis_settings.service_access_role_arn #=> String
|
1760
|
+
# resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
|
1761
|
+
# resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
|
1762
|
+
# resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
|
1763
|
+
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
1764
|
+
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
1765
|
+
# resp.endpoint.kafka_settings.broker #=> String
|
1766
|
+
# resp.endpoint.kafka_settings.topic #=> String
|
1606
1767
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
1607
1768
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1608
1769
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
1609
1770
|
# resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
|
1771
|
+
# resp.endpoint.neptune_settings.service_access_role_arn #=> String
|
1772
|
+
# resp.endpoint.neptune_settings.s3_bucket_name #=> String
|
1773
|
+
# resp.endpoint.neptune_settings.s3_bucket_folder #=> String
|
1774
|
+
# resp.endpoint.neptune_settings.error_retry_duration #=> Integer
|
1775
|
+
# resp.endpoint.neptune_settings.max_file_size #=> Integer
|
1776
|
+
# resp.endpoint.neptune_settings.max_retry_count #=> Integer
|
1777
|
+
# resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
|
1610
1778
|
# resp.endpoint.redshift_settings.accept_any_date #=> Boolean
|
1611
1779
|
# resp.endpoint.redshift_settings.after_connect_script #=> String
|
1612
1780
|
# resp.endpoint.redshift_settings.bucket_folder #=> String
|
@@ -1913,6 +2081,12 @@ module Aws::DatabaseMigrationService
|
|
1913
2081
|
# resp.replication_task.replication_task_stats.tables_loading #=> Integer
|
1914
2082
|
# resp.replication_task.replication_task_stats.tables_queued #=> Integer
|
1915
2083
|
# resp.replication_task.replication_task_stats.tables_errored #=> Integer
|
2084
|
+
# resp.replication_task.replication_task_stats.fresh_start_date #=> Time
|
2085
|
+
# resp.replication_task.replication_task_stats.start_date #=> Time
|
2086
|
+
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
2087
|
+
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
2088
|
+
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
2089
|
+
# resp.replication_task.task_data #=> String
|
1916
2090
|
#
|
1917
2091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTask AWS API Documentation
|
1918
2092
|
#
|
@@ -2004,13 +2178,15 @@ module Aws::DatabaseMigrationService
|
|
2004
2178
|
# @option params [String] :marker
|
2005
2179
|
# An optional pagination token provided by a previous request. If this
|
2006
2180
|
# parameter is specified, the response includes only records beyond the
|
2007
|
-
# marker, up to the
|
2181
|
+
# marker, up to the value specified by `MaxRecords`.
|
2008
2182
|
#
|
2009
2183
|
# @return [Types::DescribeCertificatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2010
2184
|
#
|
2011
2185
|
# * {Types::DescribeCertificatesResponse#marker #marker} => String
|
2012
2186
|
# * {Types::DescribeCertificatesResponse#certificates #certificates} => Array<Types::Certificate>
|
2013
2187
|
#
|
2188
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2189
|
+
#
|
2014
2190
|
#
|
2015
2191
|
# @example Example: Describe certificates
|
2016
2192
|
#
|
@@ -2103,6 +2279,8 @@ module Aws::DatabaseMigrationService
|
|
2103
2279
|
# * {Types::DescribeConnectionsResponse#marker #marker} => String
|
2104
2280
|
# * {Types::DescribeConnectionsResponse#connections #connections} => Array<Types::Connection>
|
2105
2281
|
#
|
2282
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2283
|
+
#
|
2106
2284
|
#
|
2107
2285
|
# @example Example: Describe connections
|
2108
2286
|
#
|
@@ -2161,6 +2339,11 @@ module Aws::DatabaseMigrationService
|
|
2161
2339
|
# resp.connections[0].endpoint_identifier #=> String
|
2162
2340
|
# resp.connections[0].replication_instance_identifier #=> String
|
2163
2341
|
#
|
2342
|
+
#
|
2343
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2344
|
+
#
|
2345
|
+
# * test_connection_succeeds
|
2346
|
+
#
|
2164
2347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConnections AWS API Documentation
|
2165
2348
|
#
|
2166
2349
|
# @overload describe_connections(params = {})
|
@@ -2197,6 +2380,8 @@ module Aws::DatabaseMigrationService
|
|
2197
2380
|
# * {Types::DescribeEndpointTypesResponse#marker #marker} => String
|
2198
2381
|
# * {Types::DescribeEndpointTypesResponse#supported_endpoint_types #supported_endpoint_types} => Array<Types::SupportedEndpointType>
|
2199
2382
|
#
|
2383
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2384
|
+
#
|
2200
2385
|
#
|
2201
2386
|
# @example Example: Describe endpoint types
|
2202
2387
|
#
|
@@ -2243,6 +2428,7 @@ module Aws::DatabaseMigrationService
|
|
2243
2428
|
# resp.supported_endpoint_types[0].engine_name #=> String
|
2244
2429
|
# resp.supported_endpoint_types[0].supports_cdc #=> Boolean
|
2245
2430
|
# resp.supported_endpoint_types[0].endpoint_type #=> String, one of "source", "target"
|
2431
|
+
# resp.supported_endpoint_types[0].replication_instance_engine_minimum_version #=> String
|
2246
2432
|
# resp.supported_endpoint_types[0].engine_display_name #=> String
|
2247
2433
|
#
|
2248
2434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypes AWS API Documentation
|
@@ -2283,6 +2469,8 @@ module Aws::DatabaseMigrationService
|
|
2283
2469
|
# * {Types::DescribeEndpointsResponse#marker #marker} => String
|
2284
2470
|
# * {Types::DescribeEndpointsResponse#endpoints #endpoints} => Array<Types::Endpoint>
|
2285
2471
|
#
|
2472
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2473
|
+
#
|
2286
2474
|
#
|
2287
2475
|
# @example Example: Describe endpoints
|
2288
2476
|
#
|
@@ -2364,6 +2552,7 @@ module Aws::DatabaseMigrationService
|
|
2364
2552
|
# resp.endpoints[0].s3_settings.cdc_inserts_only #=> Boolean
|
2365
2553
|
# resp.endpoints[0].s3_settings.timestamp_column_name #=> String
|
2366
2554
|
# resp.endpoints[0].s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
2555
|
+
# resp.endpoints[0].s3_settings.cdc_inserts_and_updates #=> Boolean
|
2367
2556
|
# resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
|
2368
2557
|
# resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
|
2369
2558
|
# resp.endpoints[0].mongo_db_settings.username #=> String
|
@@ -2379,12 +2568,26 @@ module Aws::DatabaseMigrationService
|
|
2379
2568
|
# resp.endpoints[0].mongo_db_settings.auth_source #=> String
|
2380
2569
|
# resp.endpoints[0].mongo_db_settings.kms_key_id #=> String
|
2381
2570
|
# resp.endpoints[0].kinesis_settings.stream_arn #=> String
|
2382
|
-
# resp.endpoints[0].kinesis_settings.message_format #=> String, one of "json"
|
2571
|
+
# resp.endpoints[0].kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
2383
2572
|
# resp.endpoints[0].kinesis_settings.service_access_role_arn #=> String
|
2573
|
+
# resp.endpoints[0].kinesis_settings.include_transaction_details #=> Boolean
|
2574
|
+
# resp.endpoints[0].kinesis_settings.include_partition_value #=> Boolean
|
2575
|
+
# resp.endpoints[0].kinesis_settings.partition_include_schema_table #=> Boolean
|
2576
|
+
# resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
|
2577
|
+
# resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
|
2578
|
+
# resp.endpoints[0].kafka_settings.broker #=> String
|
2579
|
+
# resp.endpoints[0].kafka_settings.topic #=> String
|
2384
2580
|
# resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
|
2385
2581
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
2386
2582
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
2387
2583
|
# resp.endpoints[0].elasticsearch_settings.error_retry_duration #=> Integer
|
2584
|
+
# resp.endpoints[0].neptune_settings.service_access_role_arn #=> String
|
2585
|
+
# resp.endpoints[0].neptune_settings.s3_bucket_name #=> String
|
2586
|
+
# resp.endpoints[0].neptune_settings.s3_bucket_folder #=> String
|
2587
|
+
# resp.endpoints[0].neptune_settings.error_retry_duration #=> Integer
|
2588
|
+
# resp.endpoints[0].neptune_settings.max_file_size #=> Integer
|
2589
|
+
# resp.endpoints[0].neptune_settings.max_retry_count #=> Integer
|
2590
|
+
# resp.endpoints[0].neptune_settings.iam_auth_enabled #=> Boolean
|
2388
2591
|
# resp.endpoints[0].redshift_settings.accept_any_date #=> Boolean
|
2389
2592
|
# resp.endpoints[0].redshift_settings.after_connect_script #=> String
|
2390
2593
|
# resp.endpoints[0].redshift_settings.bucket_folder #=> String
|
@@ -2411,6 +2614,11 @@ module Aws::DatabaseMigrationService
|
|
2411
2614
|
# resp.endpoints[0].redshift_settings.username #=> String
|
2412
2615
|
# resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
|
2413
2616
|
#
|
2617
|
+
#
|
2618
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2619
|
+
#
|
2620
|
+
# * endpoint_deleted
|
2621
|
+
#
|
2414
2622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints AWS API Documentation
|
2415
2623
|
#
|
2416
2624
|
# @overload describe_endpoints(params = {})
|
@@ -2503,6 +2711,8 @@ module Aws::DatabaseMigrationService
|
|
2503
2711
|
# * {Types::DescribeEventSubscriptionsResponse#marker #marker} => String
|
2504
2712
|
# * {Types::DescribeEventSubscriptionsResponse#event_subscriptions_list #event_subscriptions_list} => Array<Types::EventSubscription>
|
2505
2713
|
#
|
2714
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2715
|
+
#
|
2506
2716
|
# @example Request syntax with placeholder values
|
2507
2717
|
#
|
2508
2718
|
# resp = client.describe_event_subscriptions({
|
@@ -2594,6 +2804,8 @@ module Aws::DatabaseMigrationService
|
|
2594
2804
|
# * {Types::DescribeEventsResponse#marker #marker} => String
|
2595
2805
|
# * {Types::DescribeEventsResponse#events #events} => Array<Types::Event>
|
2596
2806
|
#
|
2807
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2808
|
+
#
|
2597
2809
|
# @example Request syntax with placeholder values
|
2598
2810
|
#
|
2599
2811
|
# resp = client.describe_events({
|
@@ -2656,6 +2868,8 @@ module Aws::DatabaseMigrationService
|
|
2656
2868
|
# * {Types::DescribeOrderableReplicationInstancesResponse#orderable_replication_instances #orderable_replication_instances} => Array<Types::OrderableReplicationInstance>
|
2657
2869
|
# * {Types::DescribeOrderableReplicationInstancesResponse#marker #marker} => String
|
2658
2870
|
#
|
2871
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2872
|
+
#
|
2659
2873
|
#
|
2660
2874
|
# @example Example: Describe orderable replication instances
|
2661
2875
|
#
|
@@ -2731,6 +2945,8 @@ module Aws::DatabaseMigrationService
|
|
2731
2945
|
# * {Types::DescribePendingMaintenanceActionsResponse#pending_maintenance_actions #pending_maintenance_actions} => Array<Types::ResourcePendingMaintenanceActions>
|
2732
2946
|
# * {Types::DescribePendingMaintenanceActionsResponse#marker #marker} => String
|
2733
2947
|
#
|
2948
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2949
|
+
#
|
2734
2950
|
# @example Request syntax with placeholder values
|
2735
2951
|
#
|
2736
2952
|
# resp = client.describe_pending_maintenance_actions({
|
@@ -2841,6 +3057,8 @@ module Aws::DatabaseMigrationService
|
|
2841
3057
|
# * {Types::DescribeReplicationInstanceTaskLogsResponse#replication_instance_task_logs #replication_instance_task_logs} => Array<Types::ReplicationInstanceTaskLog>
|
2842
3058
|
# * {Types::DescribeReplicationInstanceTaskLogsResponse#marker #marker} => String
|
2843
3059
|
#
|
3060
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3061
|
+
#
|
2844
3062
|
# @example Request syntax with placeholder values
|
2845
3063
|
#
|
2846
3064
|
# resp = client.describe_replication_instance_task_logs({
|
@@ -2897,6 +3115,8 @@ module Aws::DatabaseMigrationService
|
|
2897
3115
|
# * {Types::DescribeReplicationInstancesResponse#marker #marker} => String
|
2898
3116
|
# * {Types::DescribeReplicationInstancesResponse#replication_instances #replication_instances} => Array<Types::ReplicationInstance>
|
2899
3117
|
#
|
3118
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3119
|
+
#
|
2900
3120
|
#
|
2901
3121
|
# @example Example: Describe replication instances
|
2902
3122
|
#
|
@@ -2978,6 +3198,12 @@ module Aws::DatabaseMigrationService
|
|
2978
3198
|
# resp.replication_instances[0].free_until #=> Time
|
2979
3199
|
# resp.replication_instances[0].dns_name_servers #=> String
|
2980
3200
|
#
|
3201
|
+
#
|
3202
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
3203
|
+
#
|
3204
|
+
# * replication_instance_available
|
3205
|
+
# * replication_instance_deleted
|
3206
|
+
#
|
2981
3207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances AWS API Documentation
|
2982
3208
|
#
|
2983
3209
|
# @overload describe_replication_instances(params = {})
|
@@ -2992,6 +3218,8 @@ module Aws::DatabaseMigrationService
|
|
2992
3218
|
# @option params [Array<Types::Filter>] :filters
|
2993
3219
|
# Filters applied to the describe action.
|
2994
3220
|
#
|
3221
|
+
# Valid filter names: replication-subnet-group-id
|
3222
|
+
#
|
2995
3223
|
# @option params [Integer] :max_records
|
2996
3224
|
# The maximum number of records to include in the response. If more
|
2997
3225
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -3012,6 +3240,8 @@ module Aws::DatabaseMigrationService
|
|
3012
3240
|
# * {Types::DescribeReplicationSubnetGroupsResponse#marker #marker} => String
|
3013
3241
|
# * {Types::DescribeReplicationSubnetGroupsResponse#replication_subnet_groups #replication_subnet_groups} => Array<Types::ReplicationSubnetGroup>
|
3014
3242
|
#
|
3243
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3244
|
+
#
|
3015
3245
|
#
|
3016
3246
|
# @example Example: Describe replication subnet groups
|
3017
3247
|
#
|
@@ -3077,9 +3307,9 @@ module Aws::DatabaseMigrationService
|
|
3077
3307
|
# returns the latest results.
|
3078
3308
|
#
|
3079
3309
|
# @option params [String] :replication_task_arn
|
3080
|
-
#
|
3081
|
-
# task. When this input parameter is specified the API
|
3082
|
-
#
|
3310
|
+
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3311
|
+
# task. When this input parameter is specified, the API returns only one
|
3312
|
+
# result and ignore the values of the `MaxRecords` and `Marker`
|
3083
3313
|
# parameters.
|
3084
3314
|
#
|
3085
3315
|
# @option params [Integer] :max_records
|
@@ -3103,6 +3333,8 @@ module Aws::DatabaseMigrationService
|
|
3103
3333
|
# * {Types::DescribeReplicationTaskAssessmentResultsResponse#bucket_name #bucket_name} => String
|
3104
3334
|
# * {Types::DescribeReplicationTaskAssessmentResultsResponse#replication_task_assessment_results #replication_task_assessment_results} => Array<Types::ReplicationTaskAssessmentResult>
|
3105
3335
|
#
|
3336
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3337
|
+
#
|
3106
3338
|
# @example Request syntax with placeholder values
|
3107
3339
|
#
|
3108
3340
|
# resp = client.describe_replication_task_assessment_results({
|
@@ -3167,6 +3399,8 @@ module Aws::DatabaseMigrationService
|
|
3167
3399
|
# * {Types::DescribeReplicationTasksResponse#marker #marker} => String
|
3168
3400
|
# * {Types::DescribeReplicationTasksResponse#replication_tasks #replication_tasks} => Array<Types::ReplicationTask>
|
3169
3401
|
#
|
3402
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3403
|
+
#
|
3170
3404
|
#
|
3171
3405
|
# @example Example: Describe replication tasks
|
3172
3406
|
#
|
@@ -3233,6 +3467,20 @@ module Aws::DatabaseMigrationService
|
|
3233
3467
|
# resp.replication_tasks[0].replication_task_stats.tables_loading #=> Integer
|
3234
3468
|
# resp.replication_tasks[0].replication_task_stats.tables_queued #=> Integer
|
3235
3469
|
# resp.replication_tasks[0].replication_task_stats.tables_errored #=> Integer
|
3470
|
+
# resp.replication_tasks[0].replication_task_stats.fresh_start_date #=> Time
|
3471
|
+
# resp.replication_tasks[0].replication_task_stats.start_date #=> Time
|
3472
|
+
# resp.replication_tasks[0].replication_task_stats.stop_date #=> Time
|
3473
|
+
# resp.replication_tasks[0].replication_task_stats.full_load_start_date #=> Time
|
3474
|
+
# resp.replication_tasks[0].replication_task_stats.full_load_finish_date #=> Time
|
3475
|
+
# resp.replication_tasks[0].task_data #=> String
|
3476
|
+
#
|
3477
|
+
#
|
3478
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
3479
|
+
#
|
3480
|
+
# * replication_task_deleted
|
3481
|
+
# * replication_task_ready
|
3482
|
+
# * replication_task_running
|
3483
|
+
# * replication_task_stopped
|
3236
3484
|
#
|
3237
3485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasks AWS API Documentation
|
3238
3486
|
#
|
@@ -3269,6 +3517,8 @@ module Aws::DatabaseMigrationService
|
|
3269
3517
|
# * {Types::DescribeSchemasResponse#marker #marker} => String
|
3270
3518
|
# * {Types::DescribeSchemasResponse#schemas #schemas} => Array<String>
|
3271
3519
|
#
|
3520
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3521
|
+
#
|
3272
3522
|
#
|
3273
3523
|
# @example Example: Describe schemas
|
3274
3524
|
#
|
@@ -3349,6 +3599,8 @@ module Aws::DatabaseMigrationService
|
|
3349
3599
|
# * {Types::DescribeTableStatisticsResponse#table_statistics #table_statistics} => Array<Types::TableStatistics>
|
3350
3600
|
# * {Types::DescribeTableStatisticsResponse#marker #marker} => String
|
3351
3601
|
#
|
3602
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3603
|
+
#
|
3352
3604
|
#
|
3353
3605
|
# @example Example: Describe table statistics
|
3354
3606
|
#
|
@@ -3396,6 +3648,9 @@ module Aws::DatabaseMigrationService
|
|
3396
3648
|
# resp.table_statistics[0].full_load_rows #=> Integer
|
3397
3649
|
# resp.table_statistics[0].full_load_condtnl_chk_failed_rows #=> Integer
|
3398
3650
|
# resp.table_statistics[0].full_load_error_rows #=> Integer
|
3651
|
+
# resp.table_statistics[0].full_load_start_time #=> Time
|
3652
|
+
# resp.table_statistics[0].full_load_end_time #=> Time
|
3653
|
+
# resp.table_statistics[0].full_load_reloaded #=> Boolean
|
3399
3654
|
# resp.table_statistics[0].last_update_time #=> Time
|
3400
3655
|
# resp.table_statistics[0].table_state #=> String
|
3401
3656
|
# resp.table_statistics[0].validation_pending_records #=> Integer
|
@@ -3418,8 +3673,9 @@ module Aws::DatabaseMigrationService
|
|
3418
3673
|
#
|
3419
3674
|
# @option params [required, String] :certificate_identifier
|
3420
3675
|
# A customer-assigned name for the certificate. Identifiers must begin
|
3421
|
-
# with a letter
|
3422
|
-
#
|
3676
|
+
# with a letter and must contain only ASCII letters, digits, and
|
3677
|
+
# hyphens. They can't end with a hyphen or contain two consecutive
|
3678
|
+
# hyphens.
|
3423
3679
|
#
|
3424
3680
|
# @option params [String] :certificate_pem
|
3425
3681
|
# The contents of a `.pem` file, which contains an X.509 certificate.
|
@@ -3540,18 +3796,20 @@ module Aws::DatabaseMigrationService
|
|
3540
3796
|
# endpoint.
|
3541
3797
|
#
|
3542
3798
|
# @option params [String] :endpoint_identifier
|
3543
|
-
# The database endpoint identifier. Identifiers must begin with a
|
3544
|
-
#
|
3545
|
-
#
|
3799
|
+
# The database endpoint identifier. Identifiers must begin with a letter
|
3800
|
+
# and must contain only ASCII letters, digits, and hyphens. They can't
|
3801
|
+
# end with a hyphen or contain two consecutive hyphens.
|
3546
3802
|
#
|
3547
3803
|
# @option params [String] :endpoint_type
|
3548
3804
|
# The type of endpoint. Valid values are `source` and `target`.
|
3549
3805
|
#
|
3550
3806
|
# @option params [String] :engine_name
|
3551
3807
|
# The type of engine for the endpoint. Valid values, depending on the
|
3552
|
-
# EndpointType, include mysql
|
3553
|
-
# aurora-postgresql
|
3554
|
-
#
|
3808
|
+
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
3809
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
|
3810
|
+
# `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
|
3811
|
+
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
|
3812
|
+
# `"sqlserver"`.
|
3555
3813
|
#
|
3556
3814
|
# @option params [String] :username
|
3557
3815
|
# The user name to be used to login to the endpoint database.
|
@@ -3589,9 +3847,9 @@ module Aws::DatabaseMigrationService
|
|
3589
3847
|
#
|
3590
3848
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
3591
3849
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
3592
|
-
#
|
3593
|
-
#
|
3594
|
-
#
|
3850
|
+
# information about other available settings, see [Using Object Mapping
|
3851
|
+
# to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
|
3852
|
+
# User Guide.*
|
3595
3853
|
#
|
3596
3854
|
#
|
3597
3855
|
#
|
@@ -3613,22 +3871,22 @@ module Aws::DatabaseMigrationService
|
|
3613
3871
|
#
|
3614
3872
|
# Attributes include the following:
|
3615
3873
|
#
|
3616
|
-
# * serviceAccessRoleArn - The
|
3617
|
-
# the Amazon S3 bucket.
|
3874
|
+
# * serviceAccessRoleArn - The AWS Identity and Access Management (IAM)
|
3875
|
+
# role that has permission to access the Amazon S3 bucket.
|
3618
3876
|
#
|
3619
3877
|
# * BucketName - The name of the S3 bucket to use.
|
3620
3878
|
#
|
3621
3879
|
# * compressionType - An optional parameter to use GZIP to compress the
|
3622
|
-
# target files.
|
3623
|
-
# files uncompressed.
|
3880
|
+
# target files. Either set this parameter to NONE (the default) or
|
3881
|
+
# don't use it to leave the files uncompressed.
|
3624
3882
|
#
|
3625
|
-
# Shorthand syntax:
|
3626
|
-
#
|
3627
|
-
#
|
3628
|
-
# JSON syntax:
|
3883
|
+
# Shorthand syntax for these settings is as follows:
|
3884
|
+
# `ServiceAccessRoleArn=string
|
3885
|
+
# ,BucketName=string,CompressionType=string`
|
3629
3886
|
#
|
3630
|
-
#
|
3631
|
-
# "
|
3887
|
+
# JSON syntax for these settings is as follows: `\{
|
3888
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string",
|
3889
|
+
# "CompressionType": "none"|"gzip" \} `
|
3632
3890
|
#
|
3633
3891
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
3634
3892
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
@@ -3642,14 +3900,24 @@ module Aws::DatabaseMigrationService
|
|
3642
3900
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
|
3643
3901
|
#
|
3644
3902
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
3645
|
-
# Settings in JSON format for the target Amazon Kinesis
|
3646
|
-
#
|
3647
|
-
# [Using
|
3648
|
-
# the *AWS Database Migration User Guide.*
|
3903
|
+
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
3904
|
+
# Data Streams. For more information about the available settings, see
|
3905
|
+
# [Using Amazon Kinesis Data Streams as a Target for AWS Database
|
3906
|
+
# Migration Service][1] in the *AWS Database Migration User Guide.*
|
3907
|
+
#
|
3908
|
+
#
|
3909
|
+
#
|
3910
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
3911
|
+
#
|
3912
|
+
# @option params [Types::KafkaSettings] :kafka_settings
|
3913
|
+
# Settings in JSON format for the target Apache Kafka endpoint. For more
|
3914
|
+
# information about the available settings, see [Using Apache Kafka as a
|
3915
|
+
# Target for AWS Database Migration Service][1] in the *AWS Database
|
3916
|
+
# Migration User Guide.*
|
3649
3917
|
#
|
3650
3918
|
#
|
3651
3919
|
#
|
3652
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.
|
3920
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
3653
3921
|
#
|
3654
3922
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
3655
3923
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
@@ -3661,7 +3929,18 @@ module Aws::DatabaseMigrationService
|
|
3661
3929
|
#
|
3662
3930
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
3663
3931
|
#
|
3932
|
+
# @option params [Types::NeptuneSettings] :neptune_settings
|
3933
|
+
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
3934
|
+
# more information about the available settings, see
|
3935
|
+
# [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
|
3936
|
+
# in the *AWS Database Migration Service User Guide.*
|
3937
|
+
#
|
3938
|
+
#
|
3939
|
+
#
|
3940
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
|
3941
|
+
#
|
3664
3942
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
3943
|
+
# Provides information that defines an Amazon Redshift endpoint.
|
3665
3944
|
#
|
3666
3945
|
# @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3667
3946
|
#
|
@@ -3734,6 +4013,7 @@ module Aws::DatabaseMigrationService
|
|
3734
4013
|
# cdc_inserts_only: false,
|
3735
4014
|
# timestamp_column_name: "String",
|
3736
4015
|
# parquet_timestamp_in_millisecond: false,
|
4016
|
+
# cdc_inserts_and_updates: false,
|
3737
4017
|
# },
|
3738
4018
|
# dms_transfer_settings: {
|
3739
4019
|
# service_access_role_arn: "String",
|
@@ -3755,8 +4035,17 @@ module Aws::DatabaseMigrationService
|
|
3755
4035
|
# },
|
3756
4036
|
# kinesis_settings: {
|
3757
4037
|
# stream_arn: "String",
|
3758
|
-
# message_format: "json", # accepts json
|
4038
|
+
# message_format: "json", # accepts json, json-unformatted
|
3759
4039
|
# service_access_role_arn: "String",
|
4040
|
+
# include_transaction_details: false,
|
4041
|
+
# include_partition_value: false,
|
4042
|
+
# partition_include_schema_table: false,
|
4043
|
+
# include_table_alter_operations: false,
|
4044
|
+
# include_control_details: false,
|
4045
|
+
# },
|
4046
|
+
# kafka_settings: {
|
4047
|
+
# broker: "String",
|
4048
|
+
# topic: "String",
|
3760
4049
|
# },
|
3761
4050
|
# elasticsearch_settings: {
|
3762
4051
|
# service_access_role_arn: "String", # required
|
@@ -3764,6 +4053,15 @@ module Aws::DatabaseMigrationService
|
|
3764
4053
|
# full_load_error_percentage: 1,
|
3765
4054
|
# error_retry_duration: 1,
|
3766
4055
|
# },
|
4056
|
+
# neptune_settings: {
|
4057
|
+
# service_access_role_arn: "String",
|
4058
|
+
# s3_bucket_name: "String", # required
|
4059
|
+
# s3_bucket_folder: "String", # required
|
4060
|
+
# error_retry_duration: 1,
|
4061
|
+
# max_file_size: 1,
|
4062
|
+
# max_retry_count: 1,
|
4063
|
+
# iam_auth_enabled: false,
|
4064
|
+
# },
|
3767
4065
|
# redshift_settings: {
|
3768
4066
|
# accept_any_date: false,
|
3769
4067
|
# after_connect_script: "String",
|
@@ -3833,6 +4131,7 @@ module Aws::DatabaseMigrationService
|
|
3833
4131
|
# resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
|
3834
4132
|
# resp.endpoint.s3_settings.timestamp_column_name #=> String
|
3835
4133
|
# resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
4134
|
+
# resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
|
3836
4135
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
3837
4136
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
3838
4137
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -3848,12 +4147,26 @@ module Aws::DatabaseMigrationService
|
|
3848
4147
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
3849
4148
|
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
3850
4149
|
# resp.endpoint.kinesis_settings.stream_arn #=> String
|
3851
|
-
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
|
4150
|
+
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
3852
4151
|
# resp.endpoint.kinesis_settings.service_access_role_arn #=> String
|
4152
|
+
# resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
|
4153
|
+
# resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
|
4154
|
+
# resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
|
4155
|
+
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
4156
|
+
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
4157
|
+
# resp.endpoint.kafka_settings.broker #=> String
|
4158
|
+
# resp.endpoint.kafka_settings.topic #=> String
|
3853
4159
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
3854
4160
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
3855
4161
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
3856
4162
|
# resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
|
4163
|
+
# resp.endpoint.neptune_settings.service_access_role_arn #=> String
|
4164
|
+
# resp.endpoint.neptune_settings.s3_bucket_name #=> String
|
4165
|
+
# resp.endpoint.neptune_settings.s3_bucket_folder #=> String
|
4166
|
+
# resp.endpoint.neptune_settings.error_retry_duration #=> Integer
|
4167
|
+
# resp.endpoint.neptune_settings.max_file_size #=> Integer
|
4168
|
+
# resp.endpoint.neptune_settings.max_retry_count #=> Integer
|
4169
|
+
# resp.endpoint.neptune_settings.iam_auth_enabled #=> Boolean
|
3857
4170
|
# resp.endpoint.redshift_settings.accept_any_date #=> Boolean
|
3858
4171
|
# resp.endpoint.redshift_settings.after_connect_script #=> String
|
3859
4172
|
# resp.endpoint.redshift_settings.bucket_folder #=> String
|
@@ -3999,7 +4312,7 @@ module Aws::DatabaseMigrationService
|
|
3999
4312
|
#
|
4000
4313
|
# @option params [Boolean] :multi_az
|
4001
4314
|
# Specifies whether the replication instance is a Multi-AZ deployment.
|
4002
|
-
# You
|
4315
|
+
# You can't set the `AvailabilityZone` parameter if the Multi-AZ
|
4003
4316
|
# parameter is set to `true`.
|
4004
4317
|
#
|
4005
4318
|
# @option params [String] :engine_version
|
@@ -4015,13 +4328,19 @@ module Aws::DatabaseMigrationService
|
|
4015
4328
|
# replication instance's current version.
|
4016
4329
|
#
|
4017
4330
|
# @option params [Boolean] :auto_minor_version_upgrade
|
4018
|
-
#
|
4019
|
-
# the replication instance during the maintenance
|
4020
|
-
# parameter
|
4021
|
-
#
|
4022
|
-
#
|
4023
|
-
#
|
4024
|
-
#
|
4331
|
+
# A value that indicates that minor version upgrades are applied
|
4332
|
+
# automatically to the replication instance during the maintenance
|
4333
|
+
# window. Changing this parameter doesn't result in an outage, except
|
4334
|
+
# in the case dsecribed following. The change is asynchronously applied
|
4335
|
+
# as soon as possible.
|
4336
|
+
#
|
4337
|
+
# An outage does result if these factors apply:
|
4338
|
+
#
|
4339
|
+
# * This parameter is set to `true` during the maintenance window.
|
4340
|
+
#
|
4341
|
+
# * A newer minor version is available.
|
4342
|
+
#
|
4343
|
+
# * AWS DMS has enabled automatic patching for the given engine version.
|
4025
4344
|
#
|
4026
4345
|
# @option params [String] :replication_instance_identifier
|
4027
4346
|
# The replication instance identifier. This parameter is stored as a
|
@@ -4269,7 +4588,7 @@ module Aws::DatabaseMigrationService
|
|
4269
4588
|
# value, for example: `--table-mappings file://mappingfile.json`
|
4270
4589
|
#
|
4271
4590
|
# @option params [String] :replication_task_settings
|
4272
|
-
# JSON file that contains settings for the task, such as
|
4591
|
+
# JSON file that contains settings for the task, such as task metadata
|
4273
4592
|
# settings.
|
4274
4593
|
#
|
4275
4594
|
# @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
|
@@ -4294,6 +4613,19 @@ module Aws::DatabaseMigrationService
|
|
4294
4613
|
#
|
4295
4614
|
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
4296
4615
|
#
|
4616
|
+
# <note markdown="1"> When you use this task setting with a source PostgreSQL database, a
|
4617
|
+
# logical replication slot should already be created and associated with
|
4618
|
+
# the source endpoint. You can verify this by setting the `slotName`
|
4619
|
+
# extra connection attribute to the name of this logical replication
|
4620
|
+
# slot. For more information, see [Extra Connection Attributes When
|
4621
|
+
# Using PostgreSQL as a Source for AWS DMS][1].
|
4622
|
+
#
|
4623
|
+
# </note>
|
4624
|
+
#
|
4625
|
+
#
|
4626
|
+
#
|
4627
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib
|
4628
|
+
#
|
4297
4629
|
# @option params [String] :cdc_stop_position
|
4298
4630
|
# Indicates when you want a change data capture (CDC) operation to stop.
|
4299
4631
|
# The value can be either server time or commit time.
|
@@ -4304,6 +4636,16 @@ module Aws::DatabaseMigrationService
|
|
4304
4636
|
# Commit time example: --cdc-stop-position “commit\_time:
|
4305
4637
|
# 3018-02-09T12:12:12 “
|
4306
4638
|
#
|
4639
|
+
# @option params [String] :task_data
|
4640
|
+
# Supplemental information that the task requires to migrate the data
|
4641
|
+
# for certain source and target endpoints. For more information, see
|
4642
|
+
# [Specifying Supplemental Data for Task Settings][1] in the *AWS
|
4643
|
+
# Database Migration User Guide.*
|
4644
|
+
#
|
4645
|
+
#
|
4646
|
+
#
|
4647
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
|
4648
|
+
#
|
4307
4649
|
# @return [Types::ModifyReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4308
4650
|
#
|
4309
4651
|
# * {Types::ModifyReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
|
@@ -4319,6 +4661,7 @@ module Aws::DatabaseMigrationService
|
|
4319
4661
|
# cdc_start_time: Time.now,
|
4320
4662
|
# cdc_start_position: "String",
|
4321
4663
|
# cdc_stop_position: "String",
|
4664
|
+
# task_data: "String",
|
4322
4665
|
# })
|
4323
4666
|
#
|
4324
4667
|
# @example Response structure
|
@@ -4345,6 +4688,12 @@ module Aws::DatabaseMigrationService
|
|
4345
4688
|
# resp.replication_task.replication_task_stats.tables_loading #=> Integer
|
4346
4689
|
# resp.replication_task.replication_task_stats.tables_queued #=> Integer
|
4347
4690
|
# resp.replication_task.replication_task_stats.tables_errored #=> Integer
|
4691
|
+
# resp.replication_task.replication_task_stats.fresh_start_date #=> Time
|
4692
|
+
# resp.replication_task.replication_task_stats.start_date #=> Time
|
4693
|
+
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
4694
|
+
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
4695
|
+
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
4696
|
+
# resp.replication_task.task_data #=> String
|
4348
4697
|
#
|
4349
4698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTask AWS API Documentation
|
4350
4699
|
#
|
@@ -4610,6 +4959,19 @@ module Aws::DatabaseMigrationService
|
|
4610
4959
|
#
|
4611
4960
|
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
4612
4961
|
#
|
4962
|
+
# <note markdown="1"> When you use this task setting with a source PostgreSQL database, a
|
4963
|
+
# logical replication slot should already be created and associated with
|
4964
|
+
# the source endpoint. You can verify this by setting the `slotName`
|
4965
|
+
# extra connection attribute to the name of this logical replication
|
4966
|
+
# slot. For more information, see [Extra Connection Attributes When
|
4967
|
+
# Using PostgreSQL as a Source for AWS DMS][1].
|
4968
|
+
#
|
4969
|
+
# </note>
|
4970
|
+
#
|
4971
|
+
#
|
4972
|
+
#
|
4973
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib
|
4974
|
+
#
|
4613
4975
|
# @option params [String] :cdc_stop_position
|
4614
4976
|
# Indicates when you want a change data capture (CDC) operation to stop.
|
4615
4977
|
# The value can be either server time or commit time.
|
@@ -4685,6 +5047,12 @@ module Aws::DatabaseMigrationService
|
|
4685
5047
|
# resp.replication_task.replication_task_stats.tables_loading #=> Integer
|
4686
5048
|
# resp.replication_task.replication_task_stats.tables_queued #=> Integer
|
4687
5049
|
# resp.replication_task.replication_task_stats.tables_errored #=> Integer
|
5050
|
+
# resp.replication_task.replication_task_stats.fresh_start_date #=> Time
|
5051
|
+
# resp.replication_task.replication_task_stats.start_date #=> Time
|
5052
|
+
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
5053
|
+
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
5054
|
+
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5055
|
+
# resp.replication_task.task_data #=> String
|
4688
5056
|
#
|
4689
5057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTask AWS API Documentation
|
4690
5058
|
#
|
@@ -4735,6 +5103,12 @@ module Aws::DatabaseMigrationService
|
|
4735
5103
|
# resp.replication_task.replication_task_stats.tables_loading #=> Integer
|
4736
5104
|
# resp.replication_task.replication_task_stats.tables_queued #=> Integer
|
4737
5105
|
# resp.replication_task.replication_task_stats.tables_errored #=> Integer
|
5106
|
+
# resp.replication_task.replication_task_stats.fresh_start_date #=> Time
|
5107
|
+
# resp.replication_task.replication_task_stats.start_date #=> Time
|
5108
|
+
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
5109
|
+
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
5110
|
+
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5111
|
+
# resp.replication_task.task_data #=> String
|
4738
5112
|
#
|
4739
5113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessment AWS API Documentation
|
4740
5114
|
#
|
@@ -4809,6 +5183,12 @@ module Aws::DatabaseMigrationService
|
|
4809
5183
|
# resp.replication_task.replication_task_stats.tables_loading #=> Integer
|
4810
5184
|
# resp.replication_task.replication_task_stats.tables_queued #=> Integer
|
4811
5185
|
# resp.replication_task.replication_task_stats.tables_errored #=> Integer
|
5186
|
+
# resp.replication_task.replication_task_stats.fresh_start_date #=> Time
|
5187
|
+
# resp.replication_task.replication_task_stats.start_date #=> Time
|
5188
|
+
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
5189
|
+
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
5190
|
+
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5191
|
+
# resp.replication_task.task_data #=> String
|
4812
5192
|
#
|
4813
5193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplicationTask AWS API Documentation
|
4814
5194
|
#
|
@@ -4887,7 +5267,7 @@ module Aws::DatabaseMigrationService
|
|
4887
5267
|
params: params,
|
4888
5268
|
config: config)
|
4889
5269
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
4890
|
-
context[:gem_version] = '1.
|
5270
|
+
context[:gem_version] = '1.34.0'
|
4891
5271
|
Seahorse::Client::Request.new(handlers, context)
|
4892
5272
|
end
|
4893
5273
|
|
@@ -4953,16 +5333,16 @@ module Aws::DatabaseMigrationService
|
|
4953
5333
|
# The following table lists the valid waiter names, the operations they call,
|
4954
5334
|
# and the default `:delay` and `:max_attempts` values.
|
4955
5335
|
#
|
4956
|
-
# | waiter_name | params
|
4957
|
-
# | ------------------------------ |
|
4958
|
-
# | endpoint_deleted | {#describe_endpoints} | 5 | 60 |
|
4959
|
-
# | replication_instance_available | {#describe_replication_instances} | 60 | 60 |
|
4960
|
-
# | replication_instance_deleted | {#describe_replication_instances} | 15 | 60 |
|
4961
|
-
# | replication_task_deleted | {#describe_replication_tasks} | 15 | 60 |
|
4962
|
-
# | replication_task_ready | {#describe_replication_tasks} | 15 | 60 |
|
4963
|
-
# | replication_task_running | {#describe_replication_tasks} | 15 | 60 |
|
4964
|
-
# | replication_task_stopped | {#describe_replication_tasks} | 15 | 60 |
|
4965
|
-
# | test_connection_succeeds | {#describe_connections} | 5 | 60 |
|
5336
|
+
# | waiter_name | params | :delay | :max_attempts |
|
5337
|
+
# | ------------------------------ | --------------------------------------- | -------- | ------------- |
|
5338
|
+
# | endpoint_deleted | {Client#describe_endpoints} | 5 | 60 |
|
5339
|
+
# | replication_instance_available | {Client#describe_replication_instances} | 60 | 60 |
|
5340
|
+
# | replication_instance_deleted | {Client#describe_replication_instances} | 15 | 60 |
|
5341
|
+
# | replication_task_deleted | {Client#describe_replication_tasks} | 15 | 60 |
|
5342
|
+
# | replication_task_ready | {Client#describe_replication_tasks} | 15 | 60 |
|
5343
|
+
# | replication_task_running | {Client#describe_replication_tasks} | 15 | 60 |
|
5344
|
+
# | replication_task_stopped | {Client#describe_replication_tasks} | 15 | 60 |
|
5345
|
+
# | test_connection_succeeds | {Client#describe_connections} | 5 | 60 |
|
4966
5346
|
#
|
4967
5347
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
4968
5348
|
# because the waiter has entered a state that it will not transition
|