aws-sdk-databasemigrationservice 1.13.0 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 752eec0a788f1d103fd477c123fafe8251f9d704
4
- data.tar.gz: 6e8f4e7b5271c8b220c3004d2e5f4ef5f6ffda37
3
+ metadata.gz: c5e25920a3e6b569fdc13db88dfff9a9be6680c6
4
+ data.tar.gz: 6321a37123a8413bec8b0b8553ec477520b0cf13
5
5
  SHA512:
6
- metadata.gz: b0a21ae761f149967db0dcb2f46c9bb4a0fc0c4fd1f3abeab0507bb2ae1df7e63e09db1837e67642319f05621c9db0334f38f66f046952d29352d07755653631
7
- data.tar.gz: 8ab789d6ecaa8fc72bb4a4596948035132ecd171740a56c07b81eda5fa9d172a7c3b50669891061423aa7b64b4f84d14a239366d506429b9427b41045fd0512d
6
+ metadata.gz: 20b1b16416fb7d6a046a896f67337a25f42d87a4d7b86be7fa0d5628c4a8a83d0243a8d5615269260570301ff7d75652a3a03a50fd9a7a69f1b52544f43b2585
7
+ data.tar.gz: eb1f8fc6cae53891e1c0c3959ca279e86626d17611f2c7efaeb37aea3bea29e846dbf0b2a7644b060792347224ed429fa668738c12350953c930b979c212b57c
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
43
43
  # @service
44
44
  module Aws::DatabaseMigrationService
45
45
 
46
- GEM_VERSION = '1.13.0'
46
+ GEM_VERSION = '1.14.0'
47
47
 
48
48
  end
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
15
15
  require 'aws-sdk-core/plugins/retry_errors.rb'
16
16
  require 'aws-sdk-core/plugins/global_configuration.rb'
17
17
  require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
+ require 'aws-sdk-core/plugins/endpoint_discovery.rb'
18
19
  require 'aws-sdk-core/plugins/response_paging.rb'
19
20
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
21
  require 'aws-sdk-core/plugins/idempotency_token.rb'
@@ -45,6 +46,7 @@ module Aws::DatabaseMigrationService
45
46
  add_plugin(Aws::Plugins::RetryErrors)
46
47
  add_plugin(Aws::Plugins::GlobalConfiguration)
47
48
  add_plugin(Aws::Plugins::RegionalEndpoint)
49
+ add_plugin(Aws::Plugins::EndpointDiscovery)
48
50
  add_plugin(Aws::Plugins::ResponsePaging)
49
51
  add_plugin(Aws::Plugins::StubResponses)
50
52
  add_plugin(Aws::Plugins::IdempotencyToken)
@@ -98,6 +100,10 @@ module Aws::DatabaseMigrationService
98
100
  #
99
101
  # @option options [String] :access_key_id
100
102
  #
103
+ # @option options [Boolean] :active_endpoint_cache (false)
104
+ # When set to `true`, a thread polling for endpoints will be running in
105
+ # the background every 60 secs (default). Defaults to `false`.
106
+ #
101
107
  # @option options [Boolean] :client_side_monitoring (false)
102
108
  # When `true`, client-side metrics will be collected for all API requests from
103
109
  # this client.
@@ -123,6 +129,21 @@ module Aws::DatabaseMigrationService
123
129
  # option. You should only configure an `:endpoint` when connecting
124
130
  # to test endpoints. This should be avalid HTTP(S) URI.
125
131
  #
132
+ # @option options [Integer] :endpoint_cache_max_entries (1000)
133
+ # Used for the maximum size limit of the LRU cache storing endpoints data
134
+ # for endpoint discovery enabled operations. Defaults to 1000.
135
+ #
136
+ # @option options [Integer] :endpoint_cache_max_threads (10)
137
+ # Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
138
+ #
139
+ # @option options [Integer] :endpoint_cache_poll_interval (60)
140
+ # When :endpoint_discovery and :active_endpoint_cache is enabled,
141
+ # Use this option to config the time interval in seconds for making
142
+ # requests fetching endpoints information. Defaults to 60 sec.
143
+ #
144
+ # @option options [Boolean] :endpoint_discovery (false)
145
+ # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
146
+ #
126
147
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
127
148
  # The log formatter.
128
149
  #
@@ -258,15 +279,15 @@ module Aws::DatabaseMigrationService
258
279
  #
259
280
  # @option params [required, String] :engine_name
260
281
  # The type of engine for the endpoint. Valid values, depending on the
261
- # EndPointType, include mysql, oracle, postgres, mariadb, aurora,
262
- # aurora-postgresql, redshift, s3, db2, azuredb, sybase, dynamodb,
263
- # mongodb, and sqlserver.
282
+ # `EndPointType` value, include `mysql`, `oracle`, `postgres`,
283
+ # `mariadb`, `aurora`, `aurora-postgresql`, `redshift`, `s3`, `db2`,
284
+ # `azuredb`, `sybase`, `dynamodb`, `mongodb`, and `sqlserver`.
264
285
  #
265
286
  # @option params [String] :username
266
- # The user name to be used to login to the endpoint database.
287
+ # The user name to be used to log in to the endpoint database.
267
288
  #
268
289
  # @option params [String] :password
269
- # The password to be used to login to the endpoint database.
290
+ # The password to be used to log in to the endpoint database.
270
291
  #
271
292
  # @option params [String] :server_name
272
293
  # The name of the server where the endpoint database resides.
@@ -281,11 +302,11 @@ module Aws::DatabaseMigrationService
281
302
  # Additional attributes associated with the connection.
282
303
  #
283
304
  # @option params [String] :kms_key_id
284
- # The KMS key identifier that will be used to encrypt the connection
285
- # parameters. If you do not specify a value for the KmsKeyId parameter,
286
- # then AWS DMS will use your default encryption key. AWS KMS creates the
287
- # default encryption key for your AWS account. Your AWS account has a
288
- # different default encryption key for each AWS region.
305
+ # The AWS KMS key identifier to use to encrypt the connection
306
+ # parameters. If you don't specify a value for the `KmsKeyId`
307
+ # parameter, then AWS DMS uses your default encryption key. AWS KMS
308
+ # creates the default encryption key for your AWS account. Your AWS
309
+ # account has a different default encryption key for each AWS Region.
289
310
  #
290
311
  # @option params [Array<Types::Tag>] :tags
291
312
  # Tags to be added to the endpoint.
@@ -294,25 +315,22 @@ module Aws::DatabaseMigrationService
294
315
  # The Amazon Resource Name (ARN) for the certificate.
295
316
  #
296
317
  # @option params [String] :ssl_mode
297
- # The SSL mode to use for the SSL connection.
298
- #
299
- # SSL mode can be one of four values: none, require, verify-ca,
300
- # verify-full.
301
- #
302
- # The default value is none.
318
+ # The Secure Sockets Layer (SSL) mode to use for the SSL connection. The
319
+ # SSL mode can be one of four values: `none`, `require`, `verify-ca`,
320
+ # `verify-full`. The default value is `none`.
303
321
  #
304
322
  # @option params [String] :service_access_role_arn
305
- # The Amazon Resource Name (ARN) for the service access role you want to
306
- # use to create the endpoint.
323
+ # The Amazon Resource Name (ARN) for the service access role that you
324
+ # want to use to create the endpoint.
307
325
  #
308
326
  # @option params [String] :external_table_definition
309
327
  # The external table definition.
310
328
  #
311
329
  # @option params [Types::DynamoDbSettings] :dynamo_db_settings
312
330
  # Settings in JSON format for the target Amazon DynamoDB endpoint. For
313
- # more information about the available settings, see the **Using Object
314
- # Mapping to Migrate Data to DynamoDB** section at [ Using an Amazon
315
- # DynamoDB Database as a Target for AWS Database Migration Service][1].
331
+ # more information about the available settings, see [Using Object
332
+ # Mapping to Migrate Data to DynamoDB][1] in the *AWS Database Migration
333
+ # Service User Guide.*
316
334
  #
317
335
  #
318
336
  #
@@ -320,47 +338,67 @@ module Aws::DatabaseMigrationService
320
338
  #
321
339
  # @option params [Types::S3Settings] :s3_settings
322
340
  # Settings in JSON format for the target Amazon S3 endpoint. For more
323
- # information about the available settings, see the **Extra Connection
324
- # Attributes** section at [ Using Amazon S3 as a Target for AWS Database
325
- # Migration Service][1].
341
+ # information about the available settings, see [Extra Connection
342
+ # Attributes When Using Amazon S3 as a Target for AWS DMS][1] in the
343
+ # *AWS Database Migration Service User Guide.*
326
344
  #
327
345
  #
328
346
  #
329
- # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html
347
+ # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring
330
348
  #
331
349
  # @option params [Types::DmsTransferSettings] :dms_transfer_settings
332
- # The settings in JSON format for the DMS Transfer type source endpoint.
350
+ # The settings in JSON format for the DMS transfer type of source
351
+ # endpoint.
333
352
  #
334
- # Attributes include:
353
+ # Possible attributes include the following:
335
354
  #
336
- # * serviceAccessRoleArn - The IAM role that has permission to access
355
+ # * `serviceAccessRoleArn` - The IAM role that has permission to access
337
356
  # the Amazon S3 bucket.
338
357
  #
339
- # * bucketName - The name of the S3 bucket to use.
358
+ # * `bucketName` - The name of the S3 bucket to use.
340
359
  #
341
- # * compressionType - An optional parameter to use GZIP to compress the
342
- # target files. Set to NONE (the default) or do not use to leave the
343
- # files uncompressed.
360
+ # * `compressionType` - An optional parameter to use GZIP to compress
361
+ # the target files. To use GZIP, set this value to `NONE` (the
362
+ # default). To keep the files uncompressed, don't use this value.
344
363
  #
345
- # Shorthand syntax: ServiceAccessRoleArn=string
346
- # ,BucketName=string,CompressionType=string
347
- #
348
- # JSON syntax:
364
+ # Shorthand syntax for these attributes is as follows:
365
+ # `ServiceAccessRoleArn=string,BucketName=string,CompressionType=string`
349
366
  #
350
- # \\\{ "ServiceAccessRoleArn": "string", "BucketName": "string",
351
- # "CompressionType": "none"\|"gzip" \\}
367
+ # JSON syntax for these attributes is as follows: `\{
368
+ # "ServiceAccessRoleArn": "string", "BucketName": "string",
369
+ # "CompressionType": "none"|"gzip" \} `
352
370
  #
353
371
  # @option params [Types::MongoDbSettings] :mongo_db_settings
354
372
  # Settings in JSON format for the source MongoDB endpoint. For more
355
- # information about the available settings, see the **Configuration
356
- # Properties When Using MongoDB as a Source for AWS Database Migration
357
- # Service** section at [ Using MongoDB as a Target for AWS Database
358
- # Migration Service][1].
373
+ # information about the available settings, see the configuration
374
+ # properties section in [ Using MongoDB as a Target for AWS Database
375
+ # Migration Service][1] in the *AWS Database Migration Service User
376
+ # Guide.*
359
377
  #
360
378
  #
361
379
  #
362
380
  # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
363
381
  #
382
+ # @option params [Types::KinesisSettings] :kinesis_settings
383
+ # Settings in JSON format for the target Amazon Kinesis Data Streams
384
+ # endpoint. For more information about the available settings, see
385
+ # [Using Object Mapping to Migrate Data to a Kinesis Data Stream][1] in
386
+ # the *AWS Database Migration User Guide.*
387
+ #
388
+ #
389
+ #
390
+ # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
391
+ #
392
+ # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
393
+ # Settings in JSON format for the target Elasticsearch endpoint. For
394
+ # more information about the available settings, see [Extra Connection
395
+ # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
396
+ # *AWS Database Migration User Guide.*
397
+ #
398
+ #
399
+ #
400
+ # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
401
+ #
364
402
  # @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
365
403
  #
366
404
  # * {Types::CreateEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -459,6 +497,17 @@ module Aws::DatabaseMigrationService
459
497
  # auth_source: "String",
460
498
  # kms_key_id: "String",
461
499
  # },
500
+ # kinesis_settings: {
501
+ # stream_arn: "String",
502
+ # message_format: "json", # accepts json
503
+ # service_access_role_arn: "String",
504
+ # },
505
+ # elasticsearch_settings: {
506
+ # service_access_role_arn: "String", # required
507
+ # endpoint_uri: "String", # required
508
+ # full_load_error_percentage: 1,
509
+ # error_retry_duration: 1,
510
+ # },
462
511
  # })
463
512
  #
464
513
  # @example Response structure
@@ -502,6 +551,13 @@ module Aws::DatabaseMigrationService
502
551
  # resp.endpoint.mongo_db_settings.docs_to_investigate #=> String
503
552
  # resp.endpoint.mongo_db_settings.auth_source #=> String
504
553
  # resp.endpoint.mongo_db_settings.kms_key_id #=> String
554
+ # resp.endpoint.kinesis_settings.stream_arn #=> String
555
+ # resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
556
+ # resp.endpoint.kinesis_settings.service_access_role_arn #=> String
557
+ # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
558
+ # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
559
+ # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
560
+ # resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
505
561
  #
506
562
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
507
563
  #
@@ -527,9 +583,9 @@ module Aws::DatabaseMigrationService
527
583
  # `SourceType` nor `SourceIdentifier`, you will be notified of events
528
584
  # generated from all AWS DMS sources belonging to your customer account.
529
585
  #
530
- # For more information about AWS DMS events, see [ Working with Events
531
- # and Notifications ][1] in the AWS Database MIgration Service User
532
- # Guide.
586
+ # For more information about AWS DMS events, see [Working with Events
587
+ # and Notifications][1] in the *AWS Database Migration Service User
588
+ # Guide.*
533
589
  #
534
590
  #
535
591
  #
@@ -556,9 +612,9 @@ module Aws::DatabaseMigrationService
556
612
  # @option params [Array<String>] :event_categories
557
613
  # A list of event categories for a source type that you want to
558
614
  # subscribe to. You can see a list of the categories for a given source
559
- # type by calling the **DescribeEventCategories** action or in the topic
560
- # [ Working with Events and Notifications][1] in the AWS Database
561
- # Migration Service User Guide.
615
+ # type by calling the `DescribeEventCategories` action or in the topic
616
+ # [Working with Events and Notifications][1] in the *AWS Database
617
+ # Migration Service User Guide.*
562
618
  #
563
619
  #
564
620
  #
@@ -572,8 +628,8 @@ module Aws::DatabaseMigrationService
572
628
  # contain two consecutive hyphens.
573
629
  #
574
630
  # @option params [Boolean] :enabled
575
- # A Boolean value; set to **true** to activate the subscription, or set
576
- # to **false** to create the subscription but not activate it.
631
+ # A Boolean value; set to `true` to activate the subscription, or set to
632
+ # `false` to create the subscription but not activate it.
577
633
  #
578
634
  # @option params [Array<Types::Tag>] :tags
579
635
  # A tag to be attached to the event subscription.
@@ -698,11 +754,11 @@ module Aws::DatabaseMigrationService
698
754
  # Tags to be associated with the replication instance.
699
755
  #
700
756
  # @option params [String] :kms_key_id
701
- # The KMS key identifier that will be used to encrypt the content on the
702
- # replication instance. If you do not specify a value for the KmsKeyId
703
- # parameter, then AWS DMS will use your default encryption key. AWS KMS
757
+ # The AWS KMS key identifier that is used to encrypt the content on the
758
+ # replication instance. If you don't specify a value for the `KmsKeyId`
759
+ # parameter, then AWS DMS uses your default encryption key. AWS KMS
704
760
  # creates the default encryption key for your AWS account. Your AWS
705
- # account has a different default encryption key for each AWS region.
761
+ # account has a different default encryption key for each AWS Region.
706
762
  #
707
763
  # @option params [Boolean] :publicly_accessible
708
764
  # Specifies the accessibility options for the replication instance. A
@@ -710,6 +766,9 @@ module Aws::DatabaseMigrationService
710
766
  # value of `false` represents an instance with a private IP address. The
711
767
  # default value is `true`.
712
768
  #
769
+ # @option params [String] :dns_name_servers
770
+ # A list of DNS name servers supported for the replication instance.
771
+ #
713
772
  # @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
714
773
  #
715
774
  # * {Types::CreateReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
@@ -816,6 +875,7 @@ module Aws::DatabaseMigrationService
816
875
  # ],
817
876
  # kms_key_id: "String",
818
877
  # publicly_accessible: false,
878
+ # dns_name_servers: "String",
819
879
  # })
820
880
  #
821
881
  # @example Response structure
@@ -856,6 +916,7 @@ module Aws::DatabaseMigrationService
856
916
  # resp.replication_instance.publicly_accessible #=> Boolean
857
917
  # resp.replication_instance.secondary_availability_zone #=> String
858
918
  # resp.replication_instance.free_until #=> Time
919
+ # resp.replication_instance.dns_name_servers #=> String
859
920
  #
860
921
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstance AWS API Documentation
861
922
  #
@@ -989,7 +1050,8 @@ module Aws::DatabaseMigrationService
989
1050
  # @option params [String] :replication_task_settings
990
1051
  # Settings for the task, such as target metadata settings. For a
991
1052
  # complete list of task settings, see [Task Settings for AWS Database
992
- # Migration Service Tasks][1].
1053
+ # Migration Service Tasks][1] in the *AWS Database Migration User
1054
+ # Guide.*
993
1055
  #
994
1056
  #
995
1057
  #
@@ -1266,6 +1328,13 @@ module Aws::DatabaseMigrationService
1266
1328
  # resp.endpoint.mongo_db_settings.docs_to_investigate #=> String
1267
1329
  # resp.endpoint.mongo_db_settings.auth_source #=> String
1268
1330
  # resp.endpoint.mongo_db_settings.kms_key_id #=> String
1331
+ # resp.endpoint.kinesis_settings.stream_arn #=> String
1332
+ # resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
1333
+ # resp.endpoint.kinesis_settings.service_access_role_arn #=> String
1334
+ # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1335
+ # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1336
+ # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
1337
+ # resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
1269
1338
  #
1270
1339
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
1271
1340
  #
@@ -1437,6 +1506,7 @@ module Aws::DatabaseMigrationService
1437
1506
  # resp.replication_instance.publicly_accessible #=> Boolean
1438
1507
  # resp.replication_instance.secondary_availability_zone #=> String
1439
1508
  # resp.replication_instance.free_until #=> Time
1509
+ # resp.replication_instance.dns_name_servers #=> String
1440
1510
  #
1441
1511
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationInstance AWS API Documentation
1442
1512
  #
@@ -1993,6 +2063,13 @@ module Aws::DatabaseMigrationService
1993
2063
  # resp.endpoints[0].mongo_db_settings.docs_to_investigate #=> String
1994
2064
  # resp.endpoints[0].mongo_db_settings.auth_source #=> String
1995
2065
  # resp.endpoints[0].mongo_db_settings.kms_key_id #=> String
2066
+ # resp.endpoints[0].kinesis_settings.stream_arn #=> String
2067
+ # resp.endpoints[0].kinesis_settings.message_format #=> String, one of "json"
2068
+ # resp.endpoints[0].kinesis_settings.service_access_role_arn #=> String
2069
+ # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
2070
+ # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
2071
+ # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
2072
+ # resp.endpoints[0].elasticsearch_settings.error_retry_duration #=> Integer
1996
2073
  #
1997
2074
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints AWS API Documentation
1998
2075
  #
@@ -2005,8 +2082,8 @@ module Aws::DatabaseMigrationService
2005
2082
 
2006
2083
  # Lists categories for all event source types, or, if specified, for a
2007
2084
  # specified source type. You can see a list of the event categories and
2008
- # source types in [ Working with Events and Notifications ][1] in the
2009
- # AWS Database Migration Service User Guide.
2085
+ # source types in [Working with Events and Notifications][1] in the *AWS
2086
+ # Database Migration Service User Guide.*
2010
2087
  #
2011
2088
  #
2012
2089
  #
@@ -2127,7 +2204,8 @@ module Aws::DatabaseMigrationService
2127
2204
 
2128
2205
  # Lists events for a given source identifier and source type. You can
2129
2206
  # also specify a start and end time. For more information on AWS DMS
2130
- # events, see [ Working with Events and Notifications ][1].
2207
+ # events, see [Working with Events and Notifications][1] in the *AWS
2208
+ # Database Migration User Guide.*
2131
2209
  #
2132
2210
  #
2133
2211
  #
@@ -2495,6 +2573,7 @@ module Aws::DatabaseMigrationService
2495
2573
  # resp.replication_instances[0].publicly_accessible #=> Boolean
2496
2574
  # resp.replication_instances[0].secondary_availability_zone #=> String
2497
2575
  # resp.replication_instances[0].free_until #=> Time
2576
+ # resp.replication_instances[0].dns_name_servers #=> String
2498
2577
  #
2499
2578
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances AWS API Documentation
2500
2579
  #
@@ -3104,28 +3183,29 @@ module Aws::DatabaseMigrationService
3104
3183
  #
3105
3184
  # @option params [Types::DynamoDbSettings] :dynamo_db_settings
3106
3185
  # Settings in JSON format for the target Amazon DynamoDB endpoint. For
3107
- # more information about the available settings, see the **Using Object
3108
- # Mapping to Migrate Data to DynamoDB** section at [ Using an Amazon
3109
- # DynamoDB Database as a Target for AWS Database Migration Service][1].
3186
+ # more information about the available settings, see [Using Object
3187
+ # Mapping to Migrate Data to DynamoDB][1] in the *AWS Database Migration
3188
+ # Service User Guide.*
3110
3189
  #
3111
3190
  #
3112
3191
  #
3113
3192
  # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html
3114
3193
  #
3115
3194
  # @option params [Types::S3Settings] :s3_settings
3116
- # Settings in JSON format for the target S3 endpoint. For more
3117
- # information about the available settings, see the **Extra Connection
3118
- # Attributes** section at [ Using Amazon S3 as a Target for AWS Database
3119
- # Migration Service][1].
3195
+ # Settings in JSON format for the target Amazon S3 endpoint. For more
3196
+ # information about the available settings, see [Extra Connection
3197
+ # Attributes When Using Amazon S3 as a Target for AWS DMS][1] in the
3198
+ # *AWS Database Migration Service User Guide.*
3120
3199
  #
3121
3200
  #
3122
3201
  #
3123
- # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html
3202
+ # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring
3124
3203
  #
3125
3204
  # @option params [Types::DmsTransferSettings] :dms_transfer_settings
3126
- # The settings in JSON format for the DMS Transfer type source endpoint.
3205
+ # The settings in JSON format for the DMS transfer type of source
3206
+ # endpoint.
3127
3207
  #
3128
- # Attributes include:
3208
+ # Attributes include the following:
3129
3209
  #
3130
3210
  # * serviceAccessRoleArn - The IAM role that has permission to access
3131
3211
  # the Amazon S3 bucket.
@@ -3146,15 +3226,35 @@ module Aws::DatabaseMigrationService
3146
3226
  #
3147
3227
  # @option params [Types::MongoDbSettings] :mongo_db_settings
3148
3228
  # Settings in JSON format for the source MongoDB endpoint. For more
3149
- # information about the available settings, see the **Configuration
3150
- # Properties When Using MongoDB as a Source for AWS Database Migration
3151
- # Service** section at [ Using Amazon S3 as a Target for AWS Database
3152
- # Migration Service][1].
3229
+ # information about the available settings, see the configuration
3230
+ # properties section in [ Using MongoDB as a Target for AWS Database
3231
+ # Migration Service][1] in the *AWS Database Migration Service User
3232
+ # Guide.*
3153
3233
  #
3154
3234
  #
3155
3235
  #
3156
3236
  # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
3157
3237
  #
3238
+ # @option params [Types::KinesisSettings] :kinesis_settings
3239
+ # Settings in JSON format for the target Amazon Kinesis Data Streams
3240
+ # endpoint. For more information about the available settings, see
3241
+ # [Using Object Mapping to Migrate Data to a Kinesis Data Stream][1] in
3242
+ # the *AWS Database Migration User Guide.*
3243
+ #
3244
+ #
3245
+ #
3246
+ # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
3247
+ #
3248
+ # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
3249
+ # Settings in JSON format for the target Elasticsearch endpoint. For
3250
+ # more information about the available settings, see [Extra Connection
3251
+ # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
3252
+ # *AWS Database Migration User Guide.*
3253
+ #
3254
+ #
3255
+ #
3256
+ # [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
3257
+ #
3158
3258
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3159
3259
  #
3160
3260
  # * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -3232,6 +3332,17 @@ module Aws::DatabaseMigrationService
3232
3332
  # auth_source: "String",
3233
3333
  # kms_key_id: "String",
3234
3334
  # },
3335
+ # kinesis_settings: {
3336
+ # stream_arn: "String",
3337
+ # message_format: "json", # accepts json
3338
+ # service_access_role_arn: "String",
3339
+ # },
3340
+ # elasticsearch_settings: {
3341
+ # service_access_role_arn: "String", # required
3342
+ # endpoint_uri: "String", # required
3343
+ # full_load_error_percentage: 1,
3344
+ # error_retry_duration: 1,
3345
+ # },
3235
3346
  # })
3236
3347
  #
3237
3348
  # @example Response structure
@@ -3275,6 +3386,13 @@ module Aws::DatabaseMigrationService
3275
3386
  # resp.endpoint.mongo_db_settings.docs_to_investigate #=> String
3276
3387
  # resp.endpoint.mongo_db_settings.auth_source #=> String
3277
3388
  # resp.endpoint.mongo_db_settings.kms_key_id #=> String
3389
+ # resp.endpoint.kinesis_settings.stream_arn #=> String
3390
+ # resp.endpoint.kinesis_settings.message_format #=> String, one of "json"
3391
+ # resp.endpoint.kinesis_settings.service_access_role_arn #=> String
3392
+ # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
3393
+ # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
3394
+ # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
3395
+ # resp.endpoint.elasticsearch_settings.error_retry_duration #=> Integer
3278
3396
  #
3279
3397
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
3280
3398
  #
@@ -3556,6 +3674,7 @@ module Aws::DatabaseMigrationService
3556
3674
  # resp.replication_instance.publicly_accessible #=> Boolean
3557
3675
  # resp.replication_instance.secondary_availability_zone #=> String
3558
3676
  # resp.replication_instance.free_until #=> Time
3677
+ # resp.replication_instance.dns_name_servers #=> String
3559
3678
  #
3560
3679
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstance AWS API Documentation
3561
3680
  #
@@ -3632,8 +3751,8 @@ module Aws::DatabaseMigrationService
3632
3751
  # You can't modify the task endpoints. The task must be stopped before
3633
3752
  # you can modify it.
3634
3753
  #
3635
- # For more information about AWS DMS tasks, see the AWS DMS user guide
3636
- # at [ Working with Migration Tasks ][1]
3754
+ # For more information about AWS DMS tasks, see [Working with Migration
3755
+ # Tasks][1] in the *AWS Database Migration Service User Guide*.
3637
3756
  #
3638
3757
  #
3639
3758
  #
@@ -3813,6 +3932,7 @@ module Aws::DatabaseMigrationService
3813
3932
  # resp.replication_instance.publicly_accessible #=> Boolean
3814
3933
  # resp.replication_instance.secondary_availability_zone #=> String
3815
3934
  # resp.replication_instance.free_until #=> Time
3935
+ # resp.replication_instance.dns_name_servers #=> String
3816
3936
  #
3817
3937
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance AWS API Documentation
3818
3938
  #
@@ -3972,8 +4092,8 @@ module Aws::DatabaseMigrationService
3972
4092
 
3973
4093
  # Starts the replication task.
3974
4094
  #
3975
- # For more information about AWS DMS tasks, see the AWS DMS user guide
3976
- # at [ Working with Migration Tasks ][1]
4095
+ # For more information about AWS DMS tasks, see [Working with Migration
4096
+ # Tasks ][1] in the *AWS Database Migration Service User Guide.*
3977
4097
  #
3978
4098
  #
3979
4099
  #
@@ -4284,7 +4404,7 @@ module Aws::DatabaseMigrationService
4284
4404
  params: params,
4285
4405
  config: config)
4286
4406
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
4287
- context[:gem_version] = '1.13.0'
4407
+ context[:gem_version] = '1.14.0'
4288
4408
  Seahorse::Client::Request.new(handlers, context)
4289
4409
  end
4290
4410
 
@@ -4359,7 +4479,7 @@ module Aws::DatabaseMigrationService
4359
4479
  # | replication_task_ready | {#describe_replication_tasks} | 15 | 60 |
4360
4480
  # | replication_task_running | {#describe_replication_tasks} | 15 | 60 |
4361
4481
  # | replication_task_stopped | {#describe_replication_tasks} | 15 | 60 |
4362
- # | test_connection_succeeds | {#describe_connections} | 5 | 60 |
4482
+ # | test_connection_succeeds | {#test_connection} | 5 | 60 |
4363
4483
  #
4364
4484
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
4365
4485
  # because the waiter has entered a state that it will not transition