aws-sdk-databasemigrationservice 1.30.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-databasemigrationservice.rb +7 -4
- data/lib/aws-sdk-databasemigrationservice/client.rb +211 -72
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +17 -0
- data/lib/aws-sdk-databasemigrationservice/errors.rb +42 -20
- data/lib/aws-sdk-databasemigrationservice/resource.rb +7 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +435 -124
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6745be1282af11b019da724cb56dd9dd084884a1
|
4
|
+
data.tar.gz: ae918b019aa0b429034c39f30c6f7537da78879b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d9dbf5c95ab7cec1b2f4faf56e9dca0d66ee21cb7f698217b9da7dc9703eb5fbb6eef2adc76dc3cde9e61cd16b2f1694760139a143840a896ea661d1039a842
|
7
|
+
data.tar.gz: eedcbbc6ac6128eac5362e7cf0f5496318cd8780dffb6fe6fab5b5a0aef996b96528449ea1b50b5fe84f725037472a88fb6b582b9464cbe53fdc676e122f729c
|
@@ -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.31.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
|
@@ -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.
|
@@ -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,26 @@ 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
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
233
|
+
# no retry mode is provided.
|
234
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
235
|
+
# This includes support for retry quotas, which limit the number of
|
236
|
+
# unsuccessful retries a client can make.
|
237
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
238
|
+
# functionality of `standard` mode along with automatic client side
|
239
|
+
# throttling. This is a provisional mode that may change behavior
|
240
|
+
# in the future.
|
190
241
|
#
|
191
242
|
# @option options [String] :secret_access_key
|
192
243
|
#
|
@@ -219,16 +270,16 @@ module Aws::DatabaseMigrationService
|
|
219
270
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
271
|
#
|
221
272
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
273
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
274
|
# `Timeout::Error`.
|
224
275
|
#
|
225
276
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
277
|
# number of seconds to wait for response data. This value can
|
227
278
|
# safely be set
|
228
|
-
# per-request on the session
|
279
|
+
# per-request on the session yielded by {#session_for}.
|
229
280
|
#
|
230
281
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
282
|
+
# seconds a connection is allowed to sit idle before it is
|
232
283
|
# considered stale. Stale connections are closed and removed
|
233
284
|
# from the pool before making a request.
|
234
285
|
#
|
@@ -237,7 +288,7 @@ module Aws::DatabaseMigrationService
|
|
237
288
|
# request body. This option has no effect unless the request has
|
238
289
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
290
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
291
|
+
# request on the session yielded by {#session_for}.
|
241
292
|
#
|
242
293
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
294
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -383,18 +434,20 @@ module Aws::DatabaseMigrationService
|
|
383
434
|
# Creates an endpoint using the provided settings.
|
384
435
|
#
|
385
436
|
# @option params [required, String] :endpoint_identifier
|
386
|
-
# The database endpoint identifier. Identifiers must begin with a
|
387
|
-
#
|
388
|
-
#
|
437
|
+
# The database endpoint identifier. Identifiers must begin with a letter
|
438
|
+
# and must contain only ASCII letters, digits, and hyphens. They can't
|
439
|
+
# end with a hyphen or contain two consecutive hyphens.
|
389
440
|
#
|
390
441
|
# @option params [required, String] :endpoint_type
|
391
442
|
# The type of endpoint. Valid values are `source` and `target`.
|
392
443
|
#
|
393
444
|
# @option params [required, String] :engine_name
|
394
445
|
# 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`,
|
446
|
+
# `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
|
447
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
|
448
|
+
# `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
|
449
|
+
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
|
450
|
+
# `"sqlserver"`.
|
398
451
|
#
|
399
452
|
# @option params [String] :username
|
400
453
|
# The user name to be used to log in to the endpoint database.
|
@@ -453,9 +506,9 @@ module Aws::DatabaseMigrationService
|
|
453
506
|
#
|
454
507
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
455
508
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
456
|
-
#
|
457
|
-
#
|
458
|
-
#
|
509
|
+
# information about other available settings, see [Using Object Mapping
|
510
|
+
# to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
|
511
|
+
# User Guide.*
|
459
512
|
#
|
460
513
|
#
|
461
514
|
#
|
@@ -496,7 +549,7 @@ module Aws::DatabaseMigrationService
|
|
496
549
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
497
550
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
498
551
|
# information about the available settings, see the configuration
|
499
|
-
# properties section in [
|
552
|
+
# properties section in [Using MongoDB as a Target for AWS Database
|
500
553
|
# Migration Service][1] in the *AWS Database Migration Service User
|
501
554
|
# Guide.*
|
502
555
|
#
|
@@ -505,8 +558,8 @@ module Aws::DatabaseMigrationService
|
|
505
558
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
|
506
559
|
#
|
507
560
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
508
|
-
# Settings in JSON format for the target Amazon Kinesis
|
509
|
-
#
|
561
|
+
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
562
|
+
# Data Streams. For information about other available settings, see
|
510
563
|
# [Using Object Mapping to Migrate Data to a Kinesis Data Stream][1] in
|
511
564
|
# the *AWS Database Migration User Guide.*
|
512
565
|
#
|
@@ -514,6 +567,16 @@ module Aws::DatabaseMigrationService
|
|
514
567
|
#
|
515
568
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
|
516
569
|
#
|
570
|
+
# @option params [Types::KafkaSettings] :kafka_settings
|
571
|
+
# Settings in JSON format for the target Apache Kafka endpoint. For
|
572
|
+
# information about other available settings, see [Using Object Mapping
|
573
|
+
# to Migrate Data to Apache Kafka][1] in the *AWS Database Migration
|
574
|
+
# User Guide.*
|
575
|
+
#
|
576
|
+
#
|
577
|
+
#
|
578
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
|
579
|
+
#
|
517
580
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
518
581
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
519
582
|
# more information about the available settings, see [Extra Connection
|
@@ -525,6 +588,7 @@ module Aws::DatabaseMigrationService
|
|
525
588
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
526
589
|
#
|
527
590
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
591
|
+
# Provides information that defines an Amazon Redshift endpoint.
|
528
592
|
#
|
529
593
|
# @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
530
594
|
#
|
@@ -618,6 +682,7 @@ module Aws::DatabaseMigrationService
|
|
618
682
|
# cdc_inserts_only: false,
|
619
683
|
# timestamp_column_name: "String",
|
620
684
|
# parquet_timestamp_in_millisecond: false,
|
685
|
+
# cdc_inserts_and_updates: false,
|
621
686
|
# },
|
622
687
|
# dms_transfer_settings: {
|
623
688
|
# service_access_role_arn: "String",
|
@@ -639,8 +704,17 @@ module Aws::DatabaseMigrationService
|
|
639
704
|
# },
|
640
705
|
# kinesis_settings: {
|
641
706
|
# stream_arn: "String",
|
642
|
-
# message_format: "json", # accepts json
|
707
|
+
# message_format: "json", # accepts json, json-unformatted
|
643
708
|
# service_access_role_arn: "String",
|
709
|
+
# include_transaction_details: false,
|
710
|
+
# include_partition_value: false,
|
711
|
+
# partition_include_schema_table: false,
|
712
|
+
# include_table_alter_operations: false,
|
713
|
+
# include_control_details: false,
|
714
|
+
# },
|
715
|
+
# kafka_settings: {
|
716
|
+
# broker: "String",
|
717
|
+
# topic: "String",
|
644
718
|
# },
|
645
719
|
# elasticsearch_settings: {
|
646
720
|
# service_access_role_arn: "String", # required
|
@@ -717,6 +791,7 @@ module Aws::DatabaseMigrationService
|
|
717
791
|
# resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
|
718
792
|
# resp.endpoint.s3_settings.timestamp_column_name #=> String
|
719
793
|
# resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
794
|
+
# resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
|
720
795
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
721
796
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
722
797
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -732,8 +807,15 @@ module Aws::DatabaseMigrationService
|
|
732
807
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
733
808
|
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
734
809
|
# resp.endpoint.kinesis_settings.stream_arn #=> String
|
735
|
-
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
|
810
|
+
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
736
811
|
# resp.endpoint.kinesis_settings.service_access_role_arn #=> String
|
812
|
+
# resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
|
813
|
+
# resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
|
814
|
+
# resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
|
815
|
+
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
816
|
+
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
817
|
+
# resp.endpoint.kafka_settings.broker #=> String
|
818
|
+
# resp.endpoint.kafka_settings.topic #=> String
|
737
819
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
738
820
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
739
821
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -809,7 +891,7 @@ module Aws::DatabaseMigrationService
|
|
809
891
|
# The type of AWS DMS resource that generates the events. For example,
|
810
892
|
# if you want to be notified of events generated by a replication
|
811
893
|
# instance, you set this parameter to `replication-instance`. If this
|
812
|
-
# value
|
894
|
+
# value isn't specified, all events are returned.
|
813
895
|
#
|
814
896
|
# Valid values: `replication-instance` \| `replication-task`
|
815
897
|
#
|
@@ -906,7 +988,7 @@ module Aws::DatabaseMigrationService
|
|
906
988
|
#
|
907
989
|
# * First character must be a letter.
|
908
990
|
#
|
909
|
-
# *
|
991
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
910
992
|
#
|
911
993
|
# Example: `myrepinstance`
|
912
994
|
#
|
@@ -928,9 +1010,9 @@ module Aws::DatabaseMigrationService
|
|
928
1010
|
# replication instance.
|
929
1011
|
#
|
930
1012
|
# @option params [String] :availability_zone
|
931
|
-
# The
|
932
|
-
#
|
933
|
-
#
|
1013
|
+
# The Availability Zone where the replication instance will be created.
|
1014
|
+
# The default value is a random, system-chosen Availability Zone in the
|
1015
|
+
# endpoint's AWS Region, for example: `us-east-1d`
|
934
1016
|
#
|
935
1017
|
# @option params [String] :replication_subnet_group_identifier
|
936
1018
|
# A subnet group to associate with the replication instance.
|
@@ -950,16 +1032,16 @@ module Aws::DatabaseMigrationService
|
|
950
1032
|
#
|
951
1033
|
# @option params [Boolean] :multi_az
|
952
1034
|
# Specifies whether the replication instance is a Multi-AZ deployment.
|
953
|
-
# You
|
1035
|
+
# You can't set the `AvailabilityZone` parameter if the Multi-AZ
|
954
1036
|
# parameter is set to `true`.
|
955
1037
|
#
|
956
1038
|
# @option params [String] :engine_version
|
957
1039
|
# The engine version number of the replication instance.
|
958
1040
|
#
|
959
1041
|
# @option params [Boolean] :auto_minor_version_upgrade
|
960
|
-
#
|
961
|
-
# to the replication instance during the maintenance
|
962
|
-
# parameter defaults to `true`.
|
1042
|
+
# A value that indicates whether minor engine upgrades are applied
|
1043
|
+
# automatically to the replication instance during the maintenance
|
1044
|
+
# window. This parameter defaults to `true`.
|
963
1045
|
#
|
964
1046
|
# Default: `true`
|
965
1047
|
#
|
@@ -1615,6 +1697,7 @@ module Aws::DatabaseMigrationService
|
|
1615
1697
|
# resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
|
1616
1698
|
# resp.endpoint.s3_settings.timestamp_column_name #=> String
|
1617
1699
|
# resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
1700
|
+
# resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
|
1618
1701
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
1619
1702
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
1620
1703
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -1630,8 +1713,15 @@ module Aws::DatabaseMigrationService
|
|
1630
1713
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
1631
1714
|
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
1632
1715
|
# resp.endpoint.kinesis_settings.stream_arn #=> String
|
1633
|
-
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
|
1716
|
+
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
1634
1717
|
# resp.endpoint.kinesis_settings.service_access_role_arn #=> String
|
1718
|
+
# resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
|
1719
|
+
# resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
|
1720
|
+
# resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
|
1721
|
+
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
1722
|
+
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
1723
|
+
# resp.endpoint.kafka_settings.broker #=> String
|
1724
|
+
# resp.endpoint.kafka_settings.topic #=> String
|
1635
1725
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
1636
1726
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1637
1727
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -2038,7 +2128,7 @@ module Aws::DatabaseMigrationService
|
|
2038
2128
|
# @option params [String] :marker
|
2039
2129
|
# An optional pagination token provided by a previous request. If this
|
2040
2130
|
# parameter is specified, the response includes only records beyond the
|
2041
|
-
# marker, up to the
|
2131
|
+
# marker, up to the value specified by `MaxRecords`.
|
2042
2132
|
#
|
2043
2133
|
# @return [Types::DescribeCertificatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2044
2134
|
#
|
@@ -2398,6 +2488,7 @@ module Aws::DatabaseMigrationService
|
|
2398
2488
|
# resp.endpoints[0].s3_settings.cdc_inserts_only #=> Boolean
|
2399
2489
|
# resp.endpoints[0].s3_settings.timestamp_column_name #=> String
|
2400
2490
|
# resp.endpoints[0].s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
2491
|
+
# resp.endpoints[0].s3_settings.cdc_inserts_and_updates #=> Boolean
|
2401
2492
|
# resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
|
2402
2493
|
# resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
|
2403
2494
|
# resp.endpoints[0].mongo_db_settings.username #=> String
|
@@ -2413,8 +2504,15 @@ module Aws::DatabaseMigrationService
|
|
2413
2504
|
# resp.endpoints[0].mongo_db_settings.auth_source #=> String
|
2414
2505
|
# resp.endpoints[0].mongo_db_settings.kms_key_id #=> String
|
2415
2506
|
# resp.endpoints[0].kinesis_settings.stream_arn #=> String
|
2416
|
-
# resp.endpoints[0].kinesis_settings.message_format #=> String, one of "json"
|
2507
|
+
# resp.endpoints[0].kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
2417
2508
|
# resp.endpoints[0].kinesis_settings.service_access_role_arn #=> String
|
2509
|
+
# resp.endpoints[0].kinesis_settings.include_transaction_details #=> Boolean
|
2510
|
+
# resp.endpoints[0].kinesis_settings.include_partition_value #=> Boolean
|
2511
|
+
# resp.endpoints[0].kinesis_settings.partition_include_schema_table #=> Boolean
|
2512
|
+
# resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
|
2513
|
+
# resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
|
2514
|
+
# resp.endpoints[0].kafka_settings.broker #=> String
|
2515
|
+
# resp.endpoints[0].kafka_settings.topic #=> String
|
2418
2516
|
# resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
|
2419
2517
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
2420
2518
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -3111,9 +3209,9 @@ module Aws::DatabaseMigrationService
|
|
3111
3209
|
# returns the latest results.
|
3112
3210
|
#
|
3113
3211
|
# @option params [String] :replication_task_arn
|
3114
|
-
#
|
3115
|
-
# task. When this input parameter is specified the API
|
3116
|
-
#
|
3212
|
+
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
3213
|
+
# task. When this input parameter is specified, the API returns only one
|
3214
|
+
# result and ignore the values of the `MaxRecords` and `Marker`
|
3117
3215
|
# parameters.
|
3118
3216
|
#
|
3119
3217
|
# @option params [Integer] :max_records
|
@@ -3435,6 +3533,9 @@ module Aws::DatabaseMigrationService
|
|
3435
3533
|
# resp.table_statistics[0].full_load_rows #=> Integer
|
3436
3534
|
# resp.table_statistics[0].full_load_condtnl_chk_failed_rows #=> Integer
|
3437
3535
|
# resp.table_statistics[0].full_load_error_rows #=> Integer
|
3536
|
+
# resp.table_statistics[0].full_load_start_time #=> Time
|
3537
|
+
# resp.table_statistics[0].full_load_end_time #=> Time
|
3538
|
+
# resp.table_statistics[0].full_load_reloaded #=> Boolean
|
3438
3539
|
# resp.table_statistics[0].last_update_time #=> Time
|
3439
3540
|
# resp.table_statistics[0].table_state #=> String
|
3440
3541
|
# resp.table_statistics[0].validation_pending_records #=> Integer
|
@@ -3457,8 +3558,9 @@ module Aws::DatabaseMigrationService
|
|
3457
3558
|
#
|
3458
3559
|
# @option params [required, String] :certificate_identifier
|
3459
3560
|
# A customer-assigned name for the certificate. Identifiers must begin
|
3460
|
-
# with a letter
|
3461
|
-
#
|
3561
|
+
# with a letter and must contain only ASCII letters, digits, and
|
3562
|
+
# hyphens. They can't end with a hyphen or contain two consecutive
|
3563
|
+
# hyphens.
|
3462
3564
|
#
|
3463
3565
|
# @option params [String] :certificate_pem
|
3464
3566
|
# The contents of a `.pem` file, which contains an X.509 certificate.
|
@@ -3579,18 +3681,20 @@ module Aws::DatabaseMigrationService
|
|
3579
3681
|
# endpoint.
|
3580
3682
|
#
|
3581
3683
|
# @option params [String] :endpoint_identifier
|
3582
|
-
# The database endpoint identifier. Identifiers must begin with a
|
3583
|
-
#
|
3584
|
-
#
|
3684
|
+
# The database endpoint identifier. Identifiers must begin with a letter
|
3685
|
+
# and must contain only ASCII letters, digits, and hyphens. They can't
|
3686
|
+
# end with a hyphen or contain two consecutive hyphens.
|
3585
3687
|
#
|
3586
3688
|
# @option params [String] :endpoint_type
|
3587
3689
|
# The type of endpoint. Valid values are `source` and `target`.
|
3588
3690
|
#
|
3589
3691
|
# @option params [String] :engine_name
|
3590
3692
|
# The type of engine for the endpoint. Valid values, depending on the
|
3591
|
-
# EndpointType, include mysql
|
3592
|
-
# aurora-postgresql
|
3593
|
-
#
|
3693
|
+
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
3694
|
+
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
|
3695
|
+
# `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
|
3696
|
+
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
|
3697
|
+
# `"sqlserver"`.
|
3594
3698
|
#
|
3595
3699
|
# @option params [String] :username
|
3596
3700
|
# The user name to be used to login to the endpoint database.
|
@@ -3628,9 +3732,9 @@ module Aws::DatabaseMigrationService
|
|
3628
3732
|
#
|
3629
3733
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
3630
3734
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
3631
|
-
#
|
3632
|
-
#
|
3633
|
-
#
|
3735
|
+
# information about other available settings, see [Using Object Mapping
|
3736
|
+
# to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
|
3737
|
+
# User Guide.*
|
3634
3738
|
#
|
3635
3739
|
#
|
3636
3740
|
#
|
@@ -3652,22 +3756,22 @@ module Aws::DatabaseMigrationService
|
|
3652
3756
|
#
|
3653
3757
|
# Attributes include the following:
|
3654
3758
|
#
|
3655
|
-
# * serviceAccessRoleArn - The
|
3656
|
-
# the Amazon S3 bucket.
|
3759
|
+
# * serviceAccessRoleArn - The AWS Identity and Access Management (IAM)
|
3760
|
+
# role that has permission to access the Amazon S3 bucket.
|
3657
3761
|
#
|
3658
3762
|
# * BucketName - The name of the S3 bucket to use.
|
3659
3763
|
#
|
3660
3764
|
# * compressionType - An optional parameter to use GZIP to compress the
|
3661
|
-
# target files.
|
3662
|
-
# files uncompressed.
|
3765
|
+
# target files. Either set this parameter to NONE (the default) or
|
3766
|
+
# don't use it to leave the files uncompressed.
|
3663
3767
|
#
|
3664
|
-
# Shorthand syntax:
|
3665
|
-
#
|
3666
|
-
#
|
3667
|
-
# JSON syntax:
|
3768
|
+
# Shorthand syntax for these settings is as follows:
|
3769
|
+
# `ServiceAccessRoleArn=string
|
3770
|
+
# ,BucketName=string,CompressionType=string`
|
3668
3771
|
#
|
3669
|
-
#
|
3670
|
-
# "
|
3772
|
+
# JSON syntax for these settings is as follows: `\{
|
3773
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string",
|
3774
|
+
# "CompressionType": "none"|"gzip" \} `
|
3671
3775
|
#
|
3672
3776
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
3673
3777
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
@@ -3681,8 +3785,8 @@ module Aws::DatabaseMigrationService
|
|
3681
3785
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
|
3682
3786
|
#
|
3683
3787
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
3684
|
-
# Settings in JSON format for the target Amazon Kinesis
|
3685
|
-
#
|
3788
|
+
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
3789
|
+
# Data Streams. For information about other available settings, see
|
3686
3790
|
# [Using Object Mapping to Migrate Data to a Kinesis Data Stream][1] in
|
3687
3791
|
# the *AWS Database Migration User Guide.*
|
3688
3792
|
#
|
@@ -3690,6 +3794,16 @@ module Aws::DatabaseMigrationService
|
|
3690
3794
|
#
|
3691
3795
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
|
3692
3796
|
#
|
3797
|
+
# @option params [Types::KafkaSettings] :kafka_settings
|
3798
|
+
# Settings in JSON format for the target Apache Kafka endpoint. For
|
3799
|
+
# information about other available settings, see [Using Object Mapping
|
3800
|
+
# to Migrate Data to Apache Kafka][1] in the *AWS Database Migration
|
3801
|
+
# User Guide.*
|
3802
|
+
#
|
3803
|
+
#
|
3804
|
+
#
|
3805
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
|
3806
|
+
#
|
3693
3807
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
3694
3808
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
3695
3809
|
# more information about the available settings, see [Extra Connection
|
@@ -3701,6 +3815,7 @@ module Aws::DatabaseMigrationService
|
|
3701
3815
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
3702
3816
|
#
|
3703
3817
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
3818
|
+
# Provides information that defines an Amazon Redshift endpoint.
|
3704
3819
|
#
|
3705
3820
|
# @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3706
3821
|
#
|
@@ -3773,6 +3888,7 @@ module Aws::DatabaseMigrationService
|
|
3773
3888
|
# cdc_inserts_only: false,
|
3774
3889
|
# timestamp_column_name: "String",
|
3775
3890
|
# parquet_timestamp_in_millisecond: false,
|
3891
|
+
# cdc_inserts_and_updates: false,
|
3776
3892
|
# },
|
3777
3893
|
# dms_transfer_settings: {
|
3778
3894
|
# service_access_role_arn: "String",
|
@@ -3794,8 +3910,17 @@ module Aws::DatabaseMigrationService
|
|
3794
3910
|
# },
|
3795
3911
|
# kinesis_settings: {
|
3796
3912
|
# stream_arn: "String",
|
3797
|
-
# message_format: "json", # accepts json
|
3913
|
+
# message_format: "json", # accepts json, json-unformatted
|
3798
3914
|
# service_access_role_arn: "String",
|
3915
|
+
# include_transaction_details: false,
|
3916
|
+
# include_partition_value: false,
|
3917
|
+
# partition_include_schema_table: false,
|
3918
|
+
# include_table_alter_operations: false,
|
3919
|
+
# include_control_details: false,
|
3920
|
+
# },
|
3921
|
+
# kafka_settings: {
|
3922
|
+
# broker: "String",
|
3923
|
+
# topic: "String",
|
3799
3924
|
# },
|
3800
3925
|
# elasticsearch_settings: {
|
3801
3926
|
# service_access_role_arn: "String", # required
|
@@ -3872,6 +3997,7 @@ module Aws::DatabaseMigrationService
|
|
3872
3997
|
# resp.endpoint.s3_settings.cdc_inserts_only #=> Boolean
|
3873
3998
|
# resp.endpoint.s3_settings.timestamp_column_name #=> String
|
3874
3999
|
# resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
|
4000
|
+
# resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
|
3875
4001
|
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
3876
4002
|
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
3877
4003
|
# resp.endpoint.mongo_db_settings.username #=> String
|
@@ -3887,8 +4013,15 @@ module Aws::DatabaseMigrationService
|
|
3887
4013
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
3888
4014
|
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
3889
4015
|
# resp.endpoint.kinesis_settings.stream_arn #=> String
|
3890
|
-
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
|
4016
|
+
# resp.endpoint.kinesis_settings.message_format #=> String, one of "json", "json-unformatted"
|
3891
4017
|
# resp.endpoint.kinesis_settings.service_access_role_arn #=> String
|
4018
|
+
# resp.endpoint.kinesis_settings.include_transaction_details #=> Boolean
|
4019
|
+
# resp.endpoint.kinesis_settings.include_partition_value #=> Boolean
|
4020
|
+
# resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
|
4021
|
+
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
4022
|
+
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
4023
|
+
# resp.endpoint.kafka_settings.broker #=> String
|
4024
|
+
# resp.endpoint.kafka_settings.topic #=> String
|
3892
4025
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
3893
4026
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
3894
4027
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -4038,7 +4171,7 @@ module Aws::DatabaseMigrationService
|
|
4038
4171
|
#
|
4039
4172
|
# @option params [Boolean] :multi_az
|
4040
4173
|
# Specifies whether the replication instance is a Multi-AZ deployment.
|
4041
|
-
# You
|
4174
|
+
# You can't set the `AvailabilityZone` parameter if the Multi-AZ
|
4042
4175
|
# parameter is set to `true`.
|
4043
4176
|
#
|
4044
4177
|
# @option params [String] :engine_version
|
@@ -4054,13 +4187,19 @@ module Aws::DatabaseMigrationService
|
|
4054
4187
|
# replication instance's current version.
|
4055
4188
|
#
|
4056
4189
|
# @option params [Boolean] :auto_minor_version_upgrade
|
4057
|
-
#
|
4058
|
-
# the replication instance during the maintenance
|
4059
|
-
# parameter
|
4060
|
-
#
|
4061
|
-
#
|
4062
|
-
#
|
4063
|
-
#
|
4190
|
+
# A value that indicates that minor version upgrades are applied
|
4191
|
+
# automatically to the replication instance during the maintenance
|
4192
|
+
# window. Changing this parameter doesn't result in an outage, except
|
4193
|
+
# in the case dsecribed following. The change is asynchronously applied
|
4194
|
+
# as soon as possible.
|
4195
|
+
#
|
4196
|
+
# An outage does result if these factors apply:
|
4197
|
+
#
|
4198
|
+
# * This parameter is set to `true` during the maintenance window.
|
4199
|
+
#
|
4200
|
+
# * A newer minor version is available.
|
4201
|
+
#
|
4202
|
+
# * AWS DMS has enabled automatic patching for the given engine version.
|
4064
4203
|
#
|
4065
4204
|
# @option params [String] :replication_instance_identifier
|
4066
4205
|
# The replication instance identifier. This parameter is stored as a
|
@@ -4972,7 +5111,7 @@ module Aws::DatabaseMigrationService
|
|
4972
5111
|
params: params,
|
4973
5112
|
config: config)
|
4974
5113
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
4975
|
-
context[:gem_version] = '1.
|
5114
|
+
context[:gem_version] = '1.31.0'
|
4976
5115
|
Seahorse::Client::Request.new(handlers, context)
|
4977
5116
|
end
|
4978
5117
|
|