aws-sdk-databasemigrationservice 1.114.0 → 1.116.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: 401abaffde51d2c0f25e83ce1c6d4ba9c54eb11635caf65b13f0aff2982a9e41
4
- data.tar.gz: 7cecf48af143994a03015d43961ab0a80d429c66a79da2b58412d4f60dba357d
3
+ metadata.gz: aa66239322538e297c5853638f8b587d201ab20064e36a78f563f829d18bd409
4
+ data.tar.gz: fad491494155145c0eaaa6b00856e2cee6185012f68628e725ad1457df55cff2
5
5
  SHA512:
6
- metadata.gz: a9be8fc2bc813f0a8583b938b2d1ba880f9410b81cc92f5b168e14d8439a009fbf036bf09e90fc3d883c031e29556b1a2af275706ea8957a536814daea141004
7
- data.tar.gz: 8f83eb19cc49a29bb8f02d6f0ba1f5939e6362a046e7ccc0068fb694451f70138904dfed56a2cd2c0c78891ec0d9e72e6e156832100adfc111997028396951e8
6
+ metadata.gz: f99d1eda294df3680b0c6ecd970c97e483c7a201c930ecb5f6e05e90db5687ab40d33ad1e6d9df9b7cf9a4fcafe02325791a53b983c0c3860f4c230e40e8571d
7
+ data.tar.gz: 426b9b6898e86f29051311e31a67fc9939da30a18b9c5eb2f7f110d6cc4295c3f1642922e46d24ad5366af95889686aba9f8422251db4f217a6a280dfb233cb7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2025-02-14)
5
+ ------------------
6
+
7
+ * Feature - Introduces premigration assessment feature to DMS Serverless API for start-replication and describe-replications
8
+
9
+ 1.115.0 (2025-02-10)
10
+ ------------------
11
+
12
+ * Feature - New vendors for DMS Data Providers: DB2 LUW and DB2 for z/OS
13
+
4
14
  1.114.0 (2025-02-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.114.0
1
+ 1.116.0
@@ -552,7 +552,7 @@ module Aws::DatabaseMigrationService
552
552
  # @option params [required, String] :apply_action
553
553
  # The pending maintenance action to apply to this resource.
554
554
  #
555
- # Valid values: `os-upgrade`, `system-update`, `db-upgrade`
555
+ # Valid values: `os-upgrade`, `system-update`, `db-upgrade`, `os-patch`
556
556
  #
557
557
  # @option params [required, String] :opt_in_type
558
558
  # A value that specifies the type of opt-in request, or undoes an opt-in
@@ -842,8 +842,8 @@ module Aws::DatabaseMigrationService
842
842
  # @option params [required, String] :engine
843
843
  # The type of database engine for the data provider. Valid values
844
844
  # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
845
- # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
846
- # `docdb`. A value of `"aurora"` represents Amazon Aurora
845
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, `db2`,
846
+ # `db2-zos` and `docdb`. A value of `"aurora"` represents Amazon Aurora
847
847
  # MySQL-Compatible Edition.
848
848
  #
849
849
  # @option params [required, Types::DataProviderSettings] :settings
@@ -956,6 +956,20 @@ module Aws::DatabaseMigrationService
956
956
  # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
957
957
  # certificate_arn: "String",
958
958
  # },
959
+ # ibm_db_2_luw_settings: {
960
+ # server_name: "String",
961
+ # port: 1,
962
+ # database_name: "String",
963
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
964
+ # certificate_arn: "String",
965
+ # },
966
+ # ibm_db_2z_os_settings: {
967
+ # server_name: "String",
968
+ # port: 1,
969
+ # database_name: "String",
970
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
971
+ # certificate_arn: "String",
972
+ # },
959
973
  # mongo_db_settings: {
960
974
  # server_name: "String",
961
975
  # port: 1,
@@ -1019,6 +1033,16 @@ module Aws::DatabaseMigrationService
1019
1033
  # resp.data_provider.settings.maria_db_settings.port #=> Integer
1020
1034
  # resp.data_provider.settings.maria_db_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
1021
1035
  # resp.data_provider.settings.maria_db_settings.certificate_arn #=> String
1036
+ # resp.data_provider.settings.ibm_db_2_luw_settings.server_name #=> String
1037
+ # resp.data_provider.settings.ibm_db_2_luw_settings.port #=> Integer
1038
+ # resp.data_provider.settings.ibm_db_2_luw_settings.database_name #=> String
1039
+ # resp.data_provider.settings.ibm_db_2_luw_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
1040
+ # resp.data_provider.settings.ibm_db_2_luw_settings.certificate_arn #=> String
1041
+ # resp.data_provider.settings.ibm_db_2z_os_settings.server_name #=> String
1042
+ # resp.data_provider.settings.ibm_db_2z_os_settings.port #=> Integer
1043
+ # resp.data_provider.settings.ibm_db_2z_os_settings.database_name #=> String
1044
+ # resp.data_provider.settings.ibm_db_2z_os_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
1045
+ # resp.data_provider.settings.ibm_db_2z_os_settings.certificate_arn #=> String
1022
1046
  # resp.data_provider.settings.mongo_db_settings.server_name #=> String
1023
1047
  # resp.data_provider.settings.mongo_db_settings.port #=> Integer
1024
1048
  # resp.data_provider.settings.mongo_db_settings.database_name #=> String
@@ -2781,8 +2805,8 @@ module Aws::DatabaseMigrationService
2781
2805
  # addressing. IPv6 only is not yet supported.
2782
2806
  #
2783
2807
  # @option params [Types::KerberosAuthenticationSettings] :kerberos_authentication_settings
2784
- # Specifies the ID of the secret that stores the key cache file required
2785
- # for kerberos authentication, when creating a replication instance.
2808
+ # Specifies the settings required for kerberos authentication when
2809
+ # creating the replication instance.
2786
2810
  #
2787
2811
  # @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2788
2812
  #
@@ -3543,6 +3567,16 @@ module Aws::DatabaseMigrationService
3543
3567
  # resp.data_provider.settings.maria_db_settings.port #=> Integer
3544
3568
  # resp.data_provider.settings.maria_db_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
3545
3569
  # resp.data_provider.settings.maria_db_settings.certificate_arn #=> String
3570
+ # resp.data_provider.settings.ibm_db_2_luw_settings.server_name #=> String
3571
+ # resp.data_provider.settings.ibm_db_2_luw_settings.port #=> Integer
3572
+ # resp.data_provider.settings.ibm_db_2_luw_settings.database_name #=> String
3573
+ # resp.data_provider.settings.ibm_db_2_luw_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
3574
+ # resp.data_provider.settings.ibm_db_2_luw_settings.certificate_arn #=> String
3575
+ # resp.data_provider.settings.ibm_db_2z_os_settings.server_name #=> String
3576
+ # resp.data_provider.settings.ibm_db_2z_os_settings.port #=> Integer
3577
+ # resp.data_provider.settings.ibm_db_2z_os_settings.database_name #=> String
3578
+ # resp.data_provider.settings.ibm_db_2z_os_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
3579
+ # resp.data_provider.settings.ibm_db_2z_os_settings.certificate_arn #=> String
3546
3580
  # resp.data_provider.settings.mongo_db_settings.server_name #=> String
3547
3581
  # resp.data_provider.settings.mongo_db_settings.port #=> Integer
3548
3582
  # resp.data_provider.settings.mongo_db_settings.database_name #=> String
@@ -5135,6 +5169,16 @@ module Aws::DatabaseMigrationService
5135
5169
  # resp.data_providers[0].settings.maria_db_settings.port #=> Integer
5136
5170
  # resp.data_providers[0].settings.maria_db_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
5137
5171
  # resp.data_providers[0].settings.maria_db_settings.certificate_arn #=> String
5172
+ # resp.data_providers[0].settings.ibm_db_2_luw_settings.server_name #=> String
5173
+ # resp.data_providers[0].settings.ibm_db_2_luw_settings.port #=> Integer
5174
+ # resp.data_providers[0].settings.ibm_db_2_luw_settings.database_name #=> String
5175
+ # resp.data_providers[0].settings.ibm_db_2_luw_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
5176
+ # resp.data_providers[0].settings.ibm_db_2_luw_settings.certificate_arn #=> String
5177
+ # resp.data_providers[0].settings.ibm_db_2z_os_settings.server_name #=> String
5178
+ # resp.data_providers[0].settings.ibm_db_2z_os_settings.port #=> Integer
5179
+ # resp.data_providers[0].settings.ibm_db_2z_os_settings.database_name #=> String
5180
+ # resp.data_providers[0].settings.ibm_db_2z_os_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
5181
+ # resp.data_providers[0].settings.ibm_db_2z_os_settings.certificate_arn #=> String
5138
5182
  # resp.data_providers[0].settings.mongo_db_settings.server_name #=> String
5139
5183
  # resp.data_providers[0].settings.mongo_db_settings.port #=> Integer
5140
5184
  # resp.data_providers[0].settings.mongo_db_settings.database_name #=> String
@@ -7196,7 +7240,8 @@ module Aws::DatabaseMigrationService
7196
7240
  req.send_request(options)
7197
7241
  end
7198
7242
 
7199
- # For internal use only
7243
+ # Returns a list of upcoming maintenance events for replication
7244
+ # instances in your account in the current Region.
7200
7245
  #
7201
7246
  # @option params [String] :replication_instance_arn
7202
7247
  # The Amazon Resource Name (ARN) of the replication instance.
@@ -8286,6 +8331,23 @@ module Aws::DatabaseMigrationService
8286
8331
  # resp.replications[0].provision_data.is_new_provisioning_available #=> Boolean
8287
8332
  # resp.replications[0].provision_data.date_new_provisioning_data_available #=> Time
8288
8333
  # resp.replications[0].provision_data.reason_for_new_provisioning_data #=> String
8334
+ # resp.replications[0].premigration_assessment_statuses #=> Array
8335
+ # resp.replications[0].premigration_assessment_statuses[0].premigration_assessment_run_arn #=> String
8336
+ # resp.replications[0].premigration_assessment_statuses[0].fail_on_assessment_failure #=> Boolean
8337
+ # resp.replications[0].premigration_assessment_statuses[0].status #=> String
8338
+ # resp.replications[0].premigration_assessment_statuses[0].premigration_assessment_run_creation_date #=> Time
8339
+ # resp.replications[0].premigration_assessment_statuses[0].assessment_progress.individual_assessment_count #=> Integer
8340
+ # resp.replications[0].premigration_assessment_statuses[0].assessment_progress.individual_assessment_completed_count #=> Integer
8341
+ # resp.replications[0].premigration_assessment_statuses[0].last_failure_message #=> String
8342
+ # resp.replications[0].premigration_assessment_statuses[0].result_location_bucket #=> String
8343
+ # resp.replications[0].premigration_assessment_statuses[0].result_location_folder #=> String
8344
+ # resp.replications[0].premigration_assessment_statuses[0].result_encryption_mode #=> String
8345
+ # resp.replications[0].premigration_assessment_statuses[0].result_kms_key_arn #=> String
8346
+ # resp.replications[0].premigration_assessment_statuses[0].result_statistic.passed #=> Integer
8347
+ # resp.replications[0].premigration_assessment_statuses[0].result_statistic.failed #=> Integer
8348
+ # resp.replications[0].premigration_assessment_statuses[0].result_statistic.error #=> Integer
8349
+ # resp.replications[0].premigration_assessment_statuses[0].result_statistic.warning #=> Integer
8350
+ # resp.replications[0].premigration_assessment_statuses[0].result_statistic.cancelled #=> Integer
8289
8351
  # resp.replications[0].stop_reason #=> String
8290
8352
  # resp.replications[0].failure_messages #=> Array
8291
8353
  # resp.replications[0].failure_messages[0] #=> String
@@ -8891,8 +8953,8 @@ module Aws::DatabaseMigrationService
8891
8953
  # @option params [String] :engine
8892
8954
  # The type of database engine for the data provider. Valid values
8893
8955
  # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
8894
- # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
8895
- # `docdb`. A value of `"aurora"` represents Amazon Aurora
8956
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, `db2`,
8957
+ # `db2-zos` and `docdb`. A value of `"aurora"` represents Amazon Aurora
8896
8958
  # MySQL-Compatible Edition.
8897
8959
  #
8898
8960
  # @option params [Boolean] :exact_settings
@@ -9011,6 +9073,20 @@ module Aws::DatabaseMigrationService
9011
9073
  # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
9012
9074
  # certificate_arn: "String",
9013
9075
  # },
9076
+ # ibm_db_2_luw_settings: {
9077
+ # server_name: "String",
9078
+ # port: 1,
9079
+ # database_name: "String",
9080
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
9081
+ # certificate_arn: "String",
9082
+ # },
9083
+ # ibm_db_2z_os_settings: {
9084
+ # server_name: "String",
9085
+ # port: 1,
9086
+ # database_name: "String",
9087
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
9088
+ # certificate_arn: "String",
9089
+ # },
9014
9090
  # mongo_db_settings: {
9015
9091
  # server_name: "String",
9016
9092
  # port: 1,
@@ -9067,6 +9143,16 @@ module Aws::DatabaseMigrationService
9067
9143
  # resp.data_provider.settings.maria_db_settings.port #=> Integer
9068
9144
  # resp.data_provider.settings.maria_db_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
9069
9145
  # resp.data_provider.settings.maria_db_settings.certificate_arn #=> String
9146
+ # resp.data_provider.settings.ibm_db_2_luw_settings.server_name #=> String
9147
+ # resp.data_provider.settings.ibm_db_2_luw_settings.port #=> Integer
9148
+ # resp.data_provider.settings.ibm_db_2_luw_settings.database_name #=> String
9149
+ # resp.data_provider.settings.ibm_db_2_luw_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
9150
+ # resp.data_provider.settings.ibm_db_2_luw_settings.certificate_arn #=> String
9151
+ # resp.data_provider.settings.ibm_db_2z_os_settings.server_name #=> String
9152
+ # resp.data_provider.settings.ibm_db_2z_os_settings.port #=> Integer
9153
+ # resp.data_provider.settings.ibm_db_2z_os_settings.database_name #=> String
9154
+ # resp.data_provider.settings.ibm_db_2z_os_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
9155
+ # resp.data_provider.settings.ibm_db_2z_os_settings.certificate_arn #=> String
9070
9156
  # resp.data_provider.settings.mongo_db_settings.server_name #=> String
9071
9157
  # resp.data_provider.settings.mongo_db_settings.port #=> Integer
9072
9158
  # resp.data_provider.settings.mongo_db_settings.database_name #=> String
@@ -10588,8 +10674,8 @@ module Aws::DatabaseMigrationService
10588
10674
  # addressing. IPv6 only is not yet supported.
10589
10675
  #
10590
10676
  # @option params [Types::KerberosAuthenticationSettings] :kerberos_authentication_settings
10591
- # Specifies the ID of the secret that stores the key cache file required
10592
- # for kerberos authentication, when modifying a replication instance.
10677
+ # Specifies the settings required for kerberos authentication when
10678
+ # modifying a replication instance.
10593
10679
  #
10594
10680
  # @return [Types::ModifyReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10595
10681
  #
@@ -11811,6 +11897,41 @@ module Aws::DatabaseMigrationService
11811
11897
  # Otherwise use `resume-processing`, to replicate the changes from the
11812
11898
  # last stop position.
11813
11899
  #
11900
+ # @option params [String] :premigration_assessment_settings
11901
+ # User-defined settings for the premigration assessment. The possible
11902
+ # values are:
11903
+ #
11904
+ # * `ResultLocationFinder`: The folder within an Amazon Amazon S3 bucket
11905
+ # where you want DMS to store the results of this assessment run.
11906
+ #
11907
+ # * `ResultEncryptionMode`: The supported values are `SSE_KMS` and
11908
+ # `SSE_S3`. If these values are not provided, then the files are not
11909
+ # encrypted at rest. For more information, see [Creating Amazon Web
11910
+ # Services KMS keys to encrypt Amazon Amazon S3 target objects][1].
11911
+ #
11912
+ # * `ResultKmsKeyArn`: The ARN of a customer KMS encryption key that you
11913
+ # specify when you set `ResultEncryptionMode` to `SSE_KMS`.
11914
+ #
11915
+ # * `IncludeOnly`: A space-separated list of names for specific
11916
+ # individual assessments that you want to include. These names come
11917
+ # from the default list of individual assessments that Database
11918
+ # Migration Service supports for the associated migration.
11919
+ #
11920
+ # * `Exclude`: A space-separated list of names for specific individual
11921
+ # assessments that you want to exclude. These names come from the
11922
+ # default list of individual assessments that Database Migration
11923
+ # Service supports for the associated migration.
11924
+ #
11925
+ # * `FailOnAssessmentFailure`: A configurable setting you can set to
11926
+ # `true` (the default setting) or `false`. Use this setting to to stop
11927
+ # the replication from starting automatically if the assessment fails.
11928
+ # This can help you evaluate the issue that is preventing the
11929
+ # replication from running successfully.
11930
+ #
11931
+ #
11932
+ #
11933
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.KMSKeys
11934
+ #
11814
11935
  # @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
11815
11936
  # Indicates the start time for a change data capture (CDC) operation.
11816
11937
  # Use either `CdcStartTime` or `CdcStartPosition` to specify when you
@@ -11838,6 +11959,7 @@ module Aws::DatabaseMigrationService
11838
11959
  # resp = client.start_replication({
11839
11960
  # replication_config_arn: "String", # required
11840
11961
  # start_replication_type: "String", # required
11962
+ # premigration_assessment_settings: "String",
11841
11963
  # cdc_start_time: Time.now,
11842
11964
  # cdc_start_position: "String",
11843
11965
  # cdc_stop_position: "String",
@@ -11857,6 +11979,23 @@ module Aws::DatabaseMigrationService
11857
11979
  # resp.replication.provision_data.is_new_provisioning_available #=> Boolean
11858
11980
  # resp.replication.provision_data.date_new_provisioning_data_available #=> Time
11859
11981
  # resp.replication.provision_data.reason_for_new_provisioning_data #=> String
11982
+ # resp.replication.premigration_assessment_statuses #=> Array
11983
+ # resp.replication.premigration_assessment_statuses[0].premigration_assessment_run_arn #=> String
11984
+ # resp.replication.premigration_assessment_statuses[0].fail_on_assessment_failure #=> Boolean
11985
+ # resp.replication.premigration_assessment_statuses[0].status #=> String
11986
+ # resp.replication.premigration_assessment_statuses[0].premigration_assessment_run_creation_date #=> Time
11987
+ # resp.replication.premigration_assessment_statuses[0].assessment_progress.individual_assessment_count #=> Integer
11988
+ # resp.replication.premigration_assessment_statuses[0].assessment_progress.individual_assessment_completed_count #=> Integer
11989
+ # resp.replication.premigration_assessment_statuses[0].last_failure_message #=> String
11990
+ # resp.replication.premigration_assessment_statuses[0].result_location_bucket #=> String
11991
+ # resp.replication.premigration_assessment_statuses[0].result_location_folder #=> String
11992
+ # resp.replication.premigration_assessment_statuses[0].result_encryption_mode #=> String
11993
+ # resp.replication.premigration_assessment_statuses[0].result_kms_key_arn #=> String
11994
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.passed #=> Integer
11995
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.failed #=> Integer
11996
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.error #=> Integer
11997
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.warning #=> Integer
11998
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.cancelled #=> Integer
11860
11999
  # resp.replication.stop_reason #=> String
11861
12000
  # resp.replication.failure_messages #=> Array
11862
12001
  # resp.replication.failure_messages[0] #=> String
@@ -12353,6 +12492,23 @@ module Aws::DatabaseMigrationService
12353
12492
  # resp.replication.provision_data.is_new_provisioning_available #=> Boolean
12354
12493
  # resp.replication.provision_data.date_new_provisioning_data_available #=> Time
12355
12494
  # resp.replication.provision_data.reason_for_new_provisioning_data #=> String
12495
+ # resp.replication.premigration_assessment_statuses #=> Array
12496
+ # resp.replication.premigration_assessment_statuses[0].premigration_assessment_run_arn #=> String
12497
+ # resp.replication.premigration_assessment_statuses[0].fail_on_assessment_failure #=> Boolean
12498
+ # resp.replication.premigration_assessment_statuses[0].status #=> String
12499
+ # resp.replication.premigration_assessment_statuses[0].premigration_assessment_run_creation_date #=> Time
12500
+ # resp.replication.premigration_assessment_statuses[0].assessment_progress.individual_assessment_count #=> Integer
12501
+ # resp.replication.premigration_assessment_statuses[0].assessment_progress.individual_assessment_completed_count #=> Integer
12502
+ # resp.replication.premigration_assessment_statuses[0].last_failure_message #=> String
12503
+ # resp.replication.premigration_assessment_statuses[0].result_location_bucket #=> String
12504
+ # resp.replication.premigration_assessment_statuses[0].result_location_folder #=> String
12505
+ # resp.replication.premigration_assessment_statuses[0].result_encryption_mode #=> String
12506
+ # resp.replication.premigration_assessment_statuses[0].result_kms_key_arn #=> String
12507
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.passed #=> Integer
12508
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.failed #=> Integer
12509
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.error #=> Integer
12510
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.warning #=> Integer
12511
+ # resp.replication.premigration_assessment_statuses[0].result_statistic.cancelled #=> Integer
12356
12512
  # resp.replication.stop_reason #=> String
12357
12513
  # resp.replication.failure_messages #=> Array
12358
12514
  # resp.replication.failure_messages[0] #=> String
@@ -12589,7 +12745,7 @@ module Aws::DatabaseMigrationService
12589
12745
  tracer: tracer
12590
12746
  )
12591
12747
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
12592
- context[:gem_version] = '1.114.0'
12748
+ context[:gem_version] = '1.116.0'
12593
12749
  Seahorse::Client::Request.new(handlers, context)
12594
12750
  end
12595
12751
 
@@ -255,6 +255,8 @@ module Aws::DatabaseMigrationService
255
255
  FleetAdvisorSchemaObjectResponse = Shapes::StructureShape.new(name: 'FleetAdvisorSchemaObjectResponse')
256
256
  GcpMySQLSettings = Shapes::StructureShape.new(name: 'GcpMySQLSettings')
257
257
  IBMDb2Settings = Shapes::StructureShape.new(name: 'IBMDb2Settings')
258
+ IbmDb2LuwDataProviderSettings = Shapes::StructureShape.new(name: 'IbmDb2LuwDataProviderSettings')
259
+ IbmDb2zOsDataProviderSettings = Shapes::StructureShape.new(name: 'IbmDb2zOsDataProviderSettings')
258
260
  ImportCertificateMessage = Shapes::StructureShape.new(name: 'ImportCertificateMessage')
259
261
  ImportCertificateResponse = Shapes::StructureShape.new(name: 'ImportCertificateResponse')
260
262
  IncludeTestList = Shapes::ListShape.new(name: 'IncludeTestList')
@@ -343,6 +345,8 @@ module Aws::DatabaseMigrationService
343
345
  PluginNameValue = Shapes::StringShape.new(name: 'PluginNameValue')
344
346
  PostgreSQLSettings = Shapes::StructureShape.new(name: 'PostgreSQLSettings')
345
347
  PostgreSqlDataProviderSettings = Shapes::StructureShape.new(name: 'PostgreSqlDataProviderSettings')
348
+ PremigrationAssessmentStatus = Shapes::StructureShape.new(name: 'PremigrationAssessmentStatus')
349
+ PremigrationAssessmentStatusList = Shapes::ListShape.new(name: 'PremigrationAssessmentStatusList')
346
350
  ProvisionData = Shapes::StructureShape.new(name: 'ProvisionData')
347
351
  PublicIpAddressList = Shapes::ListShape.new(name: 'PublicIpAddressList')
348
352
  RdsConfiguration = Shapes::StructureShape.new(name: 'RdsConfiguration')
@@ -865,6 +869,8 @@ module Aws::DatabaseMigrationService
865
869
  DataProviderSettings.add_member(:microsoft_sql_server_settings, Shapes::ShapeRef.new(shape: MicrosoftSqlServerDataProviderSettings, location_name: "MicrosoftSqlServerSettings"))
866
870
  DataProviderSettings.add_member(:doc_db_settings, Shapes::ShapeRef.new(shape: DocDbDataProviderSettings, location_name: "DocDbSettings"))
867
871
  DataProviderSettings.add_member(:maria_db_settings, Shapes::ShapeRef.new(shape: MariaDbDataProviderSettings, location_name: "MariaDbSettings"))
872
+ DataProviderSettings.add_member(:ibm_db_2_luw_settings, Shapes::ShapeRef.new(shape: IbmDb2LuwDataProviderSettings, location_name: "IbmDb2LuwSettings"))
873
+ DataProviderSettings.add_member(:ibm_db_2z_os_settings, Shapes::ShapeRef.new(shape: IbmDb2zOsDataProviderSettings, location_name: "IbmDb2zOsSettings"))
868
874
  DataProviderSettings.add_member(:mongo_db_settings, Shapes::ShapeRef.new(shape: MongoDbDataProviderSettings, location_name: "MongoDbSettings"))
869
875
  DataProviderSettings.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
870
876
  DataProviderSettings.add_member_subclass(:redshift_settings, Types::DataProviderSettings::RedshiftSettings)
@@ -874,6 +880,8 @@ module Aws::DatabaseMigrationService
874
880
  DataProviderSettings.add_member_subclass(:microsoft_sql_server_settings, Types::DataProviderSettings::MicrosoftSqlServerSettings)
875
881
  DataProviderSettings.add_member_subclass(:doc_db_settings, Types::DataProviderSettings::DocDbSettings)
876
882
  DataProviderSettings.add_member_subclass(:maria_db_settings, Types::DataProviderSettings::MariaDbSettings)
883
+ DataProviderSettings.add_member_subclass(:ibm_db_2_luw_settings, Types::DataProviderSettings::IbmDb2LuwSettings)
884
+ DataProviderSettings.add_member_subclass(:ibm_db_2z_os_settings, Types::DataProviderSettings::IbmDb2zOsSettings)
877
885
  DataProviderSettings.add_member_subclass(:mongo_db_settings, Types::DataProviderSettings::MongoDbSettings)
878
886
  DataProviderSettings.add_member_subclass(:unknown, Types::DataProviderSettings::Unknown)
879
887
  DataProviderSettings.struct_class = Types::DataProviderSettings
@@ -1623,6 +1631,20 @@ module Aws::DatabaseMigrationService
1623
1631
  IBMDb2Settings.add_member(:keep_csv_files, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "KeepCsvFiles"))
1624
1632
  IBMDb2Settings.struct_class = Types::IBMDb2Settings
1625
1633
 
1634
+ IbmDb2LuwDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
1635
+ IbmDb2LuwDataProviderSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
1636
+ IbmDb2LuwDataProviderSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
1637
+ IbmDb2LuwDataProviderSettings.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
1638
+ IbmDb2LuwDataProviderSettings.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
1639
+ IbmDb2LuwDataProviderSettings.struct_class = Types::IbmDb2LuwDataProviderSettings
1640
+
1641
+ IbmDb2zOsDataProviderSettings.add_member(:server_name, Shapes::ShapeRef.new(shape: String, location_name: "ServerName"))
1642
+ IbmDb2zOsDataProviderSettings.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
1643
+ IbmDb2zOsDataProviderSettings.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
1644
+ IbmDb2zOsDataProviderSettings.add_member(:ssl_mode, Shapes::ShapeRef.new(shape: DmsSslModeValue, location_name: "SslMode"))
1645
+ IbmDb2zOsDataProviderSettings.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
1646
+ IbmDb2zOsDataProviderSettings.struct_class = Types::IbmDb2zOsDataProviderSettings
1647
+
1626
1648
  ImportCertificateMessage.add_member(:certificate_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CertificateIdentifier"))
1627
1649
  ImportCertificateMessage.add_member(:certificate_pem, Shapes::ShapeRef.new(shape: SecretString, location_name: "CertificatePem"))
1628
1650
  ImportCertificateMessage.add_member(:certificate_wallet, Shapes::ShapeRef.new(shape: CertificateWallet, location_name: "CertificateWallet"))
@@ -2145,6 +2167,21 @@ module Aws::DatabaseMigrationService
2145
2167
  PostgreSqlDataProviderSettings.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
2146
2168
  PostgreSqlDataProviderSettings.struct_class = Types::PostgreSqlDataProviderSettings
2147
2169
 
2170
+ PremigrationAssessmentStatus.add_member(:premigration_assessment_run_arn, Shapes::ShapeRef.new(shape: String, location_name: "PremigrationAssessmentRunArn"))
2171
+ PremigrationAssessmentStatus.add_member(:fail_on_assessment_failure, Shapes::ShapeRef.new(shape: Boolean, location_name: "FailOnAssessmentFailure"))
2172
+ PremigrationAssessmentStatus.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
2173
+ PremigrationAssessmentStatus.add_member(:premigration_assessment_run_creation_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "PremigrationAssessmentRunCreationDate"))
2174
+ PremigrationAssessmentStatus.add_member(:assessment_progress, Shapes::ShapeRef.new(shape: ReplicationTaskAssessmentRunProgress, location_name: "AssessmentProgress"))
2175
+ PremigrationAssessmentStatus.add_member(:last_failure_message, Shapes::ShapeRef.new(shape: String, location_name: "LastFailureMessage"))
2176
+ PremigrationAssessmentStatus.add_member(:result_location_bucket, Shapes::ShapeRef.new(shape: String, location_name: "ResultLocationBucket"))
2177
+ PremigrationAssessmentStatus.add_member(:result_location_folder, Shapes::ShapeRef.new(shape: String, location_name: "ResultLocationFolder"))
2178
+ PremigrationAssessmentStatus.add_member(:result_encryption_mode, Shapes::ShapeRef.new(shape: String, location_name: "ResultEncryptionMode"))
2179
+ PremigrationAssessmentStatus.add_member(:result_kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "ResultKmsKeyArn"))
2180
+ PremigrationAssessmentStatus.add_member(:result_statistic, Shapes::ShapeRef.new(shape: ReplicationTaskAssessmentRunResultStatistic, location_name: "ResultStatistic"))
2181
+ PremigrationAssessmentStatus.struct_class = Types::PremigrationAssessmentStatus
2182
+
2183
+ PremigrationAssessmentStatusList.member = Shapes::ShapeRef.new(shape: PremigrationAssessmentStatus)
2184
+
2148
2185
  ProvisionData.add_member(:provision_state, Shapes::ShapeRef.new(shape: String, location_name: "ProvisionState"))
2149
2186
  ProvisionData.add_member(:provisioned_capacity_units, Shapes::ShapeRef.new(shape: Integer, location_name: "ProvisionedCapacityUnits"))
2150
2187
  ProvisionData.add_member(:date_provisioned, Shapes::ShapeRef.new(shape: TStamp, location_name: "DateProvisioned"))
@@ -2295,6 +2332,7 @@ module Aws::DatabaseMigrationService
2295
2332
  Replication.add_member(:replication_type, Shapes::ShapeRef.new(shape: MigrationTypeValue, location_name: "ReplicationType"))
2296
2333
  Replication.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
2297
2334
  Replication.add_member(:provision_data, Shapes::ShapeRef.new(shape: ProvisionData, location_name: "ProvisionData"))
2335
+ Replication.add_member(:premigration_assessment_statuses, Shapes::ShapeRef.new(shape: PremigrationAssessmentStatusList, location_name: "PremigrationAssessmentStatuses"))
2298
2336
  Replication.add_member(:stop_reason, Shapes::ShapeRef.new(shape: String, location_name: "StopReason"))
2299
2337
  Replication.add_member(:failure_messages, Shapes::ShapeRef.new(shape: StringList, location_name: "FailureMessages"))
2300
2338
  Replication.add_member(:replication_stats, Shapes::ShapeRef.new(shape: ReplicationStats, location_name: "ReplicationStats"))
@@ -2675,6 +2713,7 @@ module Aws::DatabaseMigrationService
2675
2713
 
2676
2714
  StartReplicationMessage.add_member(:replication_config_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationConfigArn"))
2677
2715
  StartReplicationMessage.add_member(:start_replication_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "StartReplicationType"))
2716
+ StartReplicationMessage.add_member(:premigration_assessment_settings, Shapes::ShapeRef.new(shape: String, location_name: "PremigrationAssessmentSettings"))
2678
2717
  StartReplicationMessage.add_member(:cdc_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CdcStartTime"))
2679
2718
  StartReplicationMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
2680
2719
  StartReplicationMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
@@ -84,7 +84,8 @@ module Aws::DatabaseMigrationService
84
84
  # @!attribute [rw] apply_action
85
85
  # The pending maintenance action to apply to this resource.
86
86
  #
87
- # Valid values: `os-upgrade`, `system-update`, `db-upgrade`
87
+ # Valid values: `os-upgrade`, `system-update`, `db-upgrade`,
88
+ # `os-patch`
88
89
  # @return [String]
89
90
  #
90
91
  # @!attribute [rw] opt_in_type
@@ -681,9 +682,9 @@ module Aws::DatabaseMigrationService
681
682
  # @!attribute [rw] engine
682
683
  # The type of database engine for the data provider. Valid values
683
684
  # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
684
- # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
685
- # `docdb`. A value of `"aurora"` represents Amazon Aurora
686
- # MySQL-Compatible Edition.
685
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`,
686
+ # `db2`, `db2-zos` and `docdb`. A value of `"aurora"` represents
687
+ # Amazon Aurora MySQL-Compatible Edition.
687
688
  # @return [String]
688
689
  #
689
690
  # @!attribute [rw] settings
@@ -1633,9 +1634,8 @@ module Aws::DatabaseMigrationService
1633
1634
  # @return [String]
1634
1635
  #
1635
1636
  # @!attribute [rw] kerberos_authentication_settings
1636
- # Specifies the ID of the secret that stores the key cache file
1637
- # required for kerberos authentication, when creating a replication
1638
- # instance.
1637
+ # Specifies the settings required for kerberos authentication when
1638
+ # creating the replication instance.
1639
1639
  # @return [Types::KerberosAuthenticationSettings]
1640
1640
  #
1641
1641
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
@@ -2090,9 +2090,9 @@ module Aws::DatabaseMigrationService
2090
2090
  # @!attribute [rw] engine
2091
2091
  # The type of database engine for the data provider. Valid values
2092
2092
  # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
2093
- # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
2094
- # `docdb`. A value of `"aurora"` represents Amazon Aurora
2095
- # MySQL-Compatible Edition.
2093
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`,
2094
+ # `db2`, `db2-zos` and `docdb`. A value of `"aurora"` represents
2095
+ # Amazon Aurora MySQL-Compatible Edition.
2096
2096
  # @return [String]
2097
2097
  #
2098
2098
  # @!attribute [rw] settings
@@ -2204,6 +2204,14 @@ module Aws::DatabaseMigrationService
2204
2204
  # Provides information that defines a MariaDB data provider.
2205
2205
  # @return [Types::MariaDbDataProviderSettings]
2206
2206
  #
2207
+ # @!attribute [rw] ibm_db_2_luw_settings
2208
+ # Provides information that defines an IBM DB2 LUW data provider.
2209
+ # @return [Types::IbmDb2LuwDataProviderSettings]
2210
+ #
2211
+ # @!attribute [rw] ibm_db_2z_os_settings
2212
+ # Provides information that defines an IBM DB2 for z/OS data provider.
2213
+ # @return [Types::IbmDb2zOsDataProviderSettings]
2214
+ #
2207
2215
  # @!attribute [rw] mongo_db_settings
2208
2216
  # Provides information that defines a MongoDB data provider.
2209
2217
  # @return [Types::MongoDbDataProviderSettings]
@@ -2218,6 +2226,8 @@ module Aws::DatabaseMigrationService
2218
2226
  :microsoft_sql_server_settings,
2219
2227
  :doc_db_settings,
2220
2228
  :maria_db_settings,
2229
+ :ibm_db_2_luw_settings,
2230
+ :ibm_db_2z_os_settings,
2221
2231
  :mongo_db_settings,
2222
2232
  :unknown)
2223
2233
  SENSITIVE = []
@@ -2231,6 +2241,8 @@ module Aws::DatabaseMigrationService
2231
2241
  class MicrosoftSqlServerSettings < DataProviderSettings; end
2232
2242
  class DocDbSettings < DataProviderSettings; end
2233
2243
  class MariaDbSettings < DataProviderSettings; end
2244
+ class IbmDb2LuwSettings < DataProviderSettings; end
2245
+ class IbmDb2zOsSettings < DataProviderSettings; end
2234
2246
  class MongoDbSettings < DataProviderSettings; end
2235
2247
  class Unknown < DataProviderSettings; end
2236
2248
  end
@@ -6338,6 +6350,78 @@ module Aws::DatabaseMigrationService
6338
6350
  include Aws::Structure
6339
6351
  end
6340
6352
 
6353
+ # Provides information about an IBM DB2 LUW data provider.
6354
+ #
6355
+ # @!attribute [rw] server_name
6356
+ # The name of the DB2 LUW server.
6357
+ # @return [String]
6358
+ #
6359
+ # @!attribute [rw] port
6360
+ # The port value for the DB2 LUW data provider.
6361
+ # @return [Integer]
6362
+ #
6363
+ # @!attribute [rw] database_name
6364
+ # The database name on the DB2 LUW data provider.
6365
+ # @return [String]
6366
+ #
6367
+ # @!attribute [rw] ssl_mode
6368
+ # The SSL mode used to connect to the DB2 LUW data provider. The
6369
+ # default value is `none`. Valid Values: `none` and `verify-ca`.
6370
+ # @return [String]
6371
+ #
6372
+ # @!attribute [rw] certificate_arn
6373
+ # The Amazon Resource Name (ARN) of the certificate used for SSL
6374
+ # connection.
6375
+ # @return [String]
6376
+ #
6377
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/IbmDb2LuwDataProviderSettings AWS API Documentation
6378
+ #
6379
+ class IbmDb2LuwDataProviderSettings < Struct.new(
6380
+ :server_name,
6381
+ :port,
6382
+ :database_name,
6383
+ :ssl_mode,
6384
+ :certificate_arn)
6385
+ SENSITIVE = []
6386
+ include Aws::Structure
6387
+ end
6388
+
6389
+ # Provides information about an IBM DB2 for z/OS data provider.
6390
+ #
6391
+ # @!attribute [rw] server_name
6392
+ # The name of the DB2 for z/OS server.
6393
+ # @return [String]
6394
+ #
6395
+ # @!attribute [rw] port
6396
+ # The port value for the DB2 for z/OS data provider.
6397
+ # @return [Integer]
6398
+ #
6399
+ # @!attribute [rw] database_name
6400
+ # The database name on the DB2 for z/OS data provider.
6401
+ # @return [String]
6402
+ #
6403
+ # @!attribute [rw] ssl_mode
6404
+ # The SSL mode used to connect to the DB2 for z/OS data provider. The
6405
+ # default value is `none`. Valid Values: `none` and `verify-ca`.
6406
+ # @return [String]
6407
+ #
6408
+ # @!attribute [rw] certificate_arn
6409
+ # The Amazon Resource Name (ARN) of the certificate used for SSL
6410
+ # connection.
6411
+ # @return [String]
6412
+ #
6413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/IbmDb2zOsDataProviderSettings AWS API Documentation
6414
+ #
6415
+ class IbmDb2zOsDataProviderSettings < Struct.new(
6416
+ :server_name,
6417
+ :port,
6418
+ :database_name,
6419
+ :ssl_mode,
6420
+ :certificate_arn)
6421
+ SENSITIVE = []
6422
+ include Aws::Structure
6423
+ end
6424
+
6341
6425
  # @!attribute [rw] certificate_identifier
6342
6426
  # A customer-assigned name for the certificate. Identifiers must begin
6343
6427
  # with a letter and must contain only ASCII letters, digits, and
@@ -7441,9 +7525,9 @@ module Aws::DatabaseMigrationService
7441
7525
  # @!attribute [rw] engine
7442
7526
  # The type of database engine for the data provider. Valid values
7443
7527
  # include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
7444
- # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
7445
- # `docdb`. A value of `"aurora"` represents Amazon Aurora
7446
- # MySQL-Compatible Edition.
7528
+ # `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`,
7529
+ # `db2`, `db2-zos` and `docdb`. A value of `"aurora"` represents
7530
+ # Amazon Aurora MySQL-Compatible Edition.
7447
7531
  # @return [String]
7448
7532
  #
7449
7533
  # @!attribute [rw] exact_settings
@@ -8212,9 +8296,8 @@ module Aws::DatabaseMigrationService
8212
8296
  # @return [String]
8213
8297
  #
8214
8298
  # @!attribute [rw] kerberos_authentication_settings
8215
- # Specifies the ID of the secret that stores the key cache file
8216
- # required for kerberos authentication, when modifying a replication
8217
- # instance.
8299
+ # Specifies the settings required for kerberos authentication when
8300
+ # modifying a replication instance.
8218
8301
  # @return [Types::KerberosAuthenticationSettings]
8219
8302
  #
8220
8303
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstanceMessage AWS API Documentation
@@ -9881,6 +9964,117 @@ module Aws::DatabaseMigrationService
9881
9964
  include Aws::Structure
9882
9965
  end
9883
9966
 
9967
+ # The results returned in `describe-replications` to display the results
9968
+ # of the premigration assessment from the replication configuration.
9969
+ #
9970
+ # @!attribute [rw] premigration_assessment_run_arn
9971
+ # The Amazon Resource Name (ARN) of this assessment run.
9972
+ # @return [String]
9973
+ #
9974
+ # @!attribute [rw] fail_on_assessment_failure
9975
+ # A configurable setting you can set to `true` (the defualt setting)
9976
+ # or `false`. Use this setting to to stop the replication from
9977
+ # starting automatically if the assessment fails. This can help you
9978
+ # evaluate the issue that is preventing the replication from running
9979
+ # successfully.
9980
+ # @return [Boolean]
9981
+ #
9982
+ # @!attribute [rw] status
9983
+ # This describes the assessment run status. The status can be one of
9984
+ # the following values:
9985
+ #
9986
+ # * `cancelling`: The assessment run was canceled.
9987
+ #
9988
+ # * `deleting`: The assessment run was deleted.
9989
+ #
9990
+ # * `failed`: At least one individual assessment completed with a
9991
+ # failed status.
9992
+ #
9993
+ # * `error-provisioning`: An internal error occurred while resources
9994
+ # were provisioned (during the `provisioning` status).
9995
+ #
9996
+ # * `error-executing` An internal error occurred while individual
9997
+ # assessments ran (during the `running` status).
9998
+ #
9999
+ # * `invalid state`: The assessment run is in an unknown state.
10000
+ #
10001
+ # * `passed`: All individual assessments have completed and none have
10002
+ # a failed status.
10003
+ #
10004
+ # * `provisioning`: The resources required to run individual
10005
+ # assessments are being provisioned.
10006
+ #
10007
+ # * `running`: Individual assessments are being run.
10008
+ #
10009
+ # * `starting`: The assessment run is starting, but resources are not
10010
+ # yet being provisioned for individual assessments.
10011
+ #
10012
+ # * `warning`: At least one individual assessment completed with a
10013
+ # warning status.
10014
+ # @return [String]
10015
+ #
10016
+ # @!attribute [rw] premigration_assessment_run_creation_date
10017
+ # The date which the assessment run was created.
10018
+ # @return [Time]
10019
+ #
10020
+ # @!attribute [rw] assessment_progress
10021
+ # The progress values reported by the `AssessmentProgress` response
10022
+ # element.
10023
+ # @return [Types::ReplicationTaskAssessmentRunProgress]
10024
+ #
10025
+ # @!attribute [rw] last_failure_message
10026
+ # The last message generated by an individual assessment failure.
10027
+ # @return [String]
10028
+ #
10029
+ # @!attribute [rw] result_location_bucket
10030
+ # The Amazon S3 bucket that Database Migration Service Serverless
10031
+ # created to store the results of this assessment run.
10032
+ # @return [String]
10033
+ #
10034
+ # @!attribute [rw] result_location_folder
10035
+ # The folder within an Amazon S3 bucket where you want Database
10036
+ # Migration Service to store the results of this assessment run.
10037
+ # @return [String]
10038
+ #
10039
+ # @!attribute [rw] result_encryption_mode
10040
+ # The supported values are `SSE_KMS` and `SSE_S3`. If these values are
10041
+ # not provided, then the files are not encrypted at rest. For more
10042
+ # information, see [Creating Amazon Web Services KMS keys to encrypt
10043
+ # Amazon S3 target objects][1].
10044
+ #
10045
+ #
10046
+ #
10047
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.KMSKeys
10048
+ # @return [String]
10049
+ #
10050
+ # @!attribute [rw] result_kms_key_arn
10051
+ # The ARN of a custom KMS encryption key that you specify when you set
10052
+ # `ResultEncryptionMode` to `SSE_KMS`.
10053
+ # @return [String]
10054
+ #
10055
+ # @!attribute [rw] result_statistic
10056
+ # The object containing the result statistics for a completed
10057
+ # assessment run.
10058
+ # @return [Types::ReplicationTaskAssessmentRunResultStatistic]
10059
+ #
10060
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PremigrationAssessmentStatus AWS API Documentation
10061
+ #
10062
+ class PremigrationAssessmentStatus < Struct.new(
10063
+ :premigration_assessment_run_arn,
10064
+ :fail_on_assessment_failure,
10065
+ :status,
10066
+ :premigration_assessment_run_creation_date,
10067
+ :assessment_progress,
10068
+ :last_failure_message,
10069
+ :result_location_bucket,
10070
+ :result_location_folder,
10071
+ :result_encryption_mode,
10072
+ :result_kms_key_arn,
10073
+ :result_statistic)
10074
+ SENSITIVE = []
10075
+ include Aws::Structure
10076
+ end
10077
+
9884
10078
  # Information about provisioning resources for an DMS serverless
9885
10079
  # replication.
9886
10080
  #
@@ -10788,6 +10982,11 @@ module Aws::DatabaseMigrationService
10788
10982
  # replication.
10789
10983
  # @return [Types::ProvisionData]
10790
10984
  #
10985
+ # @!attribute [rw] premigration_assessment_statuses
10986
+ # The status output of premigration assessment in
10987
+ # describe-replications.
10988
+ # @return [Array<Types::PremigrationAssessmentStatus>]
10989
+ #
10791
10990
  # @!attribute [rw] stop_reason
10792
10991
  # The reason the replication task was stopped. This response parameter
10793
10992
  # can return one of the following values:
@@ -10892,6 +11091,7 @@ module Aws::DatabaseMigrationService
10892
11091
  :replication_type,
10893
11092
  :status,
10894
11093
  :provision_data,
11094
+ :premigration_assessment_statuses,
10895
11095
  :stop_reason,
10896
11096
  :failure_messages,
10897
11097
  :replication_stats,
@@ -11159,8 +11359,8 @@ module Aws::DatabaseMigrationService
11159
11359
  # @return [String]
11160
11360
  #
11161
11361
  # @!attribute [rw] kerberos_authentication_settings
11162
- # Specifies the ID of the secret that stores the key cache file
11163
- # required for kerberos authentication, when replicating an instance.
11362
+ # Specifies the settings required for kerberos authentication when
11363
+ # replicating an instance.
11164
11364
  # @return [Types::KerberosAuthenticationSettings]
11165
11365
  #
11166
11366
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
@@ -13291,6 +13491,43 @@ module Aws::DatabaseMigrationService
13291
13491
  # changes from the last stop position.
13292
13492
  # @return [String]
13293
13493
  #
13494
+ # @!attribute [rw] premigration_assessment_settings
13495
+ # User-defined settings for the premigration assessment. The possible
13496
+ # values are:
13497
+ #
13498
+ # * `ResultLocationFinder`: The folder within an Amazon Amazon S3
13499
+ # bucket where you want DMS to store the results of this assessment
13500
+ # run.
13501
+ #
13502
+ # * `ResultEncryptionMode`: The supported values are `SSE_KMS` and
13503
+ # `SSE_S3`. If these values are not provided, then the files are not
13504
+ # encrypted at rest. For more information, see [Creating Amazon Web
13505
+ # Services KMS keys to encrypt Amazon Amazon S3 target objects][1].
13506
+ #
13507
+ # * `ResultKmsKeyArn`: The ARN of a customer KMS encryption key that
13508
+ # you specify when you set `ResultEncryptionMode` to `SSE_KMS`.
13509
+ #
13510
+ # * `IncludeOnly`: A space-separated list of names for specific
13511
+ # individual assessments that you want to include. These names come
13512
+ # from the default list of individual assessments that Database
13513
+ # Migration Service supports for the associated migration.
13514
+ #
13515
+ # * `Exclude`: A space-separated list of names for specific individual
13516
+ # assessments that you want to exclude. These names come from the
13517
+ # default list of individual assessments that Database Migration
13518
+ # Service supports for the associated migration.
13519
+ #
13520
+ # * `FailOnAssessmentFailure`: A configurable setting you can set to
13521
+ # `true` (the default setting) or `false`. Use this setting to to
13522
+ # stop the replication from starting automatically if the assessment
13523
+ # fails. This can help you evaluate the issue that is preventing the
13524
+ # replication from running successfully.
13525
+ #
13526
+ #
13527
+ #
13528
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.KMSKeys
13529
+ # @return [String]
13530
+ #
13294
13531
  # @!attribute [rw] cdc_start_time
13295
13532
  # Indicates the start time for a change data capture (CDC) operation.
13296
13533
  # Use either `CdcStartTime` or `CdcStartPosition` to specify when you
@@ -13317,6 +13554,7 @@ module Aws::DatabaseMigrationService
13317
13554
  class StartReplicationMessage < Struct.new(
13318
13555
  :replication_config_arn,
13319
13556
  :start_replication_type,
13557
+ :premigration_assessment_settings,
13320
13558
  :cdc_start_time,
13321
13559
  :cdc_start_position,
13322
13560
  :cdc_stop_position)
@@ -55,7 +55,7 @@ module Aws::DatabaseMigrationService
55
55
  autoload :EndpointProvider, 'aws-sdk-databasemigrationservice/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-databasemigrationservice/endpoints'
57
57
 
58
- GEM_VERSION = '1.114.0'
58
+ GEM_VERSION = '1.116.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -230,6 +230,20 @@ module Aws
230
230
  ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
231
231
  certificate_arn: ::String?
232
232
  }?,
233
+ ibm_db_2_luw_settings: {
234
+ server_name: ::String?,
235
+ port: ::Integer?,
236
+ database_name: ::String?,
237
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
238
+ certificate_arn: ::String?
239
+ }?,
240
+ ibm_db_2z_os_settings: {
241
+ server_name: ::String?,
242
+ port: ::Integer?,
243
+ database_name: ::String?,
244
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
245
+ certificate_arn: ::String?
246
+ }?,
233
247
  mongo_db_settings: {
234
248
  server_name: ::String?,
235
249
  port: ::Integer?,
@@ -1879,6 +1893,20 @@ module Aws
1879
1893
  ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1880
1894
  certificate_arn: ::String?
1881
1895
  }?,
1896
+ ibm_db_2_luw_settings: {
1897
+ server_name: ::String?,
1898
+ port: ::Integer?,
1899
+ database_name: ::String?,
1900
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1901
+ certificate_arn: ::String?
1902
+ }?,
1903
+ ibm_db_2z_os_settings: {
1904
+ server_name: ::String?,
1905
+ port: ::Integer?,
1906
+ database_name: ::String?,
1907
+ ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")?,
1908
+ certificate_arn: ::String?
1909
+ }?,
1882
1910
  mongo_db_settings: {
1883
1911
  server_name: ::String?,
1884
1912
  port: ::Integer?,
@@ -2586,6 +2614,7 @@ module Aws
2586
2614
  def start_replication: (
2587
2615
  replication_config_arn: ::String,
2588
2616
  start_replication_type: ::String,
2617
+ ?premigration_assessment_settings: ::String,
2589
2618
  ?cdc_start_time: ::Time,
2590
2619
  ?cdc_start_position: ::String,
2591
2620
  ?cdc_stop_position: ::String
data/sig/types.rbs CHANGED
@@ -445,6 +445,8 @@ module Aws::DatabaseMigrationService
445
445
  attr_accessor microsoft_sql_server_settings: Types::MicrosoftSqlServerDataProviderSettings
446
446
  attr_accessor doc_db_settings: Types::DocDbDataProviderSettings
447
447
  attr_accessor maria_db_settings: Types::MariaDbDataProviderSettings
448
+ attr_accessor ibm_db_2_luw_settings: Types::IbmDb2LuwDataProviderSettings
449
+ attr_accessor ibm_db_2z_os_settings: Types::IbmDb2zOsDataProviderSettings
448
450
  attr_accessor mongo_db_settings: Types::MongoDbDataProviderSettings
449
451
  attr_accessor unknown: untyped
450
452
  SENSITIVE: []
@@ -463,6 +465,10 @@ module Aws::DatabaseMigrationService
463
465
  end
464
466
  class MariaDbSettings < DataProviderSettings
465
467
  end
468
+ class IbmDb2LuwSettings < DataProviderSettings
469
+ end
470
+ class IbmDb2zOsSettings < DataProviderSettings
471
+ end
466
472
  class MongoDbSettings < DataProviderSettings
467
473
  end
468
474
  class Unknown < DataProviderSettings
@@ -1471,6 +1477,24 @@ module Aws::DatabaseMigrationService
1471
1477
  SENSITIVE: [:password]
1472
1478
  end
1473
1479
 
1480
+ class IbmDb2LuwDataProviderSettings
1481
+ attr_accessor server_name: ::String
1482
+ attr_accessor port: ::Integer
1483
+ attr_accessor database_name: ::String
1484
+ attr_accessor ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")
1485
+ attr_accessor certificate_arn: ::String
1486
+ SENSITIVE: []
1487
+ end
1488
+
1489
+ class IbmDb2zOsDataProviderSettings
1490
+ attr_accessor server_name: ::String
1491
+ attr_accessor port: ::Integer
1492
+ attr_accessor database_name: ::String
1493
+ attr_accessor ssl_mode: ("none" | "require" | "verify-ca" | "verify-full")
1494
+ attr_accessor certificate_arn: ::String
1495
+ SENSITIVE: []
1496
+ end
1497
+
1474
1498
  class ImportCertificateMessage
1475
1499
  attr_accessor certificate_identifier: ::String
1476
1500
  attr_accessor certificate_pem: ::String
@@ -2095,6 +2119,21 @@ module Aws::DatabaseMigrationService
2095
2119
  SENSITIVE: []
2096
2120
  end
2097
2121
 
2122
+ class PremigrationAssessmentStatus
2123
+ attr_accessor premigration_assessment_run_arn: ::String
2124
+ attr_accessor fail_on_assessment_failure: bool
2125
+ attr_accessor status: ::String
2126
+ attr_accessor premigration_assessment_run_creation_date: ::Time
2127
+ attr_accessor assessment_progress: Types::ReplicationTaskAssessmentRunProgress
2128
+ attr_accessor last_failure_message: ::String
2129
+ attr_accessor result_location_bucket: ::String
2130
+ attr_accessor result_location_folder: ::String
2131
+ attr_accessor result_encryption_mode: ::String
2132
+ attr_accessor result_kms_key_arn: ::String
2133
+ attr_accessor result_statistic: Types::ReplicationTaskAssessmentRunResultStatistic
2134
+ SENSITIVE: []
2135
+ end
2136
+
2098
2137
  class ProvisionData
2099
2138
  attr_accessor provision_state: ::String
2100
2139
  attr_accessor provisioned_capacity_units: ::Integer
@@ -2283,6 +2322,7 @@ module Aws::DatabaseMigrationService
2283
2322
  attr_accessor replication_type: ("full-load" | "cdc" | "full-load-and-cdc")
2284
2323
  attr_accessor status: ::String
2285
2324
  attr_accessor provision_data: Types::ProvisionData
2325
+ attr_accessor premigration_assessment_statuses: ::Array[Types::PremigrationAssessmentStatus]
2286
2326
  attr_accessor stop_reason: ::String
2287
2327
  attr_accessor failure_messages: ::Array[::String]
2288
2328
  attr_accessor replication_stats: Types::ReplicationStats
@@ -2721,6 +2761,7 @@ module Aws::DatabaseMigrationService
2721
2761
  class StartReplicationMessage
2722
2762
  attr_accessor replication_config_arn: ::String
2723
2763
  attr_accessor start_replication_type: ::String
2764
+ attr_accessor premigration_assessment_settings: ::String
2724
2765
  attr_accessor cdc_start_time: ::Time
2725
2766
  attr_accessor cdc_start_position: ::String
2726
2767
  attr_accessor cdc_stop_position: ::String
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.114.0
4
+ version: 1.116.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: 2025-02-06 00:00:00.000000000 Z
11
+ date: 2025-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core