aws-sdk-databasemigrationservice 1.6.0 → 1.7.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: aa01d4a3c5cb47dc36d1e10bc969d016e230bc04
|
4
|
+
data.tar.gz: d09f8dfe0293fdbd9883419c60190b5eb2fa8301
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f88886b4495ab2710f4f5188147c9685e6a89ec265176b46120432c0480cff1d69fc2e2cb401c35c51777fd8e83ee4dcb1de5a9399e019ae1b0430d0148dd88
|
7
|
+
data.tar.gz: 9af24169e0b7044f93ad70bd410935acc5b7dad020f3537115687ee532e5696f902cada59ea5f74fe9b3ddce42bb876ab247c9c0ac1c8a1baaaffb99b8f24171
|
@@ -306,11 +306,33 @@ module Aws::DatabaseMigrationService
|
|
306
306
|
#
|
307
307
|
# [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html
|
308
308
|
#
|
309
|
+
# @option params [Types::DmsTransferSettings] :dms_transfer_settings
|
310
|
+
# The settings in JSON format for the DMS Transfer type source endpoint.
|
311
|
+
#
|
312
|
+
# Attributes include:
|
313
|
+
#
|
314
|
+
# * serviceAccessRoleArn - The IAM role that has permission to access
|
315
|
+
# the Amazon S3 bucket.
|
316
|
+
#
|
317
|
+
# * bucketName - The name of the S3 bucket to use.
|
318
|
+
#
|
319
|
+
# * compressionType - An optional parameter to use GZIP to compress the
|
320
|
+
# target files. Set to NONE (the default) or do not use to leave the
|
321
|
+
# files uncompressed.
|
322
|
+
#
|
323
|
+
# Shorthand syntax: ServiceAccessRoleArn=string
|
324
|
+
# ,BucketName=string,CompressionType=string
|
325
|
+
#
|
326
|
+
# JSON syntax:
|
327
|
+
#
|
328
|
+
# \\\{ "ServiceAccessRoleArn": "string", "BucketName": "string",
|
329
|
+
# "CompressionType": "none"\|"gzip" \\}
|
330
|
+
#
|
309
331
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
310
332
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
311
333
|
# information about the available settings, see the **Configuration
|
312
334
|
# Properties When Using MongoDB as a Source for AWS Database Migration
|
313
|
-
# Service** section at [ Using
|
335
|
+
# Service** section at [ Using MongoDB as a Target for AWS Database
|
314
336
|
# Migration Service][1].
|
315
337
|
#
|
316
338
|
#
|
@@ -397,6 +419,10 @@ module Aws::DatabaseMigrationService
|
|
397
419
|
# bucket_name: "String",
|
398
420
|
# compression_type: "none", # accepts none, gzip
|
399
421
|
# },
|
422
|
+
# dms_transfer_settings: {
|
423
|
+
# service_access_role_arn: "String",
|
424
|
+
# bucket_name: "String",
|
425
|
+
# },
|
400
426
|
# mongo_db_settings: {
|
401
427
|
# username: "String",
|
402
428
|
# password: "SecretString",
|
@@ -440,6 +466,8 @@ module Aws::DatabaseMigrationService
|
|
440
466
|
# resp.endpoint.s3_settings.bucket_folder #=> String
|
441
467
|
# resp.endpoint.s3_settings.bucket_name #=> String
|
442
468
|
# resp.endpoint.s3_settings.compression_type #=> String, one of "none", "gzip"
|
469
|
+
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
470
|
+
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
443
471
|
# resp.endpoint.mongo_db_settings.username #=> String
|
444
472
|
# resp.endpoint.mongo_db_settings.password #=> String
|
445
473
|
# resp.endpoint.mongo_db_settings.server_name #=> String
|
@@ -950,6 +978,8 @@ module Aws::DatabaseMigrationService
|
|
950
978
|
# Use either CdcStartTime or CdcStartPosition to specify when you want a
|
951
979
|
# CDC operation to start. Specifying both values results in an error.
|
952
980
|
#
|
981
|
+
# Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”
|
982
|
+
#
|
953
983
|
# @option params [String] :cdc_start_position
|
954
984
|
# Indicates when you want a change data capture (CDC) operation to
|
955
985
|
# start. Use either CdcStartPosition or CdcStartTime to specify when you
|
@@ -1200,6 +1230,8 @@ module Aws::DatabaseMigrationService
|
|
1200
1230
|
# resp.endpoint.s3_settings.bucket_folder #=> String
|
1201
1231
|
# resp.endpoint.s3_settings.bucket_name #=> String
|
1202
1232
|
# resp.endpoint.s3_settings.compression_type #=> String, one of "none", "gzip"
|
1233
|
+
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
1234
|
+
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
1203
1235
|
# resp.endpoint.mongo_db_settings.username #=> String
|
1204
1236
|
# resp.endpoint.mongo_db_settings.password #=> String
|
1205
1237
|
# resp.endpoint.mongo_db_settings.server_name #=> String
|
@@ -1925,6 +1957,8 @@ module Aws::DatabaseMigrationService
|
|
1925
1957
|
# resp.endpoints[0].s3_settings.bucket_folder #=> String
|
1926
1958
|
# resp.endpoints[0].s3_settings.bucket_name #=> String
|
1927
1959
|
# resp.endpoints[0].s3_settings.compression_type #=> String, one of "none", "gzip"
|
1960
|
+
# resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
|
1961
|
+
# resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
|
1928
1962
|
# resp.endpoints[0].mongo_db_settings.username #=> String
|
1929
1963
|
# resp.endpoints[0].mongo_db_settings.password #=> String
|
1930
1964
|
# resp.endpoints[0].mongo_db_settings.server_name #=> String
|
@@ -2858,6 +2892,7 @@ module Aws::DatabaseMigrationService
|
|
2858
2892
|
# resp.table_statistics[0].validation_failed_records #=> Integer
|
2859
2893
|
# resp.table_statistics[0].validation_suspended_records #=> Integer
|
2860
2894
|
# resp.table_statistics[0].validation_state #=> String
|
2895
|
+
# resp.table_statistics[0].validation_state_details #=> String
|
2861
2896
|
# resp.marker #=> String
|
2862
2897
|
#
|
2863
2898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeTableStatistics AWS API Documentation
|
@@ -3065,6 +3100,28 @@ module Aws::DatabaseMigrationService
|
|
3065
3100
|
#
|
3066
3101
|
# [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html
|
3067
3102
|
#
|
3103
|
+
# @option params [Types::DmsTransferSettings] :dms_transfer_settings
|
3104
|
+
# The settings in JSON format for the DMS Transfer type source endpoint.
|
3105
|
+
#
|
3106
|
+
# Attributes include:
|
3107
|
+
#
|
3108
|
+
# * serviceAccessRoleArn - The IAM role that has permission to access
|
3109
|
+
# the Amazon S3 bucket.
|
3110
|
+
#
|
3111
|
+
# * BucketName - The name of the S3 bucket to use.
|
3112
|
+
#
|
3113
|
+
# * compressionType - An optional parameter to use GZIP to compress the
|
3114
|
+
# target files. Set to NONE (the default) or do not use to leave the
|
3115
|
+
# files uncompressed.
|
3116
|
+
#
|
3117
|
+
# Shorthand syntax: ServiceAccessRoleArn=string
|
3118
|
+
# ,BucketName=string,CompressionType=string
|
3119
|
+
#
|
3120
|
+
# JSON syntax:
|
3121
|
+
#
|
3122
|
+
# \\\{ "ServiceAccessRoleArn": "string", "BucketName": "string",
|
3123
|
+
# "CompressionType": "none"\|"gzip" \\}
|
3124
|
+
#
|
3068
3125
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
3069
3126
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
3070
3127
|
# information about the available settings, see the **Configuration
|
@@ -3135,6 +3192,10 @@ module Aws::DatabaseMigrationService
|
|
3135
3192
|
# bucket_name: "String",
|
3136
3193
|
# compression_type: "none", # accepts none, gzip
|
3137
3194
|
# },
|
3195
|
+
# dms_transfer_settings: {
|
3196
|
+
# service_access_role_arn: "String",
|
3197
|
+
# bucket_name: "String",
|
3198
|
+
# },
|
3138
3199
|
# mongo_db_settings: {
|
3139
3200
|
# username: "String",
|
3140
3201
|
# password: "SecretString",
|
@@ -3178,6 +3239,8 @@ module Aws::DatabaseMigrationService
|
|
3178
3239
|
# resp.endpoint.s3_settings.bucket_folder #=> String
|
3179
3240
|
# resp.endpoint.s3_settings.bucket_name #=> String
|
3180
3241
|
# resp.endpoint.s3_settings.compression_type #=> String, one of "none", "gzip"
|
3242
|
+
# resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
|
3243
|
+
# resp.endpoint.dms_transfer_settings.bucket_name #=> String
|
3181
3244
|
# resp.endpoint.mongo_db_settings.username #=> String
|
3182
3245
|
# resp.endpoint.mongo_db_settings.password #=> String
|
3183
3246
|
# resp.endpoint.mongo_db_settings.server_name #=> String
|
@@ -3590,6 +3653,8 @@ module Aws::DatabaseMigrationService
|
|
3590
3653
|
# Use either CdcStartTime or CdcStartPosition to specify when you want a
|
3591
3654
|
# CDC operation to start. Specifying both values results in an error.
|
3592
3655
|
#
|
3656
|
+
# Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”
|
3657
|
+
#
|
3593
3658
|
# @option params [String] :cdc_start_position
|
3594
3659
|
# Indicates when you want a change data capture (CDC) operation to
|
3595
3660
|
# start. Use either CdcStartPosition or CdcStartTime to specify when you
|
@@ -3796,11 +3861,21 @@ module Aws::DatabaseMigrationService
|
|
3796
3861
|
# Reloads the target database table with the source data.
|
3797
3862
|
#
|
3798
3863
|
# @option params [required, String] :replication_task_arn
|
3799
|
-
# The Amazon Resource Name (ARN) of the replication
|
3864
|
+
# The Amazon Resource Name (ARN) of the replication task.
|
3800
3865
|
#
|
3801
3866
|
# @option params [required, Array<Types::TableToReload>] :tables_to_reload
|
3802
3867
|
# The name and schema of the table to be reloaded.
|
3803
3868
|
#
|
3869
|
+
# @option params [String] :reload_option
|
3870
|
+
# Options for reload. Specify `data-reload` to reload the data and
|
3871
|
+
# re-validate it if validation is enabled. Specify `validate-only` to
|
3872
|
+
# re-validate the table. This option applies only when validation is
|
3873
|
+
# enabled for the task.
|
3874
|
+
#
|
3875
|
+
# Valid values: data-reload, validate-only
|
3876
|
+
#
|
3877
|
+
# Default value is data-reload.
|
3878
|
+
#
|
3804
3879
|
# @return [Types::ReloadTablesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3805
3880
|
#
|
3806
3881
|
# * {Types::ReloadTablesResponse#replication_task_arn #replication_task_arn} => String
|
@@ -3815,6 +3890,7 @@ module Aws::DatabaseMigrationService
|
|
3815
3890
|
# table_name: "String",
|
3816
3891
|
# },
|
3817
3892
|
# ],
|
3893
|
+
# reload_option: "data-reload", # accepts data-reload, validate-only
|
3818
3894
|
# })
|
3819
3895
|
#
|
3820
3896
|
# @example Response structure
|
@@ -3892,6 +3968,8 @@ module Aws::DatabaseMigrationService
|
|
3892
3968
|
# Use either CdcStartTime or CdcStartPosition to specify when you want a
|
3893
3969
|
# CDC operation to start. Specifying both values results in an error.
|
3894
3970
|
#
|
3971
|
+
# Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”
|
3972
|
+
#
|
3895
3973
|
# @option params [String] :cdc_start_position
|
3896
3974
|
# Indicates when you want a change data capture (CDC) operation to
|
3897
3975
|
# start. Use either CdcStartPosition or CdcStartTime to specify when you
|
@@ -4184,7 +4262,7 @@ module Aws::DatabaseMigrationService
|
|
4184
4262
|
params: params,
|
4185
4263
|
config: config)
|
4186
4264
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
4187
|
-
context[:gem_version] = '1.
|
4265
|
+
context[:gem_version] = '1.7.0'
|
4188
4266
|
Seahorse::Client::Request.new(handlers, context)
|
4189
4267
|
end
|
4190
4268
|
|
@@ -84,6 +84,7 @@ module Aws::DatabaseMigrationService
|
|
84
84
|
DescribeTableStatisticsMessage = Shapes::StructureShape.new(name: 'DescribeTableStatisticsMessage')
|
85
85
|
DescribeTableStatisticsResponse = Shapes::StructureShape.new(name: 'DescribeTableStatisticsResponse')
|
86
86
|
DmsSslModeValue = Shapes::StringShape.new(name: 'DmsSslModeValue')
|
87
|
+
DmsTransferSettings = Shapes::StructureShape.new(name: 'DmsTransferSettings')
|
87
88
|
DynamoDbSettings = Shapes::StructureShape.new(name: 'DynamoDbSettings')
|
88
89
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
89
90
|
EndpointList = Shapes::ListShape.new(name: 'EndpointList')
|
@@ -132,6 +133,7 @@ module Aws::DatabaseMigrationService
|
|
132
133
|
RefreshSchemasResponse = Shapes::StructureShape.new(name: 'RefreshSchemasResponse')
|
133
134
|
RefreshSchemasStatus = Shapes::StructureShape.new(name: 'RefreshSchemasStatus')
|
134
135
|
RefreshSchemasStatusTypeValue = Shapes::StringShape.new(name: 'RefreshSchemasStatusTypeValue')
|
136
|
+
ReloadOptionValue = Shapes::StringShape.new(name: 'ReloadOptionValue')
|
135
137
|
ReloadTablesMessage = Shapes::StructureShape.new(name: 'ReloadTablesMessage')
|
136
138
|
ReloadTablesResponse = Shapes::StructureShape.new(name: 'ReloadTablesResponse')
|
137
139
|
RemoveTagsFromResourceMessage = Shapes::StructureShape.new(name: 'RemoveTagsFromResourceMessage')
|
@@ -248,6 +250,7 @@ module Aws::DatabaseMigrationService
|
|
248
250
|
CreateEndpointMessage.add_member(:external_table_definition, Shapes::ShapeRef.new(shape: String, location_name: "ExternalTableDefinition"))
|
249
251
|
CreateEndpointMessage.add_member(:dynamo_db_settings, Shapes::ShapeRef.new(shape: DynamoDbSettings, location_name: "DynamoDbSettings"))
|
250
252
|
CreateEndpointMessage.add_member(:s3_settings, Shapes::ShapeRef.new(shape: S3Settings, location_name: "S3Settings"))
|
253
|
+
CreateEndpointMessage.add_member(:dms_transfer_settings, Shapes::ShapeRef.new(shape: DmsTransferSettings, location_name: "DmsTransferSettings"))
|
251
254
|
CreateEndpointMessage.add_member(:mongo_db_settings, Shapes::ShapeRef.new(shape: MongoDbSettings, location_name: "MongoDbSettings"))
|
252
255
|
CreateEndpointMessage.struct_class = Types::CreateEndpointMessage
|
253
256
|
|
@@ -498,6 +501,10 @@ module Aws::DatabaseMigrationService
|
|
498
501
|
DescribeTableStatisticsResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
499
502
|
DescribeTableStatisticsResponse.struct_class = Types::DescribeTableStatisticsResponse
|
500
503
|
|
504
|
+
DmsTransferSettings.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
|
505
|
+
DmsTransferSettings.add_member(:bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "BucketName"))
|
506
|
+
DmsTransferSettings.struct_class = Types::DmsTransferSettings
|
507
|
+
|
501
508
|
DynamoDbSettings.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceAccessRoleArn"))
|
502
509
|
DynamoDbSettings.struct_class = Types::DynamoDbSettings
|
503
510
|
|
@@ -520,6 +527,7 @@ module Aws::DatabaseMigrationService
|
|
520
527
|
Endpoint.add_member(:external_id, Shapes::ShapeRef.new(shape: String, location_name: "ExternalId"))
|
521
528
|
Endpoint.add_member(:dynamo_db_settings, Shapes::ShapeRef.new(shape: DynamoDbSettings, location_name: "DynamoDbSettings"))
|
522
529
|
Endpoint.add_member(:s3_settings, Shapes::ShapeRef.new(shape: S3Settings, location_name: "S3Settings"))
|
530
|
+
Endpoint.add_member(:dms_transfer_settings, Shapes::ShapeRef.new(shape: DmsTransferSettings, location_name: "DmsTransferSettings"))
|
523
531
|
Endpoint.add_member(:mongo_db_settings, Shapes::ShapeRef.new(shape: MongoDbSettings, location_name: "MongoDbSettings"))
|
524
532
|
Endpoint.struct_class = Types::Endpoint
|
525
533
|
|
@@ -596,6 +604,7 @@ module Aws::DatabaseMigrationService
|
|
596
604
|
ModifyEndpointMessage.add_member(:external_table_definition, Shapes::ShapeRef.new(shape: String, location_name: "ExternalTableDefinition"))
|
597
605
|
ModifyEndpointMessage.add_member(:dynamo_db_settings, Shapes::ShapeRef.new(shape: DynamoDbSettings, location_name: "DynamoDbSettings"))
|
598
606
|
ModifyEndpointMessage.add_member(:s3_settings, Shapes::ShapeRef.new(shape: S3Settings, location_name: "S3Settings"))
|
607
|
+
ModifyEndpointMessage.add_member(:dms_transfer_settings, Shapes::ShapeRef.new(shape: DmsTransferSettings, location_name: "DmsTransferSettings"))
|
599
608
|
ModifyEndpointMessage.add_member(:mongo_db_settings, Shapes::ShapeRef.new(shape: MongoDbSettings, location_name: "MongoDbSettings"))
|
600
609
|
ModifyEndpointMessage.struct_class = Types::ModifyEndpointMessage
|
601
610
|
|
@@ -697,6 +706,7 @@ module Aws::DatabaseMigrationService
|
|
697
706
|
|
698
707
|
ReloadTablesMessage.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationTaskArn"))
|
699
708
|
ReloadTablesMessage.add_member(:tables_to_reload, Shapes::ShapeRef.new(shape: TableListToReload, required: true, location_name: "TablesToReload"))
|
709
|
+
ReloadTablesMessage.add_member(:reload_option, Shapes::ShapeRef.new(shape: ReloadOptionValue, location_name: "ReloadOption"))
|
700
710
|
ReloadTablesMessage.struct_class = Types::ReloadTablesMessage
|
701
711
|
|
702
712
|
ReloadTablesResponse.add_member(:replication_task_arn, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationTaskArn"))
|
@@ -869,6 +879,7 @@ module Aws::DatabaseMigrationService
|
|
869
879
|
TableStatistics.add_member(:validation_failed_records, Shapes::ShapeRef.new(shape: Long, location_name: "ValidationFailedRecords"))
|
870
880
|
TableStatistics.add_member(:validation_suspended_records, Shapes::ShapeRef.new(shape: Long, location_name: "ValidationSuspendedRecords"))
|
871
881
|
TableStatistics.add_member(:validation_state, Shapes::ShapeRef.new(shape: String, location_name: "ValidationState"))
|
882
|
+
TableStatistics.add_member(:validation_state_details, Shapes::ShapeRef.new(shape: String, location_name: "ValidationStateDetails"))
|
872
883
|
TableStatistics.struct_class = Types::TableStatistics
|
873
884
|
|
874
885
|
TableStatisticsList.member = Shapes::ShapeRef.new(shape: TableStatistics)
|
@@ -215,6 +215,10 @@ module Aws::DatabaseMigrationService
|
|
215
215
|
# bucket_name: "String",
|
216
216
|
# compression_type: "none", # accepts none, gzip
|
217
217
|
# },
|
218
|
+
# dms_transfer_settings: {
|
219
|
+
# service_access_role_arn: "String",
|
220
|
+
# bucket_name: "String",
|
221
|
+
# },
|
218
222
|
# mongo_db_settings: {
|
219
223
|
# username: "String",
|
220
224
|
# password: "SecretString",
|
@@ -330,11 +334,35 @@ module Aws::DatabaseMigrationService
|
|
330
334
|
# [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html
|
331
335
|
# @return [Types::S3Settings]
|
332
336
|
#
|
337
|
+
# @!attribute [rw] dms_transfer_settings
|
338
|
+
# The settings in JSON format for the DMS Transfer type source
|
339
|
+
# endpoint.
|
340
|
+
#
|
341
|
+
# Attributes include:
|
342
|
+
#
|
343
|
+
# * serviceAccessRoleArn - The IAM role that has permission to access
|
344
|
+
# the Amazon S3 bucket.
|
345
|
+
#
|
346
|
+
# * bucketName - The name of the S3 bucket to use.
|
347
|
+
#
|
348
|
+
# * compressionType - An optional parameter to use GZIP to compress
|
349
|
+
# the target files. Set to NONE (the default) or do not use to leave
|
350
|
+
# the files uncompressed.
|
351
|
+
#
|
352
|
+
# Shorthand syntax: ServiceAccessRoleArn=string
|
353
|
+
# ,BucketName=string,CompressionType=string
|
354
|
+
#
|
355
|
+
# JSON syntax:
|
356
|
+
#
|
357
|
+
# \\\{ "ServiceAccessRoleArn": "string", "BucketName":
|
358
|
+
# "string", "CompressionType": "none"\|"gzip" \\}
|
359
|
+
# @return [Types::DmsTransferSettings]
|
360
|
+
#
|
333
361
|
# @!attribute [rw] mongo_db_settings
|
334
362
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
335
363
|
# information about the available settings, see the **Configuration
|
336
364
|
# Properties When Using MongoDB as a Source for AWS Database Migration
|
337
|
-
# Service** section at [ Using
|
365
|
+
# Service** section at [ Using MongoDB as a Target for AWS Database
|
338
366
|
# Migration Service][1].
|
339
367
|
#
|
340
368
|
#
|
@@ -362,6 +390,7 @@ module Aws::DatabaseMigrationService
|
|
362
390
|
:external_table_definition,
|
363
391
|
:dynamo_db_settings,
|
364
392
|
:s3_settings,
|
393
|
+
:dms_transfer_settings,
|
365
394
|
:mongo_db_settings)
|
366
395
|
include Aws::Structure
|
367
396
|
end
|
@@ -757,6 +786,8 @@ module Aws::DatabaseMigrationService
|
|
757
786
|
# Use either CdcStartTime or CdcStartPosition to specify when you want
|
758
787
|
# a CDC operation to start. Specifying both values results in an
|
759
788
|
# error.
|
789
|
+
#
|
790
|
+
# Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”
|
760
791
|
# @return [Time]
|
761
792
|
#
|
762
793
|
# @!attribute [rw] cdc_start_position
|
@@ -2010,6 +2041,32 @@ module Aws::DatabaseMigrationService
|
|
2010
2041
|
include Aws::Structure
|
2011
2042
|
end
|
2012
2043
|
|
2044
|
+
# The settings in JSON format for the DMS Transfer type source endpoint.
|
2045
|
+
#
|
2046
|
+
# @note When making an API call, you may pass DmsTransferSettings
|
2047
|
+
# data as a hash:
|
2048
|
+
#
|
2049
|
+
# {
|
2050
|
+
# service_access_role_arn: "String",
|
2051
|
+
# bucket_name: "String",
|
2052
|
+
# }
|
2053
|
+
#
|
2054
|
+
# @!attribute [rw] service_access_role_arn
|
2055
|
+
# The IAM role that has permission to access the Amazon S3 bucket.
|
2056
|
+
# @return [String]
|
2057
|
+
#
|
2058
|
+
# @!attribute [rw] bucket_name
|
2059
|
+
# The name of the S3 bucket to use.
|
2060
|
+
# @return [String]
|
2061
|
+
#
|
2062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DmsTransferSettings AWS API Documentation
|
2063
|
+
#
|
2064
|
+
class DmsTransferSettings < Struct.new(
|
2065
|
+
:service_access_role_arn,
|
2066
|
+
:bucket_name)
|
2067
|
+
include Aws::Structure
|
2068
|
+
end
|
2069
|
+
|
2013
2070
|
# @note When making an API call, you may pass DynamoDbSettings
|
2014
2071
|
# data as a hash:
|
2015
2072
|
#
|
@@ -2127,6 +2184,30 @@ module Aws::DatabaseMigrationService
|
|
2127
2184
|
# the `S3Settings` structure.
|
2128
2185
|
# @return [Types::S3Settings]
|
2129
2186
|
#
|
2187
|
+
# @!attribute [rw] dms_transfer_settings
|
2188
|
+
# The settings in JSON format for the DMS Transfer type source
|
2189
|
+
# endpoint.
|
2190
|
+
#
|
2191
|
+
# Attributes include:
|
2192
|
+
#
|
2193
|
+
# * serviceAccessRoleArn - The IAM role that has permission to access
|
2194
|
+
# the Amazon S3 bucket.
|
2195
|
+
#
|
2196
|
+
# * bucketName - The name of the S3 bucket to use.
|
2197
|
+
#
|
2198
|
+
# * compressionType - An optional parameter to use GZIP to compress
|
2199
|
+
# the target files. Set to NONE (the default) or do not use to leave
|
2200
|
+
# the files uncompressed.
|
2201
|
+
#
|
2202
|
+
# Shorthand syntax: ServiceAccessRoleArn=string
|
2203
|
+
# ,BucketName=string,CompressionType=string
|
2204
|
+
#
|
2205
|
+
# JSON syntax:
|
2206
|
+
#
|
2207
|
+
# \\\{ "ServiceAccessRoleArn": "string", "BucketName":
|
2208
|
+
# "string", "CompressionType": "none"\|"gzip" \\}
|
2209
|
+
# @return [Types::DmsTransferSettings]
|
2210
|
+
#
|
2130
2211
|
# @!attribute [rw] mongo_db_settings
|
2131
2212
|
# The settings for the MongoDB source endpoint. For more information,
|
2132
2213
|
# see the `MongoDbSettings` structure.
|
@@ -2154,6 +2235,7 @@ module Aws::DatabaseMigrationService
|
|
2154
2235
|
:external_id,
|
2155
2236
|
:dynamo_db_settings,
|
2156
2237
|
:s3_settings,
|
2238
|
+
:dms_transfer_settings,
|
2157
2239
|
:mongo_db_settings)
|
2158
2240
|
include Aws::Structure
|
2159
2241
|
end
|
@@ -2418,6 +2500,10 @@ module Aws::DatabaseMigrationService
|
|
2418
2500
|
# bucket_name: "String",
|
2419
2501
|
# compression_type: "none", # accepts none, gzip
|
2420
2502
|
# },
|
2503
|
+
# dms_transfer_settings: {
|
2504
|
+
# service_access_role_arn: "String",
|
2505
|
+
# bucket_name: "String",
|
2506
|
+
# },
|
2421
2507
|
# mongo_db_settings: {
|
2422
2508
|
# username: "String",
|
2423
2509
|
# password: "SecretString",
|
@@ -2527,6 +2613,30 @@ module Aws::DatabaseMigrationService
|
|
2527
2613
|
# [1]: http://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html
|
2528
2614
|
# @return [Types::S3Settings]
|
2529
2615
|
#
|
2616
|
+
# @!attribute [rw] dms_transfer_settings
|
2617
|
+
# The settings in JSON format for the DMS Transfer type source
|
2618
|
+
# endpoint.
|
2619
|
+
#
|
2620
|
+
# Attributes include:
|
2621
|
+
#
|
2622
|
+
# * serviceAccessRoleArn - The IAM role that has permission to access
|
2623
|
+
# the Amazon S3 bucket.
|
2624
|
+
#
|
2625
|
+
# * BucketName - The name of the S3 bucket to use.
|
2626
|
+
#
|
2627
|
+
# * compressionType - An optional parameter to use GZIP to compress
|
2628
|
+
# the target files. Set to NONE (the default) or do not use to leave
|
2629
|
+
# the files uncompressed.
|
2630
|
+
#
|
2631
|
+
# Shorthand syntax: ServiceAccessRoleArn=string
|
2632
|
+
# ,BucketName=string,CompressionType=string
|
2633
|
+
#
|
2634
|
+
# JSON syntax:
|
2635
|
+
#
|
2636
|
+
# \\\{ "ServiceAccessRoleArn": "string", "BucketName":
|
2637
|
+
# "string", "CompressionType": "none"\|"gzip" \\}
|
2638
|
+
# @return [Types::DmsTransferSettings]
|
2639
|
+
#
|
2530
2640
|
# @!attribute [rw] mongo_db_settings
|
2531
2641
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
2532
2642
|
# information about the available settings, see the **Configuration
|
@@ -2558,6 +2668,7 @@ module Aws::DatabaseMigrationService
|
|
2558
2668
|
:external_table_definition,
|
2559
2669
|
:dynamo_db_settings,
|
2560
2670
|
:s3_settings,
|
2671
|
+
:dms_transfer_settings,
|
2561
2672
|
:mongo_db_settings)
|
2562
2673
|
include Aws::Structure
|
2563
2674
|
end
|
@@ -2856,6 +2967,8 @@ module Aws::DatabaseMigrationService
|
|
2856
2967
|
# Use either CdcStartTime or CdcStartPosition to specify when you want
|
2857
2968
|
# a CDC operation to start. Specifying both values results in an
|
2858
2969
|
# error.
|
2970
|
+
#
|
2971
|
+
# Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”
|
2859
2972
|
# @return [Time]
|
2860
2973
|
#
|
2861
2974
|
# @!attribute [rw] cdc_start_position
|
@@ -3193,21 +3306,34 @@ module Aws::DatabaseMigrationService
|
|
3193
3306
|
# table_name: "String",
|
3194
3307
|
# },
|
3195
3308
|
# ],
|
3309
|
+
# reload_option: "data-reload", # accepts data-reload, validate-only
|
3196
3310
|
# }
|
3197
3311
|
#
|
3198
3312
|
# @!attribute [rw] replication_task_arn
|
3199
|
-
# The Amazon Resource Name (ARN) of the replication
|
3313
|
+
# The Amazon Resource Name (ARN) of the replication task.
|
3200
3314
|
# @return [String]
|
3201
3315
|
#
|
3202
3316
|
# @!attribute [rw] tables_to_reload
|
3203
3317
|
# The name and schema of the table to be reloaded.
|
3204
3318
|
# @return [Array<Types::TableToReload>]
|
3205
3319
|
#
|
3320
|
+
# @!attribute [rw] reload_option
|
3321
|
+
# Options for reload. Specify `data-reload` to reload the data and
|
3322
|
+
# re-validate it if validation is enabled. Specify `validate-only` to
|
3323
|
+
# re-validate the table. This option applies only when validation is
|
3324
|
+
# enabled for the task.
|
3325
|
+
#
|
3326
|
+
# Valid values: data-reload, validate-only
|
3327
|
+
#
|
3328
|
+
# Default value is data-reload.
|
3329
|
+
# @return [String]
|
3330
|
+
#
|
3206
3331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReloadTablesMessage AWS API Documentation
|
3207
3332
|
#
|
3208
3333
|
class ReloadTablesMessage < Struct.new(
|
3209
3334
|
:replication_task_arn,
|
3210
|
-
:tables_to_reload
|
3335
|
+
:tables_to_reload,
|
3336
|
+
:reload_option)
|
3211
3337
|
include Aws::Structure
|
3212
3338
|
end
|
3213
3339
|
|
@@ -3484,7 +3610,7 @@ module Aws::DatabaseMigrationService
|
|
3484
3610
|
end
|
3485
3611
|
|
3486
3612
|
# @!attribute [rw] replication_task_identifier
|
3487
|
-
# The replication task identifier.
|
3613
|
+
# The user-assigned replication task identifier or name.
|
3488
3614
|
#
|
3489
3615
|
# Constraints:
|
3490
3616
|
#
|
@@ -3804,6 +3930,8 @@ module Aws::DatabaseMigrationService
|
|
3804
3930
|
# Use either CdcStartTime or CdcStartPosition to specify when you want
|
3805
3931
|
# a CDC operation to start. Specifying both values results in an
|
3806
3932
|
# error.
|
3933
|
+
#
|
3934
|
+
# Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”
|
3807
3935
|
# @return [Time]
|
3808
3936
|
#
|
3809
3937
|
# @!attribute [rw] cdc_start_position
|
@@ -4029,6 +4157,10 @@ module Aws::DatabaseMigrationService
|
|
4029
4157
|
# error.
|
4030
4158
|
# @return [String]
|
4031
4159
|
#
|
4160
|
+
# @!attribute [rw] validation_state_details
|
4161
|
+
# Additional details about the state of validation.
|
4162
|
+
# @return [String]
|
4163
|
+
#
|
4032
4164
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/TableStatistics AWS API Documentation
|
4033
4165
|
#
|
4034
4166
|
class TableStatistics < Struct.new(
|
@@ -4046,7 +4178,8 @@ module Aws::DatabaseMigrationService
|
|
4046
4178
|
:validation_pending_records,
|
4047
4179
|
:validation_failed_records,
|
4048
4180
|
:validation_suspended_records,
|
4049
|
-
:validation_state
|
4181
|
+
:validation_state,
|
4182
|
+
:validation_state_details)
|
4050
4183
|
include Aws::Structure
|
4051
4184
|
end
|
4052
4185
|
|
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.7.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-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|