aws-sdk-databasemigrationservice 1.88.0 → 1.89.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: 5adfb9bc5058aebcadaf53daa929e8fcb34798172979902b6ed9874e1860e92b
4
- data.tar.gz: 0516f74a2bb9ddc118c53db3a384eae7791ce3fff2cc63bf97bf62598523c1d4
3
+ metadata.gz: d58fadca604d19d0516c8f1393befa7c14a1e71b6526000429fd7bd11e673700
4
+ data.tar.gz: 116839cdd85906fc3918eee56f4d33177004a2cd7ea7c535bc879da6fd46192b
5
5
  SHA512:
6
- metadata.gz: ea491271d8a9a49bae6131a32d4d11816398f7008d7463bbb9b8db14078b08a08155a1b7800fb011f1bc55bda59e9b50492350a2bf6f964863e05e1b57bf589c
7
- data.tar.gz: dd349707cd1e9e53db949c13a69c85857317b61de05f72117e7605dd780192917859d2b7035c536b09b4381b9e40bda64f4df09a2b8f9d714e12250b4128df30
6
+ metadata.gz: a7087c76e852b499db642122534e424f2db57fda9404f66d547c75fd7b99551741a191a4ef7c3b68d67371d5328f55cd075f9f974b23dd9d1f20a8447319a55d
7
+ data.tar.gz: 68c907a44e2dac8d171980eae3b8ea0588fb85f7a15501786731fcf77923ceb9ee2c08ecc7018bcace531394648be103ea735c0fb2f5fb6cccc9f96654b5fe8b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.89.0 (2023-11-13)
5
+ ------------------
6
+
7
+ * Feature - Added new Db2 LUW Target endpoint with related endpoint settings. New executeTimeout endpoint setting for mysql endpoint. New ReplicationDeprovisionTime field for serverless describe-replications.
8
+
4
9
  1.88.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.88.0
1
+ 1.89.0
@@ -630,9 +630,10 @@ module Aws::DatabaseMigrationService
630
630
  #
631
631
  # @option params [required, String] :engine
632
632
  # The type of database engine for the data provider. Valid values
633
- # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
634
- # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
635
- # Amazon Aurora MySQL-Compatible Edition.
633
+ # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
634
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
635
+ # `docdb`. A value of `"aurora"` represents Amazon Aurora
636
+ # MySQL-Compatible Edition.
636
637
  #
637
638
  # @option params [required, Types::DataProviderSettings] :settings
638
639
  # The settings in JSON format for a data provider.
@@ -1356,6 +1357,7 @@ module Aws::DatabaseMigrationService
1356
1357
  # username: "String",
1357
1358
  # secrets_manager_access_role_arn: "String",
1358
1359
  # secrets_manager_secret_id: "String",
1360
+ # execute_timeout: 1,
1359
1361
  # },
1360
1362
  # oracle_settings: {
1361
1363
  # add_supplemental_logging: false,
@@ -1441,6 +1443,10 @@ module Aws::DatabaseMigrationService
1441
1443
  # username: "String",
1442
1444
  # secrets_manager_access_role_arn: "String",
1443
1445
  # secrets_manager_secret_id: "String",
1446
+ # load_timeout: 1,
1447
+ # write_buffer_size: 1,
1448
+ # max_file_size: 1,
1449
+ # keep_csv_files: false,
1444
1450
  # },
1445
1451
  # resource_identifier: "String",
1446
1452
  # doc_db_settings: {
@@ -1682,6 +1688,7 @@ module Aws::DatabaseMigrationService
1682
1688
  # resp.endpoint.my_sql_settings.username #=> String
1683
1689
  # resp.endpoint.my_sql_settings.secrets_manager_access_role_arn #=> String
1684
1690
  # resp.endpoint.my_sql_settings.secrets_manager_secret_id #=> String
1691
+ # resp.endpoint.my_sql_settings.execute_timeout #=> Integer
1685
1692
  # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
1686
1693
  # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
1687
1694
  # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
@@ -1760,6 +1767,10 @@ module Aws::DatabaseMigrationService
1760
1767
  # resp.endpoint.ibm_db_2_settings.username #=> String
1761
1768
  # resp.endpoint.ibm_db_2_settings.secrets_manager_access_role_arn #=> String
1762
1769
  # resp.endpoint.ibm_db_2_settings.secrets_manager_secret_id #=> String
1770
+ # resp.endpoint.ibm_db_2_settings.load_timeout #=> Integer
1771
+ # resp.endpoint.ibm_db_2_settings.write_buffer_size #=> Integer
1772
+ # resp.endpoint.ibm_db_2_settings.max_file_size #=> Integer
1773
+ # resp.endpoint.ibm_db_2_settings.keep_csv_files #=> Boolean
1763
1774
  # resp.endpoint.doc_db_settings.username #=> String
1764
1775
  # resp.endpoint.doc_db_settings.password #=> String
1765
1776
  # resp.endpoint.doc_db_settings.server_name #=> String
@@ -2744,7 +2755,7 @@ module Aws::DatabaseMigrationService
2744
2755
  # The description for the subnet group.
2745
2756
  #
2746
2757
  # @option params [required, Array<String>] :subnet_ids
2747
- # One or more subnet IDs to be assigned to the subnet group.
2758
+ # Two or more subnet IDs to be assigned to the subnet group.
2748
2759
  #
2749
2760
  # @option params [Array<Types::Tag>] :tags
2750
2761
  # One or more tags to be assigned to the subnet group.
@@ -3489,6 +3500,7 @@ module Aws::DatabaseMigrationService
3489
3500
  # resp.endpoint.my_sql_settings.username #=> String
3490
3501
  # resp.endpoint.my_sql_settings.secrets_manager_access_role_arn #=> String
3491
3502
  # resp.endpoint.my_sql_settings.secrets_manager_secret_id #=> String
3503
+ # resp.endpoint.my_sql_settings.execute_timeout #=> Integer
3492
3504
  # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
3493
3505
  # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
3494
3506
  # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
@@ -3567,6 +3579,10 @@ module Aws::DatabaseMigrationService
3567
3579
  # resp.endpoint.ibm_db_2_settings.username #=> String
3568
3580
  # resp.endpoint.ibm_db_2_settings.secrets_manager_access_role_arn #=> String
3569
3581
  # resp.endpoint.ibm_db_2_settings.secrets_manager_secret_id #=> String
3582
+ # resp.endpoint.ibm_db_2_settings.load_timeout #=> Integer
3583
+ # resp.endpoint.ibm_db_2_settings.write_buffer_size #=> Integer
3584
+ # resp.endpoint.ibm_db_2_settings.max_file_size #=> Integer
3585
+ # resp.endpoint.ibm_db_2_settings.keep_csv_files #=> Boolean
3570
3586
  # resp.endpoint.doc_db_settings.username #=> String
3571
3587
  # resp.endpoint.doc_db_settings.password #=> String
3572
3588
  # resp.endpoint.doc_db_settings.server_name #=> String
@@ -4589,6 +4605,8 @@ module Aws::DatabaseMigrationService
4589
4605
  # Filters applied to the data providers described in the form of
4590
4606
  # key-value pairs.
4591
4607
  #
4608
+ # Valid filter names: data-provider-identifier
4609
+ #
4592
4610
  # @option params [Integer] :max_records
4593
4611
  # The maximum number of records to include in the response. If more
4594
4612
  # records exist than the specified `MaxRecords` value, DMS includes a
@@ -5131,6 +5149,7 @@ module Aws::DatabaseMigrationService
5131
5149
  # resp.endpoints[0].my_sql_settings.username #=> String
5132
5150
  # resp.endpoints[0].my_sql_settings.secrets_manager_access_role_arn #=> String
5133
5151
  # resp.endpoints[0].my_sql_settings.secrets_manager_secret_id #=> String
5152
+ # resp.endpoints[0].my_sql_settings.execute_timeout #=> Integer
5134
5153
  # resp.endpoints[0].oracle_settings.add_supplemental_logging #=> Boolean
5135
5154
  # resp.endpoints[0].oracle_settings.archived_log_dest_id #=> Integer
5136
5155
  # resp.endpoints[0].oracle_settings.additional_archived_log_dest_id #=> Integer
@@ -5209,6 +5228,10 @@ module Aws::DatabaseMigrationService
5209
5228
  # resp.endpoints[0].ibm_db_2_settings.username #=> String
5210
5229
  # resp.endpoints[0].ibm_db_2_settings.secrets_manager_access_role_arn #=> String
5211
5230
  # resp.endpoints[0].ibm_db_2_settings.secrets_manager_secret_id #=> String
5231
+ # resp.endpoints[0].ibm_db_2_settings.load_timeout #=> Integer
5232
+ # resp.endpoints[0].ibm_db_2_settings.write_buffer_size #=> Integer
5233
+ # resp.endpoints[0].ibm_db_2_settings.max_file_size #=> Integer
5234
+ # resp.endpoints[0].ibm_db_2_settings.keep_csv_files #=> Boolean
5212
5235
  # resp.endpoints[0].doc_db_settings.username #=> String
5213
5236
  # resp.endpoints[0].doc_db_settings.password #=> String
5214
5237
  # resp.endpoints[0].doc_db_settings.server_name #=> String
@@ -7851,6 +7874,7 @@ module Aws::DatabaseMigrationService
7851
7874
  # resp.replications[0].replication_create_time #=> Time
7852
7875
  # resp.replications[0].replication_update_time #=> Time
7853
7876
  # resp.replications[0].replication_last_stop_time #=> Time
7877
+ # resp.replications[0].replication_deprovision_time #=> Time
7854
7878
  #
7855
7879
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplications AWS API Documentation
7856
7880
  #
@@ -8324,9 +8348,10 @@ module Aws::DatabaseMigrationService
8324
8348
  #
8325
8349
  # @option params [String] :engine
8326
8350
  # The type of database engine for the data provider. Valid values
8327
- # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
8328
- # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
8329
- # Amazon Aurora MySQL-Compatible Edition.
8351
+ # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
8352
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
8353
+ # `docdb`. A value of `"aurora"` represents Amazon Aurora
8354
+ # MySQL-Compatible Edition.
8330
8355
  #
8331
8356
  # @option params [Boolean] :exact_settings
8332
8357
  # If this attribute is Y, the current call to `ModifyDataProvider`
@@ -9028,6 +9053,7 @@ module Aws::DatabaseMigrationService
9028
9053
  # username: "String",
9029
9054
  # secrets_manager_access_role_arn: "String",
9030
9055
  # secrets_manager_secret_id: "String",
9056
+ # execute_timeout: 1,
9031
9057
  # },
9032
9058
  # oracle_settings: {
9033
9059
  # add_supplemental_logging: false,
@@ -9113,6 +9139,10 @@ module Aws::DatabaseMigrationService
9113
9139
  # username: "String",
9114
9140
  # secrets_manager_access_role_arn: "String",
9115
9141
  # secrets_manager_secret_id: "String",
9142
+ # load_timeout: 1,
9143
+ # write_buffer_size: 1,
9144
+ # max_file_size: 1,
9145
+ # keep_csv_files: false,
9116
9146
  # },
9117
9147
  # doc_db_settings: {
9118
9148
  # username: "String",
@@ -9354,6 +9384,7 @@ module Aws::DatabaseMigrationService
9354
9384
  # resp.endpoint.my_sql_settings.username #=> String
9355
9385
  # resp.endpoint.my_sql_settings.secrets_manager_access_role_arn #=> String
9356
9386
  # resp.endpoint.my_sql_settings.secrets_manager_secret_id #=> String
9387
+ # resp.endpoint.my_sql_settings.execute_timeout #=> Integer
9357
9388
  # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
9358
9389
  # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
9359
9390
  # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
@@ -9432,6 +9463,10 @@ module Aws::DatabaseMigrationService
9432
9463
  # resp.endpoint.ibm_db_2_settings.username #=> String
9433
9464
  # resp.endpoint.ibm_db_2_settings.secrets_manager_access_role_arn #=> String
9434
9465
  # resp.endpoint.ibm_db_2_settings.secrets_manager_secret_id #=> String
9466
+ # resp.endpoint.ibm_db_2_settings.load_timeout #=> Integer
9467
+ # resp.endpoint.ibm_db_2_settings.write_buffer_size #=> Integer
9468
+ # resp.endpoint.ibm_db_2_settings.max_file_size #=> Integer
9469
+ # resp.endpoint.ibm_db_2_settings.keep_csv_files #=> Boolean
9435
9470
  # resp.endpoint.doc_db_settings.username #=> String
9436
9471
  # resp.endpoint.doc_db_settings.password #=> String
9437
9472
  # resp.endpoint.doc_db_settings.server_name #=> String
@@ -11194,6 +11229,7 @@ module Aws::DatabaseMigrationService
11194
11229
  # resp.replication.replication_create_time #=> Time
11195
11230
  # resp.replication.replication_update_time #=> Time
11196
11231
  # resp.replication.replication_last_stop_time #=> Time
11232
+ # resp.replication.replication_deprovision_time #=> Time
11197
11233
  #
11198
11234
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplication AWS API Documentation
11199
11235
  #
@@ -11611,6 +11647,7 @@ module Aws::DatabaseMigrationService
11611
11647
  # resp.replication.replication_create_time #=> Time
11612
11648
  # resp.replication.replication_update_time #=> Time
11613
11649
  # resp.replication.replication_last_stop_time #=> Time
11650
+ # resp.replication.replication_deprovision_time #=> Time
11614
11651
  #
11615
11652
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplication AWS API Documentation
11616
11653
  #
@@ -11819,7 +11856,7 @@ module Aws::DatabaseMigrationService
11819
11856
  params: params,
11820
11857
  config: config)
11821
11858
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
11822
- context[:gem_version] = '1.88.0'
11859
+ context[:gem_version] = '1.89.0'
11823
11860
  Seahorse::Client::Request.new(handlers, context)
11824
11861
  end
11825
11862
 
@@ -1510,6 +1510,10 @@ module Aws::DatabaseMigrationService
1510
1510
  IBMDb2Settings.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "Username"))
1511
1511
  IBMDb2Settings.add_member(:secrets_manager_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "SecretsManagerAccessRoleArn"))
1512
1512
  IBMDb2Settings.add_member(:secrets_manager_secret_id, Shapes::ShapeRef.new(shape: String, location_name: "SecretsManagerSecretId"))
1513
+ IBMDb2Settings.add_member(:load_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "LoadTimeout"))
1514
+ IBMDb2Settings.add_member(:write_buffer_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "WriteBufferSize"))
1515
+ IBMDb2Settings.add_member(:max_file_size, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxFileSize"))
1516
+ IBMDb2Settings.add_member(:keep_csv_files, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "KeepCsvFiles"))
1513
1517
  IBMDb2Settings.struct_class = Types::IBMDb2Settings
1514
1518
 
1515
1519
  ImportCertificateMessage.add_member(:certificate_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CertificateIdentifier"))
@@ -1876,6 +1880,7 @@ module Aws::DatabaseMigrationService
1876
1880
  MySQLSettings.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "Username"))
1877
1881
  MySQLSettings.add_member(:secrets_manager_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "SecretsManagerAccessRoleArn"))
1878
1882
  MySQLSettings.add_member(:secrets_manager_secret_id, Shapes::ShapeRef.new(shape: String, location_name: "SecretsManagerSecretId"))
1883
+ MySQLSettings.add_member(:execute_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ExecuteTimeout"))
1879
1884
  MySQLSettings.struct_class = Types::MySQLSettings
1880
1885
 
1881
1886
  MySqlDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
@@ -2167,6 +2172,7 @@ module Aws::DatabaseMigrationService
2167
2172
  Replication.add_member(:replication_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationCreateTime"))
2168
2173
  Replication.add_member(:replication_update_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationUpdateTime"))
2169
2174
  Replication.add_member(:replication_last_stop_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationLastStopTime"))
2175
+ Replication.add_member(:replication_deprovision_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationDeprovisionTime"))
2170
2176
  Replication.struct_class = Types::Replication
2171
2177
 
2172
2178
  ReplicationConfig.add_member(:replication_config_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationConfigIdentifier"))
@@ -32,14 +32,14 @@ module Aws::DatabaseMigrationService
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://dms.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
- if Aws::Endpoints::Matchers.string_equals?("aws-iso", Aws::Endpoints::Matchers.attr(partition_result, "name"))
39
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso")
40
40
  return Aws::Endpoints::Endpoint.new(url: "https://dms.#{region}.c2s.ic.gov", headers: {}, properties: {})
41
41
  end
42
- if Aws::Endpoints::Matchers.string_equals?("aws-iso-b", Aws::Endpoints::Matchers.attr(partition_result, "name"))
42
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b")
43
43
  return Aws::Endpoints::Endpoint.new(url: "https://dms.#{region}.sc2s.sgov.gov", headers: {}, properties: {})
44
44
  end
45
45
  return Aws::Endpoints::Endpoint.new(url: "https://dms-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -601,9 +601,10 @@ module Aws::DatabaseMigrationService
601
601
  #
602
602
  # @!attribute [rw] engine
603
603
  # The type of database engine for the data provider. Valid values
604
- # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
605
- # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
606
- # Amazon Aurora MySQL-Compatible Edition.
604
+ # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
605
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
606
+ # `docdb`. A value of `"aurora"` represents Amazon Aurora
607
+ # MySQL-Compatible Edition.
607
608
  # @return [String]
608
609
  #
609
610
  # @!attribute [rw] settings
@@ -1600,7 +1601,7 @@ module Aws::DatabaseMigrationService
1600
1601
  # @return [String]
1601
1602
  #
1602
1603
  # @!attribute [rw] subnet_ids
1603
- # One or more subnet IDs to be assigned to the subnet group.
1604
+ # Two or more subnet IDs to be assigned to the subnet group.
1604
1605
  # @return [Array<String>]
1605
1606
  #
1606
1607
  # @!attribute [rw] tags
@@ -1815,9 +1816,10 @@ module Aws::DatabaseMigrationService
1815
1816
  #
1816
1817
  # @!attribute [rw] engine
1817
1818
  # The type of database engine for the data provider. Valid values
1818
- # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
1819
- # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
1820
- # Amazon Aurora MySQL-Compatible Edition.
1819
+ # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
1820
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
1821
+ # `docdb`. A value of `"aurora"` represents Amazon Aurora
1822
+ # MySQL-Compatible Edition.
1821
1823
  # @return [String]
1822
1824
  #
1823
1825
  # @!attribute [rw] settings
@@ -2680,6 +2682,8 @@ module Aws::DatabaseMigrationService
2680
2682
  # @!attribute [rw] filters
2681
2683
  # Filters applied to the data providers described in the form of
2682
2684
  # key-value pairs.
2685
+ #
2686
+ # Valid filter names: data-provider-identifier
2683
2687
  # @return [Array<Types::Filter>]
2684
2688
  #
2685
2689
  # @!attribute [rw] max_records
@@ -5036,9 +5040,10 @@ module Aws::DatabaseMigrationService
5036
5040
  # The database engine name. Valid values, depending on the
5037
5041
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
5038
5042
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
5039
- # `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`, `"dynamodb"`,
5040
- # `"mongodb"`, `"kinesis"`, `"kafka"`, `"elasticsearch"`,
5041
- # `"documentdb"`, `"sqlserver"`, `"neptune"`, and `"babelfish"`.
5043
+ # `"redshift-serverless"`, `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`,
5044
+ # `"sybase"`, `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
5045
+ # `"elasticsearch"`, `"documentdb"`, `"sqlserver"`, `"neptune"`, and
5046
+ # `"babelfish"`.
5042
5047
  # @return [String]
5043
5048
  #
5044
5049
  # @!attribute [rw] engine_display_name
@@ -5903,6 +5908,31 @@ module Aws::DatabaseMigrationService
5903
5908
  # details.
5904
5909
  # @return [String]
5905
5910
  #
5911
+ # @!attribute [rw] load_timeout
5912
+ # The amount of time (in milliseconds) before DMS times out operations
5913
+ # performed by DMS on the Db2 target. The default value is 1200 (20
5914
+ # minutes).
5915
+ # @return [Integer]
5916
+ #
5917
+ # @!attribute [rw] write_buffer_size
5918
+ # The size (in KB) of the in-memory file write buffer used when
5919
+ # generating .csv files on the local disk on the DMS replication
5920
+ # instance. The default value is 1024 (1 MB).
5921
+ # @return [Integer]
5922
+ #
5923
+ # @!attribute [rw] max_file_size
5924
+ # Specifies the maximum size (in KB) of .csv files used to transfer
5925
+ # data to Db2 LUW.
5926
+ # @return [Integer]
5927
+ #
5928
+ # @!attribute [rw] keep_csv_files
5929
+ # If true, DMS saves any .csv files to the Db2 LUW target that were
5930
+ # used to replicate data. DMS uses these files for analysis and
5931
+ # troubleshooting.
5932
+ #
5933
+ # The default value is false.
5934
+ # @return [Boolean]
5935
+ #
5906
5936
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/IBMDb2Settings AWS API Documentation
5907
5937
  #
5908
5938
  class IBMDb2Settings < Struct.new(
@@ -5915,7 +5945,11 @@ module Aws::DatabaseMigrationService
5915
5945
  :max_k_bytes_per_read,
5916
5946
  :username,
5917
5947
  :secrets_manager_access_role_arn,
5918
- :secrets_manager_secret_id)
5948
+ :secrets_manager_secret_id,
5949
+ :load_timeout,
5950
+ :write_buffer_size,
5951
+ :max_file_size,
5952
+ :keep_csv_files)
5919
5953
  SENSITIVE = [:password]
5920
5954
  include Aws::Structure
5921
5955
  end
@@ -6909,9 +6943,10 @@ module Aws::DatabaseMigrationService
6909
6943
  #
6910
6944
  # @!attribute [rw] engine
6911
6945
  # The type of database engine for the data provider. Valid values
6912
- # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
6913
- # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
6914
- # Amazon Aurora MySQL-Compatible Edition.
6946
+ # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
6947
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
6948
+ # `docdb`. A value of `"aurora"` represents Amazon Aurora
6949
+ # MySQL-Compatible Edition.
6915
6950
  # @return [String]
6916
6951
  #
6917
6952
  # @!attribute [rw] exact_settings
@@ -8236,6 +8271,11 @@ module Aws::DatabaseMigrationService
8236
8271
  # details.
8237
8272
  # @return [String]
8238
8273
  #
8274
+ # @!attribute [rw] execute_timeout
8275
+ # Sets the client statement timeout (in seconds) for a MySQL source
8276
+ # endpoint.
8277
+ # @return [Integer]
8278
+ #
8239
8279
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MySQLSettings AWS API Documentation
8240
8280
  #
8241
8281
  class MySQLSettings < Struct.new(
@@ -8252,7 +8292,8 @@ module Aws::DatabaseMigrationService
8252
8292
  :server_timezone,
8253
8293
  :username,
8254
8294
  :secrets_manager_access_role_arn,
8255
- :secrets_manager_secret_id)
8295
+ :secrets_manager_secret_id,
8296
+ :execute_timeout)
8256
8297
  SENSITIVE = [:password]
8257
8298
  include Aws::Structure
8258
8299
  end
@@ -10296,6 +10337,10 @@ module Aws::DatabaseMigrationService
10296
10337
  # The timestamp when replication was last stopped.
10297
10338
  # @return [Time]
10298
10339
  #
10340
+ # @!attribute [rw] replication_deprovision_time
10341
+ # The timestamp when DMS will deprovision the replication.
10342
+ # @return [Time]
10343
+ #
10299
10344
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Replication AWS API Documentation
10300
10345
  #
10301
10346
  class Replication < Struct.new(
@@ -10316,7 +10361,8 @@ module Aws::DatabaseMigrationService
10316
10361
  :recovery_checkpoint,
10317
10362
  :replication_create_time,
10318
10363
  :replication_update_time,
10319
- :replication_last_stop_time)
10364
+ :replication_last_stop_time,
10365
+ :replication_deprovision_time)
10320
10366
  SENSITIVE = []
10321
10367
  include Aws::Structure
10322
10368
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
53
53
  # @!group service
54
54
  module Aws::DatabaseMigrationService
55
55
 
56
- GEM_VERSION = '1.88.0'
56
+ GEM_VERSION = '1.89.0'
57
57
 
58
58
  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.88.0
4
+ version: 1.89.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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core