aws-sdk-databasemigrationservice 1.31.0 → 1.32.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 +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +210 -54
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +17 -0
- data/lib/aws-sdk-databasemigrationservice/resource.rb +1 -7
- data/lib/aws-sdk-databasemigrationservice/types.rb +201 -29
- 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: bbddd985a0e449090db1fc001f88ce108a12def7fae282eb041a692774ce543e
|
4
|
+
data.tar.gz: a21e7f5dca278ae0e8b96dca992476add11643f92782e1333ff54c46e64be362
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 331d2a6f47b88b83ff11f23d8b09c9cafceac982bd89b751ad141b76ddb024d7eb11594634489b69be1f7385350828c3447e6adb44c9617fecee87b4829ad52e
|
7
|
+
data.tar.gz: 05ad4a06e1f0c0cea4a38b46550c51027b9b6f367e1d960b7851e78c108326cf46c930ca7f443bbd7eea5d3f0c8d969217f1cdc5dd68842f7d971981a0c1c8d4
|
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:databasemigrationservice)
|
|
32
32
|
module Aws::DatabaseMigrationService
|
33
33
|
# An API client for DatabaseMigrationService. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::DatabaseMigrationService::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::DatabaseMigrationService
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
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
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -275,8 +279,7 @@ module Aws::DatabaseMigrationService
|
|
275
279
|
#
|
276
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
281
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
282
|
+
# safely be set per-request on the session.
|
280
283
|
#
|
281
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
285
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +291,7 @@ module Aws::DatabaseMigrationService
|
|
288
291
|
# request body. This option has no effect unless the request has
|
289
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
293
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
294
|
+
# request on the session.
|
292
295
|
#
|
293
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -548,34 +551,33 @@ module Aws::DatabaseMigrationService
|
|
548
551
|
#
|
549
552
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
550
553
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
551
|
-
# information about the available settings, see
|
552
|
-
#
|
553
|
-
# Migration Service
|
554
|
-
# 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.*
|
555
557
|
#
|
556
558
|
#
|
557
559
|
#
|
558
|
-
# [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
|
559
561
|
#
|
560
562
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
561
563
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
562
|
-
# Data Streams. For information about
|
563
|
-
# [Using
|
564
|
-
# the *AWS Database Migration User Guide.*
|
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.*
|
565
567
|
#
|
566
568
|
#
|
567
569
|
#
|
568
|
-
# [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
|
569
571
|
#
|
570
572
|
# @option params [Types::KafkaSettings] :kafka_settings
|
571
|
-
# Settings in JSON format for the target Apache Kafka endpoint. For
|
572
|
-
# information about
|
573
|
-
#
|
574
|
-
# User Guide.*
|
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.*
|
575
577
|
#
|
576
578
|
#
|
577
579
|
#
|
578
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
580
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
579
581
|
#
|
580
582
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
581
583
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
@@ -587,6 +589,16 @@ module Aws::DatabaseMigrationService
|
|
587
589
|
#
|
588
590
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
589
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
|
+
#
|
590
602
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
591
603
|
# Provides information that defines an Amazon Redshift endpoint.
|
592
604
|
#
|
@@ -722,6 +734,15 @@ module Aws::DatabaseMigrationService
|
|
722
734
|
# full_load_error_percentage: 1,
|
723
735
|
# error_retry_duration: 1,
|
724
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
|
+
# },
|
725
746
|
# redshift_settings: {
|
726
747
|
# accept_any_date: false,
|
727
748
|
# after_connect_script: "String",
|
@@ -820,6 +841,13 @@ module Aws::DatabaseMigrationService
|
|
820
841
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
821
842
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
822
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
|
823
851
|
# resp.endpoint.redshift_settings.accept_any_date #=> Boolean
|
824
852
|
# resp.endpoint.redshift_settings.after_connect_script #=> String
|
825
853
|
# resp.endpoint.redshift_settings.bucket_folder #=> String
|
@@ -1341,7 +1369,8 @@ module Aws::DatabaseMigrationService
|
|
1341
1369
|
#
|
1342
1370
|
# @option params [required, String] :table_mappings
|
1343
1371
|
# The table mappings for the task, in JSON format. For more information,
|
1344
|
-
# 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.*
|
1345
1374
|
#
|
1346
1375
|
#
|
1347
1376
|
#
|
@@ -1349,7 +1378,8 @@ module Aws::DatabaseMigrationService
|
|
1349
1378
|
#
|
1350
1379
|
# @option params [String] :replication_task_settings
|
1351
1380
|
# Overall settings for the task, in JSON format. For more information,
|
1352
|
-
# see [Task Settings
|
1381
|
+
# see [Specifying Task Settings for AWS Database Migration Service
|
1382
|
+
# Tasks][1] in the *AWS Database Migration User Guide.*
|
1353
1383
|
#
|
1354
1384
|
#
|
1355
1385
|
#
|
@@ -1403,6 +1433,16 @@ module Aws::DatabaseMigrationService
|
|
1403
1433
|
# @option params [Array<Types::Tag>] :tags
|
1404
1434
|
# One or more tags to be assigned to the replication task.
|
1405
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
|
+
#
|
1406
1446
|
# @return [Types::CreateReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1407
1447
|
#
|
1408
1448
|
# * {Types::CreateReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
|
@@ -1464,6 +1504,7 @@ module Aws::DatabaseMigrationService
|
|
1464
1504
|
# value: "String",
|
1465
1505
|
# },
|
1466
1506
|
# ],
|
1507
|
+
# task_data: "String",
|
1467
1508
|
# })
|
1468
1509
|
#
|
1469
1510
|
# @example Response structure
|
@@ -1495,6 +1536,7 @@ module Aws::DatabaseMigrationService
|
|
1495
1536
|
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
1496
1537
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
1497
1538
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
1539
|
+
# resp.replication_task.task_data #=> String
|
1498
1540
|
#
|
1499
1541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTask AWS API Documentation
|
1500
1542
|
#
|
@@ -1726,6 +1768,13 @@ module Aws::DatabaseMigrationService
|
|
1726
1768
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1727
1769
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
1728
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
|
1729
1778
|
# resp.endpoint.redshift_settings.accept_any_date #=> Boolean
|
1730
1779
|
# resp.endpoint.redshift_settings.after_connect_script #=> String
|
1731
1780
|
# resp.endpoint.redshift_settings.bucket_folder #=> String
|
@@ -2037,6 +2086,7 @@ module Aws::DatabaseMigrationService
|
|
2037
2086
|
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
2038
2087
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
2039
2088
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
2089
|
+
# resp.replication_task.task_data #=> String
|
2040
2090
|
#
|
2041
2091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTask AWS API Documentation
|
2042
2092
|
#
|
@@ -2135,6 +2185,8 @@ module Aws::DatabaseMigrationService
|
|
2135
2185
|
# * {Types::DescribeCertificatesResponse#marker #marker} => String
|
2136
2186
|
# * {Types::DescribeCertificatesResponse#certificates #certificates} => Array<Types::Certificate>
|
2137
2187
|
#
|
2188
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2189
|
+
#
|
2138
2190
|
#
|
2139
2191
|
# @example Example: Describe certificates
|
2140
2192
|
#
|
@@ -2227,6 +2279,8 @@ module Aws::DatabaseMigrationService
|
|
2227
2279
|
# * {Types::DescribeConnectionsResponse#marker #marker} => String
|
2228
2280
|
# * {Types::DescribeConnectionsResponse#connections #connections} => Array<Types::Connection>
|
2229
2281
|
#
|
2282
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2283
|
+
#
|
2230
2284
|
#
|
2231
2285
|
# @example Example: Describe connections
|
2232
2286
|
#
|
@@ -2285,6 +2339,11 @@ module Aws::DatabaseMigrationService
|
|
2285
2339
|
# resp.connections[0].endpoint_identifier #=> String
|
2286
2340
|
# resp.connections[0].replication_instance_identifier #=> String
|
2287
2341
|
#
|
2342
|
+
#
|
2343
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2344
|
+
#
|
2345
|
+
# * test_connection_succeeds
|
2346
|
+
#
|
2288
2347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConnections AWS API Documentation
|
2289
2348
|
#
|
2290
2349
|
# @overload describe_connections(params = {})
|
@@ -2321,6 +2380,8 @@ module Aws::DatabaseMigrationService
|
|
2321
2380
|
# * {Types::DescribeEndpointTypesResponse#marker #marker} => String
|
2322
2381
|
# * {Types::DescribeEndpointTypesResponse#supported_endpoint_types #supported_endpoint_types} => Array<Types::SupportedEndpointType>
|
2323
2382
|
#
|
2383
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2384
|
+
#
|
2324
2385
|
#
|
2325
2386
|
# @example Example: Describe endpoint types
|
2326
2387
|
#
|
@@ -2367,6 +2428,7 @@ module Aws::DatabaseMigrationService
|
|
2367
2428
|
# resp.supported_endpoint_types[0].engine_name #=> String
|
2368
2429
|
# resp.supported_endpoint_types[0].supports_cdc #=> Boolean
|
2369
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
|
2370
2432
|
# resp.supported_endpoint_types[0].engine_display_name #=> String
|
2371
2433
|
#
|
2372
2434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypes AWS API Documentation
|
@@ -2407,6 +2469,8 @@ module Aws::DatabaseMigrationService
|
|
2407
2469
|
# * {Types::DescribeEndpointsResponse#marker #marker} => String
|
2408
2470
|
# * {Types::DescribeEndpointsResponse#endpoints #endpoints} => Array<Types::Endpoint>
|
2409
2471
|
#
|
2472
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2473
|
+
#
|
2410
2474
|
#
|
2411
2475
|
# @example Example: Describe endpoints
|
2412
2476
|
#
|
@@ -2517,6 +2581,13 @@ module Aws::DatabaseMigrationService
|
|
2517
2581
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
2518
2582
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
2519
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
|
2520
2591
|
# resp.endpoints[0].redshift_settings.accept_any_date #=> Boolean
|
2521
2592
|
# resp.endpoints[0].redshift_settings.after_connect_script #=> String
|
2522
2593
|
# resp.endpoints[0].redshift_settings.bucket_folder #=> String
|
@@ -2543,6 +2614,11 @@ module Aws::DatabaseMigrationService
|
|
2543
2614
|
# resp.endpoints[0].redshift_settings.username #=> String
|
2544
2615
|
# resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
|
2545
2616
|
#
|
2617
|
+
#
|
2618
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2619
|
+
#
|
2620
|
+
# * endpoint_deleted
|
2621
|
+
#
|
2546
2622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints AWS API Documentation
|
2547
2623
|
#
|
2548
2624
|
# @overload describe_endpoints(params = {})
|
@@ -2635,6 +2711,8 @@ module Aws::DatabaseMigrationService
|
|
2635
2711
|
# * {Types::DescribeEventSubscriptionsResponse#marker #marker} => String
|
2636
2712
|
# * {Types::DescribeEventSubscriptionsResponse#event_subscriptions_list #event_subscriptions_list} => Array<Types::EventSubscription>
|
2637
2713
|
#
|
2714
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2715
|
+
#
|
2638
2716
|
# @example Request syntax with placeholder values
|
2639
2717
|
#
|
2640
2718
|
# resp = client.describe_event_subscriptions({
|
@@ -2726,6 +2804,8 @@ module Aws::DatabaseMigrationService
|
|
2726
2804
|
# * {Types::DescribeEventsResponse#marker #marker} => String
|
2727
2805
|
# * {Types::DescribeEventsResponse#events #events} => Array<Types::Event>
|
2728
2806
|
#
|
2807
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2808
|
+
#
|
2729
2809
|
# @example Request syntax with placeholder values
|
2730
2810
|
#
|
2731
2811
|
# resp = client.describe_events({
|
@@ -2788,6 +2868,8 @@ module Aws::DatabaseMigrationService
|
|
2788
2868
|
# * {Types::DescribeOrderableReplicationInstancesResponse#orderable_replication_instances #orderable_replication_instances} => Array<Types::OrderableReplicationInstance>
|
2789
2869
|
# * {Types::DescribeOrderableReplicationInstancesResponse#marker #marker} => String
|
2790
2870
|
#
|
2871
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2872
|
+
#
|
2791
2873
|
#
|
2792
2874
|
# @example Example: Describe orderable replication instances
|
2793
2875
|
#
|
@@ -2863,6 +2945,8 @@ module Aws::DatabaseMigrationService
|
|
2863
2945
|
# * {Types::DescribePendingMaintenanceActionsResponse#pending_maintenance_actions #pending_maintenance_actions} => Array<Types::ResourcePendingMaintenanceActions>
|
2864
2946
|
# * {Types::DescribePendingMaintenanceActionsResponse#marker #marker} => String
|
2865
2947
|
#
|
2948
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2949
|
+
#
|
2866
2950
|
# @example Request syntax with placeholder values
|
2867
2951
|
#
|
2868
2952
|
# resp = client.describe_pending_maintenance_actions({
|
@@ -2973,6 +3057,8 @@ module Aws::DatabaseMigrationService
|
|
2973
3057
|
# * {Types::DescribeReplicationInstanceTaskLogsResponse#replication_instance_task_logs #replication_instance_task_logs} => Array<Types::ReplicationInstanceTaskLog>
|
2974
3058
|
# * {Types::DescribeReplicationInstanceTaskLogsResponse#marker #marker} => String
|
2975
3059
|
#
|
3060
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3061
|
+
#
|
2976
3062
|
# @example Request syntax with placeholder values
|
2977
3063
|
#
|
2978
3064
|
# resp = client.describe_replication_instance_task_logs({
|
@@ -3029,6 +3115,8 @@ module Aws::DatabaseMigrationService
|
|
3029
3115
|
# * {Types::DescribeReplicationInstancesResponse#marker #marker} => String
|
3030
3116
|
# * {Types::DescribeReplicationInstancesResponse#replication_instances #replication_instances} => Array<Types::ReplicationInstance>
|
3031
3117
|
#
|
3118
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3119
|
+
#
|
3032
3120
|
#
|
3033
3121
|
# @example Example: Describe replication instances
|
3034
3122
|
#
|
@@ -3110,6 +3198,12 @@ module Aws::DatabaseMigrationService
|
|
3110
3198
|
# resp.replication_instances[0].free_until #=> Time
|
3111
3199
|
# resp.replication_instances[0].dns_name_servers #=> String
|
3112
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
|
+
#
|
3113
3207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances AWS API Documentation
|
3114
3208
|
#
|
3115
3209
|
# @overload describe_replication_instances(params = {})
|
@@ -3124,6 +3218,8 @@ module Aws::DatabaseMigrationService
|
|
3124
3218
|
# @option params [Array<Types::Filter>] :filters
|
3125
3219
|
# Filters applied to the describe action.
|
3126
3220
|
#
|
3221
|
+
# Valid filter names: replication-subnet-group-id
|
3222
|
+
#
|
3127
3223
|
# @option params [Integer] :max_records
|
3128
3224
|
# The maximum number of records to include in the response. If more
|
3129
3225
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -3144,6 +3240,8 @@ module Aws::DatabaseMigrationService
|
|
3144
3240
|
# * {Types::DescribeReplicationSubnetGroupsResponse#marker #marker} => String
|
3145
3241
|
# * {Types::DescribeReplicationSubnetGroupsResponse#replication_subnet_groups #replication_subnet_groups} => Array<Types::ReplicationSubnetGroup>
|
3146
3242
|
#
|
3243
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3244
|
+
#
|
3147
3245
|
#
|
3148
3246
|
# @example Example: Describe replication subnet groups
|
3149
3247
|
#
|
@@ -3235,6 +3333,8 @@ module Aws::DatabaseMigrationService
|
|
3235
3333
|
# * {Types::DescribeReplicationTaskAssessmentResultsResponse#bucket_name #bucket_name} => String
|
3236
3334
|
# * {Types::DescribeReplicationTaskAssessmentResultsResponse#replication_task_assessment_results #replication_task_assessment_results} => Array<Types::ReplicationTaskAssessmentResult>
|
3237
3335
|
#
|
3336
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3337
|
+
#
|
3238
3338
|
# @example Request syntax with placeholder values
|
3239
3339
|
#
|
3240
3340
|
# resp = client.describe_replication_task_assessment_results({
|
@@ -3299,6 +3399,8 @@ module Aws::DatabaseMigrationService
|
|
3299
3399
|
# * {Types::DescribeReplicationTasksResponse#marker #marker} => String
|
3300
3400
|
# * {Types::DescribeReplicationTasksResponse#replication_tasks #replication_tasks} => Array<Types::ReplicationTask>
|
3301
3401
|
#
|
3402
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3403
|
+
#
|
3302
3404
|
#
|
3303
3405
|
# @example Example: Describe replication tasks
|
3304
3406
|
#
|
@@ -3370,6 +3472,15 @@ module Aws::DatabaseMigrationService
|
|
3370
3472
|
# resp.replication_tasks[0].replication_task_stats.stop_date #=> Time
|
3371
3473
|
# resp.replication_tasks[0].replication_task_stats.full_load_start_date #=> Time
|
3372
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
|
3373
3484
|
#
|
3374
3485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasks AWS API Documentation
|
3375
3486
|
#
|
@@ -3406,6 +3517,8 @@ module Aws::DatabaseMigrationService
|
|
3406
3517
|
# * {Types::DescribeSchemasResponse#marker #marker} => String
|
3407
3518
|
# * {Types::DescribeSchemasResponse#schemas #schemas} => Array<String>
|
3408
3519
|
#
|
3520
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3521
|
+
#
|
3409
3522
|
#
|
3410
3523
|
# @example Example: Describe schemas
|
3411
3524
|
#
|
@@ -3486,6 +3599,8 @@ module Aws::DatabaseMigrationService
|
|
3486
3599
|
# * {Types::DescribeTableStatisticsResponse#table_statistics #table_statistics} => Array<Types::TableStatistics>
|
3487
3600
|
# * {Types::DescribeTableStatisticsResponse#marker #marker} => String
|
3488
3601
|
#
|
3602
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3603
|
+
#
|
3489
3604
|
#
|
3490
3605
|
# @example Example: Describe table statistics
|
3491
3606
|
#
|
@@ -3786,23 +3901,23 @@ module Aws::DatabaseMigrationService
|
|
3786
3901
|
#
|
3787
3902
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
3788
3903
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
3789
|
-
# Data Streams. For information about
|
3790
|
-
# [Using
|
3791
|
-
# the *AWS Database Migration User Guide.*
|
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.*
|
3792
3907
|
#
|
3793
3908
|
#
|
3794
3909
|
#
|
3795
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
3910
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
3796
3911
|
#
|
3797
3912
|
# @option params [Types::KafkaSettings] :kafka_settings
|
3798
|
-
# Settings in JSON format for the target Apache Kafka endpoint. For
|
3799
|
-
# information about
|
3800
|
-
#
|
3801
|
-
# User Guide.*
|
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.*
|
3802
3917
|
#
|
3803
3918
|
#
|
3804
3919
|
#
|
3805
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
3920
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
3806
3921
|
#
|
3807
3922
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
3808
3923
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
@@ -3814,6 +3929,16 @@ module Aws::DatabaseMigrationService
|
|
3814
3929
|
#
|
3815
3930
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
3816
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
|
+
#
|
3817
3942
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
3818
3943
|
# Provides information that defines an Amazon Redshift endpoint.
|
3819
3944
|
#
|
@@ -3928,6 +4053,15 @@ module Aws::DatabaseMigrationService
|
|
3928
4053
|
# full_load_error_percentage: 1,
|
3929
4054
|
# error_retry_duration: 1,
|
3930
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
|
+
# },
|
3931
4065
|
# redshift_settings: {
|
3932
4066
|
# accept_any_date: false,
|
3933
4067
|
# after_connect_script: "String",
|
@@ -4026,6 +4160,13 @@ module Aws::DatabaseMigrationService
|
|
4026
4160
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
4027
4161
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
4028
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
|
4029
4170
|
# resp.endpoint.redshift_settings.accept_any_date #=> Boolean
|
4030
4171
|
# resp.endpoint.redshift_settings.after_connect_script #=> String
|
4031
4172
|
# resp.endpoint.redshift_settings.bucket_folder #=> String
|
@@ -4447,7 +4588,7 @@ module Aws::DatabaseMigrationService
|
|
4447
4588
|
# value, for example: `--table-mappings file://mappingfile.json`
|
4448
4589
|
#
|
4449
4590
|
# @option params [String] :replication_task_settings
|
4450
|
-
# JSON file that contains settings for the task, such as
|
4591
|
+
# JSON file that contains settings for the task, such as task metadata
|
4451
4592
|
# settings.
|
4452
4593
|
#
|
4453
4594
|
# @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
|
@@ -4495,6 +4636,16 @@ module Aws::DatabaseMigrationService
|
|
4495
4636
|
# Commit time example: --cdc-stop-position “commit\_time:
|
4496
4637
|
# 3018-02-09T12:12:12 “
|
4497
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
|
+
#
|
4498
4649
|
# @return [Types::ModifyReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4499
4650
|
#
|
4500
4651
|
# * {Types::ModifyReplicationTaskResponse#replication_task #replication_task} => Types::ReplicationTask
|
@@ -4510,6 +4661,7 @@ module Aws::DatabaseMigrationService
|
|
4510
4661
|
# cdc_start_time: Time.now,
|
4511
4662
|
# cdc_start_position: "String",
|
4512
4663
|
# cdc_stop_position: "String",
|
4664
|
+
# task_data: "String",
|
4513
4665
|
# })
|
4514
4666
|
#
|
4515
4667
|
# @example Response structure
|
@@ -4541,6 +4693,7 @@ module Aws::DatabaseMigrationService
|
|
4541
4693
|
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
4542
4694
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
4543
4695
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
4696
|
+
# resp.replication_task.task_data #=> String
|
4544
4697
|
#
|
4545
4698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTask AWS API Documentation
|
4546
4699
|
#
|
@@ -4899,6 +5052,7 @@ module Aws::DatabaseMigrationService
|
|
4899
5052
|
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
4900
5053
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
4901
5054
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5055
|
+
# resp.replication_task.task_data #=> String
|
4902
5056
|
#
|
4903
5057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTask AWS API Documentation
|
4904
5058
|
#
|
@@ -4954,6 +5108,7 @@ module Aws::DatabaseMigrationService
|
|
4954
5108
|
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
4955
5109
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
4956
5110
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5111
|
+
# resp.replication_task.task_data #=> String
|
4957
5112
|
#
|
4958
5113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessment AWS API Documentation
|
4959
5114
|
#
|
@@ -5033,6 +5188,7 @@ module Aws::DatabaseMigrationService
|
|
5033
5188
|
# resp.replication_task.replication_task_stats.stop_date #=> Time
|
5034
5189
|
# resp.replication_task.replication_task_stats.full_load_start_date #=> Time
|
5035
5190
|
# resp.replication_task.replication_task_stats.full_load_finish_date #=> Time
|
5191
|
+
# resp.replication_task.task_data #=> String
|
5036
5192
|
#
|
5037
5193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplicationTask AWS API Documentation
|
5038
5194
|
#
|
@@ -5111,7 +5267,7 @@ module Aws::DatabaseMigrationService
|
|
5111
5267
|
params: params,
|
5112
5268
|
config: config)
|
5113
5269
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
5114
|
-
context[:gem_version] = '1.
|
5270
|
+
context[:gem_version] = '1.32.0'
|
5115
5271
|
Seahorse::Client::Request.new(handlers, context)
|
5116
5272
|
end
|
5117
5273
|
|
@@ -5177,16 +5333,16 @@ module Aws::DatabaseMigrationService
|
|
5177
5333
|
# The following table lists the valid waiter names, the operations they call,
|
5178
5334
|
# and the default `:delay` and `:max_attempts` values.
|
5179
5335
|
#
|
5180
|
-
# | waiter_name | params
|
5181
|
-
# | ------------------------------ |
|
5182
|
-
# | endpoint_deleted | {#describe_endpoints} | 5 | 60 |
|
5183
|
-
# | replication_instance_available | {#describe_replication_instances} | 60 | 60 |
|
5184
|
-
# | replication_instance_deleted | {#describe_replication_instances} | 15 | 60 |
|
5185
|
-
# | replication_task_deleted | {#describe_replication_tasks} | 15 | 60 |
|
5186
|
-
# | replication_task_ready | {#describe_replication_tasks} | 15 | 60 |
|
5187
|
-
# | replication_task_running | {#describe_replication_tasks} | 15 | 60 |
|
5188
|
-
# | replication_task_stopped | {#describe_replication_tasks} | 15 | 60 |
|
5189
|
-
# | test_connection_succeeds | {#describe_connections} | 5 | 60 |
|
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 |
|
5190
5346
|
#
|
5191
5347
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
5192
5348
|
# because the waiter has entered a state that it will not transition
|
@@ -143,6 +143,7 @@ module Aws::DatabaseMigrationService
|
|
143
143
|
ModifyReplicationTaskMessage = Shapes::StructureShape.new(name: 'ModifyReplicationTaskMessage')
|
144
144
|
ModifyReplicationTaskResponse = Shapes::StructureShape.new(name: 'ModifyReplicationTaskResponse')
|
145
145
|
MongoDbSettings = Shapes::StructureShape.new(name: 'MongoDbSettings')
|
146
|
+
NeptuneSettings = Shapes::StructureShape.new(name: 'NeptuneSettings')
|
146
147
|
NestingLevelValue = Shapes::StringShape.new(name: 'NestingLevelValue')
|
147
148
|
OrderableReplicationInstance = Shapes::StructureShape.new(name: 'OrderableReplicationInstance')
|
148
149
|
OrderableReplicationInstanceList = Shapes::ListShape.new(name: 'OrderableReplicationInstanceList')
|
@@ -295,6 +296,7 @@ module Aws::DatabaseMigrationService
|
|
295
296
|
CreateEndpointMessage.add_member(:kinesis_settings, Shapes::ShapeRef.new(shape: KinesisSettings, location_name: "KinesisSettings"))
|
296
297
|
CreateEndpointMessage.add_member(:kafka_settings, Shapes::ShapeRef.new(shape: KafkaSettings, location_name: "KafkaSettings"))
|
297
298
|
CreateEndpointMessage.add_member(:elasticsearch_settings, Shapes::ShapeRef.new(shape: ElasticsearchSettings, location_name: "ElasticsearchSettings"))
|
299
|
+
CreateEndpointMessage.add_member(:neptune_settings, Shapes::ShapeRef.new(shape: NeptuneSettings, location_name: "NeptuneSettings"))
|
298
300
|
CreateEndpointMessage.add_member(:redshift_settings, Shapes::ShapeRef.new(shape: RedshiftSettings, location_name: "RedshiftSettings"))
|
299
301
|
CreateEndpointMessage.struct_class = Types::CreateEndpointMessage
|
300
302
|
|
@@ -352,6 +354,7 @@ module Aws::DatabaseMigrationService
|
|
352
354
|
CreateReplicationTaskMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
|
353
355
|
CreateReplicationTaskMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
|
354
356
|
CreateReplicationTaskMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
357
|
+
CreateReplicationTaskMessage.add_member(:task_data, Shapes::ShapeRef.new(shape: String, location_name: "TaskData"))
|
355
358
|
CreateReplicationTaskMessage.struct_class = Types::CreateReplicationTaskMessage
|
356
359
|
|
357
360
|
CreateReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
|
@@ -602,6 +605,7 @@ module Aws::DatabaseMigrationService
|
|
602
605
|
Endpoint.add_member(:kinesis_settings, Shapes::ShapeRef.new(shape: KinesisSettings, location_name: "KinesisSettings"))
|
603
606
|
Endpoint.add_member(:kafka_settings, Shapes::ShapeRef.new(shape: KafkaSettings, location_name: "KafkaSettings"))
|
604
607
|
Endpoint.add_member(:elasticsearch_settings, Shapes::ShapeRef.new(shape: ElasticsearchSettings, location_name: "ElasticsearchSettings"))
|
608
|
+
Endpoint.add_member(:neptune_settings, Shapes::ShapeRef.new(shape: NeptuneSettings, location_name: "NeptuneSettings"))
|
605
609
|
Endpoint.add_member(:redshift_settings, Shapes::ShapeRef.new(shape: RedshiftSettings, location_name: "RedshiftSettings"))
|
606
610
|
Endpoint.struct_class = Types::Endpoint
|
607
611
|
|
@@ -727,6 +731,7 @@ module Aws::DatabaseMigrationService
|
|
727
731
|
ModifyEndpointMessage.add_member(:kinesis_settings, Shapes::ShapeRef.new(shape: KinesisSettings, location_name: "KinesisSettings"))
|
728
732
|
ModifyEndpointMessage.add_member(:kafka_settings, Shapes::ShapeRef.new(shape: KafkaSettings, location_name: "KafkaSettings"))
|
729
733
|
ModifyEndpointMessage.add_member(:elasticsearch_settings, Shapes::ShapeRef.new(shape: ElasticsearchSettings, location_name: "ElasticsearchSettings"))
|
734
|
+
ModifyEndpointMessage.add_member(:neptune_settings, Shapes::ShapeRef.new(shape: NeptuneSettings, location_name: "NeptuneSettings"))
|
730
735
|
ModifyEndpointMessage.add_member(:redshift_settings, Shapes::ShapeRef.new(shape: RedshiftSettings, location_name: "RedshiftSettings"))
|
731
736
|
ModifyEndpointMessage.struct_class = Types::ModifyEndpointMessage
|
732
737
|
|
@@ -775,6 +780,7 @@ module Aws::DatabaseMigrationService
|
|
775
780
|
ModifyReplicationTaskMessage.add_member(:cdc_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CdcStartTime"))
|
776
781
|
ModifyReplicationTaskMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
|
777
782
|
ModifyReplicationTaskMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
|
783
|
+
ModifyReplicationTaskMessage.add_member(:task_data, Shapes::ShapeRef.new(shape: String, location_name: "TaskData"))
|
778
784
|
ModifyReplicationTaskMessage.struct_class = Types::ModifyReplicationTaskMessage
|
779
785
|
|
780
786
|
ModifyReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
|
@@ -794,6 +800,15 @@ module Aws::DatabaseMigrationService
|
|
794
800
|
MongoDbSettings.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
795
801
|
MongoDbSettings.struct_class = Types::MongoDbSettings
|
796
802
|
|
803
|
+
NeptuneSettings.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
|
804
|
+
NeptuneSettings.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketName"))
|
805
|
+
NeptuneSettings.add_member(:s3_bucket_folder, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketFolder"))
|
806
|
+
NeptuneSettings.add_member(:error_retry_duration, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ErrorRetryDuration"))
|
807
|
+
NeptuneSettings.add_member(:max_file_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxFileSize"))
|
808
|
+
NeptuneSettings.add_member(:max_retry_count, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRetryCount"))
|
809
|
+
NeptuneSettings.add_member(:iam_auth_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IamAuthEnabled"))
|
810
|
+
NeptuneSettings.struct_class = Types::NeptuneSettings
|
811
|
+
|
797
812
|
OrderableReplicationInstance.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
798
813
|
OrderableReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceClass"))
|
799
814
|
OrderableReplicationInstance.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
@@ -954,6 +969,7 @@ module Aws::DatabaseMigrationService
|
|
954
969
|
ReplicationTask.add_member(:recovery_checkpoint, Shapes::ShapeRef.new(shape: String, location_name: "RecoveryCheckpoint"))
|
955
970
|
ReplicationTask.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskArn"))
|
956
971
|
ReplicationTask.add_member(:replication_task_stats, Shapes::ShapeRef.new(shape: ReplicationTaskStats, location_name: "ReplicationTaskStats"))
|
972
|
+
ReplicationTask.add_member(:task_data, Shapes::ShapeRef.new(shape: String, location_name: "TaskData"))
|
957
973
|
ReplicationTask.struct_class = Types::ReplicationTask
|
958
974
|
|
959
975
|
ReplicationTaskAssessmentResult.add_member(:replication_task_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskIdentifier"))
|
@@ -1069,6 +1085,7 @@ module Aws::DatabaseMigrationService
|
|
1069
1085
|
SupportedEndpointType.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineName"))
|
1070
1086
|
SupportedEndpointType.add_member(:supports_cdc, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsCDC"))
|
1071
1087
|
SupportedEndpointType.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: ReplicationEndpointTypeValue, location_name: "EndpointType"))
|
1088
|
+
SupportedEndpointType.add_member(:replication_instance_engine_minimum_version, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceEngineMinimumVersion"))
|
1072
1089
|
SupportedEndpointType.add_member(:engine_display_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineDisplayName"))
|
1073
1090
|
SupportedEndpointType.struct_class = Types::SupportedEndpointType
|
1074
1091
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::DatabaseMigrationService
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::DatabaseMigrationService::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::DatabaseMigrationService::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::DatabaseMigrationService::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -346,6 +346,15 @@ module Aws::DatabaseMigrationService
|
|
346
346
|
# full_load_error_percentage: 1,
|
347
347
|
# error_retry_duration: 1,
|
348
348
|
# },
|
349
|
+
# neptune_settings: {
|
350
|
+
# service_access_role_arn: "String",
|
351
|
+
# s3_bucket_name: "String", # required
|
352
|
+
# s3_bucket_folder: "String", # required
|
353
|
+
# error_retry_duration: 1,
|
354
|
+
# max_file_size: 1,
|
355
|
+
# max_retry_count: 1,
|
356
|
+
# iam_auth_enabled: false,
|
357
|
+
# },
|
349
358
|
# redshift_settings: {
|
350
359
|
# accept_any_date: false,
|
351
360
|
# after_connect_script: "String",
|
@@ -509,36 +518,35 @@ module Aws::DatabaseMigrationService
|
|
509
518
|
#
|
510
519
|
# @!attribute [rw] mongo_db_settings
|
511
520
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
512
|
-
# information about the available settings, see
|
513
|
-
#
|
514
|
-
# Migration Service
|
515
|
-
# Guide.*
|
521
|
+
# information about the available settings, see [Using MongoDB as a
|
522
|
+
# Target for AWS Database Migration Service][1] in the *AWS Database
|
523
|
+
# Migration Service User Guide.*
|
516
524
|
#
|
517
525
|
#
|
518
526
|
#
|
519
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
|
527
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration
|
520
528
|
# @return [Types::MongoDbSettings]
|
521
529
|
#
|
522
530
|
# @!attribute [rw] kinesis_settings
|
523
531
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
524
|
-
# Data Streams. For information about
|
525
|
-
# [Using
|
526
|
-
# in the *AWS Database Migration User Guide.*
|
532
|
+
# Data Streams. For more information about the available settings, see
|
533
|
+
# [Using Amazon Kinesis Data Streams as a Target for AWS Database
|
534
|
+
# Migration Service][1] in the *AWS Database Migration User Guide.*
|
527
535
|
#
|
528
536
|
#
|
529
537
|
#
|
530
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
538
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
531
539
|
# @return [Types::KinesisSettings]
|
532
540
|
#
|
533
541
|
# @!attribute [rw] kafka_settings
|
534
542
|
# Settings in JSON format for the target Apache Kafka endpoint. For
|
535
|
-
# information about
|
536
|
-
#
|
537
|
-
# Migration User Guide.*
|
543
|
+
# more information about the available settings, see [Using Apache
|
544
|
+
# Kafka as a Target for AWS Database Migration Service][1] in the *AWS
|
545
|
+
# Database Migration User Guide.*
|
538
546
|
#
|
539
547
|
#
|
540
548
|
#
|
541
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
549
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
542
550
|
# @return [Types::KafkaSettings]
|
543
551
|
#
|
544
552
|
# @!attribute [rw] elasticsearch_settings
|
@@ -552,6 +560,17 @@ module Aws::DatabaseMigrationService
|
|
552
560
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
553
561
|
# @return [Types::ElasticsearchSettings]
|
554
562
|
#
|
563
|
+
# @!attribute [rw] neptune_settings
|
564
|
+
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
565
|
+
# more information about the available settings, see
|
566
|
+
# [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
|
567
|
+
# in the *AWS Database Migration Service User Guide.*
|
568
|
+
#
|
569
|
+
#
|
570
|
+
#
|
571
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
|
572
|
+
# @return [Types::NeptuneSettings]
|
573
|
+
#
|
555
574
|
# @!attribute [rw] redshift_settings
|
556
575
|
# Provides information that defines an Amazon Redshift endpoint.
|
557
576
|
# @return [Types::RedshiftSettings]
|
@@ -581,6 +600,7 @@ module Aws::DatabaseMigrationService
|
|
581
600
|
:kinesis_settings,
|
582
601
|
:kafka_settings,
|
583
602
|
:elasticsearch_settings,
|
603
|
+
:neptune_settings,
|
584
604
|
:redshift_settings)
|
585
605
|
include Aws::Structure
|
586
606
|
end
|
@@ -928,6 +948,7 @@ module Aws::DatabaseMigrationService
|
|
928
948
|
# value: "String",
|
929
949
|
# },
|
930
950
|
# ],
|
951
|
+
# task_data: "String",
|
931
952
|
# }
|
932
953
|
#
|
933
954
|
# @!attribute [rw] replication_task_identifier
|
@@ -963,8 +984,8 @@ module Aws::DatabaseMigrationService
|
|
963
984
|
#
|
964
985
|
# @!attribute [rw] table_mappings
|
965
986
|
# The table mappings for the task, in JSON format. For more
|
966
|
-
# information, see [Table Mapping][1]
|
967
|
-
# User Guide.*
|
987
|
+
# information, see [Using Table Mapping to Specify Task Settings][1]
|
988
|
+
# in the *AWS Database Migration User Guide.*
|
968
989
|
#
|
969
990
|
#
|
970
991
|
#
|
@@ -973,7 +994,8 @@ module Aws::DatabaseMigrationService
|
|
973
994
|
#
|
974
995
|
# @!attribute [rw] replication_task_settings
|
975
996
|
# Overall settings for the task, in JSON format. For more information,
|
976
|
-
# see [Task Settings
|
997
|
+
# see [Specifying Task Settings for AWS Database Migration Service
|
998
|
+
# Tasks][1] in the *AWS Database Migration User Guide.*
|
977
999
|
#
|
978
1000
|
#
|
979
1001
|
#
|
@@ -1033,6 +1055,17 @@ module Aws::DatabaseMigrationService
|
|
1033
1055
|
# One or more tags to be assigned to the replication task.
|
1034
1056
|
# @return [Array<Types::Tag>]
|
1035
1057
|
#
|
1058
|
+
# @!attribute [rw] task_data
|
1059
|
+
# Supplemental information that the task requires to migrate the data
|
1060
|
+
# for certain source and target endpoints. For more information, see
|
1061
|
+
# [Specifying Supplemental Data for Task Settings][1] in the *AWS
|
1062
|
+
# Database Migration User Guide.*
|
1063
|
+
#
|
1064
|
+
#
|
1065
|
+
#
|
1066
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
|
1067
|
+
# @return [String]
|
1068
|
+
#
|
1036
1069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTaskMessage AWS API Documentation
|
1037
1070
|
#
|
1038
1071
|
class CreateReplicationTaskMessage < Struct.new(
|
@@ -1046,7 +1079,8 @@ module Aws::DatabaseMigrationService
|
|
1046
1079
|
:cdc_start_time,
|
1047
1080
|
:cdc_start_position,
|
1048
1081
|
:cdc_stop_position,
|
1049
|
-
:tags
|
1082
|
+
:tags,
|
1083
|
+
:task_data)
|
1050
1084
|
include Aws::Structure
|
1051
1085
|
end
|
1052
1086
|
|
@@ -2058,6 +2092,8 @@ module Aws::DatabaseMigrationService
|
|
2058
2092
|
#
|
2059
2093
|
# @!attribute [rw] filters
|
2060
2094
|
# Filters applied to the describe action.
|
2095
|
+
#
|
2096
|
+
# Valid filter names: replication-subnet-group-id
|
2061
2097
|
# @return [Array<Types::Filter>]
|
2062
2098
|
#
|
2063
2099
|
# @!attribute [rw] max_records
|
@@ -2622,6 +2658,11 @@ module Aws::DatabaseMigrationService
|
|
2622
2658
|
# information, see the `ElasticsearchSettings` structure.
|
2623
2659
|
# @return [Types::ElasticsearchSettings]
|
2624
2660
|
#
|
2661
|
+
# @!attribute [rw] neptune_settings
|
2662
|
+
# The settings for the MongoDB source endpoint. For more information,
|
2663
|
+
# see the `NeptuneSettings` structure.
|
2664
|
+
# @return [Types::NeptuneSettings]
|
2665
|
+
#
|
2625
2666
|
# @!attribute [rw] redshift_settings
|
2626
2667
|
# Settings for the Amazon Redshift endpoint.
|
2627
2668
|
# @return [Types::RedshiftSettings]
|
@@ -2653,6 +2694,7 @@ module Aws::DatabaseMigrationService
|
|
2653
2694
|
:kinesis_settings,
|
2654
2695
|
:kafka_settings,
|
2655
2696
|
:elasticsearch_settings,
|
2697
|
+
:neptune_settings,
|
2656
2698
|
:redshift_settings)
|
2657
2699
|
include Aws::Structure
|
2658
2700
|
end
|
@@ -3224,6 +3266,15 @@ module Aws::DatabaseMigrationService
|
|
3224
3266
|
# full_load_error_percentage: 1,
|
3225
3267
|
# error_retry_duration: 1,
|
3226
3268
|
# },
|
3269
|
+
# neptune_settings: {
|
3270
|
+
# service_access_role_arn: "String",
|
3271
|
+
# s3_bucket_name: "String", # required
|
3272
|
+
# s3_bucket_folder: "String", # required
|
3273
|
+
# error_retry_duration: 1,
|
3274
|
+
# max_file_size: 1,
|
3275
|
+
# max_retry_count: 1,
|
3276
|
+
# iam_auth_enabled: false,
|
3277
|
+
# },
|
3227
3278
|
# redshift_settings: {
|
3228
3279
|
# accept_any_date: false,
|
3229
3280
|
# after_connect_script: "String",
|
@@ -3381,24 +3432,24 @@ module Aws::DatabaseMigrationService
|
|
3381
3432
|
#
|
3382
3433
|
# @!attribute [rw] kinesis_settings
|
3383
3434
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
3384
|
-
# Data Streams. For information about
|
3385
|
-
# [Using
|
3386
|
-
# in the *AWS Database Migration User Guide.*
|
3435
|
+
# Data Streams. For more information about the available settings, see
|
3436
|
+
# [Using Amazon Kinesis Data Streams as a Target for AWS Database
|
3437
|
+
# Migration Service][1] in the *AWS Database Migration User Guide.*
|
3387
3438
|
#
|
3388
3439
|
#
|
3389
3440
|
#
|
3390
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
3441
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
3391
3442
|
# @return [Types::KinesisSettings]
|
3392
3443
|
#
|
3393
3444
|
# @!attribute [rw] kafka_settings
|
3394
3445
|
# Settings in JSON format for the target Apache Kafka endpoint. For
|
3395
|
-
# information about
|
3396
|
-
#
|
3397
|
-
# Migration User Guide.*
|
3446
|
+
# more information about the available settings, see [Using Apache
|
3447
|
+
# Kafka as a Target for AWS Database Migration Service][1] in the *AWS
|
3448
|
+
# Database Migration User Guide.*
|
3398
3449
|
#
|
3399
3450
|
#
|
3400
3451
|
#
|
3401
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
3452
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
3402
3453
|
# @return [Types::KafkaSettings]
|
3403
3454
|
#
|
3404
3455
|
# @!attribute [rw] elasticsearch_settings
|
@@ -3412,6 +3463,17 @@ module Aws::DatabaseMigrationService
|
|
3412
3463
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration
|
3413
3464
|
# @return [Types::ElasticsearchSettings]
|
3414
3465
|
#
|
3466
|
+
# @!attribute [rw] neptune_settings
|
3467
|
+
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
3468
|
+
# more information about the available settings, see
|
3469
|
+
# [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
|
3470
|
+
# in the *AWS Database Migration Service User Guide.*
|
3471
|
+
#
|
3472
|
+
#
|
3473
|
+
#
|
3474
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings
|
3475
|
+
# @return [Types::NeptuneSettings]
|
3476
|
+
#
|
3415
3477
|
# @!attribute [rw] redshift_settings
|
3416
3478
|
# Provides information that defines an Amazon Redshift endpoint.
|
3417
3479
|
# @return [Types::RedshiftSettings]
|
@@ -3440,6 +3502,7 @@ module Aws::DatabaseMigrationService
|
|
3440
3502
|
:kinesis_settings,
|
3441
3503
|
:kafka_settings,
|
3442
3504
|
:elasticsearch_settings,
|
3505
|
+
:neptune_settings,
|
3443
3506
|
:redshift_settings)
|
3444
3507
|
include Aws::Structure
|
3445
3508
|
end
|
@@ -3702,6 +3765,7 @@ module Aws::DatabaseMigrationService
|
|
3702
3765
|
# cdc_start_time: Time.now,
|
3703
3766
|
# cdc_start_position: "String",
|
3704
3767
|
# cdc_stop_position: "String",
|
3768
|
+
# task_data: "String",
|
3705
3769
|
# }
|
3706
3770
|
#
|
3707
3771
|
# @!attribute [rw] replication_task_arn
|
@@ -3733,8 +3797,8 @@ module Aws::DatabaseMigrationService
|
|
3733
3797
|
# @return [String]
|
3734
3798
|
#
|
3735
3799
|
# @!attribute [rw] replication_task_settings
|
3736
|
-
# JSON file that contains settings for the task, such as
|
3737
|
-
#
|
3800
|
+
# JSON file that contains settings for the task, such as task metadata
|
3801
|
+
# settings.
|
3738
3802
|
# @return [String]
|
3739
3803
|
#
|
3740
3804
|
# @!attribute [rw] cdc_start_time
|
@@ -3786,6 +3850,17 @@ module Aws::DatabaseMigrationService
|
|
3786
3850
|
# 3018-02-09T12:12:12 “
|
3787
3851
|
# @return [String]
|
3788
3852
|
#
|
3853
|
+
# @!attribute [rw] task_data
|
3854
|
+
# Supplemental information that the task requires to migrate the data
|
3855
|
+
# for certain source and target endpoints. For more information, see
|
3856
|
+
# [Specifying Supplemental Data for Task Settings][1] in the *AWS
|
3857
|
+
# Database Migration User Guide.*
|
3858
|
+
#
|
3859
|
+
#
|
3860
|
+
#
|
3861
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
|
3862
|
+
# @return [String]
|
3863
|
+
#
|
3789
3864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTaskMessage AWS API Documentation
|
3790
3865
|
#
|
3791
3866
|
class ModifyReplicationTaskMessage < Struct.new(
|
@@ -3796,7 +3871,8 @@ module Aws::DatabaseMigrationService
|
|
3796
3871
|
:replication_task_settings,
|
3797
3872
|
:cdc_start_time,
|
3798
3873
|
:cdc_start_position,
|
3799
|
-
:cdc_stop_position
|
3874
|
+
:cdc_stop_position,
|
3875
|
+
:task_data)
|
3800
3876
|
include Aws::Structure
|
3801
3877
|
end
|
3802
3878
|
|
@@ -3931,6 +4007,83 @@ module Aws::DatabaseMigrationService
|
|
3931
4007
|
include Aws::Structure
|
3932
4008
|
end
|
3933
4009
|
|
4010
|
+
# Provides information that defines an Amazon Neptune endpoint.
|
4011
|
+
#
|
4012
|
+
# @note When making an API call, you may pass NeptuneSettings
|
4013
|
+
# data as a hash:
|
4014
|
+
#
|
4015
|
+
# {
|
4016
|
+
# service_access_role_arn: "String",
|
4017
|
+
# s3_bucket_name: "String", # required
|
4018
|
+
# s3_bucket_folder: "String", # required
|
4019
|
+
# error_retry_duration: 1,
|
4020
|
+
# max_file_size: 1,
|
4021
|
+
# max_retry_count: 1,
|
4022
|
+
# iam_auth_enabled: false,
|
4023
|
+
# }
|
4024
|
+
#
|
4025
|
+
# @!attribute [rw] service_access_role_arn
|
4026
|
+
# The ARN of the service role you have created for the Neptune target
|
4027
|
+
# endpoint. For more information, see
|
4028
|
+
# [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.ServiceRole][1]
|
4029
|
+
# in the *AWS Database Migration Service User Guide.*
|
4030
|
+
#
|
4031
|
+
#
|
4032
|
+
#
|
4033
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.ServiceRole
|
4034
|
+
# @return [String]
|
4035
|
+
#
|
4036
|
+
# @!attribute [rw] s3_bucket_name
|
4037
|
+
# The name of the S3 bucket for AWS DMS to temporarily store migrated
|
4038
|
+
# graph data in CSV files before bulk-loading it to the Neptune target
|
4039
|
+
# database. AWS DMS maps the SQL source data to graph data before
|
4040
|
+
# storing it in these CSV files.
|
4041
|
+
# @return [String]
|
4042
|
+
#
|
4043
|
+
# @!attribute [rw] s3_bucket_folder
|
4044
|
+
# A folder path where you where you want AWS DMS to store migrated
|
4045
|
+
# graph data in the S3 bucket specified by `S3BucketName`
|
4046
|
+
# @return [String]
|
4047
|
+
#
|
4048
|
+
# @!attribute [rw] error_retry_duration
|
4049
|
+
# The number of milliseconds for AWS DMS to wait to retry a bulk-load
|
4050
|
+
# of migrated graph data to the Neptune target database before raising
|
4051
|
+
# an error. The default is 250.
|
4052
|
+
# @return [Integer]
|
4053
|
+
#
|
4054
|
+
# @!attribute [rw] max_file_size
|
4055
|
+
# The maximum size in KB of migrated graph data stored in a CSV file
|
4056
|
+
# before AWS DMS bulk-loads the data to the Neptune target database.
|
4057
|
+
# The default is 1048576 KB. If successful, AWS DMS clears the bucket,
|
4058
|
+
# ready to store the next batch of migrated graph data.
|
4059
|
+
# @return [Integer]
|
4060
|
+
#
|
4061
|
+
# @!attribute [rw] max_retry_count
|
4062
|
+
# The number of times for AWS DMS to retry a bulk-load of migrated
|
4063
|
+
# graph data to the Neptune target database before raising an error.
|
4064
|
+
# The default is 5.
|
4065
|
+
# @return [Integer]
|
4066
|
+
#
|
4067
|
+
# @!attribute [rw] iam_auth_enabled
|
4068
|
+
# If you want IAM authorization enabled for this endpoint, set this
|
4069
|
+
# parameter to `true` and attach the appropriate role policy document
|
4070
|
+
# to your service role specified by `ServiceAccessRoleArn`. The
|
4071
|
+
# default is `false`.
|
4072
|
+
# @return [Boolean]
|
4073
|
+
#
|
4074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/NeptuneSettings AWS API Documentation
|
4075
|
+
#
|
4076
|
+
class NeptuneSettings < Struct.new(
|
4077
|
+
:service_access_role_arn,
|
4078
|
+
:s3_bucket_name,
|
4079
|
+
:s3_bucket_folder,
|
4080
|
+
:error_retry_duration,
|
4081
|
+
:max_file_size,
|
4082
|
+
:max_retry_count,
|
4083
|
+
:iam_auth_enabled)
|
4084
|
+
include Aws::Structure
|
4085
|
+
end
|
4086
|
+
|
3934
4087
|
# In response to the `DescribeOrderableReplicationInstances` operation,
|
3935
4088
|
# this object describes an available replication instance. This
|
3936
4089
|
# description includes the replication instance's type, engine version,
|
@@ -4835,6 +4988,17 @@ module Aws::DatabaseMigrationService
|
|
4835
4988
|
# and table errors.
|
4836
4989
|
# @return [Types::ReplicationTaskStats]
|
4837
4990
|
#
|
4991
|
+
# @!attribute [rw] task_data
|
4992
|
+
# Supplemental information that the task requires to migrate the data
|
4993
|
+
# for certain source and target endpoints. For more information, see
|
4994
|
+
# [Specifying Supplemental Data for Task Settings][1] in the *AWS
|
4995
|
+
# Database Migration User Guide.*
|
4996
|
+
#
|
4997
|
+
#
|
4998
|
+
#
|
4999
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html
|
5000
|
+
# @return [String]
|
5001
|
+
#
|
4838
5002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTask AWS API Documentation
|
4839
5003
|
#
|
4840
5004
|
class ReplicationTask < Struct.new(
|
@@ -4854,7 +5018,8 @@ module Aws::DatabaseMigrationService
|
|
4854
5018
|
:cdc_stop_position,
|
4855
5019
|
:recovery_checkpoint,
|
4856
5020
|
:replication_task_arn,
|
4857
|
-
:replication_task_stats
|
5021
|
+
:replication_task_stats,
|
5022
|
+
:task_data)
|
4858
5023
|
include Aws::Structure
|
4859
5024
|
end
|
4860
5025
|
|
@@ -5646,6 +5811,12 @@ module Aws::DatabaseMigrationService
|
|
5646
5811
|
# The type of endpoint. Valid values are `source` and `target`.
|
5647
5812
|
# @return [String]
|
5648
5813
|
#
|
5814
|
+
# @!attribute [rw] replication_instance_engine_minimum_version
|
5815
|
+
# The earliest AWS DMS engine version that supports this endpoint
|
5816
|
+
# engine. Note that endpoint engines released with AWS DMS versions
|
5817
|
+
# earlier than 3.1.1 do not return a value for this parameter.
|
5818
|
+
# @return [String]
|
5819
|
+
#
|
5649
5820
|
# @!attribute [rw] engine_display_name
|
5650
5821
|
# The expanded name for the engine name. For example, if the
|
5651
5822
|
# `EngineName` parameter is "aurora," this value would be "Amazon
|
@@ -5658,6 +5829,7 @@ module Aws::DatabaseMigrationService
|
|
5658
5829
|
:engine_name,
|
5659
5830
|
:supports_cdc,
|
5660
5831
|
:endpoint_type,
|
5832
|
+
:replication_instance_engine_minimum_version,
|
5661
5833
|
:engine_display_name)
|
5662
5834
|
include Aws::Structure
|
5663
5835
|
end
|
@@ -8,6 +8,74 @@
|
|
8
8
|
require 'aws-sdk-core/waiters'
|
9
9
|
|
10
10
|
module Aws::DatabaseMigrationService
|
11
|
+
# Waiters are utility methods that poll for a particular state to occur
|
12
|
+
# on a client. Waiters can fail after a number of attempts at a polling
|
13
|
+
# interval defined for the service client.
|
14
|
+
#
|
15
|
+
# For a list of operations that can be waited for and the
|
16
|
+
# client methods called for each operation, see the table below or the
|
17
|
+
# {Client#wait_until} field documentation for the {Client}.
|
18
|
+
#
|
19
|
+
# # Invoking a Waiter
|
20
|
+
# To invoke a waiter, call #wait_until on a {Client}. The first parameter
|
21
|
+
# is the waiter name, which is specific to the service client and indicates
|
22
|
+
# which operation is being waited for. The second parameter is a hash of
|
23
|
+
# parameters that are passed to the client method called by the waiter,
|
24
|
+
# which varies according to the waiter name.
|
25
|
+
#
|
26
|
+
# # Wait Failures
|
27
|
+
# To catch errors in a waiter, use WaiterFailed,
|
28
|
+
# as shown in the following example.
|
29
|
+
#
|
30
|
+
# rescue rescue Aws::Waiters::Errors::WaiterFailed => error
|
31
|
+
# puts "failed waiting for instance running: #{error.message}
|
32
|
+
# end
|
33
|
+
#
|
34
|
+
# # Configuring a Waiter
|
35
|
+
# Each waiter has a default polling interval and a maximum number of
|
36
|
+
# attempts it will make before returning control to your program.
|
37
|
+
# To set these values, use the `max_attempts` and `delay` parameters
|
38
|
+
# in your `#wait_until` call.
|
39
|
+
# The following example waits for up to 25 seconds, polling every five seconds.
|
40
|
+
#
|
41
|
+
# client.wait_until(...) do |w|
|
42
|
+
# w.max_attempts = 5
|
43
|
+
# w.delay = 5
|
44
|
+
# end
|
45
|
+
#
|
46
|
+
# To disable wait failures, set the value of either of these parameters
|
47
|
+
# to `nil`.
|
48
|
+
#
|
49
|
+
# # Extending a Waiter
|
50
|
+
# To modify the behavior of waiters, you can register callbacks that are
|
51
|
+
# triggered before each polling attempt and before waiting.
|
52
|
+
#
|
53
|
+
# The following example implements an exponential backoff in a waiter
|
54
|
+
# by doubling the amount of time to wait on every attempt.
|
55
|
+
#
|
56
|
+
# client.wait_until(...) do |w|
|
57
|
+
# w.interval = 0 # disable normal sleep
|
58
|
+
# w.before_wait do |n, resp|
|
59
|
+
# sleep(n ** 2)
|
60
|
+
# end
|
61
|
+
# end
|
62
|
+
#
|
63
|
+
# # Available Waiters
|
64
|
+
#
|
65
|
+
# The following table lists the valid waiter names, the operations they call,
|
66
|
+
# and the default `:delay` and `:max_attempts` values.
|
67
|
+
#
|
68
|
+
# | waiter_name | params | :delay | :max_attempts |
|
69
|
+
# | ------------------------------ | --------------------------------------- | -------- | ------------- |
|
70
|
+
# | endpoint_deleted | {Client#describe_endpoints} | 5 | 60 |
|
71
|
+
# | replication_instance_available | {Client#describe_replication_instances} | 60 | 60 |
|
72
|
+
# | replication_instance_deleted | {Client#describe_replication_instances} | 15 | 60 |
|
73
|
+
# | replication_task_deleted | {Client#describe_replication_tasks} | 15 | 60 |
|
74
|
+
# | replication_task_ready | {Client#describe_replication_tasks} | 15 | 60 |
|
75
|
+
# | replication_task_running | {Client#describe_replication_tasks} | 15 | 60 |
|
76
|
+
# | replication_task_stopped | {Client#describe_replication_tasks} | 15 | 60 |
|
77
|
+
# | test_connection_succeeds | {Client#describe_connections} | 5 | 60 |
|
78
|
+
#
|
11
79
|
module Waiters
|
12
80
|
|
13
81
|
# Wait until testing endpoint is deleted.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-databasemigrationservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
82
|
version: '0'
|
83
83
|
requirements: []
|
84
84
|
rubyforge_project:
|
85
|
-
rubygems_version: 2.
|
85
|
+
rubygems_version: 2.7.6.2
|
86
86
|
signing_key:
|
87
87
|
specification_version: 4
|
88
88
|
summary: AWS SDK for Ruby - AWS Database Migration Service
|