aws-sdk-databasemigrationservice 1.4.0 → 1.5.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5cccd4c3f29caebb03f23b30d08d186292cf758f
|
4
|
+
data.tar.gz: 8cf57390d1bb9affc94e45d1226748508d66480a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56a314cb4fc249b7470ac74773e40f30a6e4e5a8f38f91373a63872936a11b181b171de72a473d58fd47a27c4f83deb4f77f0b856b6ca12400b1f24aba3a1bca
|
7
|
+
data.tar.gz: 87ff737ea3f5648b4ad15b27132e0f09a0b674d8df8908df68e53b81056da3a0e8a03b68e0a6ffd99b0fbebd93c60a25aed5a16a968be7bafbca3a3b018e97fe
|
@@ -155,10 +155,11 @@ module Aws::DatabaseMigrationService
|
|
155
155
|
|
156
156
|
# @!group API Operations
|
157
157
|
|
158
|
-
# Adds metadata tags to
|
159
|
-
# endpoint, security group, and migration task. These tags can
|
160
|
-
# used with cost allocation reporting to track cost associated
|
161
|
-
# resources, or used in a Condition statement in an IAM policy
|
158
|
+
# Adds metadata tags to an AWS DMS resource, including replication
|
159
|
+
# instance, endpoint, security group, and migration task. These tags can
|
160
|
+
# also be used with cost allocation reporting to track cost associated
|
161
|
+
# with DMS resources, or used in a Condition statement in an IAM policy
|
162
|
+
# for DMS.
|
162
163
|
#
|
163
164
|
# @option params [required, String] :resource_arn
|
164
165
|
# The Amazon Resource Name (ARN) of the AWS DMS resource the tag is to
|
@@ -225,7 +226,8 @@ module Aws::DatabaseMigrationService
|
|
225
226
|
# @option params [required, String] :engine_name
|
226
227
|
# The type of engine for the endpoint. Valid values, depending on the
|
227
228
|
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
228
|
-
# redshift,
|
229
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, dynamodb,
|
230
|
+
# mongodb, and sqlserver.
|
229
231
|
#
|
230
232
|
# @option params [String] :username
|
231
233
|
# The user name to be used to login to the endpoint database.
|
@@ -266,6 +268,13 @@ module Aws::DatabaseMigrationService
|
|
266
268
|
#
|
267
269
|
# The default value is none.
|
268
270
|
#
|
271
|
+
# @option params [String] :service_access_role_arn
|
272
|
+
# The Amazon Resource Name (ARN) for the service access role you want to
|
273
|
+
# use to create the endpoint.
|
274
|
+
#
|
275
|
+
# @option params [String] :external_table_definition
|
276
|
+
# The external table definition.
|
277
|
+
#
|
269
278
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
270
279
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
271
280
|
# more information about the available settings, see the **Using Object
|
@@ -277,7 +286,7 @@ module Aws::DatabaseMigrationService
|
|
277
286
|
# [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html
|
278
287
|
#
|
279
288
|
# @option params [Types::S3Settings] :s3_settings
|
280
|
-
# Settings in JSON format for the target S3 endpoint. For more
|
289
|
+
# Settings in JSON format for the target Amazon S3 endpoint. For more
|
281
290
|
# information about the available settings, see the **Extra Connection
|
282
291
|
# Attributes** section at [ Using Amazon S3 as a Target for AWS Database
|
283
292
|
# Migration Service][1].
|
@@ -363,6 +372,8 @@ module Aws::DatabaseMigrationService
|
|
363
372
|
# ],
|
364
373
|
# certificate_arn: "String",
|
365
374
|
# ssl_mode: "none", # accepts none, require, verify-ca, verify-full
|
375
|
+
# service_access_role_arn: "String",
|
376
|
+
# external_table_definition: "String",
|
366
377
|
# dynamo_db_settings: {
|
367
378
|
# service_access_role_arn: "String", # required
|
368
379
|
# },
|
@@ -387,6 +398,7 @@ module Aws::DatabaseMigrationService
|
|
387
398
|
# extract_doc_id: "String",
|
388
399
|
# docs_to_investigate: "String",
|
389
400
|
# auth_source: "String",
|
401
|
+
# kms_key_id: "String",
|
390
402
|
# },
|
391
403
|
# })
|
392
404
|
#
|
@@ -395,6 +407,7 @@ module Aws::DatabaseMigrationService
|
|
395
407
|
# resp.endpoint.endpoint_identifier #=> String
|
396
408
|
# resp.endpoint.endpoint_type #=> String, one of "source", "target"
|
397
409
|
# resp.endpoint.engine_name #=> String
|
410
|
+
# resp.endpoint.engine_display_name #=> String
|
398
411
|
# resp.endpoint.username #=> String
|
399
412
|
# resp.endpoint.server_name #=> String
|
400
413
|
# resp.endpoint.port #=> Integer
|
@@ -405,6 +418,8 @@ module Aws::DatabaseMigrationService
|
|
405
418
|
# resp.endpoint.endpoint_arn #=> String
|
406
419
|
# resp.endpoint.certificate_arn #=> String
|
407
420
|
# resp.endpoint.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
|
421
|
+
# resp.endpoint.service_access_role_arn #=> String
|
422
|
+
# resp.endpoint.external_table_definition #=> String
|
408
423
|
# resp.endpoint.external_id #=> String
|
409
424
|
# resp.endpoint.dynamo_db_settings.service_access_role_arn #=> String
|
410
425
|
# resp.endpoint.s3_settings.service_access_role_arn #=> String
|
@@ -425,6 +440,7 @@ module Aws::DatabaseMigrationService
|
|
425
440
|
# resp.endpoint.mongo_db_settings.extract_doc_id #=> String
|
426
441
|
# resp.endpoint.mongo_db_settings.docs_to_investigate #=> String
|
427
442
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
443
|
+
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
428
444
|
#
|
429
445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
|
430
446
|
#
|
@@ -459,7 +475,7 @@ module Aws::DatabaseMigrationService
|
|
459
475
|
# [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
|
460
476
|
#
|
461
477
|
# @option params [required, String] :subscription_name
|
462
|
-
# The name of the DMS event notification subscription.
|
478
|
+
# The name of the AWS DMS event notification subscription.
|
463
479
|
#
|
464
480
|
# Constraints: The name must be less than 255 characters.
|
465
481
|
#
|
@@ -778,6 +794,7 @@ module Aws::DatabaseMigrationService
|
|
778
794
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
779
795
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
780
796
|
# resp.replication_instance.secondary_availability_zone #=> String
|
797
|
+
# resp.replication_instance.free_until #=> Time
|
781
798
|
#
|
782
799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstance AWS API Documentation
|
783
800
|
#
|
@@ -918,7 +935,34 @@ module Aws::DatabaseMigrationService
|
|
918
935
|
# [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TaskSettings.html
|
919
936
|
#
|
920
937
|
# @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
|
921
|
-
#
|
938
|
+
# Indicates the start time for a change data capture (CDC) operation.
|
939
|
+
# Use either CdcStartTime or CdcStartPosition to specify when you want a
|
940
|
+
# CDC operation to start. Specifying both values results in an error.
|
941
|
+
#
|
942
|
+
# @option params [String] :cdc_start_position
|
943
|
+
# Indicates when you want a change data capture (CDC) operation to
|
944
|
+
# start. Use either CdcStartPosition or CdcStartTime to specify when you
|
945
|
+
# want a CDC operation to start. Specifying both values results in an
|
946
|
+
# error.
|
947
|
+
#
|
948
|
+
# The value can be in date, checkpoint, or LSN/SCN format.
|
949
|
+
#
|
950
|
+
# Date Example: --cdc-start-position “2018-03-08T12:12:12”
|
951
|
+
#
|
952
|
+
# Checkpoint Example: --cdc-start-position
|
953
|
+
# "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93"
|
954
|
+
#
|
955
|
+
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
956
|
+
#
|
957
|
+
# @option params [String] :cdc_stop_position
|
958
|
+
# Indicates when you want a change data capture (CDC) operation to stop.
|
959
|
+
# The value can be either server time or commit time.
|
960
|
+
#
|
961
|
+
# Server time example: --cdc-stop-position
|
962
|
+
# “server\_time:3018-02-09T12:12:12”
|
963
|
+
#
|
964
|
+
# Commit time example: --cdc-stop-position “commit\_time:
|
965
|
+
# 3018-02-09T12:12:12 “
|
922
966
|
#
|
923
967
|
# @option params [Array<Types::Tag>] :tags
|
924
968
|
# Tags to be added to the replication instance.
|
@@ -976,6 +1020,8 @@ module Aws::DatabaseMigrationService
|
|
976
1020
|
# table_mappings: "String", # required
|
977
1021
|
# replication_task_settings: "String",
|
978
1022
|
# cdc_start_time: Time.now,
|
1023
|
+
# cdc_start_position: "String",
|
1024
|
+
# cdc_stop_position: "String",
|
979
1025
|
# tags: [
|
980
1026
|
# {
|
981
1027
|
# key: "String",
|
@@ -998,6 +1044,9 @@ module Aws::DatabaseMigrationService
|
|
998
1044
|
# resp.replication_task.stop_reason #=> String
|
999
1045
|
# resp.replication_task.replication_task_creation_date #=> Time
|
1000
1046
|
# resp.replication_task.replication_task_start_date #=> Time
|
1047
|
+
# resp.replication_task.cdc_start_position #=> String
|
1048
|
+
# resp.replication_task.cdc_stop_position #=> String
|
1049
|
+
# resp.replication_task.recovery_checkpoint #=> String
|
1001
1050
|
# resp.replication_task.replication_task_arn #=> String
|
1002
1051
|
# resp.replication_task.replication_task_stats.full_load_progress_percent #=> Integer
|
1003
1052
|
# resp.replication_task.replication_task_stats.elapsed_time_millis #=> Integer
|
@@ -1118,6 +1167,7 @@ module Aws::DatabaseMigrationService
|
|
1118
1167
|
# resp.endpoint.endpoint_identifier #=> String
|
1119
1168
|
# resp.endpoint.endpoint_type #=> String, one of "source", "target"
|
1120
1169
|
# resp.endpoint.engine_name #=> String
|
1170
|
+
# resp.endpoint.engine_display_name #=> String
|
1121
1171
|
# resp.endpoint.username #=> String
|
1122
1172
|
# resp.endpoint.server_name #=> String
|
1123
1173
|
# resp.endpoint.port #=> Integer
|
@@ -1128,6 +1178,8 @@ module Aws::DatabaseMigrationService
|
|
1128
1178
|
# resp.endpoint.endpoint_arn #=> String
|
1129
1179
|
# resp.endpoint.certificate_arn #=> String
|
1130
1180
|
# resp.endpoint.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
|
1181
|
+
# resp.endpoint.service_access_role_arn #=> String
|
1182
|
+
# resp.endpoint.external_table_definition #=> String
|
1131
1183
|
# resp.endpoint.external_id #=> String
|
1132
1184
|
# resp.endpoint.dynamo_db_settings.service_access_role_arn #=> String
|
1133
1185
|
# resp.endpoint.s3_settings.service_access_role_arn #=> String
|
@@ -1148,6 +1200,7 @@ module Aws::DatabaseMigrationService
|
|
1148
1200
|
# resp.endpoint.mongo_db_settings.extract_doc_id #=> String
|
1149
1201
|
# resp.endpoint.mongo_db_settings.docs_to_investigate #=> String
|
1150
1202
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
1203
|
+
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
1151
1204
|
#
|
1152
1205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
|
1153
1206
|
#
|
@@ -1318,6 +1371,7 @@ module Aws::DatabaseMigrationService
|
|
1318
1371
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
1319
1372
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
1320
1373
|
# resp.replication_instance.secondary_availability_zone #=> String
|
1374
|
+
# resp.replication_instance.free_until #=> Time
|
1321
1375
|
#
|
1322
1376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationInstance AWS API Documentation
|
1323
1377
|
#
|
@@ -1417,6 +1471,9 @@ module Aws::DatabaseMigrationService
|
|
1417
1471
|
# resp.replication_task.stop_reason #=> String
|
1418
1472
|
# resp.replication_task.replication_task_creation_date #=> Time
|
1419
1473
|
# resp.replication_task.replication_task_start_date #=> Time
|
1474
|
+
# resp.replication_task.cdc_start_position #=> String
|
1475
|
+
# resp.replication_task.cdc_stop_position #=> String
|
1476
|
+
# resp.replication_task.recovery_checkpoint #=> String
|
1420
1477
|
# resp.replication_task.replication_task_arn #=> String
|
1421
1478
|
# resp.replication_task.replication_task_stats.full_load_progress_percent #=> Integer
|
1422
1479
|
# resp.replication_task.replication_task_stats.elapsed_time_millis #=> Integer
|
@@ -1749,6 +1806,7 @@ module Aws::DatabaseMigrationService
|
|
1749
1806
|
# resp.supported_endpoint_types[0].engine_name #=> String
|
1750
1807
|
# resp.supported_endpoint_types[0].supports_cdc #=> Boolean
|
1751
1808
|
# resp.supported_endpoint_types[0].endpoint_type #=> String, one of "source", "target"
|
1809
|
+
# resp.supported_endpoint_types[0].engine_display_name #=> String
|
1752
1810
|
#
|
1753
1811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypes AWS API Documentation
|
1754
1812
|
#
|
@@ -1834,6 +1892,7 @@ module Aws::DatabaseMigrationService
|
|
1834
1892
|
# resp.endpoints[0].endpoint_identifier #=> String
|
1835
1893
|
# resp.endpoints[0].endpoint_type #=> String, one of "source", "target"
|
1836
1894
|
# resp.endpoints[0].engine_name #=> String
|
1895
|
+
# resp.endpoints[0].engine_display_name #=> String
|
1837
1896
|
# resp.endpoints[0].username #=> String
|
1838
1897
|
# resp.endpoints[0].server_name #=> String
|
1839
1898
|
# resp.endpoints[0].port #=> Integer
|
@@ -1844,6 +1903,8 @@ module Aws::DatabaseMigrationService
|
|
1844
1903
|
# resp.endpoints[0].endpoint_arn #=> String
|
1845
1904
|
# resp.endpoints[0].certificate_arn #=> String
|
1846
1905
|
# resp.endpoints[0].ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
|
1906
|
+
# resp.endpoints[0].service_access_role_arn #=> String
|
1907
|
+
# resp.endpoints[0].external_table_definition #=> String
|
1847
1908
|
# resp.endpoints[0].external_id #=> String
|
1848
1909
|
# resp.endpoints[0].dynamo_db_settings.service_access_role_arn #=> String
|
1849
1910
|
# resp.endpoints[0].s3_settings.service_access_role_arn #=> String
|
@@ -1864,6 +1925,7 @@ module Aws::DatabaseMigrationService
|
|
1864
1925
|
# resp.endpoints[0].mongo_db_settings.extract_doc_id #=> String
|
1865
1926
|
# resp.endpoints[0].mongo_db_settings.docs_to_investigate #=> String
|
1866
1927
|
# resp.endpoints[0].mongo_db_settings.auth_source #=> String
|
1928
|
+
# resp.endpoints[0].mongo_db_settings.kms_key_id #=> String
|
1867
1929
|
#
|
1868
1930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints AWS API Documentation
|
1869
1931
|
#
|
@@ -2365,6 +2427,7 @@ module Aws::DatabaseMigrationService
|
|
2365
2427
|
# resp.replication_instances[0].replication_instance_private_ip_addresses[0] #=> String
|
2366
2428
|
# resp.replication_instances[0].publicly_accessible #=> Boolean
|
2367
2429
|
# resp.replication_instances[0].secondary_availability_zone #=> String
|
2430
|
+
# resp.replication_instances[0].free_until #=> Time
|
2368
2431
|
#
|
2369
2432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances AWS API Documentation
|
2370
2433
|
#
|
@@ -2605,6 +2668,9 @@ module Aws::DatabaseMigrationService
|
|
2605
2668
|
# resp.replication_tasks[0].stop_reason #=> String
|
2606
2669
|
# resp.replication_tasks[0].replication_task_creation_date #=> Time
|
2607
2670
|
# resp.replication_tasks[0].replication_task_start_date #=> Time
|
2671
|
+
# resp.replication_tasks[0].cdc_start_position #=> String
|
2672
|
+
# resp.replication_tasks[0].cdc_stop_position #=> String
|
2673
|
+
# resp.replication_tasks[0].recovery_checkpoint #=> String
|
2608
2674
|
# resp.replication_tasks[0].replication_task_arn #=> String
|
2609
2675
|
# resp.replication_tasks[0].replication_task_stats.full_load_progress_percent #=> Integer
|
2610
2676
|
# resp.replication_tasks[0].replication_task_stats.elapsed_time_millis #=> Integer
|
@@ -2927,7 +2993,8 @@ module Aws::DatabaseMigrationService
|
|
2927
2993
|
# @option params [String] :engine_name
|
2928
2994
|
# The type of engine for the endpoint. Valid values, depending on the
|
2929
2995
|
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
2930
|
-
# redshift,
|
2996
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, sybase,
|
2997
|
+
# dynamodb, mongodb, and sqlserver.
|
2931
2998
|
#
|
2932
2999
|
# @option params [String] :username
|
2933
3000
|
# The user name to be used to login to the endpoint database.
|
@@ -2960,6 +3027,13 @@ module Aws::DatabaseMigrationService
|
|
2960
3027
|
#
|
2961
3028
|
# The default value is none.
|
2962
3029
|
#
|
3030
|
+
# @option params [String] :service_access_role_arn
|
3031
|
+
# The Amazon Resource Name (ARN) for the service access role you want to
|
3032
|
+
# use to modify the endpoint.
|
3033
|
+
#
|
3034
|
+
# @option params [String] :external_table_definition
|
3035
|
+
# The external table definition.
|
3036
|
+
#
|
2963
3037
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
2964
3038
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
2965
3039
|
# more information about the available settings, see the **Using Object
|
@@ -3036,6 +3110,8 @@ module Aws::DatabaseMigrationService
|
|
3036
3110
|
# extra_connection_attributes: "String",
|
3037
3111
|
# certificate_arn: "String",
|
3038
3112
|
# ssl_mode: "none", # accepts none, require, verify-ca, verify-full
|
3113
|
+
# service_access_role_arn: "String",
|
3114
|
+
# external_table_definition: "String",
|
3039
3115
|
# dynamo_db_settings: {
|
3040
3116
|
# service_access_role_arn: "String", # required
|
3041
3117
|
# },
|
@@ -3060,6 +3136,7 @@ module Aws::DatabaseMigrationService
|
|
3060
3136
|
# extract_doc_id: "String",
|
3061
3137
|
# docs_to_investigate: "String",
|
3062
3138
|
# auth_source: "String",
|
3139
|
+
# kms_key_id: "String",
|
3063
3140
|
# },
|
3064
3141
|
# })
|
3065
3142
|
#
|
@@ -3068,6 +3145,7 @@ module Aws::DatabaseMigrationService
|
|
3068
3145
|
# resp.endpoint.endpoint_identifier #=> String
|
3069
3146
|
# resp.endpoint.endpoint_type #=> String, one of "source", "target"
|
3070
3147
|
# resp.endpoint.engine_name #=> String
|
3148
|
+
# resp.endpoint.engine_display_name #=> String
|
3071
3149
|
# resp.endpoint.username #=> String
|
3072
3150
|
# resp.endpoint.server_name #=> String
|
3073
3151
|
# resp.endpoint.port #=> Integer
|
@@ -3078,6 +3156,8 @@ module Aws::DatabaseMigrationService
|
|
3078
3156
|
# resp.endpoint.endpoint_arn #=> String
|
3079
3157
|
# resp.endpoint.certificate_arn #=> String
|
3080
3158
|
# resp.endpoint.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
|
3159
|
+
# resp.endpoint.service_access_role_arn #=> String
|
3160
|
+
# resp.endpoint.external_table_definition #=> String
|
3081
3161
|
# resp.endpoint.external_id #=> String
|
3082
3162
|
# resp.endpoint.dynamo_db_settings.service_access_role_arn #=> String
|
3083
3163
|
# resp.endpoint.s3_settings.service_access_role_arn #=> String
|
@@ -3098,6 +3178,7 @@ module Aws::DatabaseMigrationService
|
|
3098
3178
|
# resp.endpoint.mongo_db_settings.extract_doc_id #=> String
|
3099
3179
|
# resp.endpoint.mongo_db_settings.docs_to_investigate #=> String
|
3100
3180
|
# resp.endpoint.mongo_db_settings.auth_source #=> String
|
3181
|
+
# resp.endpoint.mongo_db_settings.kms_key_id #=> String
|
3101
3182
|
#
|
3102
3183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
|
3103
3184
|
#
|
@@ -3378,6 +3459,7 @@ module Aws::DatabaseMigrationService
|
|
3378
3459
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
3379
3460
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
3380
3461
|
# resp.replication_instance.secondary_availability_zone #=> String
|
3462
|
+
# resp.replication_instance.free_until #=> Time
|
3381
3463
|
#
|
3382
3464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstance AWS API Documentation
|
3383
3465
|
#
|
@@ -3493,7 +3575,34 @@ module Aws::DatabaseMigrationService
|
|
3493
3575
|
# settings.
|
3494
3576
|
#
|
3495
3577
|
# @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
|
3496
|
-
#
|
3578
|
+
# Indicates the start time for a change data capture (CDC) operation.
|
3579
|
+
# Use either CdcStartTime or CdcStartPosition to specify when you want a
|
3580
|
+
# CDC operation to start. Specifying both values results in an error.
|
3581
|
+
#
|
3582
|
+
# @option params [String] :cdc_start_position
|
3583
|
+
# Indicates when you want a change data capture (CDC) operation to
|
3584
|
+
# start. Use either CdcStartPosition or CdcStartTime to specify when you
|
3585
|
+
# want a CDC operation to start. Specifying both values results in an
|
3586
|
+
# error.
|
3587
|
+
#
|
3588
|
+
# The value can be in date, checkpoint, or LSN/SCN format.
|
3589
|
+
#
|
3590
|
+
# Date Example: --cdc-start-position “2018-03-08T12:12:12”
|
3591
|
+
#
|
3592
|
+
# Checkpoint Example: --cdc-start-position
|
3593
|
+
# "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93"
|
3594
|
+
#
|
3595
|
+
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
3596
|
+
#
|
3597
|
+
# @option params [String] :cdc_stop_position
|
3598
|
+
# Indicates when you want a change data capture (CDC) operation to stop.
|
3599
|
+
# The value can be either server time or commit time.
|
3600
|
+
#
|
3601
|
+
# Server time example: --cdc-stop-position
|
3602
|
+
# “server\_time:3018-02-09T12:12:12”
|
3603
|
+
#
|
3604
|
+
# Commit time example: --cdc-stop-position “commit\_time:
|
3605
|
+
# 3018-02-09T12:12:12 “
|
3497
3606
|
#
|
3498
3607
|
# @return [Types::ModifyReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3499
3608
|
#
|
@@ -3508,6 +3617,8 @@ module Aws::DatabaseMigrationService
|
|
3508
3617
|
# table_mappings: "String",
|
3509
3618
|
# replication_task_settings: "String",
|
3510
3619
|
# cdc_start_time: Time.now,
|
3620
|
+
# cdc_start_position: "String",
|
3621
|
+
# cdc_stop_position: "String",
|
3511
3622
|
# })
|
3512
3623
|
#
|
3513
3624
|
# @example Response structure
|
@@ -3524,6 +3635,9 @@ module Aws::DatabaseMigrationService
|
|
3524
3635
|
# resp.replication_task.stop_reason #=> String
|
3525
3636
|
# resp.replication_task.replication_task_creation_date #=> Time
|
3526
3637
|
# resp.replication_task.replication_task_start_date #=> Time
|
3638
|
+
# resp.replication_task.cdc_start_position #=> String
|
3639
|
+
# resp.replication_task.cdc_stop_position #=> String
|
3640
|
+
# resp.replication_task.recovery_checkpoint #=> String
|
3527
3641
|
# resp.replication_task.replication_task_arn #=> String
|
3528
3642
|
# resp.replication_task.replication_task_stats.full_load_progress_percent #=> Integer
|
3529
3643
|
# resp.replication_task.replication_task_stats.elapsed_time_millis #=> Integer
|
@@ -3600,6 +3714,7 @@ module Aws::DatabaseMigrationService
|
|
3600
3714
|
# resp.replication_instance.replication_instance_private_ip_addresses[0] #=> String
|
3601
3715
|
# resp.replication_instance.publicly_accessible #=> Boolean
|
3602
3716
|
# resp.replication_instance.secondary_availability_zone #=> String
|
3717
|
+
# resp.replication_instance.free_until #=> Time
|
3603
3718
|
#
|
3604
3719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance AWS API Documentation
|
3605
3720
|
#
|
@@ -3762,7 +3877,34 @@ module Aws::DatabaseMigrationService
|
|
3762
3877
|
# The type of replication task.
|
3763
3878
|
#
|
3764
3879
|
# @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
|
3765
|
-
#
|
3880
|
+
# Indicates the start time for a change data capture (CDC) operation.
|
3881
|
+
# Use either CdcStartTime or CdcStartPosition to specify when you want a
|
3882
|
+
# CDC operation to start. Specifying both values results in an error.
|
3883
|
+
#
|
3884
|
+
# @option params [String] :cdc_start_position
|
3885
|
+
# Indicates when you want a change data capture (CDC) operation to
|
3886
|
+
# start. Use either CdcStartPosition or CdcStartTime to specify when you
|
3887
|
+
# want a CDC operation to start. Specifying both values results in an
|
3888
|
+
# error.
|
3889
|
+
#
|
3890
|
+
# The value can be in date, checkpoint, or LSN/SCN format.
|
3891
|
+
#
|
3892
|
+
# Date Example: --cdc-start-position “2018-03-08T12:12:12”
|
3893
|
+
#
|
3894
|
+
# Checkpoint Example: --cdc-start-position
|
3895
|
+
# "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93"
|
3896
|
+
#
|
3897
|
+
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
3898
|
+
#
|
3899
|
+
# @option params [String] :cdc_stop_position
|
3900
|
+
# Indicates when you want a change data capture (CDC) operation to stop.
|
3901
|
+
# The value can be either server time or commit time.
|
3902
|
+
#
|
3903
|
+
# Server time example: --cdc-stop-position
|
3904
|
+
# “server\_time:3018-02-09T12:12:12”
|
3905
|
+
#
|
3906
|
+
# Commit time example: --cdc-stop-position “commit\_time:
|
3907
|
+
# 3018-02-09T12:12:12 “
|
3766
3908
|
#
|
3767
3909
|
# @return [Types::StartReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3768
3910
|
#
|
@@ -3801,6 +3943,8 @@ module Aws::DatabaseMigrationService
|
|
3801
3943
|
# replication_task_arn: "String", # required
|
3802
3944
|
# start_replication_task_type: "start-replication", # required, accepts start-replication, resume-processing, reload-target
|
3803
3945
|
# cdc_start_time: Time.now,
|
3946
|
+
# cdc_start_position: "String",
|
3947
|
+
# cdc_stop_position: "String",
|
3804
3948
|
# })
|
3805
3949
|
#
|
3806
3950
|
# @example Response structure
|
@@ -3817,6 +3961,9 @@ module Aws::DatabaseMigrationService
|
|
3817
3961
|
# resp.replication_task.stop_reason #=> String
|
3818
3962
|
# resp.replication_task.replication_task_creation_date #=> Time
|
3819
3963
|
# resp.replication_task.replication_task_start_date #=> Time
|
3964
|
+
# resp.replication_task.cdc_start_position #=> String
|
3965
|
+
# resp.replication_task.cdc_stop_position #=> String
|
3966
|
+
# resp.replication_task.recovery_checkpoint #=> String
|
3820
3967
|
# resp.replication_task.replication_task_arn #=> String
|
3821
3968
|
# resp.replication_task.replication_task_stats.full_load_progress_percent #=> Integer
|
3822
3969
|
# resp.replication_task.replication_task_stats.elapsed_time_millis #=> Integer
|
@@ -3864,6 +4011,9 @@ module Aws::DatabaseMigrationService
|
|
3864
4011
|
# resp.replication_task.stop_reason #=> String
|
3865
4012
|
# resp.replication_task.replication_task_creation_date #=> Time
|
3866
4013
|
# resp.replication_task.replication_task_start_date #=> Time
|
4014
|
+
# resp.replication_task.cdc_start_position #=> String
|
4015
|
+
# resp.replication_task.cdc_stop_position #=> String
|
4016
|
+
# resp.replication_task.recovery_checkpoint #=> String
|
3867
4017
|
# resp.replication_task.replication_task_arn #=> String
|
3868
4018
|
# resp.replication_task.replication_task_stats.full_load_progress_percent #=> Integer
|
3869
4019
|
# resp.replication_task.replication_task_stats.elapsed_time_millis #=> Integer
|
@@ -3935,6 +4085,9 @@ module Aws::DatabaseMigrationService
|
|
3935
4085
|
# resp.replication_task.stop_reason #=> String
|
3936
4086
|
# resp.replication_task.replication_task_creation_date #=> Time
|
3937
4087
|
# resp.replication_task.replication_task_start_date #=> Time
|
4088
|
+
# resp.replication_task.cdc_start_position #=> String
|
4089
|
+
# resp.replication_task.cdc_stop_position #=> String
|
4090
|
+
# resp.replication_task.recovery_checkpoint #=> String
|
3938
4091
|
# resp.replication_task.replication_task_arn #=> String
|
3939
4092
|
# resp.replication_task.replication_task_stats.full_load_progress_percent #=> Integer
|
3940
4093
|
# resp.replication_task.replication_task_stats.elapsed_time_millis #=> Integer
|
@@ -4020,7 +4173,7 @@ module Aws::DatabaseMigrationService
|
|
4020
4173
|
params: params,
|
4021
4174
|
config: config)
|
4022
4175
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
4023
|
-
context[:gem_version] = '1.
|
4176
|
+
context[:gem_version] = '1.5.0'
|
4024
4177
|
Seahorse::Client::Request.new(handlers, context)
|
4025
4178
|
end
|
4026
4179
|
|
@@ -244,6 +244,8 @@ module Aws::DatabaseMigrationService
|
|
244
244
|
CreateEndpointMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
245
245
|
CreateEndpointMessage.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
|
246
246
|
CreateEndpointMessage.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
|
247
|
+
CreateEndpointMessage.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
|
248
|
+
CreateEndpointMessage.add_member(:external_table_definition, Shapes::ShapeRef.new(shape: String, location_name: "ExternalTableDefinition"))
|
247
249
|
CreateEndpointMessage.add_member(:dynamo_db_settings, Shapes::ShapeRef.new(shape: DynamoDbSettings, location_name: "DynamoDbSettings"))
|
248
250
|
CreateEndpointMessage.add_member(:s3_settings, Shapes::ShapeRef.new(shape: S3Settings, location_name: "S3Settings"))
|
249
251
|
CreateEndpointMessage.add_member(:mongo_db_settings, Shapes::ShapeRef.new(shape: MongoDbSettings, location_name: "MongoDbSettings"))
|
@@ -299,6 +301,8 @@ module Aws::DatabaseMigrationService
|
|
299
301
|
CreateReplicationTaskMessage.add_member(:table_mappings, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TableMappings"))
|
300
302
|
CreateReplicationTaskMessage.add_member(:replication_task_settings, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskSettings"))
|
301
303
|
CreateReplicationTaskMessage.add_member(:cdc_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CdcStartTime"))
|
304
|
+
CreateReplicationTaskMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
|
305
|
+
CreateReplicationTaskMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
|
302
306
|
CreateReplicationTaskMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
303
307
|
CreateReplicationTaskMessage.struct_class = Types::CreateReplicationTaskMessage
|
304
308
|
|
@@ -500,6 +504,7 @@ module Aws::DatabaseMigrationService
|
|
500
504
|
Endpoint.add_member(:endpoint_identifier, Shapes::ShapeRef.new(shape: String, location_name: "EndpointIdentifier"))
|
501
505
|
Endpoint.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: ReplicationEndpointTypeValue, location_name: "EndpointType"))
|
502
506
|
Endpoint.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineName"))
|
507
|
+
Endpoint.add_member(:engine_display_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineDisplayName"))
|
503
508
|
Endpoint.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "Username"))
|
504
509
|
Endpoint.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
|
505
510
|
Endpoint.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
|
@@ -510,6 +515,8 @@ module Aws::DatabaseMigrationService
|
|
510
515
|
Endpoint.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: String, location_name: "EndpointArn"))
|
511
516
|
Endpoint.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
|
512
517
|
Endpoint.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
|
518
|
+
Endpoint.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
|
519
|
+
Endpoint.add_member(:external_table_definition, Shapes::ShapeRef.new(shape: String, location_name: "ExternalTableDefinition"))
|
513
520
|
Endpoint.add_member(:external_id, Shapes::ShapeRef.new(shape: String, location_name: "ExternalId"))
|
514
521
|
Endpoint.add_member(:dynamo_db_settings, Shapes::ShapeRef.new(shape: DynamoDbSettings, location_name: "DynamoDbSettings"))
|
515
522
|
Endpoint.add_member(:s3_settings, Shapes::ShapeRef.new(shape: S3Settings, location_name: "S3Settings"))
|
@@ -585,6 +592,8 @@ module Aws::DatabaseMigrationService
|
|
585
592
|
ModifyEndpointMessage.add_member(:extra_connection_attributes, Shapes::ShapeRef.new(shape: String, location_name: "ExtraConnectionAttributes"))
|
586
593
|
ModifyEndpointMessage.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
|
587
594
|
ModifyEndpointMessage.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
|
595
|
+
ModifyEndpointMessage.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
|
596
|
+
ModifyEndpointMessage.add_member(:external_table_definition, Shapes::ShapeRef.new(shape: String, location_name: "ExternalTableDefinition"))
|
588
597
|
ModifyEndpointMessage.add_member(:dynamo_db_settings, Shapes::ShapeRef.new(shape: DynamoDbSettings, location_name: "DynamoDbSettings"))
|
589
598
|
ModifyEndpointMessage.add_member(:s3_settings, Shapes::ShapeRef.new(shape: S3Settings, location_name: "S3Settings"))
|
590
599
|
ModifyEndpointMessage.add_member(:mongo_db_settings, Shapes::ShapeRef.new(shape: MongoDbSettings, location_name: "MongoDbSettings"))
|
@@ -633,6 +642,8 @@ module Aws::DatabaseMigrationService
|
|
633
642
|
ModifyReplicationTaskMessage.add_member(:table_mappings, Shapes::ShapeRef.new(shape: String, location_name: "TableMappings"))
|
634
643
|
ModifyReplicationTaskMessage.add_member(:replication_task_settings, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskSettings"))
|
635
644
|
ModifyReplicationTaskMessage.add_member(:cdc_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CdcStartTime"))
|
645
|
+
ModifyReplicationTaskMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
|
646
|
+
ModifyReplicationTaskMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
|
636
647
|
ModifyReplicationTaskMessage.struct_class = Types::ModifyReplicationTaskMessage
|
637
648
|
|
638
649
|
ModifyReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
|
@@ -649,6 +660,7 @@ module Aws::DatabaseMigrationService
|
|
649
660
|
MongoDbSettings.add_member(:extract_doc_id, Shapes::ShapeRef.new(shape: String, location_name: "ExtractDocId"))
|
650
661
|
MongoDbSettings.add_member(:docs_to_investigate, Shapes::ShapeRef.new(shape: String, location_name: "DocsToInvestigate"))
|
651
662
|
MongoDbSettings.add_member(:auth_source, Shapes::ShapeRef.new(shape: String, location_name: "AuthSource"))
|
663
|
+
MongoDbSettings.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
652
664
|
MongoDbSettings.struct_class = Types::MongoDbSettings
|
653
665
|
|
654
666
|
OrderableReplicationInstance.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
@@ -717,6 +729,7 @@ module Aws::DatabaseMigrationService
|
|
717
729
|
ReplicationInstance.add_member(:replication_instance_private_ip_addresses, Shapes::ShapeRef.new(shape: ReplicationInstancePrivateIpAddressList, location_name: "ReplicationInstancePrivateIpAddresses"))
|
718
730
|
ReplicationInstance.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAccessible"))
|
719
731
|
ReplicationInstance.add_member(:secondary_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SecondaryAvailabilityZone"))
|
732
|
+
ReplicationInstance.add_member(:free_until, Shapes::ShapeRef.new(shape: TStamp, location_name: "FreeUntil"))
|
720
733
|
ReplicationInstance.struct_class = Types::ReplicationInstance
|
721
734
|
|
722
735
|
ReplicationInstanceList.member = Shapes::ShapeRef.new(shape: ReplicationInstance)
|
@@ -759,6 +772,9 @@ module Aws::DatabaseMigrationService
|
|
759
772
|
ReplicationTask.add_member(:stop_reason, Shapes::ShapeRef.new(shape: String, location_name: "StopReason"))
|
760
773
|
ReplicationTask.add_member(:replication_task_creation_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationTaskCreationDate"))
|
761
774
|
ReplicationTask.add_member(:replication_task_start_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationTaskStartDate"))
|
775
|
+
ReplicationTask.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
|
776
|
+
ReplicationTask.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
|
777
|
+
ReplicationTask.add_member(:recovery_checkpoint, Shapes::ShapeRef.new(shape: String, location_name: "RecoveryCheckpoint"))
|
762
778
|
ReplicationTask.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskArn"))
|
763
779
|
ReplicationTask.add_member(:replication_task_stats, Shapes::ShapeRef.new(shape: ReplicationTaskStats, location_name: "ReplicationTaskStats"))
|
764
780
|
ReplicationTask.struct_class = Types::ReplicationTask
|
@@ -806,6 +822,8 @@ module Aws::DatabaseMigrationService
|
|
806
822
|
StartReplicationTaskMessage.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationTaskArn"))
|
807
823
|
StartReplicationTaskMessage.add_member(:start_replication_task_type, Shapes::ShapeRef.new(shape: StartReplicationTaskTypeValue, required: true, location_name: "StartReplicationTaskType"))
|
808
824
|
StartReplicationTaskMessage.add_member(:cdc_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CdcStartTime"))
|
825
|
+
StartReplicationTaskMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
|
826
|
+
StartReplicationTaskMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
|
809
827
|
StartReplicationTaskMessage.struct_class = Types::StartReplicationTaskMessage
|
810
828
|
|
811
829
|
StartReplicationTaskResponse.add_member(:replication_task, Shapes::ShapeRef.new(shape: ReplicationTask, location_name: "ReplicationTask"))
|
@@ -829,6 +847,7 @@ module Aws::DatabaseMigrationService
|
|
829
847
|
SupportedEndpointType.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineName"))
|
830
848
|
SupportedEndpointType.add_member(:supports_cdc, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsCDC"))
|
831
849
|
SupportedEndpointType.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: ReplicationEndpointTypeValue, location_name: "EndpointType"))
|
850
|
+
SupportedEndpointType.add_member(:engine_display_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineDisplayName"))
|
832
851
|
SupportedEndpointType.struct_class = Types::SupportedEndpointType
|
833
852
|
|
834
853
|
SupportedEndpointTypeList.member = Shapes::ShapeRef.new(shape: SupportedEndpointType)
|
@@ -1406,6 +1425,7 @@ module Aws::DatabaseMigrationService
|
|
1406
1425
|
o.output = Shapes::ShapeRef.new(shape: StartReplicationTaskResponse)
|
1407
1426
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
1408
1427
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
|
1428
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
|
1409
1429
|
end)
|
1410
1430
|
|
1411
1431
|
api.add_operation(:start_replication_task_assessment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -201,6 +201,8 @@ module Aws::DatabaseMigrationService
|
|
201
201
|
# ],
|
202
202
|
# certificate_arn: "String",
|
203
203
|
# ssl_mode: "none", # accepts none, require, verify-ca, verify-full
|
204
|
+
# service_access_role_arn: "String",
|
205
|
+
# external_table_definition: "String",
|
204
206
|
# dynamo_db_settings: {
|
205
207
|
# service_access_role_arn: "String", # required
|
206
208
|
# },
|
@@ -225,6 +227,7 @@ module Aws::DatabaseMigrationService
|
|
225
227
|
# extract_doc_id: "String",
|
226
228
|
# docs_to_investigate: "String",
|
227
229
|
# auth_source: "String",
|
230
|
+
# kms_key_id: "String",
|
228
231
|
# },
|
229
232
|
# }
|
230
233
|
#
|
@@ -241,7 +244,8 @@ module Aws::DatabaseMigrationService
|
|
241
244
|
# @!attribute [rw] engine_name
|
242
245
|
# The type of engine for the endpoint. Valid values, depending on the
|
243
246
|
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
244
|
-
# redshift,
|
247
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, dynamodb,
|
248
|
+
# mongodb, and sqlserver.
|
245
249
|
# @return [String]
|
246
250
|
#
|
247
251
|
# @!attribute [rw] username
|
@@ -294,6 +298,15 @@ module Aws::DatabaseMigrationService
|
|
294
298
|
# The default value is none.
|
295
299
|
# @return [String]
|
296
300
|
#
|
301
|
+
# @!attribute [rw] service_access_role_arn
|
302
|
+
# The Amazon Resource Name (ARN) for the service access role you want
|
303
|
+
# to use to create the endpoint.
|
304
|
+
# @return [String]
|
305
|
+
#
|
306
|
+
# @!attribute [rw] external_table_definition
|
307
|
+
# The external table definition.
|
308
|
+
# @return [String]
|
309
|
+
#
|
297
310
|
# @!attribute [rw] dynamo_db_settings
|
298
311
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
299
312
|
# more information about the available settings, see the **Using
|
@@ -307,7 +320,7 @@ module Aws::DatabaseMigrationService
|
|
307
320
|
# @return [Types::DynamoDbSettings]
|
308
321
|
#
|
309
322
|
# @!attribute [rw] s3_settings
|
310
|
-
# Settings in JSON format for the target S3 endpoint. For more
|
323
|
+
# Settings in JSON format for the target Amazon S3 endpoint. For more
|
311
324
|
# information about the available settings, see the **Extra Connection
|
312
325
|
# Attributes** section at [ Using Amazon S3 as a Target for AWS
|
313
326
|
# Database Migration Service][1].
|
@@ -345,6 +358,8 @@ module Aws::DatabaseMigrationService
|
|
345
358
|
:tags,
|
346
359
|
:certificate_arn,
|
347
360
|
:ssl_mode,
|
361
|
+
:service_access_role_arn,
|
362
|
+
:external_table_definition,
|
348
363
|
:dynamo_db_settings,
|
349
364
|
:s3_settings,
|
350
365
|
:mongo_db_settings)
|
@@ -381,7 +396,7 @@ module Aws::DatabaseMigrationService
|
|
381
396
|
# }
|
382
397
|
#
|
383
398
|
# @!attribute [rw] subscription_name
|
384
|
-
# The name of the DMS event notification subscription.
|
399
|
+
# The name of the AWS DMS event notification subscription.
|
385
400
|
#
|
386
401
|
# Constraints: The name must be less than 255 characters.
|
387
402
|
# @return [String]
|
@@ -678,6 +693,8 @@ module Aws::DatabaseMigrationService
|
|
678
693
|
# table_mappings: "String", # required
|
679
694
|
# replication_task_settings: "String",
|
680
695
|
# cdc_start_time: Time.now,
|
696
|
+
# cdc_start_position: "String",
|
697
|
+
# cdc_stop_position: "String",
|
681
698
|
# tags: [
|
682
699
|
# {
|
683
700
|
# key: "String",
|
@@ -736,9 +753,39 @@ module Aws::DatabaseMigrationService
|
|
736
753
|
# @return [String]
|
737
754
|
#
|
738
755
|
# @!attribute [rw] cdc_start_time
|
739
|
-
#
|
756
|
+
# Indicates the start time for a change data capture (CDC) operation.
|
757
|
+
# Use either CdcStartTime or CdcStartPosition to specify when you want
|
758
|
+
# a CDC operation to start. Specifying both values results in an
|
759
|
+
# error.
|
740
760
|
# @return [Time]
|
741
761
|
#
|
762
|
+
# @!attribute [rw] cdc_start_position
|
763
|
+
# Indicates when you want a change data capture (CDC) operation to
|
764
|
+
# start. Use either CdcStartPosition or CdcStartTime to specify when
|
765
|
+
# you want a CDC operation to start. Specifying both values results in
|
766
|
+
# an error.
|
767
|
+
#
|
768
|
+
# The value can be in date, checkpoint, or LSN/SCN format.
|
769
|
+
#
|
770
|
+
# Date Example: --cdc-start-position “2018-03-08T12:12:12”
|
771
|
+
#
|
772
|
+
# Checkpoint Example: --cdc-start-position
|
773
|
+
# "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93"
|
774
|
+
#
|
775
|
+
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
776
|
+
# @return [String]
|
777
|
+
#
|
778
|
+
# @!attribute [rw] cdc_stop_position
|
779
|
+
# Indicates when you want a change data capture (CDC) operation to
|
780
|
+
# stop. The value can be either server time or commit time.
|
781
|
+
#
|
782
|
+
# Server time example: --cdc-stop-position
|
783
|
+
# “server\_time:3018-02-09T12:12:12”
|
784
|
+
#
|
785
|
+
# Commit time example: --cdc-stop-position “commit\_time:
|
786
|
+
# 3018-02-09T12:12:12 “
|
787
|
+
# @return [String]
|
788
|
+
#
|
742
789
|
# @!attribute [rw] tags
|
743
790
|
# Tags to be added to the replication instance.
|
744
791
|
# @return [Array<Types::Tag>]
|
@@ -754,6 +801,8 @@ module Aws::DatabaseMigrationService
|
|
754
801
|
:table_mappings,
|
755
802
|
:replication_task_settings,
|
756
803
|
:cdc_start_time,
|
804
|
+
:cdc_start_position,
|
805
|
+
:cdc_stop_position,
|
757
806
|
:tags)
|
758
807
|
include Aws::Structure
|
759
808
|
end
|
@@ -1992,7 +2041,14 @@ module Aws::DatabaseMigrationService
|
|
1992
2041
|
# @!attribute [rw] engine_name
|
1993
2042
|
# The database engine name. Valid values, depending on the
|
1994
2043
|
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
1995
|
-
# redshift,
|
2044
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, sybase,
|
2045
|
+
# dynamodb, mongodb, and sqlserver.
|
2046
|
+
# @return [String]
|
2047
|
+
#
|
2048
|
+
# @!attribute [rw] engine_display_name
|
2049
|
+
# The expanded name for the engine name. For example, if the
|
2050
|
+
# `EngineName` parameter is "aurora," this value would be "Amazon
|
2051
|
+
# Aurora MySQL."
|
1996
2052
|
# @return [String]
|
1997
2053
|
#
|
1998
2054
|
# @!attribute [rw] username
|
@@ -2047,6 +2103,14 @@ module Aws::DatabaseMigrationService
|
|
2047
2103
|
# The default value is none.
|
2048
2104
|
# @return [String]
|
2049
2105
|
#
|
2106
|
+
# @!attribute [rw] service_access_role_arn
|
2107
|
+
# The Amazon Resource Name (ARN) used by the service access IAM role.
|
2108
|
+
# @return [String]
|
2109
|
+
#
|
2110
|
+
# @!attribute [rw] external_table_definition
|
2111
|
+
# The external table definition.
|
2112
|
+
# @return [String]
|
2113
|
+
#
|
2050
2114
|
# @!attribute [rw] external_id
|
2051
2115
|
# Value returned by a call to CreateEndpoint that can be used for
|
2052
2116
|
# cross-account validation. Use it on a subsequent call to
|
@@ -2074,6 +2138,7 @@ module Aws::DatabaseMigrationService
|
|
2074
2138
|
:endpoint_identifier,
|
2075
2139
|
:endpoint_type,
|
2076
2140
|
:engine_name,
|
2141
|
+
:engine_display_name,
|
2077
2142
|
:username,
|
2078
2143
|
:server_name,
|
2079
2144
|
:port,
|
@@ -2084,6 +2149,8 @@ module Aws::DatabaseMigrationService
|
|
2084
2149
|
:endpoint_arn,
|
2085
2150
|
:certificate_arn,
|
2086
2151
|
:ssl_mode,
|
2152
|
+
:service_access_role_arn,
|
2153
|
+
:external_table_definition,
|
2087
2154
|
:external_id,
|
2088
2155
|
:dynamo_db_settings,
|
2089
2156
|
:s3_settings,
|
@@ -2337,6 +2404,8 @@ module Aws::DatabaseMigrationService
|
|
2337
2404
|
# extra_connection_attributes: "String",
|
2338
2405
|
# certificate_arn: "String",
|
2339
2406
|
# ssl_mode: "none", # accepts none, require, verify-ca, verify-full
|
2407
|
+
# service_access_role_arn: "String",
|
2408
|
+
# external_table_definition: "String",
|
2340
2409
|
# dynamo_db_settings: {
|
2341
2410
|
# service_access_role_arn: "String", # required
|
2342
2411
|
# },
|
@@ -2361,6 +2430,7 @@ module Aws::DatabaseMigrationService
|
|
2361
2430
|
# extract_doc_id: "String",
|
2362
2431
|
# docs_to_investigate: "String",
|
2363
2432
|
# auth_source: "String",
|
2433
|
+
# kms_key_id: "String",
|
2364
2434
|
# },
|
2365
2435
|
# }
|
2366
2436
|
#
|
@@ -2382,7 +2452,8 @@ module Aws::DatabaseMigrationService
|
|
2382
2452
|
# @!attribute [rw] engine_name
|
2383
2453
|
# The type of engine for the endpoint. Valid values, depending on the
|
2384
2454
|
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
2385
|
-
# redshift,
|
2455
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, sybase,
|
2456
|
+
# dynamodb, mongodb, and sqlserver.
|
2386
2457
|
# @return [String]
|
2387
2458
|
#
|
2388
2459
|
# @!attribute [rw] username
|
@@ -2424,6 +2495,15 @@ module Aws::DatabaseMigrationService
|
|
2424
2495
|
# The default value is none.
|
2425
2496
|
# @return [String]
|
2426
2497
|
#
|
2498
|
+
# @!attribute [rw] service_access_role_arn
|
2499
|
+
# The Amazon Resource Name (ARN) for the service access role you want
|
2500
|
+
# to use to modify the endpoint.
|
2501
|
+
# @return [String]
|
2502
|
+
#
|
2503
|
+
# @!attribute [rw] external_table_definition
|
2504
|
+
# The external table definition.
|
2505
|
+
# @return [String]
|
2506
|
+
#
|
2427
2507
|
# @!attribute [rw] dynamo_db_settings
|
2428
2508
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
2429
2509
|
# more information about the available settings, see the **Using
|
@@ -2474,6 +2554,8 @@ module Aws::DatabaseMigrationService
|
|
2474
2554
|
:extra_connection_attributes,
|
2475
2555
|
:certificate_arn,
|
2476
2556
|
:ssl_mode,
|
2557
|
+
:service_access_role_arn,
|
2558
|
+
:external_table_definition,
|
2477
2559
|
:dynamo_db_settings,
|
2478
2560
|
:s3_settings,
|
2479
2561
|
:mongo_db_settings)
|
@@ -2729,6 +2811,8 @@ module Aws::DatabaseMigrationService
|
|
2729
2811
|
# table_mappings: "String",
|
2730
2812
|
# replication_task_settings: "String",
|
2731
2813
|
# cdc_start_time: Time.now,
|
2814
|
+
# cdc_start_position: "String",
|
2815
|
+
# cdc_stop_position: "String",
|
2732
2816
|
# }
|
2733
2817
|
#
|
2734
2818
|
# @!attribute [rw] replication_task_arn
|
@@ -2768,9 +2852,39 @@ module Aws::DatabaseMigrationService
|
|
2768
2852
|
# @return [String]
|
2769
2853
|
#
|
2770
2854
|
# @!attribute [rw] cdc_start_time
|
2771
|
-
#
|
2855
|
+
# Indicates the start time for a change data capture (CDC) operation.
|
2856
|
+
# Use either CdcStartTime or CdcStartPosition to specify when you want
|
2857
|
+
# a CDC operation to start. Specifying both values results in an
|
2858
|
+
# error.
|
2772
2859
|
# @return [Time]
|
2773
2860
|
#
|
2861
|
+
# @!attribute [rw] cdc_start_position
|
2862
|
+
# Indicates when you want a change data capture (CDC) operation to
|
2863
|
+
# start. Use either CdcStartPosition or CdcStartTime to specify when
|
2864
|
+
# you want a CDC operation to start. Specifying both values results in
|
2865
|
+
# an error.
|
2866
|
+
#
|
2867
|
+
# The value can be in date, checkpoint, or LSN/SCN format.
|
2868
|
+
#
|
2869
|
+
# Date Example: --cdc-start-position “2018-03-08T12:12:12”
|
2870
|
+
#
|
2871
|
+
# Checkpoint Example: --cdc-start-position
|
2872
|
+
# "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93"
|
2873
|
+
#
|
2874
|
+
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
2875
|
+
# @return [String]
|
2876
|
+
#
|
2877
|
+
# @!attribute [rw] cdc_stop_position
|
2878
|
+
# Indicates when you want a change data capture (CDC) operation to
|
2879
|
+
# stop. The value can be either server time or commit time.
|
2880
|
+
#
|
2881
|
+
# Server time example: --cdc-stop-position
|
2882
|
+
# “server\_time:3018-02-09T12:12:12”
|
2883
|
+
#
|
2884
|
+
# Commit time example: --cdc-stop-position “commit\_time:
|
2885
|
+
# 3018-02-09T12:12:12 “
|
2886
|
+
# @return [String]
|
2887
|
+
#
|
2774
2888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTaskMessage AWS API Documentation
|
2775
2889
|
#
|
2776
2890
|
class ModifyReplicationTaskMessage < Struct.new(
|
@@ -2779,7 +2893,9 @@ module Aws::DatabaseMigrationService
|
|
2779
2893
|
:migration_type,
|
2780
2894
|
:table_mappings,
|
2781
2895
|
:replication_task_settings,
|
2782
|
-
:cdc_start_time
|
2896
|
+
:cdc_start_time,
|
2897
|
+
:cdc_start_position,
|
2898
|
+
:cdc_stop_position)
|
2783
2899
|
include Aws::Structure
|
2784
2900
|
end
|
2785
2901
|
|
@@ -2809,6 +2925,7 @@ module Aws::DatabaseMigrationService
|
|
2809
2925
|
# extract_doc_id: "String",
|
2810
2926
|
# docs_to_investigate: "String",
|
2811
2927
|
# auth_source: "String",
|
2928
|
+
# kms_key_id: "String",
|
2812
2929
|
# }
|
2813
2930
|
#
|
2814
2931
|
# @!attribute [rw] username
|
@@ -2884,6 +3001,15 @@ module Aws::DatabaseMigrationService
|
|
2884
3001
|
# The default is admin.
|
2885
3002
|
# @return [String]
|
2886
3003
|
#
|
3004
|
+
# @!attribute [rw] kms_key_id
|
3005
|
+
# The KMS key identifier that will be used to encrypt the connection
|
3006
|
+
# parameters. If you do not specify a value for the KmsKeyId
|
3007
|
+
# parameter, then AWS DMS will use your default encryption key. AWS
|
3008
|
+
# KMS creates the default encryption key for your AWS account. Your
|
3009
|
+
# AWS account has a different default encryption key for each AWS
|
3010
|
+
# region.
|
3011
|
+
# @return [String]
|
3012
|
+
#
|
2887
3013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MongoDbSettings AWS API Documentation
|
2888
3014
|
#
|
2889
3015
|
class MongoDbSettings < Struct.new(
|
@@ -2897,7 +3023,8 @@ module Aws::DatabaseMigrationService
|
|
2897
3023
|
:nesting_level,
|
2898
3024
|
:extract_doc_id,
|
2899
3025
|
:docs_to_investigate,
|
2900
|
-
:auth_source
|
3026
|
+
:auth_source,
|
3027
|
+
:kms_key_id)
|
2901
3028
|
include Aws::Structure
|
2902
3029
|
end
|
2903
3030
|
|
@@ -3236,6 +3363,11 @@ module Aws::DatabaseMigrationService
|
|
3236
3363
|
# Multi-AZ deployment.
|
3237
3364
|
# @return [String]
|
3238
3365
|
#
|
3366
|
+
# @!attribute [rw] free_until
|
3367
|
+
# The expiration date of the free replication instance that is part of
|
3368
|
+
# the Free DMS program.
|
3369
|
+
# @return [Time]
|
3370
|
+
#
|
3239
3371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
|
3240
3372
|
#
|
3241
3373
|
class ReplicationInstance < Struct.new(
|
@@ -3259,7 +3391,8 @@ module Aws::DatabaseMigrationService
|
|
3259
3391
|
:replication_instance_public_ip_addresses,
|
3260
3392
|
:replication_instance_private_ip_addresses,
|
3261
3393
|
:publicly_accessible,
|
3262
|
-
:secondary_availability_zone
|
3394
|
+
:secondary_availability_zone,
|
3395
|
+
:free_until)
|
3263
3396
|
include Aws::Structure
|
3264
3397
|
end
|
3265
3398
|
|
@@ -3409,6 +3542,40 @@ module Aws::DatabaseMigrationService
|
|
3409
3542
|
# The date the replication task is scheduled to start.
|
3410
3543
|
# @return [Time]
|
3411
3544
|
#
|
3545
|
+
# @!attribute [rw] cdc_start_position
|
3546
|
+
# Indicates when you want a change data capture (CDC) operation to
|
3547
|
+
# start. Use either CdcStartPosition or CdcStartTime to specify when
|
3548
|
+
# you want a CDC operation to start. Specifying both values results in
|
3549
|
+
# an error.
|
3550
|
+
#
|
3551
|
+
# The value can be in date, checkpoint, or LSN/SCN format.
|
3552
|
+
#
|
3553
|
+
# Date Example: --cdc-start-position “2018-03-08T12:12:12”
|
3554
|
+
#
|
3555
|
+
# Checkpoint Example: --cdc-start-position
|
3556
|
+
# "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93"
|
3557
|
+
#
|
3558
|
+
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
3559
|
+
# @return [String]
|
3560
|
+
#
|
3561
|
+
# @!attribute [rw] cdc_stop_position
|
3562
|
+
# Indicates when you want a change data capture (CDC) operation to
|
3563
|
+
# stop. The value can be either server time or commit time.
|
3564
|
+
#
|
3565
|
+
# Server time example: --cdc-stop-position
|
3566
|
+
# “server\_time:3018-02-09T12:12:12”
|
3567
|
+
#
|
3568
|
+
# Commit time example: --cdc-stop-position “commit\_time:
|
3569
|
+
# 3018-02-09T12:12:12 “
|
3570
|
+
# @return [String]
|
3571
|
+
#
|
3572
|
+
# @!attribute [rw] recovery_checkpoint
|
3573
|
+
# Indicates the last checkpoint that occurred during a change data
|
3574
|
+
# capture (CDC) operation. You can provide this value to the
|
3575
|
+
# `CdcStartPosition` parameter to start a CDC operation that begins at
|
3576
|
+
# that checkpoint.
|
3577
|
+
# @return [String]
|
3578
|
+
#
|
3412
3579
|
# @!attribute [rw] replication_task_arn
|
3413
3580
|
# The Amazon Resource Name (ARN) of the replication task.
|
3414
3581
|
# @return [String]
|
@@ -3433,6 +3600,9 @@ module Aws::DatabaseMigrationService
|
|
3433
3600
|
:stop_reason,
|
3434
3601
|
:replication_task_creation_date,
|
3435
3602
|
:replication_task_start_date,
|
3603
|
+
:cdc_start_position,
|
3604
|
+
:cdc_stop_position,
|
3605
|
+
:recovery_checkpoint,
|
3436
3606
|
:replication_task_arn,
|
3437
3607
|
:replication_task_stats)
|
3438
3608
|
include Aws::Structure
|
@@ -3536,6 +3706,7 @@ module Aws::DatabaseMigrationService
|
|
3536
3706
|
# @return [String]
|
3537
3707
|
#
|
3538
3708
|
# @!attribute [rw] external_table_definition
|
3709
|
+
# The external table definition.
|
3539
3710
|
# @return [String]
|
3540
3711
|
#
|
3541
3712
|
# @!attribute [rw] csv_row_delimiter
|
@@ -3615,6 +3786,8 @@ module Aws::DatabaseMigrationService
|
|
3615
3786
|
# replication_task_arn: "String", # required
|
3616
3787
|
# start_replication_task_type: "start-replication", # required, accepts start-replication, resume-processing, reload-target
|
3617
3788
|
# cdc_start_time: Time.now,
|
3789
|
+
# cdc_start_position: "String",
|
3790
|
+
# cdc_stop_position: "String",
|
3618
3791
|
# }
|
3619
3792
|
#
|
3620
3793
|
# @!attribute [rw] replication_task_arn
|
@@ -3627,15 +3800,47 @@ module Aws::DatabaseMigrationService
|
|
3627
3800
|
# @return [String]
|
3628
3801
|
#
|
3629
3802
|
# @!attribute [rw] cdc_start_time
|
3630
|
-
#
|
3803
|
+
# Indicates the start time for a change data capture (CDC) operation.
|
3804
|
+
# Use either CdcStartTime or CdcStartPosition to specify when you want
|
3805
|
+
# a CDC operation to start. Specifying both values results in an
|
3806
|
+
# error.
|
3631
3807
|
# @return [Time]
|
3632
3808
|
#
|
3809
|
+
# @!attribute [rw] cdc_start_position
|
3810
|
+
# Indicates when you want a change data capture (CDC) operation to
|
3811
|
+
# start. Use either CdcStartPosition or CdcStartTime to specify when
|
3812
|
+
# you want a CDC operation to start. Specifying both values results in
|
3813
|
+
# an error.
|
3814
|
+
#
|
3815
|
+
# The value can be in date, checkpoint, or LSN/SCN format.
|
3816
|
+
#
|
3817
|
+
# Date Example: --cdc-start-position “2018-03-08T12:12:12”
|
3818
|
+
#
|
3819
|
+
# Checkpoint Example: --cdc-start-position
|
3820
|
+
# "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93"
|
3821
|
+
#
|
3822
|
+
# LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373”
|
3823
|
+
# @return [String]
|
3824
|
+
#
|
3825
|
+
# @!attribute [rw] cdc_stop_position
|
3826
|
+
# Indicates when you want a change data capture (CDC) operation to
|
3827
|
+
# stop. The value can be either server time or commit time.
|
3828
|
+
#
|
3829
|
+
# Server time example: --cdc-stop-position
|
3830
|
+
# “server\_time:3018-02-09T12:12:12”
|
3831
|
+
#
|
3832
|
+
# Commit time example: --cdc-stop-position “commit\_time:
|
3833
|
+
# 3018-02-09T12:12:12 “
|
3834
|
+
# @return [String]
|
3835
|
+
#
|
3633
3836
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskMessage AWS API Documentation
|
3634
3837
|
#
|
3635
3838
|
class StartReplicationTaskMessage < Struct.new(
|
3636
3839
|
:replication_task_arn,
|
3637
3840
|
:start_replication_task_type,
|
3638
|
-
:cdc_start_time
|
3841
|
+
:cdc_start_time,
|
3842
|
+
:cdc_start_position,
|
3843
|
+
:cdc_stop_position)
|
3639
3844
|
include Aws::Structure
|
3640
3845
|
end
|
3641
3846
|
|
@@ -3703,7 +3908,8 @@ module Aws::DatabaseMigrationService
|
|
3703
3908
|
# @!attribute [rw] engine_name
|
3704
3909
|
# The database engine name. Valid values, depending on the
|
3705
3910
|
# EndPointType, include mysql, oracle, postgres, mariadb, aurora,
|
3706
|
-
# redshift,
|
3911
|
+
# aurora-postgresql, redshift, s3, db2, azuredb, sybase, sybase,
|
3912
|
+
# dynamodb, mongodb, and sqlserver.
|
3707
3913
|
# @return [String]
|
3708
3914
|
#
|
3709
3915
|
# @!attribute [rw] supports_cdc
|
@@ -3714,12 +3920,19 @@ module Aws::DatabaseMigrationService
|
|
3714
3920
|
# The type of endpoint.
|
3715
3921
|
# @return [String]
|
3716
3922
|
#
|
3923
|
+
# @!attribute [rw] engine_display_name
|
3924
|
+
# The expanded name for the engine name. For example, if the
|
3925
|
+
# `EngineName` parameter is "aurora," this value would be "Amazon
|
3926
|
+
# Aurora MySQL."
|
3927
|
+
# @return [String]
|
3928
|
+
#
|
3717
3929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SupportedEndpointType AWS API Documentation
|
3718
3930
|
#
|
3719
3931
|
class SupportedEndpointType < Struct.new(
|
3720
3932
|
:engine_name,
|
3721
3933
|
:supports_cdc,
|
3722
|
-
:endpoint_type
|
3934
|
+
:endpoint_type,
|
3935
|
+
:engine_display_name)
|
3723
3936
|
include Aws::Structure
|
3724
3937
|
end
|
3725
3938
|
|
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.5.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: 2018-
|
11
|
+
date: 2018-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.5.
|
78
|
+
rubygems_version: 2.5.2.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: AWS SDK for Ruby - AWS Database Migration Service
|