aws-sdk-databasemigrationservice 1.61.0 → 1.65.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 167524f40dbae8a4390a9273f4b4f37263771b7616d8f011a48d490e3d85ccdf
4
- data.tar.gz: 6ffd912e5587ce9236371f6a0d9f64ae1a7d2f7f7ec66f49af884abfbfb26402
3
+ metadata.gz: 91c1d86c75832dddffa3265591a97c18d0d4288beeaf00c395ce24fa237f69db
4
+ data.tar.gz: 03c6c75c383a8e119b8e8e8e9b57bca61d6be1ae17ec4f8d76ccbbae0b289e6c
5
5
  SHA512:
6
- metadata.gz: 62237e0ee0629620fe4ab092611e256c05cd3725e9b05432b6d4a44b4aebde80425ef2107d726030bc4307dc17639debe2ba72c574003d0f3e98b811d18d90a4
7
- data.tar.gz: ad67d017151748e2812c5cb3e7f5338922f3116266bd21db204cbfa1208b0d813f58301936db2fb56dccc6b325d80af4e1b7de9e52f2b7c33d08cd5ddaf76ada
6
+ metadata.gz: 3721f47741b352d97548224b6527333d1b731c0bc3342b49be652d7dd7b314f8c6ea64d3fc5bf7956d5c814ba6d00c895b5f5b56c8cc49c2d59c89eb4f23002f
7
+ data.tar.gz: 98bdddc4a4122b9e2f7ca73596e457cb80089c7be7274d386faa74fd10db727dea8dee0f396a3d220da71ceb331b6af8e4a917dc387688e45a4c73a2a0f0b2b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.64.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.63.0 (2021-11-22)
15
+ ------------------
16
+
17
+ * Feature - Added new S3 endpoint settings to allow to convert the current UTC time into a specified time zone when a date partition folder is created. Using with 'DatePartitionedEnabled'.
18
+
19
+ 1.62.0 (2021-11-15)
20
+ ------------------
21
+
22
+ * Feature - Add Settings in JSON format for the source GCP MySQL endpoint
23
+
4
24
  1.61.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.65.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::DatabaseMigrationService
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
80
 
@@ -119,7 +121,9 @@ module Aws::DatabaseMigrationService
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::DatabaseMigrationService
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -305,7 +313,7 @@ module Aws::DatabaseMigrationService
305
313
  # seconds to wait when opening a HTTP session before raising a
306
314
  # `Timeout::Error`.
307
315
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
316
+ # @option options [Float] :http_read_timeout (60) The default
309
317
  # number of seconds to wait for response data. This value can
310
318
  # safely be set per-request on the session.
311
319
  #
@@ -321,6 +329,9 @@ module Aws::DatabaseMigrationService
321
329
  # disables this behaviour. This value can safely be set per
322
330
  # request on the session.
323
331
  #
332
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
333
+ # in seconds.
334
+ #
324
335
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
336
  # HTTP debug output will be sent to the `:logger`.
326
337
  #
@@ -536,10 +547,10 @@ module Aws::DatabaseMigrationService
536
547
  # @option params [required, String] :engine_name
537
548
  # The type of engine for the endpoint. Valid values, depending on the
538
549
  # `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
539
- # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
540
- # `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
541
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"docdb"`, `"sqlserver"`,
542
- # and `"neptune"`.
550
+ # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
551
+ # `"redshift"`, `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
552
+ # `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"docdb"`,
553
+ # `"sqlserver"`, and `"neptune"`.
543
554
  #
544
555
  # @option params [String] :username
545
556
  # The user name to be used to log in to the endpoint database.
@@ -667,9 +678,9 @@ module Aws::DatabaseMigrationService
667
678
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
668
679
  #
669
680
  # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
670
- # Settings in JSON format for the target Elasticsearch endpoint. For
671
- # more information about the available settings, see [Extra Connection
672
- # Attributes When Using Elasticsearch as a Target for DMS][1] in the
681
+ # Settings in JSON format for the target OpenSearch endpoint. For more
682
+ # information about the available settings, see [Extra Connection
683
+ # Attributes When Using OpenSearch as a Target for DMS][1] in the
673
684
  # *Database Migration Service User Guide*.
674
685
  #
675
686
  #
@@ -777,6 +788,9 @@ module Aws::DatabaseMigrationService
777
788
  # @option params [Types::RedisSettings] :redis_settings
778
789
  # Settings in JSON format for the target Redis endpoint.
779
790
  #
791
+ # @option params [Types::GcpMySQLSettings] :gcp_my_sql_settings
792
+ # Settings in JSON format for the source GCP MySQL endpoint.
793
+ #
780
794
  # @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
781
795
  #
782
796
  # * {Types::CreateEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -878,6 +892,7 @@ module Aws::DatabaseMigrationService
878
892
  # csv_no_sup_value: "String",
879
893
  # preserve_transactions: false,
880
894
  # cdc_path: "String",
895
+ # use_task_start_time_for_full_load_timestamp: false,
881
896
  # canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
882
897
  # add_column_name: false,
883
898
  # cdc_max_batch_interval: 1,
@@ -886,6 +901,7 @@ module Aws::DatabaseMigrationService
886
901
  # ignore_header_rows: 1,
887
902
  # max_file_size: 1,
888
903
  # rfc_4180: false,
904
+ # date_partition_timezone: "String",
889
905
  # },
890
906
  # dms_transfer_settings: {
891
907
  # service_access_role_arn: "String",
@@ -1124,6 +1140,22 @@ module Aws::DatabaseMigrationService
1124
1140
  # auth_password: "SecretString",
1125
1141
  # ssl_ca_certificate_arn: "String",
1126
1142
  # },
1143
+ # gcp_my_sql_settings: {
1144
+ # after_connect_script: "String",
1145
+ # clean_source_metadata_on_mismatch: false,
1146
+ # database_name: "String",
1147
+ # events_poll_interval: 1,
1148
+ # target_db_type: "specific-database", # accepts specific-database, multiple-databases
1149
+ # max_file_size: 1,
1150
+ # parallel_load_threads: 1,
1151
+ # password: "SecretString",
1152
+ # port: 1,
1153
+ # server_name: "String",
1154
+ # server_timezone: "String",
1155
+ # username: "String",
1156
+ # secrets_manager_access_role_arn: "String",
1157
+ # secrets_manager_secret_id: "String",
1158
+ # },
1127
1159
  # })
1128
1160
  #
1129
1161
  # @example Response structure
@@ -1174,6 +1206,7 @@ module Aws::DatabaseMigrationService
1174
1206
  # resp.endpoint.s3_settings.csv_no_sup_value #=> String
1175
1207
  # resp.endpoint.s3_settings.preserve_transactions #=> Boolean
1176
1208
  # resp.endpoint.s3_settings.cdc_path #=> String
1209
+ # resp.endpoint.s3_settings.use_task_start_time_for_full_load_timestamp #=> Boolean
1177
1210
  # resp.endpoint.s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
1178
1211
  # resp.endpoint.s3_settings.add_column_name #=> Boolean
1179
1212
  # resp.endpoint.s3_settings.cdc_max_batch_interval #=> Integer
@@ -1182,6 +1215,7 @@ module Aws::DatabaseMigrationService
1182
1215
  # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
1183
1216
  # resp.endpoint.s3_settings.max_file_size #=> Integer
1184
1217
  # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
1218
+ # resp.endpoint.s3_settings.date_partition_timezone #=> String
1185
1219
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
1186
1220
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
1187
1221
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -1389,6 +1423,20 @@ module Aws::DatabaseMigrationService
1389
1423
  # resp.endpoint.redis_settings.auth_user_name #=> String
1390
1424
  # resp.endpoint.redis_settings.auth_password #=> String
1391
1425
  # resp.endpoint.redis_settings.ssl_ca_certificate_arn #=> String
1426
+ # resp.endpoint.gcp_my_sql_settings.after_connect_script #=> String
1427
+ # resp.endpoint.gcp_my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
1428
+ # resp.endpoint.gcp_my_sql_settings.database_name #=> String
1429
+ # resp.endpoint.gcp_my_sql_settings.events_poll_interval #=> Integer
1430
+ # resp.endpoint.gcp_my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
1431
+ # resp.endpoint.gcp_my_sql_settings.max_file_size #=> Integer
1432
+ # resp.endpoint.gcp_my_sql_settings.parallel_load_threads #=> Integer
1433
+ # resp.endpoint.gcp_my_sql_settings.password #=> String
1434
+ # resp.endpoint.gcp_my_sql_settings.port #=> Integer
1435
+ # resp.endpoint.gcp_my_sql_settings.server_name #=> String
1436
+ # resp.endpoint.gcp_my_sql_settings.server_timezone #=> String
1437
+ # resp.endpoint.gcp_my_sql_settings.username #=> String
1438
+ # resp.endpoint.gcp_my_sql_settings.secrets_manager_access_role_arn #=> String
1439
+ # resp.endpoint.gcp_my_sql_settings.secrets_manager_secret_id #=> String
1392
1440
  #
1393
1441
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
1394
1442
  #
@@ -2116,7 +2164,7 @@ module Aws::DatabaseMigrationService
2116
2164
  # Deletes the specified certificate.
2117
2165
  #
2118
2166
  # @option params [required, String] :certificate_arn
2119
- # The Amazon Resource Name (ARN) of the deleted certificate.
2167
+ # The Amazon Resource Name (ARN) of the certificate.
2120
2168
  #
2121
2169
  # @return [Types::DeleteCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2122
2170
  #
@@ -2313,6 +2361,7 @@ module Aws::DatabaseMigrationService
2313
2361
  # resp.endpoint.s3_settings.csv_no_sup_value #=> String
2314
2362
  # resp.endpoint.s3_settings.preserve_transactions #=> Boolean
2315
2363
  # resp.endpoint.s3_settings.cdc_path #=> String
2364
+ # resp.endpoint.s3_settings.use_task_start_time_for_full_load_timestamp #=> Boolean
2316
2365
  # resp.endpoint.s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
2317
2366
  # resp.endpoint.s3_settings.add_column_name #=> Boolean
2318
2367
  # resp.endpoint.s3_settings.cdc_max_batch_interval #=> Integer
@@ -2321,6 +2370,7 @@ module Aws::DatabaseMigrationService
2321
2370
  # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
2322
2371
  # resp.endpoint.s3_settings.max_file_size #=> Integer
2323
2372
  # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
2373
+ # resp.endpoint.s3_settings.date_partition_timezone #=> String
2324
2374
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
2325
2375
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
2326
2376
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -2528,6 +2578,20 @@ module Aws::DatabaseMigrationService
2528
2578
  # resp.endpoint.redis_settings.auth_user_name #=> String
2529
2579
  # resp.endpoint.redis_settings.auth_password #=> String
2530
2580
  # resp.endpoint.redis_settings.ssl_ca_certificate_arn #=> String
2581
+ # resp.endpoint.gcp_my_sql_settings.after_connect_script #=> String
2582
+ # resp.endpoint.gcp_my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
2583
+ # resp.endpoint.gcp_my_sql_settings.database_name #=> String
2584
+ # resp.endpoint.gcp_my_sql_settings.events_poll_interval #=> Integer
2585
+ # resp.endpoint.gcp_my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
2586
+ # resp.endpoint.gcp_my_sql_settings.max_file_size #=> Integer
2587
+ # resp.endpoint.gcp_my_sql_settings.parallel_load_threads #=> Integer
2588
+ # resp.endpoint.gcp_my_sql_settings.password #=> String
2589
+ # resp.endpoint.gcp_my_sql_settings.port #=> Integer
2590
+ # resp.endpoint.gcp_my_sql_settings.server_name #=> String
2591
+ # resp.endpoint.gcp_my_sql_settings.server_timezone #=> String
2592
+ # resp.endpoint.gcp_my_sql_settings.username #=> String
2593
+ # resp.endpoint.gcp_my_sql_settings.secrets_manager_access_role_arn #=> String
2594
+ # resp.endpoint.gcp_my_sql_settings.secrets_manager_secret_id #=> String
2531
2595
  #
2532
2596
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
2533
2597
  #
@@ -3028,7 +3092,7 @@ module Aws::DatabaseMigrationService
3028
3092
  #
3029
3093
  # @option params [Array<Types::Filter>] :filters
3030
3094
  # Filters applied to the certificates described in the form of key-value
3031
- # pairs.
3095
+ # pairs. Valid values are `certificate-arn` and `certificate-id`.
3032
3096
  #
3033
3097
  # @option params [Integer] :max_records
3034
3098
  # The maximum number of records to include in the response. If more
@@ -3479,6 +3543,7 @@ module Aws::DatabaseMigrationService
3479
3543
  # resp.endpoints[0].s3_settings.csv_no_sup_value #=> String
3480
3544
  # resp.endpoints[0].s3_settings.preserve_transactions #=> Boolean
3481
3545
  # resp.endpoints[0].s3_settings.cdc_path #=> String
3546
+ # resp.endpoints[0].s3_settings.use_task_start_time_for_full_load_timestamp #=> Boolean
3482
3547
  # resp.endpoints[0].s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
3483
3548
  # resp.endpoints[0].s3_settings.add_column_name #=> Boolean
3484
3549
  # resp.endpoints[0].s3_settings.cdc_max_batch_interval #=> Integer
@@ -3487,6 +3552,7 @@ module Aws::DatabaseMigrationService
3487
3552
  # resp.endpoints[0].s3_settings.ignore_header_rows #=> Integer
3488
3553
  # resp.endpoints[0].s3_settings.max_file_size #=> Integer
3489
3554
  # resp.endpoints[0].s3_settings.rfc_4180 #=> Boolean
3555
+ # resp.endpoints[0].s3_settings.date_partition_timezone #=> String
3490
3556
  # resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
3491
3557
  # resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
3492
3558
  # resp.endpoints[0].mongo_db_settings.username #=> String
@@ -3694,6 +3760,20 @@ module Aws::DatabaseMigrationService
3694
3760
  # resp.endpoints[0].redis_settings.auth_user_name #=> String
3695
3761
  # resp.endpoints[0].redis_settings.auth_password #=> String
3696
3762
  # resp.endpoints[0].redis_settings.ssl_ca_certificate_arn #=> String
3763
+ # resp.endpoints[0].gcp_my_sql_settings.after_connect_script #=> String
3764
+ # resp.endpoints[0].gcp_my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
3765
+ # resp.endpoints[0].gcp_my_sql_settings.database_name #=> String
3766
+ # resp.endpoints[0].gcp_my_sql_settings.events_poll_interval #=> Integer
3767
+ # resp.endpoints[0].gcp_my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
3768
+ # resp.endpoints[0].gcp_my_sql_settings.max_file_size #=> Integer
3769
+ # resp.endpoints[0].gcp_my_sql_settings.parallel_load_threads #=> Integer
3770
+ # resp.endpoints[0].gcp_my_sql_settings.password #=> String
3771
+ # resp.endpoints[0].gcp_my_sql_settings.port #=> Integer
3772
+ # resp.endpoints[0].gcp_my_sql_settings.server_name #=> String
3773
+ # resp.endpoints[0].gcp_my_sql_settings.server_timezone #=> String
3774
+ # resp.endpoints[0].gcp_my_sql_settings.username #=> String
3775
+ # resp.endpoints[0].gcp_my_sql_settings.secrets_manager_access_role_arn #=> String
3776
+ # resp.endpoints[0].gcp_my_sql_settings.secrets_manager_secret_id #=> String
3697
3777
  #
3698
3778
  #
3699
3779
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -3772,6 +3852,8 @@ module Aws::DatabaseMigrationService
3772
3852
  # @option params [Array<Types::Filter>] :filters
3773
3853
  # Filters applied to event subscriptions.
3774
3854
  #
3855
+ # Valid filter names: event-subscription-arn \| event-subscription-id
3856
+ #
3775
3857
  # @option params [Integer] :max_records
3776
3858
  # The maximum number of records to include in the response. If more
3777
3859
  # records exist than the specified `MaxRecords` value, a pagination
@@ -3863,7 +3945,8 @@ module Aws::DatabaseMigrationService
3863
3945
  # A list of event categories for the source type that you've chosen.
3864
3946
  #
3865
3947
  # @option params [Array<Types::Filter>] :filters
3866
- # Filters applied to events.
3948
+ # Filters applied to events. The only valid filter is
3949
+ # `replication-instance-id`.
3867
3950
  #
3868
3951
  # @option params [Integer] :max_records
3869
3952
  # The maximum number of records to include in the response. If more
@@ -4389,13 +4472,11 @@ module Aws::DatabaseMigrationService
4389
4472
  # returns the latest results.
4390
4473
  #
4391
4474
  # For more information about DMS task assessments, see [Creating a task
4392
- # assessment report][1] in the [ Database Migration Service User
4393
- # Guide][2].
4475
+ # assessment report][1] in the *Database Migration Service User Guide*.
4394
4476
  #
4395
4477
  #
4396
4478
  #
4397
4479
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
4398
- # [2]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/dms/latest/userguide/Welcome.html
4399
4480
  #
4400
4481
  # @option params [String] :replication_task_arn
4401
4482
  # The Amazon Resource Name (ARN) string that uniquely identifies the
@@ -4918,6 +4999,8 @@ module Aws::DatabaseMigrationService
4918
4999
  # SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
4919
5000
  # You can't provide the certificate inline.
4920
5001
  #
5002
+ # Example: `filebase64("$\{path.root\}/rds-ca-2019-root.sso")`
5003
+ #
4921
5004
  # @option params [Array<Types::Tag>] :tags
4922
5005
  # The tags associated with the certificate.
4923
5006
  #
@@ -5066,10 +5149,10 @@ module Aws::DatabaseMigrationService
5066
5149
  # @option params [String] :engine_name
5067
5150
  # The type of engine for the endpoint. Valid values, depending on the
5068
5151
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
5069
- # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
5070
- # `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
5071
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
5072
- # `"sqlserver"`, and `"neptune"`.
5152
+ # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
5153
+ # `"redshift"`, `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
5154
+ # `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
5155
+ # `"documentdb"`, `"sqlserver"`, and `"neptune"`.
5073
5156
  #
5074
5157
  # @option params [String] :username
5075
5158
  # The user name to be used to login to the endpoint database.
@@ -5176,9 +5259,9 @@ module Aws::DatabaseMigrationService
5176
5259
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
5177
5260
  #
5178
5261
  # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
5179
- # Settings in JSON format for the target Elasticsearch endpoint. For
5180
- # more information about the available settings, see [Extra Connection
5181
- # Attributes When Using Elasticsearch as a Target for DMS][1] in the
5262
+ # Settings in JSON format for the target OpenSearch endpoint. For more
5263
+ # information about the available settings, see [Extra Connection
5264
+ # Attributes When Using OpenSearch as a Target for DMS][1] in the
5182
5265
  # *Database Migration Service User Guide.*
5183
5266
  #
5184
5267
  #
@@ -5305,6 +5388,9 @@ module Aws::DatabaseMigrationService
5305
5388
  # `'\{"b":2\}'`. All existing settings are replaced with the exact
5306
5389
  # settings that you specify.
5307
5390
  #
5391
+ # @option params [Types::GcpMySQLSettings] :gcp_my_sql_settings
5392
+ # Settings in JSON format for the source GCP MySQL endpoint.
5393
+ #
5308
5394
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5309
5395
  #
5310
5396
  # * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -5384,6 +5470,7 @@ module Aws::DatabaseMigrationService
5384
5470
  # csv_no_sup_value: "String",
5385
5471
  # preserve_transactions: false,
5386
5472
  # cdc_path: "String",
5473
+ # use_task_start_time_for_full_load_timestamp: false,
5387
5474
  # canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
5388
5475
  # add_column_name: false,
5389
5476
  # cdc_max_batch_interval: 1,
@@ -5392,6 +5479,7 @@ module Aws::DatabaseMigrationService
5392
5479
  # ignore_header_rows: 1,
5393
5480
  # max_file_size: 1,
5394
5481
  # rfc_4180: false,
5482
+ # date_partition_timezone: "String",
5395
5483
  # },
5396
5484
  # dms_transfer_settings: {
5397
5485
  # service_access_role_arn: "String",
@@ -5630,6 +5718,22 @@ module Aws::DatabaseMigrationService
5630
5718
  # ssl_ca_certificate_arn: "String",
5631
5719
  # },
5632
5720
  # exact_settings: false,
5721
+ # gcp_my_sql_settings: {
5722
+ # after_connect_script: "String",
5723
+ # clean_source_metadata_on_mismatch: false,
5724
+ # database_name: "String",
5725
+ # events_poll_interval: 1,
5726
+ # target_db_type: "specific-database", # accepts specific-database, multiple-databases
5727
+ # max_file_size: 1,
5728
+ # parallel_load_threads: 1,
5729
+ # password: "SecretString",
5730
+ # port: 1,
5731
+ # server_name: "String",
5732
+ # server_timezone: "String",
5733
+ # username: "String",
5734
+ # secrets_manager_access_role_arn: "String",
5735
+ # secrets_manager_secret_id: "String",
5736
+ # },
5633
5737
  # })
5634
5738
  #
5635
5739
  # @example Response structure
@@ -5680,6 +5784,7 @@ module Aws::DatabaseMigrationService
5680
5784
  # resp.endpoint.s3_settings.csv_no_sup_value #=> String
5681
5785
  # resp.endpoint.s3_settings.preserve_transactions #=> Boolean
5682
5786
  # resp.endpoint.s3_settings.cdc_path #=> String
5787
+ # resp.endpoint.s3_settings.use_task_start_time_for_full_load_timestamp #=> Boolean
5683
5788
  # resp.endpoint.s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
5684
5789
  # resp.endpoint.s3_settings.add_column_name #=> Boolean
5685
5790
  # resp.endpoint.s3_settings.cdc_max_batch_interval #=> Integer
@@ -5688,6 +5793,7 @@ module Aws::DatabaseMigrationService
5688
5793
  # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
5689
5794
  # resp.endpoint.s3_settings.max_file_size #=> Integer
5690
5795
  # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
5796
+ # resp.endpoint.s3_settings.date_partition_timezone #=> String
5691
5797
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
5692
5798
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
5693
5799
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -5895,6 +6001,20 @@ module Aws::DatabaseMigrationService
5895
6001
  # resp.endpoint.redis_settings.auth_user_name #=> String
5896
6002
  # resp.endpoint.redis_settings.auth_password #=> String
5897
6003
  # resp.endpoint.redis_settings.ssl_ca_certificate_arn #=> String
6004
+ # resp.endpoint.gcp_my_sql_settings.after_connect_script #=> String
6005
+ # resp.endpoint.gcp_my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
6006
+ # resp.endpoint.gcp_my_sql_settings.database_name #=> String
6007
+ # resp.endpoint.gcp_my_sql_settings.events_poll_interval #=> Integer
6008
+ # resp.endpoint.gcp_my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
6009
+ # resp.endpoint.gcp_my_sql_settings.max_file_size #=> Integer
6010
+ # resp.endpoint.gcp_my_sql_settings.parallel_load_threads #=> Integer
6011
+ # resp.endpoint.gcp_my_sql_settings.password #=> String
6012
+ # resp.endpoint.gcp_my_sql_settings.port #=> Integer
6013
+ # resp.endpoint.gcp_my_sql_settings.server_name #=> String
6014
+ # resp.endpoint.gcp_my_sql_settings.server_timezone #=> String
6015
+ # resp.endpoint.gcp_my_sql_settings.username #=> String
6016
+ # resp.endpoint.gcp_my_sql_settings.secrets_manager_access_role_arn #=> String
6017
+ # resp.endpoint.gcp_my_sql_settings.secrets_manager_secret_id #=> String
5898
6018
  #
5899
6019
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
5900
6020
  #
@@ -6731,7 +6851,17 @@ module Aws::DatabaseMigrationService
6731
6851
  # The Amazon Resource Name (ARN) of the replication task to be started.
6732
6852
  #
6733
6853
  # @option params [required, String] :start_replication_task_type
6734
- # A type of replication task.
6854
+ # The type of replication task to start.
6855
+ #
6856
+ # When the migration type is `full-load` or `full-load-and-cdc`, the
6857
+ # only valid value for the first run of the task is `start-replication`.
6858
+ # You use `reload-target` to restart the task and `resume-processing` to
6859
+ # resume the task.
6860
+ #
6861
+ # When the migration type is `cdc`, you use `start-replication` to start
6862
+ # or restart the task, and `resume-processing` to resume the task.
6863
+ # `reload-target` is not a valid value for a task with migration type of
6864
+ # `cdc`.
6735
6865
  #
6736
6866
  # @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
6737
6867
  # Indicates the start time for a change data capture (CDC) operation.
@@ -6863,6 +6993,23 @@ module Aws::DatabaseMigrationService
6863
6993
  # Starts the replication task assessment for unsupported data types in
6864
6994
  # the source database.
6865
6995
  #
6996
+ # You can only use this operation for a task if the following conditions
6997
+ # are true:
6998
+ #
6999
+ # * The task must be in the `stopped` state.
7000
+ #
7001
+ # * The task must have successful connections to the source and target.
7002
+ #
7003
+ # If either of these conditions are not met, an
7004
+ # `InvalidResourceStateFault` error will result.
7005
+ #
7006
+ # For information about DMS task assessments, see [Creating a task
7007
+ # assessment report][1] in the *Database Migration Service User Guide*.
7008
+ #
7009
+ #
7010
+ #
7011
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
7012
+ #
6866
7013
  # @option params [required, String] :replication_task_arn
6867
7014
  # The Amazon Resource Name (ARN) of the replication task.
6868
7015
  #
@@ -7187,7 +7334,7 @@ module Aws::DatabaseMigrationService
7187
7334
  params: params,
7188
7335
  config: config)
7189
7336
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
7190
- context[:gem_version] = '1.61.0'
7337
+ context[:gem_version] = '1.65.0'
7191
7338
  Seahorse::Client::Request.new(handlers, context)
7192
7339
  end
7193
7340
 
@@ -135,6 +135,7 @@ module Aws::DatabaseMigrationService
135
135
  Filter = Shapes::StructureShape.new(name: 'Filter')
136
136
  FilterList = Shapes::ListShape.new(name: 'FilterList')
137
137
  FilterValueList = Shapes::ListShape.new(name: 'FilterValueList')
138
+ GcpMySQLSettings = Shapes::StructureShape.new(name: 'GcpMySQLSettings')
138
139
  IBMDb2Settings = Shapes::StructureShape.new(name: 'IBMDb2Settings')
139
140
  ImportCertificateMessage = Shapes::StructureShape.new(name: 'ImportCertificateMessage')
140
141
  ImportCertificateResponse = Shapes::StructureShape.new(name: 'ImportCertificateResponse')
@@ -368,6 +369,7 @@ module Aws::DatabaseMigrationService
368
369
  CreateEndpointMessage.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ResourceIdentifier"))
369
370
  CreateEndpointMessage.add_member(:doc_db_settings, Shapes::ShapeRef.new(shape: DocDbSettings, location_name: "DocDbSettings"))
370
371
  CreateEndpointMessage.add_member(:redis_settings, Shapes::ShapeRef.new(shape: RedisSettings, location_name: "RedisSettings"))
372
+ CreateEndpointMessage.add_member(:gcp_my_sql_settings, Shapes::ShapeRef.new(shape: GcpMySQLSettings, location_name: "GcpMySQLSettings"))
371
373
  CreateEndpointMessage.struct_class = Types::CreateEndpointMessage
372
374
 
373
375
  CreateEndpointResponse.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "Endpoint"))
@@ -746,6 +748,7 @@ module Aws::DatabaseMigrationService
746
748
  Endpoint.add_member(:ibm_db_2_settings, Shapes::ShapeRef.new(shape: IBMDb2Settings, location_name: "IBMDb2Settings"))
747
749
  Endpoint.add_member(:doc_db_settings, Shapes::ShapeRef.new(shape: DocDbSettings, location_name: "DocDbSettings"))
748
750
  Endpoint.add_member(:redis_settings, Shapes::ShapeRef.new(shape: RedisSettings, location_name: "RedisSettings"))
751
+ Endpoint.add_member(:gcp_my_sql_settings, Shapes::ShapeRef.new(shape: GcpMySQLSettings, location_name: "GcpMySQLSettings"))
749
752
  Endpoint.struct_class = Types::Endpoint
750
753
 
751
754
  EndpointList.member = Shapes::ShapeRef.new(shape: Endpoint)
@@ -805,6 +808,22 @@ module Aws::DatabaseMigrationService
805
808
 
806
809
  FilterValueList.member = Shapes::ShapeRef.new(shape: String)
807
810
 
811
+ GcpMySQLSettings.add_member(:after_connect_script, Shapes::ShapeRef.new(shape: String, location_name: "AfterConnectScript"))
812
+ GcpMySQLSettings.add_member(:clean_source_metadata_on_mismatch, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CleanSourceMetadataOnMismatch"))
813
+ GcpMySQLSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
814
+ GcpMySQLSettings.add_member(:events_poll_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "EventsPollInterval"))
815
+ GcpMySQLSettings.add_member(:target_db_type, Shapes::ShapeRef.new(shape: TargetDbType, location_name: "TargetDbType"))
816
+ GcpMySQLSettings.add_member(:max_file_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxFileSize"))
817
+ GcpMySQLSettings.add_member(:parallel_load_threads, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ParallelLoadThreads"))
818
+ GcpMySQLSettings.add_member(:password, Shapes::ShapeRef.new(shape: SecretString, location_name: "Password"))
819
+ GcpMySQLSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
820
+ GcpMySQLSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
821
+ GcpMySQLSettings.add_member(:server_timezone, Shapes::ShapeRef.new(shape: String, location_name: "ServerTimezone"))
822
+ GcpMySQLSettings.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "Username"))
823
+ GcpMySQLSettings.add_member(:secrets_manager_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "SecretsManagerAccessRoleArn"))
824
+ GcpMySQLSettings.add_member(:secrets_manager_secret_id, Shapes::ShapeRef.new(shape: String, location_name: "SecretsManagerSecretId"))
825
+ GcpMySQLSettings.struct_class = Types::GcpMySQLSettings
826
+
808
827
  IBMDb2Settings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
809
828
  IBMDb2Settings.add_member(:password, Shapes::ShapeRef.new(shape: SecretString, location_name: "Password"))
810
829
  IBMDb2Settings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
@@ -954,6 +973,7 @@ module Aws::DatabaseMigrationService
954
973
  ModifyEndpointMessage.add_member(:doc_db_settings, Shapes::ShapeRef.new(shape: DocDbSettings, location_name: "DocDbSettings"))
955
974
  ModifyEndpointMessage.add_member(:redis_settings, Shapes::ShapeRef.new(shape: RedisSettings, location_name: "RedisSettings"))
956
975
  ModifyEndpointMessage.add_member(:exact_settings, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ExactSettings"))
976
+ ModifyEndpointMessage.add_member(:gcp_my_sql_settings, Shapes::ShapeRef.new(shape: GcpMySQLSettings, location_name: "GcpMySQLSettings"))
957
977
  ModifyEndpointMessage.struct_class = Types::ModifyEndpointMessage
958
978
 
959
979
  ModifyEndpointResponse.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "Endpoint"))
@@ -1399,6 +1419,7 @@ module Aws::DatabaseMigrationService
1399
1419
  S3Settings.add_member(:csv_no_sup_value, Shapes::ShapeRef.new(shape: String, location_name: "CsvNoSupValue"))
1400
1420
  S3Settings.add_member(:preserve_transactions, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PreserveTransactions"))
1401
1421
  S3Settings.add_member(:cdc_path, Shapes::ShapeRef.new(shape: String, location_name: "CdcPath"))
1422
+ S3Settings.add_member(:use_task_start_time_for_full_load_timestamp, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseTaskStartTimeForFullLoadTimestamp"))
1402
1423
  S3Settings.add_member(:canned_acl_for_objects, Shapes::ShapeRef.new(shape: CannedAclForObjectsValue, location_name: "CannedAclForObjects"))
1403
1424
  S3Settings.add_member(:add_column_name, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AddColumnName"))
1404
1425
  S3Settings.add_member(:cdc_max_batch_interval, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "CdcMaxBatchInterval"))
@@ -1407,6 +1428,7 @@ module Aws::DatabaseMigrationService
1407
1428
  S3Settings.add_member(:ignore_header_rows, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IgnoreHeaderRows"))
1408
1429
  S3Settings.add_member(:max_file_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxFileSize"))
1409
1430
  S3Settings.add_member(:rfc_4180, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "Rfc4180"))
1431
+ S3Settings.add_member(:date_partition_timezone, Shapes::ShapeRef.new(shape: String, location_name: "DatePartitionTimezone"))
1410
1432
  S3Settings.struct_class = Types::S3Settings
1411
1433
 
1412
1434
  SNSInvalidTopicFault.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
@@ -225,7 +225,7 @@ module Aws::DatabaseMigrationService
225
225
  #
226
226
  # @!attribute [rw] certificate_wallet
227
227
  # The location of an imported Oracle Wallet certificate for use with
228
- # SSL.
228
+ # SSL. Example: `filebase64("$\{path.root\}/rds-ca-2019-root.sso")`
229
229
  # @return [String]
230
230
  #
231
231
  # @!attribute [rw] certificate_arn
@@ -379,6 +379,7 @@ module Aws::DatabaseMigrationService
379
379
  # csv_no_sup_value: "String",
380
380
  # preserve_transactions: false,
381
381
  # cdc_path: "String",
382
+ # use_task_start_time_for_full_load_timestamp: false,
382
383
  # canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
383
384
  # add_column_name: false,
384
385
  # cdc_max_batch_interval: 1,
@@ -387,6 +388,7 @@ module Aws::DatabaseMigrationService
387
388
  # ignore_header_rows: 1,
388
389
  # max_file_size: 1,
389
390
  # rfc_4180: false,
391
+ # date_partition_timezone: "String",
390
392
  # },
391
393
  # dms_transfer_settings: {
392
394
  # service_access_role_arn: "String",
@@ -625,6 +627,22 @@ module Aws::DatabaseMigrationService
625
627
  # auth_password: "SecretString",
626
628
  # ssl_ca_certificate_arn: "String",
627
629
  # },
630
+ # gcp_my_sql_settings: {
631
+ # after_connect_script: "String",
632
+ # clean_source_metadata_on_mismatch: false,
633
+ # database_name: "String",
634
+ # events_poll_interval: 1,
635
+ # target_db_type: "specific-database", # accepts specific-database, multiple-databases
636
+ # max_file_size: 1,
637
+ # parallel_load_threads: 1,
638
+ # password: "SecretString",
639
+ # port: 1,
640
+ # server_name: "String",
641
+ # server_timezone: "String",
642
+ # username: "String",
643
+ # secrets_manager_access_role_arn: "String",
644
+ # secrets_manager_secret_id: "String",
645
+ # },
628
646
  # }
629
647
  #
630
648
  # @!attribute [rw] endpoint_identifier
@@ -640,10 +658,10 @@ module Aws::DatabaseMigrationService
640
658
  # @!attribute [rw] engine_name
641
659
  # The type of engine for the endpoint. Valid values, depending on the
642
660
  # `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
643
- # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
644
- # `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
645
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"docdb"`, `"sqlserver"`,
646
- # and `"neptune"`.
661
+ # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
662
+ # `"redshift"`, `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`,
663
+ # `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
664
+ # `"elasticsearch"`, `"docdb"`, `"sqlserver"`, and `"neptune"`.
647
665
  # @return [String]
648
666
  #
649
667
  # @!attribute [rw] username
@@ -791,9 +809,9 @@ module Aws::DatabaseMigrationService
791
809
  # @return [Types::KafkaSettings]
792
810
  #
793
811
  # @!attribute [rw] elasticsearch_settings
794
- # Settings in JSON format for the target Elasticsearch endpoint. For
795
- # more information about the available settings, see [Extra Connection
796
- # Attributes When Using Elasticsearch as a Target for DMS][1] in the
812
+ # Settings in JSON format for the target OpenSearch endpoint. For more
813
+ # information about the available settings, see [Extra Connection
814
+ # Attributes When Using OpenSearch as a Target for DMS][1] in the
797
815
  # *Database Migration Service User Guide*.
798
816
  #
799
817
  #
@@ -915,6 +933,10 @@ module Aws::DatabaseMigrationService
915
933
  # Settings in JSON format for the target Redis endpoint.
916
934
  # @return [Types::RedisSettings]
917
935
  #
936
+ # @!attribute [rw] gcp_my_sql_settings
937
+ # Settings in JSON format for the source GCP MySQL endpoint.
938
+ # @return [Types::GcpMySQLSettings]
939
+ #
918
940
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpointMessage AWS API Documentation
919
941
  #
920
942
  class CreateEndpointMessage < Struct.new(
@@ -950,7 +972,8 @@ module Aws::DatabaseMigrationService
950
972
  :ibm_db_2_settings,
951
973
  :resource_identifier,
952
974
  :doc_db_settings,
953
- :redis_settings)
975
+ :redis_settings,
976
+ :gcp_my_sql_settings)
954
977
  SENSITIVE = [:password]
955
978
  include Aws::Structure
956
979
  end
@@ -1513,7 +1536,7 @@ module Aws::DatabaseMigrationService
1513
1536
  # }
1514
1537
  #
1515
1538
  # @!attribute [rw] certificate_arn
1516
- # The Amazon Resource Name (ARN) of the deleted certificate.
1539
+ # The Amazon Resource Name (ARN) of the certificate.
1517
1540
  # @return [String]
1518
1541
  #
1519
1542
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteCertificateMessage AWS API Documentation
@@ -1902,7 +1925,8 @@ module Aws::DatabaseMigrationService
1902
1925
  #
1903
1926
  # @!attribute [rw] filters
1904
1927
  # Filters applied to the certificates described in the form of
1905
- # key-value pairs.
1928
+ # key-value pairs. Valid values are `certificate-arn` and
1929
+ # `certificate-id`.
1906
1930
  # @return [Array<Types::Filter>]
1907
1931
  #
1908
1932
  # @!attribute [rw] max_records
@@ -2268,6 +2292,8 @@ module Aws::DatabaseMigrationService
2268
2292
  #
2269
2293
  # @!attribute [rw] filters
2270
2294
  # Filters applied to event subscriptions.
2295
+ #
2296
+ # Valid filter names: event-subscription-arn \| event-subscription-id
2271
2297
  # @return [Array<Types::Filter>]
2272
2298
  #
2273
2299
  # @!attribute [rw] max_records
@@ -2364,7 +2390,8 @@ module Aws::DatabaseMigrationService
2364
2390
  # @return [Array<String>]
2365
2391
  #
2366
2392
  # @!attribute [rw] filters
2367
- # Filters applied to events.
2393
+ # Filters applied to events. The only valid filter is
2394
+ # `replication-instance-id`.
2368
2395
  # @return [Array<Types::Filter>]
2369
2396
  #
2370
2397
  # @!attribute [rw] max_records
@@ -3358,7 +3385,7 @@ module Aws::DatabaseMigrationService
3358
3385
  include Aws::Structure
3359
3386
  end
3360
3387
 
3361
- # Provides information that defines an Elasticsearch endpoint.
3388
+ # Provides information that defines an OpenSearch endpoint.
3362
3389
  #
3363
3390
  # @note When making an API call, you may pass ElasticsearchSettings
3364
3391
  # data as a hash:
@@ -3376,7 +3403,7 @@ module Aws::DatabaseMigrationService
3376
3403
  # @return [String]
3377
3404
  #
3378
3405
  # @!attribute [rw] endpoint_uri
3379
- # The endpoint for the Elasticsearch cluster. DMS uses HTTPS if a
3406
+ # The endpoint for the OpenSearch cluster. DMS uses HTTPS if a
3380
3407
  # transport protocol (http/https) is not specified.
3381
3408
  # @return [String]
3382
3409
  #
@@ -3385,7 +3412,7 @@ module Aws::DatabaseMigrationService
3385
3412
  # a full load operation stops.
3386
3413
  #
3387
3414
  # To avoid early failure, this counter is only effective after 1000
3388
- # records are transferred. Elasticsearch also has the concept of error
3415
+ # records are transferred. OpenSearch also has the concept of error
3389
3416
  # monitoring during the last 10 minutes of an Observation Window. If
3390
3417
  # transfer of all records fail in the last 10 minutes, the full load
3391
3418
  # operation stops.
@@ -3393,7 +3420,7 @@ module Aws::DatabaseMigrationService
3393
3420
  #
3394
3421
  # @!attribute [rw] error_retry_duration
3395
3422
  # The maximum number of seconds for which DMS retries failed API
3396
- # requests to the Elasticsearch cluster.
3423
+ # requests to the OpenSearch cluster.
3397
3424
  # @return [Integer]
3398
3425
  #
3399
3426
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ElasticsearchSettings AWS API Documentation
@@ -3429,10 +3456,10 @@ module Aws::DatabaseMigrationService
3429
3456
  # @!attribute [rw] engine_name
3430
3457
  # The database engine name. Valid values, depending on the
3431
3458
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
3432
- # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
3433
- # `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
3434
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
3435
- # `"sqlserver"`, and `"neptune"`.
3459
+ # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
3460
+ # `"redshift"`, `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`,
3461
+ # `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
3462
+ # `"elasticsearch"`, `"documentdb"`, `"sqlserver"`, and `"neptune"`.
3436
3463
  # @return [String]
3437
3464
  #
3438
3465
  # @!attribute [rw] engine_display_name
@@ -3518,22 +3545,8 @@ module Aws::DatabaseMigrationService
3518
3545
  # @return [Types::S3Settings]
3519
3546
  #
3520
3547
  # @!attribute [rw] dms_transfer_settings
3521
- # The settings in JSON format for the DMS transfer type of source
3522
- # endpoint.
3523
- #
3524
- # Possible settings include the following:
3525
- #
3526
- # * `ServiceAccessRoleArn` - - The Amazon Resource Name (ARN) used by
3527
- # the service access IAM role. The role must allow the
3528
- # `iam:PassRole` action.
3529
- #
3530
- # * `BucketName` - The name of the S3 bucket to use.
3531
- #
3532
- # Shorthand syntax for these settings is as follows:
3533
- # `ServiceAccessRoleArn=string,BucketName=string,`
3534
- #
3535
- # JSON syntax for these settings is as follows: `\{
3536
- # "ServiceAccessRoleArn": "string", "BucketName": "string"\} `
3548
+ # The settings for the DMS Transfer type source. For more information,
3549
+ # see the DmsTransferSettings structure.
3537
3550
  # @return [Types::DmsTransferSettings]
3538
3551
  #
3539
3552
  # @!attribute [rw] mongo_db_settings
@@ -3552,7 +3565,7 @@ module Aws::DatabaseMigrationService
3552
3565
  # @return [Types::KafkaSettings]
3553
3566
  #
3554
3567
  # @!attribute [rw] elasticsearch_settings
3555
- # The settings for the Elasticsearch source endpoint. For more
3568
+ # The settings for the OpenSearch source endpoint. For more
3556
3569
  # information, see the `ElasticsearchSettings` structure.
3557
3570
  # @return [Types::ElasticsearchSettings]
3558
3571
  #
@@ -3605,6 +3618,10 @@ module Aws::DatabaseMigrationService
3605
3618
  # see the `RedisSettings` structure.
3606
3619
  # @return [Types::RedisSettings]
3607
3620
  #
3621
+ # @!attribute [rw] gcp_my_sql_settings
3622
+ # Settings in JSON format for the source GCP MySQL endpoint.
3623
+ # @return [Types::GcpMySQLSettings]
3624
+ #
3608
3625
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Endpoint AWS API Documentation
3609
3626
  #
3610
3627
  class Endpoint < Struct.new(
@@ -3641,7 +3658,8 @@ module Aws::DatabaseMigrationService
3641
3658
  :microsoft_sql_server_settings,
3642
3659
  :ibm_db_2_settings,
3643
3660
  :doc_db_settings,
3644
- :redis_settings)
3661
+ :redis_settings,
3662
+ :gcp_my_sql_settings)
3645
3663
  SENSITIVE = []
3646
3664
  include Aws::Structure
3647
3665
  end
@@ -3870,6 +3888,165 @@ module Aws::DatabaseMigrationService
3870
3888
  include Aws::Structure
3871
3889
  end
3872
3890
 
3891
+ # Settings in JSON format for the source GCP MySQL endpoint.
3892
+ #
3893
+ # @note When making an API call, you may pass GcpMySQLSettings
3894
+ # data as a hash:
3895
+ #
3896
+ # {
3897
+ # after_connect_script: "String",
3898
+ # clean_source_metadata_on_mismatch: false,
3899
+ # database_name: "String",
3900
+ # events_poll_interval: 1,
3901
+ # target_db_type: "specific-database", # accepts specific-database, multiple-databases
3902
+ # max_file_size: 1,
3903
+ # parallel_load_threads: 1,
3904
+ # password: "SecretString",
3905
+ # port: 1,
3906
+ # server_name: "String",
3907
+ # server_timezone: "String",
3908
+ # username: "String",
3909
+ # secrets_manager_access_role_arn: "String",
3910
+ # secrets_manager_secret_id: "String",
3911
+ # }
3912
+ #
3913
+ # @!attribute [rw] after_connect_script
3914
+ # Specifies a script to run immediately after DMS connects to the
3915
+ # endpoint. The migration task continues running regardless if the SQL
3916
+ # statement succeeds or fails.
3917
+ #
3918
+ # For this parameter, provide the code of the script itself, not the
3919
+ # name of a file containing the script.
3920
+ # @return [String]
3921
+ #
3922
+ # @!attribute [rw] clean_source_metadata_on_mismatch
3923
+ # Adjusts the behavior of DMS when migrating from an SQL Server source
3924
+ # database that is hosted as part of an Always On availability group
3925
+ # cluster. If you need DMS to poll all the nodes in the Always On
3926
+ # cluster for transaction backups, set this attribute to `false`.
3927
+ # @return [Boolean]
3928
+ #
3929
+ # @!attribute [rw] database_name
3930
+ # Database name for the endpoint. For a MySQL source or target
3931
+ # endpoint, don't explicitly specify the database using the
3932
+ # `DatabaseName` request parameter on either the `CreateEndpoint` or
3933
+ # `ModifyEndpoint` API call. Specifying `DatabaseName` when you create
3934
+ # or modify a MySQL endpoint replicates all the task tables to this
3935
+ # single database. For MySQL endpoints, you specify the database only
3936
+ # when you specify the schema in the table-mapping rules of the DMS
3937
+ # task.
3938
+ # @return [String]
3939
+ #
3940
+ # @!attribute [rw] events_poll_interval
3941
+ # Specifies how often to check the binary log for new changes/events
3942
+ # when the database is idle. The default is five seconds.
3943
+ #
3944
+ # Example: `eventsPollInterval=5;`
3945
+ #
3946
+ # In the example, DMS checks for changes in the binary logs every five
3947
+ # seconds.
3948
+ # @return [Integer]
3949
+ #
3950
+ # @!attribute [rw] target_db_type
3951
+ # Specifies where to migrate source tables on the target, either to a
3952
+ # single database or multiple databases.
3953
+ #
3954
+ # Example: `targetDbType=MULTIPLE_DATABASES`
3955
+ # @return [String]
3956
+ #
3957
+ # @!attribute [rw] max_file_size
3958
+ # Specifies the maximum size (in KB) of any .csv file used to transfer
3959
+ # data to a MySQL-compatible database.
3960
+ #
3961
+ # Example: `maxFileSize=512`
3962
+ # @return [Integer]
3963
+ #
3964
+ # @!attribute [rw] parallel_load_threads
3965
+ # Improves performance when loading data into the MySQL-compatible
3966
+ # target database. Specifies how many threads to use to load the data
3967
+ # into the MySQL-compatible target database. Setting a large number of
3968
+ # threads can have an adverse effect on database performance, because
3969
+ # a separate connection is required for each thread. The default is
3970
+ # one.
3971
+ #
3972
+ # Example: `parallelLoadThreads=1`
3973
+ # @return [Integer]
3974
+ #
3975
+ # @!attribute [rw] password
3976
+ # Endpoint connection password.
3977
+ # @return [String]
3978
+ #
3979
+ # @!attribute [rw] port
3980
+ # @return [Integer]
3981
+ #
3982
+ # @!attribute [rw] server_name
3983
+ # Endpoint TCP port.
3984
+ # @return [String]
3985
+ #
3986
+ # @!attribute [rw] server_timezone
3987
+ # Specifies the time zone for the source MySQL database.
3988
+ #
3989
+ # Example: `serverTimezone=US/Pacific;`
3990
+ #
3991
+ # Note: Do not enclose time zones in single quotes.
3992
+ # @return [String]
3993
+ #
3994
+ # @!attribute [rw] username
3995
+ # Endpoint connection user name.
3996
+ # @return [String]
3997
+ #
3998
+ # @!attribute [rw] secrets_manager_access_role_arn
3999
+ # The full Amazon Resource Name (ARN) of the IAM role that specifies
4000
+ # DMS as the trusted entity and grants the required permissions to
4001
+ # access the value in `SecretsManagerSecret.` The role must allow the
4002
+ # `iam:PassRole` action. `SecretsManagerSecret` has the value of the
4003
+ # Amazon Web Services Secrets Manager secret that allows access to the
4004
+ # MySQL endpoint.
4005
+ #
4006
+ # <note markdown="1"> You can specify one of two sets of values for these permissions. You
4007
+ # can specify the values for this setting and
4008
+ # `SecretsManagerSecretId`. Or you can specify clear-text values for
4009
+ # `UserName`, `Password`, `ServerName`, and `Port`. You can't specify
4010
+ # both. For more information on creating this `SecretsManagerSecret`
4011
+ # and the `SecretsManagerAccessRoleArn` and `SecretsManagerSecretId`
4012
+ # required to access it, see [Using secrets to access Database
4013
+ # Migration Service resources][1] in the Database Migration Service
4014
+ # User Guide.
4015
+ #
4016
+ # </note>
4017
+ #
4018
+ #
4019
+ #
4020
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#security-iam-secretsmanager
4021
+ # @return [String]
4022
+ #
4023
+ # @!attribute [rw] secrets_manager_secret_id
4024
+ # The full ARN, partial ARN, or friendly name of the
4025
+ # `SecretsManagerSecret` that contains the MySQL endpoint connection
4026
+ # details.
4027
+ # @return [String]
4028
+ #
4029
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/GcpMySQLSettings AWS API Documentation
4030
+ #
4031
+ class GcpMySQLSettings < Struct.new(
4032
+ :after_connect_script,
4033
+ :clean_source_metadata_on_mismatch,
4034
+ :database_name,
4035
+ :events_poll_interval,
4036
+ :target_db_type,
4037
+ :max_file_size,
4038
+ :parallel_load_threads,
4039
+ :password,
4040
+ :port,
4041
+ :server_name,
4042
+ :server_timezone,
4043
+ :username,
4044
+ :secrets_manager_access_role_arn,
4045
+ :secrets_manager_secret_id)
4046
+ SENSITIVE = [:password]
4047
+ include Aws::Structure
4048
+ end
4049
+
3873
4050
  # Provides information that defines an IBM Db2 LUW endpoint.
3874
4051
  #
3875
4052
  # @note When making an API call, you may pass IBMDb2Settings
@@ -4002,6 +4179,8 @@ module Aws::DatabaseMigrationService
4002
4179
  # The location of an imported Oracle Wallet certificate for use with
4003
4180
  # SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
4004
4181
  # You can't provide the certificate inline.
4182
+ #
4183
+ # Example: `filebase64("$\{path.root\}/rds-ca-2019-root.sso")`
4005
4184
  # @return [String]
4006
4185
  #
4007
4186
  # @!attribute [rw] tags
@@ -4098,7 +4277,7 @@ module Aws::DatabaseMigrationService
4098
4277
  include Aws::Structure
4099
4278
  end
4100
4279
 
4101
- # The specified master key (CMK) isn't enabled.
4280
+ # The specified KMS key isn't enabled.
4102
4281
  #
4103
4282
  # @!attribute [rw] message
4104
4283
  # @return [String]
@@ -4704,6 +4883,7 @@ module Aws::DatabaseMigrationService
4704
4883
  # csv_no_sup_value: "String",
4705
4884
  # preserve_transactions: false,
4706
4885
  # cdc_path: "String",
4886
+ # use_task_start_time_for_full_load_timestamp: false,
4707
4887
  # canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
4708
4888
  # add_column_name: false,
4709
4889
  # cdc_max_batch_interval: 1,
@@ -4712,6 +4892,7 @@ module Aws::DatabaseMigrationService
4712
4892
  # ignore_header_rows: 1,
4713
4893
  # max_file_size: 1,
4714
4894
  # rfc_4180: false,
4895
+ # date_partition_timezone: "String",
4715
4896
  # },
4716
4897
  # dms_transfer_settings: {
4717
4898
  # service_access_role_arn: "String",
@@ -4950,6 +5131,22 @@ module Aws::DatabaseMigrationService
4950
5131
  # ssl_ca_certificate_arn: "String",
4951
5132
  # },
4952
5133
  # exact_settings: false,
5134
+ # gcp_my_sql_settings: {
5135
+ # after_connect_script: "String",
5136
+ # clean_source_metadata_on_mismatch: false,
5137
+ # database_name: "String",
5138
+ # events_poll_interval: 1,
5139
+ # target_db_type: "specific-database", # accepts specific-database, multiple-databases
5140
+ # max_file_size: 1,
5141
+ # parallel_load_threads: 1,
5142
+ # password: "SecretString",
5143
+ # port: 1,
5144
+ # server_name: "String",
5145
+ # server_timezone: "String",
5146
+ # username: "String",
5147
+ # secrets_manager_access_role_arn: "String",
5148
+ # secrets_manager_secret_id: "String",
5149
+ # },
4953
5150
  # }
4954
5151
  #
4955
5152
  # @!attribute [rw] endpoint_arn
@@ -4970,10 +5167,10 @@ module Aws::DatabaseMigrationService
4970
5167
  # @!attribute [rw] engine_name
4971
5168
  # The type of engine for the endpoint. Valid values, depending on the
4972
5169
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
4973
- # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
4974
- # `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
4975
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
4976
- # `"sqlserver"`, and `"neptune"`.
5170
+ # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
5171
+ # `"redshift"`, `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`,
5172
+ # `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
5173
+ # `"elasticsearch"`, `"documentdb"`, `"sqlserver"`, and `"neptune"`.
4977
5174
  # @return [String]
4978
5175
  #
4979
5176
  # @!attribute [rw] username
@@ -5097,9 +5294,9 @@ module Aws::DatabaseMigrationService
5097
5294
  # @return [Types::KafkaSettings]
5098
5295
  #
5099
5296
  # @!attribute [rw] elasticsearch_settings
5100
- # Settings in JSON format for the target Elasticsearch endpoint. For
5101
- # more information about the available settings, see [Extra Connection
5102
- # Attributes When Using Elasticsearch as a Target for DMS][1] in the
5297
+ # Settings in JSON format for the target OpenSearch endpoint. For more
5298
+ # information about the available settings, see [Extra Connection
5299
+ # Attributes When Using OpenSearch as a Target for DMS][1] in the
5103
5300
  # *Database Migration Service User Guide.*
5104
5301
  #
5105
5302
  #
@@ -5240,6 +5437,10 @@ module Aws::DatabaseMigrationService
5240
5437
  # settings are replaced with the exact settings that you specify.
5241
5438
  # @return [Boolean]
5242
5439
  #
5440
+ # @!attribute [rw] gcp_my_sql_settings
5441
+ # Settings in JSON format for the source GCP MySQL endpoint.
5442
+ # @return [Types::GcpMySQLSettings]
5443
+ #
5243
5444
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpointMessage AWS API Documentation
5244
5445
  #
5245
5446
  class ModifyEndpointMessage < Struct.new(
@@ -5274,7 +5475,8 @@ module Aws::DatabaseMigrationService
5274
5475
  :ibm_db_2_settings,
5275
5476
  :doc_db_settings,
5276
5477
  :redis_settings,
5277
- :exact_settings)
5478
+ :exact_settings,
5479
+ :gcp_my_sql_settings)
5278
5480
  SENSITIVE = [:password]
5279
5481
  include Aws::Structure
5280
5482
  end
@@ -5916,7 +6118,7 @@ module Aws::DatabaseMigrationService
5916
6118
  #
5917
6119
  # @!attribute [rw] events_poll_interval
5918
6120
  # Specifies how often to check the binary log for new changes/events
5919
- # when the database is idle.
6121
+ # when the database is idle. The default is five seconds.
5920
6122
  #
5921
6123
  # Example: `eventsPollInterval=5;`
5922
6124
  #
@@ -5943,7 +6145,8 @@ module Aws::DatabaseMigrationService
5943
6145
  # target database. Specifies how many threads to use to load the data
5944
6146
  # into the MySQL-compatible target database. Setting a large number of
5945
6147
  # threads can have an adverse effect on database performance, because
5946
- # a separate connection is required for each thread.
6148
+ # a separate connection is required for each thread. The default is
6149
+ # one.
5947
6150
  #
5948
6151
  # Example: `parallelLoadThreads=1`
5949
6152
  # @return [Integer]
@@ -6823,7 +7026,7 @@ module Aws::DatabaseMigrationService
6823
7026
  # @return [String]
6824
7027
  #
6825
7028
  # @!attribute [rw] port
6826
- # Endpoint TCP port.
7029
+ # Endpoint TCP port. The default is 5432.
6827
7030
  # @return [Integer]
6828
7031
  #
6829
7032
  # @!attribute [rw] server_name
@@ -8515,6 +8718,7 @@ module Aws::DatabaseMigrationService
8515
8718
  # csv_no_sup_value: "String",
8516
8719
  # preserve_transactions: false,
8517
8720
  # cdc_path: "String",
8721
+ # use_task_start_time_for_full_load_timestamp: false,
8518
8722
  # canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
8519
8723
  # add_column_name: false,
8520
8724
  # cdc_max_batch_interval: 1,
@@ -8523,6 +8727,7 @@ module Aws::DatabaseMigrationService
8523
8727
  # ignore_header_rows: 1,
8524
8728
  # max_file_size: 1,
8525
8729
  # rfc_4180: false,
8730
+ # date_partition_timezone: "String",
8526
8731
  # }
8527
8732
  #
8528
8733
  # @!attribute [rw] service_access_role_arn
@@ -8954,6 +9159,19 @@ module Aws::DatabaseMigrationService
8954
9159
  # [4]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.EndpointSettings.CdcPath
8955
9160
  # @return [String]
8956
9161
  #
9162
+ # @!attribute [rw] use_task_start_time_for_full_load_timestamp
9163
+ # When set to true, this parameter uses the task start time as the
9164
+ # timestamp column value instead of the time data is written to
9165
+ # target. For full load, when `useTaskStartTimeForFullLoadTimestamp`
9166
+ # is set to `true`, each row of the timestamp column contains the task
9167
+ # start time. For CDC loads, each row of the timestamp column contains
9168
+ # the transaction commit time.
9169
+ #
9170
+ # When `useTaskStartTimeForFullLoadTimestamp` is set to `false`, the
9171
+ # full load timestamp in the timestamp column increments with the time
9172
+ # data arrives at the target.
9173
+ # @return [Boolean]
9174
+ #
8957
9175
  # @!attribute [rw] canned_acl_for_objects
8958
9176
  # A value that enables DMS to specify a predefined (canned) access
8959
9177
  # control list for objects created in an Amazon S3 bucket as .csv or
@@ -9049,6 +9267,20 @@ module Aws::DatabaseMigrationService
9049
9267
  # `y`, and `n`.
9050
9268
  # @return [Boolean]
9051
9269
  #
9270
+ # @!attribute [rw] date_partition_timezone
9271
+ # When creating an S3 target endpoint, set `DatePartitionTimezone` to
9272
+ # convert the current UTC time into a specified time zone. The
9273
+ # conversion occurs when a date partition folder is created and a CDC
9274
+ # filename is generated. The time zone format is Area/Location. Use
9275
+ # this parameter when `DatePartitionedEnabled` is set to `true`, as
9276
+ # shown in the following example.
9277
+ #
9278
+ # `s3-settings='\{"DatePartitionEnabled": true,
9279
+ # "DatePartitionSequence": "YYYYMMDDHH", "DatePartitionDelimiter":
9280
+ # "SLASH", "DatePartitionTimezone":"Asia/Seoul", "BucketName":
9281
+ # "dms-nattarat-test"\}'`
9282
+ # @return [String]
9283
+ #
9052
9284
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3Settings AWS API Documentation
9053
9285
  #
9054
9286
  class S3Settings < Struct.new(
@@ -9080,6 +9312,7 @@ module Aws::DatabaseMigrationService
9080
9312
  :csv_no_sup_value,
9081
9313
  :preserve_transactions,
9082
9314
  :cdc_path,
9315
+ :use_task_start_time_for_full_load_timestamp,
9083
9316
  :canned_acl_for_objects,
9084
9317
  :add_column_name,
9085
9318
  :cdc_max_batch_interval,
@@ -9087,7 +9320,8 @@ module Aws::DatabaseMigrationService
9087
9320
  :csv_null_value,
9088
9321
  :ignore_header_rows,
9089
9322
  :max_file_size,
9090
- :rfc_4180)
9323
+ :rfc_4180,
9324
+ :date_partition_timezone)
9091
9325
  SENSITIVE = []
9092
9326
  include Aws::Structure
9093
9327
  end
@@ -9286,7 +9520,17 @@ module Aws::DatabaseMigrationService
9286
9520
  # @return [String]
9287
9521
  #
9288
9522
  # @!attribute [rw] start_replication_task_type
9289
- # A type of replication task.
9523
+ # The type of replication task to start.
9524
+ #
9525
+ # When the migration type is `full-load` or `full-load-and-cdc`, the
9526
+ # only valid value for the first run of the task is
9527
+ # `start-replication`. You use `reload-target` to restart the task and
9528
+ # `resume-processing` to resume the task.
9529
+ #
9530
+ # When the migration type is `cdc`, you use `start-replication` to
9531
+ # start or restart the task, and `resume-processing` to resume the
9532
+ # task. `reload-target` is not a valid value for a task with migration
9533
+ # type of `cdc`.
9290
9534
  # @return [String]
9291
9535
  #
9292
9536
  # @!attribute [rw] cdc_start_time
@@ -9515,7 +9759,7 @@ module Aws::DatabaseMigrationService
9515
9759
  # @return [String]
9516
9760
  #
9517
9761
  # @!attribute [rw] port
9518
- # Endpoint TCP port.
9762
+ # Endpoint TCP port. The default is 5000.
9519
9763
  # @return [Integer]
9520
9764
  #
9521
9765
  # @!attribute [rw] server_name
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
49
49
  # @!group service
50
50
  module Aws::DatabaseMigrationService
51
51
 
52
- GEM_VERSION = '1.61.0'
52
+ GEM_VERSION = '1.65.0'
53
53
 
54
54
  end
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.61.0
4
+ version: 1.65.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: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.125.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement