aws-sdk-databasemigrationservice 1.110.0 → 1.111.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
  SHA256:
3
- metadata.gz: da410daf74d4242c0713c5a172fbe6be05caeeecf144bde9ca75c323bcdc88bb
4
- data.tar.gz: '078c33ec17039b3cb1e7f3ef24b44783dba9437a8253679b3caf16f962d1d826'
3
+ metadata.gz: 41afd1d59ab0afca4b13466a5d2968a7d7327323d5c030b28229ff2a3ec6fbfb
4
+ data.tar.gz: a2b8e83c9cf724fd035634e370ba341bbeea9d6da800628314a36a69ef47d5cb
5
5
  SHA512:
6
- metadata.gz: a76f05d3e39b517d643ffbaf4b53b9187a613603329eb417d9412260220226e50f0f7b2bffe61c77c74e5d1e65d1e0c66ee51947d9cc0c213f5cb035505eb6ea
7
- data.tar.gz: '08b86277236e076974f389491598c8ab2f3f59c5ae04e847764fd2f23503565a610db6387bbe22be99952be538af9c8348673602de9ef9b99205d70aeaa8fd5c'
6
+ metadata.gz: 9c046d768532cf3a90da41c924cbdd20eeb163be2b24e92e9ace2b06918841fbe3162fcd2840dfafe9ff63b89d8ca69d114e840d1a48d239de1830b36aeba539
7
+ data.tar.gz: 06e9f352e770f6084447673224cb5122ac7f002bc67925f0ccabb6179595676c05237110354b80e00af9c3037f55f060b4df233ce9b31df3f2c8c50b93368d74
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.111.0 (2024-12-12)
5
+ ------------------
6
+
7
+ * Feature - Add parameters to support for kerberos authentication. Add parameter for disabling the Unicode source filter with PostgreSQL settings. Add parameter to use large integer value with Kinesis/Kafka settings.
8
+
4
9
  1.110.0 (2024-11-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.111.0
@@ -1425,6 +1425,7 @@ module Aws::DatabaseMigrationService
1425
1425
  # include_control_details: false,
1426
1426
  # include_null_and_empty: false,
1427
1427
  # no_hex_prefix: false,
1428
+ # use_large_integer_value: false,
1428
1429
  # },
1429
1430
  # kafka_settings: {
1430
1431
  # broker: "String",
@@ -1447,6 +1448,7 @@ module Aws::DatabaseMigrationService
1447
1448
  # no_hex_prefix: false,
1448
1449
  # sasl_mechanism: "scram-sha-512", # accepts scram-sha-512, plain
1449
1450
  # ssl_endpoint_identification_algorithm: "none", # accepts none, https
1451
+ # use_large_integer_value: false,
1450
1452
  # },
1451
1453
  # elasticsearch_settings: {
1452
1454
  # service_access_role_arn: "String", # required
@@ -1522,6 +1524,7 @@ module Aws::DatabaseMigrationService
1522
1524
  # map_long_varchar_as: "wstring", # accepts wstring, clob, nclob
1523
1525
  # database_mode: "default", # accepts default, babelfish
1524
1526
  # babelfish_database_name: "String",
1527
+ # disable_unicode_source_filter: false,
1525
1528
  # },
1526
1529
  # my_sql_settings: {
1527
1530
  # after_connect_script: "String",
@@ -1584,6 +1587,7 @@ module Aws::DatabaseMigrationService
1584
1587
  # trim_space_in_char: false,
1585
1588
  # convert_timestamp_with_zone_to_utc: false,
1586
1589
  # open_transaction_window: 1,
1590
+ # authentication_method: "password", # accepts password, kerberos
1587
1591
  # },
1588
1592
  # sybase_settings: {
1589
1593
  # database_name: "String",
@@ -1612,6 +1616,7 @@ module Aws::DatabaseMigrationService
1612
1616
  # trim_space_in_char: false,
1613
1617
  # tlog_access_mode: "BackupOnly", # accepts BackupOnly, PreferBackup, PreferTlog, TlogOnly
1614
1618
  # force_lob_lookup: false,
1619
+ # authentication_method: "password", # accepts password, kerberos
1615
1620
  # },
1616
1621
  # ibm_db_2_settings: {
1617
1622
  # database_name: "String",
@@ -1768,6 +1773,7 @@ module Aws::DatabaseMigrationService
1768
1773
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
1769
1774
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
1770
1775
  # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
1776
+ # resp.endpoint.kinesis_settings.use_large_integer_value #=> Boolean
1771
1777
  # resp.endpoint.kafka_settings.broker #=> String
1772
1778
  # resp.endpoint.kafka_settings.topic #=> String
1773
1779
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -1788,6 +1794,7 @@ module Aws::DatabaseMigrationService
1788
1794
  # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
1789
1795
  # resp.endpoint.kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
1790
1796
  # resp.endpoint.kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
1797
+ # resp.endpoint.kafka_settings.use_large_integer_value #=> Boolean
1791
1798
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1792
1799
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1793
1800
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -1855,6 +1862,7 @@ module Aws::DatabaseMigrationService
1855
1862
  # resp.endpoint.postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
1856
1863
  # resp.endpoint.postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
1857
1864
  # resp.endpoint.postgre_sql_settings.babelfish_database_name #=> String
1865
+ # resp.endpoint.postgre_sql_settings.disable_unicode_source_filter #=> Boolean
1858
1866
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
1859
1867
  # resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
1860
1868
  # resp.endpoint.my_sql_settings.database_name #=> String
@@ -1914,6 +1922,7 @@ module Aws::DatabaseMigrationService
1914
1922
  # resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
1915
1923
  # resp.endpoint.oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
1916
1924
  # resp.endpoint.oracle_settings.open_transaction_window #=> Integer
1925
+ # resp.endpoint.oracle_settings.authentication_method #=> String, one of "password", "kerberos"
1917
1926
  # resp.endpoint.sybase_settings.database_name #=> String
1918
1927
  # resp.endpoint.sybase_settings.password #=> String
1919
1928
  # resp.endpoint.sybase_settings.port #=> Integer
@@ -1938,6 +1947,7 @@ module Aws::DatabaseMigrationService
1938
1947
  # resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
1939
1948
  # resp.endpoint.microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
1940
1949
  # resp.endpoint.microsoft_sql_server_settings.force_lob_lookup #=> Boolean
1950
+ # resp.endpoint.microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
1941
1951
  # resp.endpoint.ibm_db_2_settings.database_name #=> String
1942
1952
  # resp.endpoint.ibm_db_2_settings.password #=> String
1943
1953
  # resp.endpoint.ibm_db_2_settings.port #=> Integer
@@ -2737,6 +2747,10 @@ module Aws::DatabaseMigrationService
2737
2747
  # as IPv4 only or Dual-stack that supports both IPv4 and IPv6
2738
2748
  # addressing. IPv6 only is not yet supported.
2739
2749
  #
2750
+ # @option params [Types::KerberosAuthenticationSettings] :kerberos_authentication_settings
2751
+ # Specifies the ID of the secret that stores the key cache file required
2752
+ # for kerberos authentication, when creating a replication instance.
2753
+ #
2740
2754
  # @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2741
2755
  #
2742
2756
  # * {Types::CreateReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
@@ -2827,7 +2841,7 @@ module Aws::DatabaseMigrationService
2827
2841
  # resp = client.create_replication_instance({
2828
2842
  # replication_instance_identifier: "String", # required
2829
2843
  # allocated_storage: 1,
2830
- # replication_instance_class: "String", # required
2844
+ # replication_instance_class: "ReplicationInstanceClass", # required
2831
2845
  # vpc_security_group_ids: ["String"],
2832
2846
  # availability_zone: "String",
2833
2847
  # replication_subnet_group_identifier: "String",
@@ -2847,6 +2861,11 @@ module Aws::DatabaseMigrationService
2847
2861
  # dns_name_servers: "String",
2848
2862
  # resource_identifier: "String",
2849
2863
  # network_type: "String",
2864
+ # kerberos_authentication_settings: {
2865
+ # key_cache_secret_id: "String",
2866
+ # key_cache_secret_iam_arn: "String",
2867
+ # krb_5_file_contents: "String",
2868
+ # },
2850
2869
  # })
2851
2870
  #
2852
2871
  # @example Response structure
@@ -2894,6 +2913,9 @@ module Aws::DatabaseMigrationService
2894
2913
  # resp.replication_instance.free_until #=> Time
2895
2914
  # resp.replication_instance.dns_name_servers #=> String
2896
2915
  # resp.replication_instance.network_type #=> String
2916
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
2917
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
2918
+ # resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
2897
2919
  #
2898
2920
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstance AWS API Documentation
2899
2921
  #
@@ -3639,6 +3661,7 @@ module Aws::DatabaseMigrationService
3639
3661
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
3640
3662
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
3641
3663
  # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
3664
+ # resp.endpoint.kinesis_settings.use_large_integer_value #=> Boolean
3642
3665
  # resp.endpoint.kafka_settings.broker #=> String
3643
3666
  # resp.endpoint.kafka_settings.topic #=> String
3644
3667
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -3659,6 +3682,7 @@ module Aws::DatabaseMigrationService
3659
3682
  # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
3660
3683
  # resp.endpoint.kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
3661
3684
  # resp.endpoint.kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
3685
+ # resp.endpoint.kafka_settings.use_large_integer_value #=> Boolean
3662
3686
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
3663
3687
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
3664
3688
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -3726,6 +3750,7 @@ module Aws::DatabaseMigrationService
3726
3750
  # resp.endpoint.postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
3727
3751
  # resp.endpoint.postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
3728
3752
  # resp.endpoint.postgre_sql_settings.babelfish_database_name #=> String
3753
+ # resp.endpoint.postgre_sql_settings.disable_unicode_source_filter #=> Boolean
3729
3754
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
3730
3755
  # resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
3731
3756
  # resp.endpoint.my_sql_settings.database_name #=> String
@@ -3785,6 +3810,7 @@ module Aws::DatabaseMigrationService
3785
3810
  # resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
3786
3811
  # resp.endpoint.oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
3787
3812
  # resp.endpoint.oracle_settings.open_transaction_window #=> Integer
3813
+ # resp.endpoint.oracle_settings.authentication_method #=> String, one of "password", "kerberos"
3788
3814
  # resp.endpoint.sybase_settings.database_name #=> String
3789
3815
  # resp.endpoint.sybase_settings.password #=> String
3790
3816
  # resp.endpoint.sybase_settings.port #=> Integer
@@ -3809,6 +3835,7 @@ module Aws::DatabaseMigrationService
3809
3835
  # resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
3810
3836
  # resp.endpoint.microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
3811
3837
  # resp.endpoint.microsoft_sql_server_settings.force_lob_lookup #=> Boolean
3838
+ # resp.endpoint.microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
3812
3839
  # resp.endpoint.ibm_db_2_settings.database_name #=> String
3813
3840
  # resp.endpoint.ibm_db_2_settings.password #=> String
3814
3841
  # resp.endpoint.ibm_db_2_settings.port #=> Integer
@@ -4276,6 +4303,9 @@ module Aws::DatabaseMigrationService
4276
4303
  # resp.replication_instance.free_until #=> Time
4277
4304
  # resp.replication_instance.dns_name_servers #=> String
4278
4305
  # resp.replication_instance.network_type #=> String
4306
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
4307
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
4308
+ # resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
4279
4309
  #
4280
4310
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationInstance AWS API Documentation
4281
4311
  #
@@ -4946,7 +4976,8 @@ module Aws::DatabaseMigrationService
4946
4976
  # Filters applied to the data providers described in the form of
4947
4977
  # key-value pairs.
4948
4978
  #
4949
- # Valid filter names: data-provider-identifier
4979
+ # Valid filter names and values: data-provider-identifier, data provider
4980
+ # arn or name
4950
4981
  #
4951
4982
  # @option params [Integer] :max_records
4952
4983
  # The maximum number of records to include in the response. If more
@@ -5389,6 +5420,7 @@ module Aws::DatabaseMigrationService
5389
5420
  # resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
5390
5421
  # resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
5391
5422
  # resp.endpoints[0].kinesis_settings.no_hex_prefix #=> Boolean
5423
+ # resp.endpoints[0].kinesis_settings.use_large_integer_value #=> Boolean
5392
5424
  # resp.endpoints[0].kafka_settings.broker #=> String
5393
5425
  # resp.endpoints[0].kafka_settings.topic #=> String
5394
5426
  # resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -5409,6 +5441,7 @@ module Aws::DatabaseMigrationService
5409
5441
  # resp.endpoints[0].kafka_settings.no_hex_prefix #=> Boolean
5410
5442
  # resp.endpoints[0].kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
5411
5443
  # resp.endpoints[0].kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
5444
+ # resp.endpoints[0].kafka_settings.use_large_integer_value #=> Boolean
5412
5445
  # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
5413
5446
  # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
5414
5447
  # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -5476,6 +5509,7 @@ module Aws::DatabaseMigrationService
5476
5509
  # resp.endpoints[0].postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
5477
5510
  # resp.endpoints[0].postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
5478
5511
  # resp.endpoints[0].postgre_sql_settings.babelfish_database_name #=> String
5512
+ # resp.endpoints[0].postgre_sql_settings.disable_unicode_source_filter #=> Boolean
5479
5513
  # resp.endpoints[0].my_sql_settings.after_connect_script #=> String
5480
5514
  # resp.endpoints[0].my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
5481
5515
  # resp.endpoints[0].my_sql_settings.database_name #=> String
@@ -5535,6 +5569,7 @@ module Aws::DatabaseMigrationService
5535
5569
  # resp.endpoints[0].oracle_settings.trim_space_in_char #=> Boolean
5536
5570
  # resp.endpoints[0].oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
5537
5571
  # resp.endpoints[0].oracle_settings.open_transaction_window #=> Integer
5572
+ # resp.endpoints[0].oracle_settings.authentication_method #=> String, one of "password", "kerberos"
5538
5573
  # resp.endpoints[0].sybase_settings.database_name #=> String
5539
5574
  # resp.endpoints[0].sybase_settings.password #=> String
5540
5575
  # resp.endpoints[0].sybase_settings.port #=> Integer
@@ -5559,6 +5594,7 @@ module Aws::DatabaseMigrationService
5559
5594
  # resp.endpoints[0].microsoft_sql_server_settings.trim_space_in_char #=> Boolean
5560
5595
  # resp.endpoints[0].microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
5561
5596
  # resp.endpoints[0].microsoft_sql_server_settings.force_lob_lookup #=> Boolean
5597
+ # resp.endpoints[0].microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
5562
5598
  # resp.endpoints[0].ibm_db_2_settings.database_name #=> String
5563
5599
  # resp.endpoints[0].ibm_db_2_settings.password #=> String
5564
5600
  # resp.endpoints[0].ibm_db_2_settings.port #=> Integer
@@ -6359,6 +6395,9 @@ module Aws::DatabaseMigrationService
6359
6395
  # Filters applied to the instance profiles described in the form of
6360
6396
  # key-value pairs.
6361
6397
  #
6398
+ # Valid filter names and values: instance-profile-identifier, instance
6399
+ # profile arn or name
6400
+ #
6362
6401
  # @option params [Integer] :max_records
6363
6402
  # The maximum number of records to include in the response. If more
6364
6403
  # records exist than the specified `MaxRecords` value, DMS includes a
@@ -6917,6 +6956,14 @@ module Aws::DatabaseMigrationService
6917
6956
  # Filters applied to the migration projects described in the form of
6918
6957
  # key-value pairs.
6919
6958
  #
6959
+ # Valid filter names and values:
6960
+ #
6961
+ # * instance-profile-identifier, instance profile arn or name
6962
+ #
6963
+ # * data-provider-identifier, data provider arn or name
6964
+ #
6965
+ # * migration-project-identifier, migration project arn or name
6966
+ #
6920
6967
  # @option params [Integer] :max_records
6921
6968
  # The maximum number of records to include in the response. If more
6922
6969
  # records exist than the specified `MaxRecords` value, DMS includes a
@@ -7613,6 +7660,9 @@ module Aws::DatabaseMigrationService
7613
7660
  # resp.replication_instances[0].free_until #=> Time
7614
7661
  # resp.replication_instances[0].dns_name_servers #=> String
7615
7662
  # resp.replication_instances[0].network_type #=> String
7663
+ # resp.replication_instances[0].kerberos_authentication_settings.key_cache_secret_id #=> String
7664
+ # resp.replication_instances[0].kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
7665
+ # resp.replication_instances[0].kerberos_authentication_settings.krb_5_file_contents #=> String
7616
7666
  #
7617
7667
  #
7618
7668
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -9384,6 +9434,7 @@ module Aws::DatabaseMigrationService
9384
9434
  # include_control_details: false,
9385
9435
  # include_null_and_empty: false,
9386
9436
  # no_hex_prefix: false,
9437
+ # use_large_integer_value: false,
9387
9438
  # },
9388
9439
  # kafka_settings: {
9389
9440
  # broker: "String",
@@ -9406,6 +9457,7 @@ module Aws::DatabaseMigrationService
9406
9457
  # no_hex_prefix: false,
9407
9458
  # sasl_mechanism: "scram-sha-512", # accepts scram-sha-512, plain
9408
9459
  # ssl_endpoint_identification_algorithm: "none", # accepts none, https
9460
+ # use_large_integer_value: false,
9409
9461
  # },
9410
9462
  # elasticsearch_settings: {
9411
9463
  # service_access_role_arn: "String", # required
@@ -9481,6 +9533,7 @@ module Aws::DatabaseMigrationService
9481
9533
  # map_long_varchar_as: "wstring", # accepts wstring, clob, nclob
9482
9534
  # database_mode: "default", # accepts default, babelfish
9483
9535
  # babelfish_database_name: "String",
9536
+ # disable_unicode_source_filter: false,
9484
9537
  # },
9485
9538
  # my_sql_settings: {
9486
9539
  # after_connect_script: "String",
@@ -9543,6 +9596,7 @@ module Aws::DatabaseMigrationService
9543
9596
  # trim_space_in_char: false,
9544
9597
  # convert_timestamp_with_zone_to_utc: false,
9545
9598
  # open_transaction_window: 1,
9599
+ # authentication_method: "password", # accepts password, kerberos
9546
9600
  # },
9547
9601
  # sybase_settings: {
9548
9602
  # database_name: "String",
@@ -9571,6 +9625,7 @@ module Aws::DatabaseMigrationService
9571
9625
  # trim_space_in_char: false,
9572
9626
  # tlog_access_mode: "BackupOnly", # accepts BackupOnly, PreferBackup, PreferTlog, TlogOnly
9573
9627
  # force_lob_lookup: false,
9628
+ # authentication_method: "password", # accepts password, kerberos
9574
9629
  # },
9575
9630
  # ibm_db_2_settings: {
9576
9631
  # database_name: "String",
@@ -9727,6 +9782,7 @@ module Aws::DatabaseMigrationService
9727
9782
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
9728
9783
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
9729
9784
  # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
9785
+ # resp.endpoint.kinesis_settings.use_large_integer_value #=> Boolean
9730
9786
  # resp.endpoint.kafka_settings.broker #=> String
9731
9787
  # resp.endpoint.kafka_settings.topic #=> String
9732
9788
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -9747,6 +9803,7 @@ module Aws::DatabaseMigrationService
9747
9803
  # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
9748
9804
  # resp.endpoint.kafka_settings.sasl_mechanism #=> String, one of "scram-sha-512", "plain"
9749
9805
  # resp.endpoint.kafka_settings.ssl_endpoint_identification_algorithm #=> String, one of "none", "https"
9806
+ # resp.endpoint.kafka_settings.use_large_integer_value #=> Boolean
9750
9807
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
9751
9808
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
9752
9809
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -9814,6 +9871,7 @@ module Aws::DatabaseMigrationService
9814
9871
  # resp.endpoint.postgre_sql_settings.map_long_varchar_as #=> String, one of "wstring", "clob", "nclob"
9815
9872
  # resp.endpoint.postgre_sql_settings.database_mode #=> String, one of "default", "babelfish"
9816
9873
  # resp.endpoint.postgre_sql_settings.babelfish_database_name #=> String
9874
+ # resp.endpoint.postgre_sql_settings.disable_unicode_source_filter #=> Boolean
9817
9875
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
9818
9876
  # resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
9819
9877
  # resp.endpoint.my_sql_settings.database_name #=> String
@@ -9873,6 +9931,7 @@ module Aws::DatabaseMigrationService
9873
9931
  # resp.endpoint.oracle_settings.trim_space_in_char #=> Boolean
9874
9932
  # resp.endpoint.oracle_settings.convert_timestamp_with_zone_to_utc #=> Boolean
9875
9933
  # resp.endpoint.oracle_settings.open_transaction_window #=> Integer
9934
+ # resp.endpoint.oracle_settings.authentication_method #=> String, one of "password", "kerberos"
9876
9935
  # resp.endpoint.sybase_settings.database_name #=> String
9877
9936
  # resp.endpoint.sybase_settings.password #=> String
9878
9937
  # resp.endpoint.sybase_settings.port #=> Integer
@@ -9897,6 +9956,7 @@ module Aws::DatabaseMigrationService
9897
9956
  # resp.endpoint.microsoft_sql_server_settings.trim_space_in_char #=> Boolean
9898
9957
  # resp.endpoint.microsoft_sql_server_settings.tlog_access_mode #=> String, one of "BackupOnly", "PreferBackup", "PreferTlog", "TlogOnly"
9899
9958
  # resp.endpoint.microsoft_sql_server_settings.force_lob_lookup #=> Boolean
9959
+ # resp.endpoint.microsoft_sql_server_settings.authentication_method #=> String, one of "password", "kerberos"
9900
9960
  # resp.endpoint.ibm_db_2_settings.database_name #=> String
9901
9961
  # resp.endpoint.ibm_db_2_settings.password #=> String
9902
9962
  # resp.endpoint.ibm_db_2_settings.port #=> Integer
@@ -10479,6 +10539,10 @@ module Aws::DatabaseMigrationService
10479
10539
  # as IPv4 only or Dual-stack that supports both IPv4 and IPv6
10480
10540
  # addressing. IPv6 only is not yet supported.
10481
10541
  #
10542
+ # @option params [Types::KerberosAuthenticationSettings] :kerberos_authentication_settings
10543
+ # Specifies the ID of the secret that stores the key cache file required
10544
+ # for kerberos authentication, when modifying a replication instance.
10545
+ #
10482
10546
  # @return [Types::ModifyReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10483
10547
  #
10484
10548
  # * {Types::ModifyReplicationInstanceResponse#replication_instance #replication_instance} => Types::ReplicationInstance
@@ -10564,7 +10628,7 @@ module Aws::DatabaseMigrationService
10564
10628
  # replication_instance_arn: "String", # required
10565
10629
  # allocated_storage: 1,
10566
10630
  # apply_immediately: false,
10567
- # replication_instance_class: "String",
10631
+ # replication_instance_class: "ReplicationInstanceClass",
10568
10632
  # vpc_security_group_ids: ["String"],
10569
10633
  # preferred_maintenance_window: "String",
10570
10634
  # multi_az: false,
@@ -10573,6 +10637,11 @@ module Aws::DatabaseMigrationService
10573
10637
  # auto_minor_version_upgrade: false,
10574
10638
  # replication_instance_identifier: "String",
10575
10639
  # network_type: "String",
10640
+ # kerberos_authentication_settings: {
10641
+ # key_cache_secret_id: "String",
10642
+ # key_cache_secret_iam_arn: "String",
10643
+ # krb_5_file_contents: "String",
10644
+ # },
10576
10645
  # })
10577
10646
  #
10578
10647
  # @example Response structure
@@ -10620,6 +10689,9 @@ module Aws::DatabaseMigrationService
10620
10689
  # resp.replication_instance.free_until #=> Time
10621
10690
  # resp.replication_instance.dns_name_servers #=> String
10622
10691
  # resp.replication_instance.network_type #=> String
10692
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
10693
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
10694
+ # resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
10623
10695
  #
10624
10696
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstance AWS API Documentation
10625
10697
  #
@@ -10987,6 +11059,9 @@ module Aws::DatabaseMigrationService
10987
11059
  # resp.replication_instance.free_until #=> Time
10988
11060
  # resp.replication_instance.dns_name_servers #=> String
10989
11061
  # resp.replication_instance.network_type #=> String
11062
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_id #=> String
11063
+ # resp.replication_instance.kerberos_authentication_settings.key_cache_secret_iam_arn #=> String
11064
+ # resp.replication_instance.kerberos_authentication_settings.krb_5_file_contents #=> String
10990
11065
  #
10991
11066
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance AWS API Documentation
10992
11067
  #
@@ -11669,6 +11744,23 @@ module Aws::DatabaseMigrationService
11669
11744
  # @option params [required, String] :start_replication_type
11670
11745
  # The replication type.
11671
11746
  #
11747
+ # When the replication type is `full-load` or `full-load-and-cdc`, the
11748
+ # only valid value for the first run of the replication is
11749
+ # `start-replication`. This option will start the replication.
11750
+ #
11751
+ # You can also use ReloadTables to reload specific tables that failed
11752
+ # during replication instead of restarting the replication.
11753
+ #
11754
+ # The `resume-processing` option isn't applicable for a full-load
11755
+ # replication, because you can't resume partially loaded tables during
11756
+ # the full load phase.
11757
+ #
11758
+ # For a `full-load-and-cdc` replication, DMS migrates table data, and
11759
+ # then applies data changes that occur on the source. To load all the
11760
+ # tables again, and start capturing source changes, use `reload-target`.
11761
+ # Otherwise use `resume-processing`, to replicate the changes from the
11762
+ # last stop position.
11763
+ #
11672
11764
  # @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
11673
11765
  # Indicates the start time for a change data capture (CDC) operation.
11674
11766
  # Use either `CdcStartTime` or `CdcStartPosition` to specify when you
@@ -12445,7 +12537,7 @@ module Aws::DatabaseMigrationService
12445
12537
  tracer: tracer
12446
12538
  )
12447
12539
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
12448
- context[:gem_version] = '1.110.0'
12540
+ context[:gem_version] = '1.111.0'
12449
12541
  Seahorse::Client::Request.new(handlers, context)
12450
12542
  end
12451
12543
 
@@ -282,6 +282,7 @@ module Aws::DatabaseMigrationService
282
282
  KafkaSecurityProtocol = Shapes::StringShape.new(name: 'KafkaSecurityProtocol')
283
283
  KafkaSettings = Shapes::StructureShape.new(name: 'KafkaSettings')
284
284
  KafkaSslEndpointIdentificationAlgorithm = Shapes::StringShape.new(name: 'KafkaSslEndpointIdentificationAlgorithm')
285
+ KerberosAuthenticationSettings = Shapes::StructureShape.new(name: 'KerberosAuthenticationSettings')
285
286
  KeyList = Shapes::ListShape.new(name: 'KeyList')
286
287
  KinesisSettings = Shapes::StructureShape.new(name: 'KinesisSettings')
287
288
  Limitation = Shapes::StructureShape.new(name: 'Limitation')
@@ -329,6 +330,7 @@ module Aws::DatabaseMigrationService
329
330
  MySqlDataProviderSettings = Shapes::StructureShape.new(name: 'MySqlDataProviderSettings')
330
331
  NeptuneSettings = Shapes::StructureShape.new(name: 'NeptuneSettings')
331
332
  NestingLevelValue = Shapes::StringShape.new(name: 'NestingLevelValue')
333
+ OracleAuthenticationMethod = Shapes::StringShape.new(name: 'OracleAuthenticationMethod')
332
334
  OracleDataProviderSettings = Shapes::StructureShape.new(name: 'OracleDataProviderSettings')
333
335
  OracleSettings = Shapes::StructureShape.new(name: 'OracleSettings')
334
336
  OrderableReplicationInstance = Shapes::StructureShape.new(name: 'OrderableReplicationInstance')
@@ -373,6 +375,7 @@ module Aws::DatabaseMigrationService
373
375
  ReplicationConfigList = Shapes::ListShape.new(name: 'ReplicationConfigList')
374
376
  ReplicationEndpointTypeValue = Shapes::StringShape.new(name: 'ReplicationEndpointTypeValue')
375
377
  ReplicationInstance = Shapes::StructureShape.new(name: 'ReplicationInstance')
378
+ ReplicationInstanceClass = Shapes::StringShape.new(name: 'ReplicationInstanceClass')
376
379
  ReplicationInstanceIpv6AddressList = Shapes::ListShape.new(name: 'ReplicationInstanceIpv6AddressList')
377
380
  ReplicationInstanceList = Shapes::ListShape.new(name: 'ReplicationInstanceList')
378
381
  ReplicationInstancePrivateIpAddressList = Shapes::ListShape.new(name: 'ReplicationInstancePrivateIpAddressList')
@@ -421,6 +424,7 @@ module Aws::DatabaseMigrationService
421
424
  SourceDataSettings = Shapes::ListShape.new(name: 'SourceDataSettings')
422
425
  SourceIdsList = Shapes::ListShape.new(name: 'SourceIdsList')
423
426
  SourceType = Shapes::StringShape.new(name: 'SourceType')
427
+ SqlServerAuthenticationMethod = Shapes::StringShape.new(name: 'SqlServerAuthenticationMethod')
424
428
  SslSecurityProtocolValue = Shapes::StringShape.new(name: 'SslSecurityProtocolValue')
425
429
  StartDataMigrationMessage = Shapes::StructureShape.new(name: 'StartDataMigrationMessage')
426
430
  StartDataMigrationResponse = Shapes::StructureShape.new(name: 'StartDataMigrationResponse')
@@ -739,7 +743,7 @@ module Aws::DatabaseMigrationService
739
743
 
740
744
  CreateReplicationInstanceMessage.add_member(:replication_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceIdentifier"))
741
745
  CreateReplicationInstanceMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
742
- CreateReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceClass"))
746
+ CreateReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, required: true, location_name: "ReplicationInstanceClass"))
743
747
  CreateReplicationInstanceMessage.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIdList, location_name: "VpcSecurityGroupIds"))
744
748
  CreateReplicationInstanceMessage.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
745
749
  CreateReplicationInstanceMessage.add_member(:replication_subnet_group_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationSubnetGroupIdentifier"))
@@ -753,6 +757,7 @@ module Aws::DatabaseMigrationService
753
757
  CreateReplicationInstanceMessage.add_member(:dns_name_servers, Shapes::ShapeRef.new(shape: String, location_name: "DnsNameServers"))
754
758
  CreateReplicationInstanceMessage.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ResourceIdentifier"))
755
759
  CreateReplicationInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
760
+ CreateReplicationInstanceMessage.add_member(:kerberos_authentication_settings, Shapes::ShapeRef.new(shape: KerberosAuthenticationSettings, location_name: "KerberosAuthenticationSettings"))
756
761
  CreateReplicationInstanceMessage.struct_class = Types::CreateReplicationInstanceMessage
757
762
 
758
763
  CreateReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
@@ -1702,8 +1707,14 @@ module Aws::DatabaseMigrationService
1702
1707
  KafkaSettings.add_member(:no_hex_prefix, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoHexPrefix"))
1703
1708
  KafkaSettings.add_member(:sasl_mechanism, Shapes::ShapeRef.new(shape: KafkaSaslMechanism, location_name: "SaslMechanism"))
1704
1709
  KafkaSettings.add_member(:ssl_endpoint_identification_algorithm, Shapes::ShapeRef.new(shape: KafkaSslEndpointIdentificationAlgorithm, location_name: "SslEndpointIdentificationAlgorithm"))
1710
+ KafkaSettings.add_member(:use_large_integer_value, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseLargeIntegerValue"))
1705
1711
  KafkaSettings.struct_class = Types::KafkaSettings
1706
1712
 
1713
+ KerberosAuthenticationSettings.add_member(:key_cache_secret_id, Shapes::ShapeRef.new(shape: String, location_name: "KeyCacheSecretId"))
1714
+ KerberosAuthenticationSettings.add_member(:key_cache_secret_iam_arn, Shapes::ShapeRef.new(shape: String, location_name: "KeyCacheSecretIamArn"))
1715
+ KerberosAuthenticationSettings.add_member(:krb_5_file_contents, Shapes::ShapeRef.new(shape: String, location_name: "Krb5FileContents"))
1716
+ KerberosAuthenticationSettings.struct_class = Types::KerberosAuthenticationSettings
1717
+
1707
1718
  KeyList.member = Shapes::ShapeRef.new(shape: String)
1708
1719
 
1709
1720
  KinesisSettings.add_member(:stream_arn, Shapes::ShapeRef.new(shape: String, location_name: "StreamArn"))
@@ -1716,6 +1727,7 @@ module Aws::DatabaseMigrationService
1716
1727
  KinesisSettings.add_member(:include_control_details, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IncludeControlDetails"))
1717
1728
  KinesisSettings.add_member(:include_null_and_empty, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IncludeNullAndEmpty"))
1718
1729
  KinesisSettings.add_member(:no_hex_prefix, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoHexPrefix"))
1730
+ KinesisSettings.add_member(:use_large_integer_value, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseLargeIntegerValue"))
1719
1731
  KinesisSettings.struct_class = Types::KinesisSettings
1720
1732
 
1721
1733
  Limitation.add_member(:database_id, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseId"))
@@ -1758,6 +1770,7 @@ module Aws::DatabaseMigrationService
1758
1770
  MicrosoftSQLServerSettings.add_member(:trim_space_in_char, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TrimSpaceInChar"))
1759
1771
  MicrosoftSQLServerSettings.add_member(:tlog_access_mode, Shapes::ShapeRef.new(shape: TlogAccessMode, location_name: "TlogAccessMode"))
1760
1772
  MicrosoftSQLServerSettings.add_member(:force_lob_lookup, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ForceLobLookup"))
1773
+ MicrosoftSQLServerSettings.add_member(:authentication_method, Shapes::ShapeRef.new(shape: SqlServerAuthenticationMethod, location_name: "AuthenticationMethod"))
1761
1774
  MicrosoftSQLServerSettings.struct_class = Types::MicrosoftSQLServerSettings
1762
1775
 
1763
1776
  MicrosoftSqlServerDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
@@ -1905,7 +1918,7 @@ module Aws::DatabaseMigrationService
1905
1918
  ModifyReplicationInstanceMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
1906
1919
  ModifyReplicationInstanceMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
1907
1920
  ModifyReplicationInstanceMessage.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApplyImmediately"))
1908
- ModifyReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceClass"))
1921
+ ModifyReplicationInstanceMessage.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
1909
1922
  ModifyReplicationInstanceMessage.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIdList, location_name: "VpcSecurityGroupIds"))
1910
1923
  ModifyReplicationInstanceMessage.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
1911
1924
  ModifyReplicationInstanceMessage.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
@@ -1914,6 +1927,7 @@ module Aws::DatabaseMigrationService
1914
1927
  ModifyReplicationInstanceMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
1915
1928
  ModifyReplicationInstanceMessage.add_member(:replication_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceIdentifier"))
1916
1929
  ModifyReplicationInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
1930
+ ModifyReplicationInstanceMessage.add_member(:kerberos_authentication_settings, Shapes::ShapeRef.new(shape: KerberosAuthenticationSettings, location_name: "KerberosAuthenticationSettings"))
1917
1931
  ModifyReplicationInstanceMessage.struct_class = Types::ModifyReplicationInstanceMessage
1918
1932
 
1919
1933
  ModifyReplicationInstanceResponse.add_member(:replication_instance, Shapes::ShapeRef.new(shape: ReplicationInstance, location_name: "ReplicationInstance"))
@@ -2063,10 +2077,11 @@ module Aws::DatabaseMigrationService
2063
2077
  OracleSettings.add_member(:trim_space_in_char, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TrimSpaceInChar"))
2064
2078
  OracleSettings.add_member(:convert_timestamp_with_zone_to_utc, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ConvertTimestampWithZoneToUTC"))
2065
2079
  OracleSettings.add_member(:open_transaction_window, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "OpenTransactionWindow"))
2080
+ OracleSettings.add_member(:authentication_method, Shapes::ShapeRef.new(shape: OracleAuthenticationMethod, location_name: "AuthenticationMethod"))
2066
2081
  OracleSettings.struct_class = Types::OracleSettings
2067
2082
 
2068
2083
  OrderableReplicationInstance.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
2069
- OrderableReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceClass"))
2084
+ OrderableReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
2070
2085
  OrderableReplicationInstance.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
2071
2086
  OrderableReplicationInstance.add_member(:min_allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "MinAllocatedStorage"))
2072
2087
  OrderableReplicationInstance.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxAllocatedStorage"))
@@ -2114,6 +2129,7 @@ module Aws::DatabaseMigrationService
2114
2129
  PostgreSQLSettings.add_member(:map_long_varchar_as, Shapes::ShapeRef.new(shape: LongVarcharMappingType, location_name: "MapLongVarcharAs"))
2115
2130
  PostgreSQLSettings.add_member(:database_mode, Shapes::ShapeRef.new(shape: DatabaseMode, location_name: "DatabaseMode"))
2116
2131
  PostgreSQLSettings.add_member(:babelfish_database_name, Shapes::ShapeRef.new(shape: String, location_name: "BabelfishDatabaseName"))
2132
+ PostgreSQLSettings.add_member(:disable_unicode_source_filter, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DisableUnicodeSourceFilter"))
2117
2133
  PostgreSQLSettings.struct_class = Types::PostgreSQLSettings
2118
2134
 
2119
2135
  PostgreSqlDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
@@ -2303,7 +2319,7 @@ module Aws::DatabaseMigrationService
2303
2319
  ReplicationConfigList.member = Shapes::ShapeRef.new(shape: ReplicationConfig)
2304
2320
 
2305
2321
  ReplicationInstance.add_member(:replication_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceIdentifier"))
2306
- ReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceClass"))
2322
+ ReplicationInstance.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
2307
2323
  ReplicationInstance.add_member(:replication_instance_status, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceStatus"))
2308
2324
  ReplicationInstance.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "AllocatedStorage"))
2309
2325
  ReplicationInstance.add_member(:instance_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "InstanceCreateTime"))
@@ -2327,6 +2343,7 @@ module Aws::DatabaseMigrationService
2327
2343
  ReplicationInstance.add_member(:free_until, Shapes::ShapeRef.new(shape: TStamp, location_name: "FreeUntil"))
2328
2344
  ReplicationInstance.add_member(:dns_name_servers, Shapes::ShapeRef.new(shape: String, location_name: "DnsNameServers"))
2329
2345
  ReplicationInstance.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
2346
+ ReplicationInstance.add_member(:kerberos_authentication_settings, Shapes::ShapeRef.new(shape: KerberosAuthenticationSettings, location_name: "KerberosAuthenticationSettings"))
2330
2347
  ReplicationInstance.struct_class = Types::ReplicationInstance
2331
2348
 
2332
2349
  ReplicationInstanceIpv6AddressList.member = Shapes::ShapeRef.new(shape: String)
@@ -2346,7 +2363,7 @@ module Aws::DatabaseMigrationService
2346
2363
 
2347
2364
  ReplicationList.member = Shapes::ShapeRef.new(shape: Replication)
2348
2365
 
2349
- ReplicationPendingModifiedValues.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationInstanceClass"))
2366
+ ReplicationPendingModifiedValues.add_member(:replication_instance_class, Shapes::ShapeRef.new(shape: ReplicationInstanceClass, location_name: "ReplicationInstanceClass"))
2350
2367
  ReplicationPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
2351
2368
  ReplicationPendingModifiedValues.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
2352
2369
  ReplicationPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
@@ -2408,7 +2425,7 @@ module Aws::DatabaseMigrationService
2408
2425
  ReplicationTaskAssessmentResult.add_member(:assessment_status, Shapes::ShapeRef.new(shape: String, location_name: "AssessmentStatus"))
2409
2426
  ReplicationTaskAssessmentResult.add_member(:assessment_results_file, Shapes::ShapeRef.new(shape: String, location_name: "AssessmentResultsFile"))
2410
2427
  ReplicationTaskAssessmentResult.add_member(:assessment_results, Shapes::ShapeRef.new(shape: String, location_name: "AssessmentResults"))
2411
- ReplicationTaskAssessmentResult.add_member(:s3_object_url, Shapes::ShapeRef.new(shape: String, location_name: "S3ObjectUrl"))
2428
+ ReplicationTaskAssessmentResult.add_member(:s3_object_url, Shapes::ShapeRef.new(shape: SecretString, location_name: "S3ObjectUrl"))
2412
2429
  ReplicationTaskAssessmentResult.struct_class = Types::ReplicationTaskAssessmentResult
2413
2430
 
2414
2431
  ReplicationTaskAssessmentResultList.member = Shapes::ShapeRef.new(shape: ReplicationTaskAssessmentResult)
@@ -3103,6 +3120,7 @@ module Aws::DatabaseMigrationService
3103
3120
  o.output = Shapes::ShapeRef.new(shape: DeleteEventSubscriptionResponse)
3104
3121
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
3105
3122
  o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
3123
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
3106
3124
  end)
3107
3125
 
3108
3126
  api.add_operation(:delete_fleet_advisor_collector, Seahorse::Model::Operation.new.tap do |o|
@@ -3181,6 +3199,7 @@ module Aws::DatabaseMigrationService
3181
3199
  o.output = Shapes::ShapeRef.new(shape: DeleteReplicationSubnetGroupResponse)
3182
3200
  o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
3183
3201
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
3202
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
3184
3203
  end)
3185
3204
 
3186
3205
  api.add_operation(:delete_replication_task, Seahorse::Model::Operation.new.tap do |o|
@@ -3841,6 +3860,7 @@ module Aws::DatabaseMigrationService
3841
3860
  o.output = Shapes::ShapeRef.new(shape: DescribeTableStatisticsResponse)
3842
3861
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
3843
3862
  o.errors << Shapes::ShapeRef.new(shape: InvalidResourceStateFault)
3863
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
3844
3864
  o[:pager] = Aws::Pager.new(
3845
3865
  limit_key: "max_records",
3846
3866
  tokens: {
@@ -3940,6 +3960,7 @@ module Aws::DatabaseMigrationService
3940
3960
  o.errors << Shapes::ShapeRef.new(shape: KMSInvalidStateFault)
3941
3961
  o.errors << Shapes::ShapeRef.new(shape: KMSNotFoundFault)
3942
3962
  o.errors << Shapes::ShapeRef.new(shape: KMSThrottlingFault)
3963
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedFault)
3943
3964
  end)
3944
3965
 
3945
3966
  api.add_operation(:modify_instance_profile, Seahorse::Model::Operation.new.tap do |o|