aws-sdk-databasemigrationservice 1.115.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: 2a269306a634eebf3332475f3935f9d2beedfe4f63ed95702ae542fdddd0b35b
4
- data.tar.gz: 240fbbfdc2545a0eeddc52261c90d0f9a329f24de7129a96691b68d6c8613bef
3
+ metadata.gz: aa66239322538e297c5853638f8b587d201ab20064e36a78f563f829d18bd409
4
+ data.tar.gz: fad491494155145c0eaaa6b00856e2cee6185012f68628e725ad1457df55cff2
5
5
  SHA512:
6
- metadata.gz: 5198a1f21542b132266f05f0c1c75c8530bfc1dab2a319dd503d8c40bf17952cce292ff56c4752e9d581538b649de444a606fa5dffc00e785f6d96849b968ef1
7
- data.tar.gz: d254552601d14744224c5505f464cc8f2a2be173ddd41e13d703e4cae292ee9bae71c087c9f135f175176c7f868849c45336e959a7007e4279f8b29fb9a39022
6
+ metadata.gz: f99d1eda294df3680b0c6ecd970c97e483c7a201c930ecb5f6e05e90db5687ab40d33ad1e6d9df9b7cf9a4fcafe02325791a53b983c0c3860f4c230e40e8571d
7
+ data.tar.gz: 426b9b6898e86f29051311e31a67fc9939da30a18b9c5eb2f7f110d6cc4295c3f1642922e46d24ad5366af95889686aba9f8422251db4f217a6a280dfb233cb7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.115.0 (2025-02-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.115.0
1
+ 1.116.0
@@ -8331,6 +8331,23 @@ module Aws::DatabaseMigrationService
8331
8331
  # resp.replications[0].provision_data.is_new_provisioning_available #=> Boolean
8332
8332
  # resp.replications[0].provision_data.date_new_provisioning_data_available #=> Time
8333
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
8334
8351
  # resp.replications[0].stop_reason #=> String
8335
8352
  # resp.replications[0].failure_messages #=> Array
8336
8353
  # resp.replications[0].failure_messages[0] #=> String
@@ -11880,6 +11897,41 @@ module Aws::DatabaseMigrationService
11880
11897
  # Otherwise use `resume-processing`, to replicate the changes from the
11881
11898
  # last stop position.
11882
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
+ #
11883
11935
  # @option params [Time,DateTime,Date,Integer,String] :cdc_start_time
11884
11936
  # Indicates the start time for a change data capture (CDC) operation.
11885
11937
  # Use either `CdcStartTime` or `CdcStartPosition` to specify when you
@@ -11907,6 +11959,7 @@ module Aws::DatabaseMigrationService
11907
11959
  # resp = client.start_replication({
11908
11960
  # replication_config_arn: "String", # required
11909
11961
  # start_replication_type: "String", # required
11962
+ # premigration_assessment_settings: "String",
11910
11963
  # cdc_start_time: Time.now,
11911
11964
  # cdc_start_position: "String",
11912
11965
  # cdc_stop_position: "String",
@@ -11926,6 +11979,23 @@ module Aws::DatabaseMigrationService
11926
11979
  # resp.replication.provision_data.is_new_provisioning_available #=> Boolean
11927
11980
  # resp.replication.provision_data.date_new_provisioning_data_available #=> Time
11928
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
11929
11999
  # resp.replication.stop_reason #=> String
11930
12000
  # resp.replication.failure_messages #=> Array
11931
12001
  # resp.replication.failure_messages[0] #=> String
@@ -12422,6 +12492,23 @@ module Aws::DatabaseMigrationService
12422
12492
  # resp.replication.provision_data.is_new_provisioning_available #=> Boolean
12423
12493
  # resp.replication.provision_data.date_new_provisioning_data_available #=> Time
12424
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
12425
12512
  # resp.replication.stop_reason #=> String
12426
12513
  # resp.replication.failure_messages #=> Array
12427
12514
  # resp.replication.failure_messages[0] #=> String
@@ -12658,7 +12745,7 @@ module Aws::DatabaseMigrationService
12658
12745
  tracer: tracer
12659
12746
  )
12660
12747
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
12661
- context[:gem_version] = '1.115.0'
12748
+ context[:gem_version] = '1.116.0'
12662
12749
  Seahorse::Client::Request.new(handlers, context)
12663
12750
  end
12664
12751
 
@@ -345,6 +345,8 @@ module Aws::DatabaseMigrationService
345
345
  PluginNameValue = Shapes::StringShape.new(name: 'PluginNameValue')
346
346
  PostgreSQLSettings = Shapes::StructureShape.new(name: 'PostgreSQLSettings')
347
347
  PostgreSqlDataProviderSettings = Shapes::StructureShape.new(name: 'PostgreSqlDataProviderSettings')
348
+ PremigrationAssessmentStatus = Shapes::StructureShape.new(name: 'PremigrationAssessmentStatus')
349
+ PremigrationAssessmentStatusList = Shapes::ListShape.new(name: 'PremigrationAssessmentStatusList')
348
350
  ProvisionData = Shapes::StructureShape.new(name: 'ProvisionData')
349
351
  PublicIpAddressList = Shapes::ListShape.new(name: 'PublicIpAddressList')
350
352
  RdsConfiguration = Shapes::StructureShape.new(name: 'RdsConfiguration')
@@ -2165,6 +2167,21 @@ module Aws::DatabaseMigrationService
2165
2167
  PostgreSqlDataProviderSettings.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
2166
2168
  PostgreSqlDataProviderSettings.struct_class = Types::PostgreSqlDataProviderSettings
2167
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
+
2168
2185
  ProvisionData.add_member(:provision_state, Shapes::ShapeRef.new(shape: String, location_name: "ProvisionState"))
2169
2186
  ProvisionData.add_member(:provisioned_capacity_units, Shapes::ShapeRef.new(shape: Integer, location_name: "ProvisionedCapacityUnits"))
2170
2187
  ProvisionData.add_member(:date_provisioned, Shapes::ShapeRef.new(shape: TStamp, location_name: "DateProvisioned"))
@@ -2315,6 +2332,7 @@ module Aws::DatabaseMigrationService
2315
2332
  Replication.add_member(:replication_type, Shapes::ShapeRef.new(shape: MigrationTypeValue, location_name: "ReplicationType"))
2316
2333
  Replication.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
2317
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"))
2318
2336
  Replication.add_member(:stop_reason, Shapes::ShapeRef.new(shape: String, location_name: "StopReason"))
2319
2337
  Replication.add_member(:failure_messages, Shapes::ShapeRef.new(shape: StringList, location_name: "FailureMessages"))
2320
2338
  Replication.add_member(:replication_stats, Shapes::ShapeRef.new(shape: ReplicationStats, location_name: "ReplicationStats"))
@@ -2695,6 +2713,7 @@ module Aws::DatabaseMigrationService
2695
2713
 
2696
2714
  StartReplicationMessage.add_member(:replication_config_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationConfigArn"))
2697
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"))
2698
2717
  StartReplicationMessage.add_member(:cdc_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CdcStartTime"))
2699
2718
  StartReplicationMessage.add_member(:cdc_start_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStartPosition"))
2700
2719
  StartReplicationMessage.add_member(:cdc_stop_position, Shapes::ShapeRef.new(shape: String, location_name: "CdcStopPosition"))
@@ -9964,6 +9964,117 @@ module Aws::DatabaseMigrationService
9964
9964
  include Aws::Structure
9965
9965
  end
9966
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
+
9967
10078
  # Information about provisioning resources for an DMS serverless
9968
10079
  # replication.
9969
10080
  #
@@ -10871,6 +10982,11 @@ module Aws::DatabaseMigrationService
10871
10982
  # replication.
10872
10983
  # @return [Types::ProvisionData]
10873
10984
  #
10985
+ # @!attribute [rw] premigration_assessment_statuses
10986
+ # The status output of premigration assessment in
10987
+ # describe-replications.
10988
+ # @return [Array<Types::PremigrationAssessmentStatus>]
10989
+ #
10874
10990
  # @!attribute [rw] stop_reason
10875
10991
  # The reason the replication task was stopped. This response parameter
10876
10992
  # can return one of the following values:
@@ -10975,6 +11091,7 @@ module Aws::DatabaseMigrationService
10975
11091
  :replication_type,
10976
11092
  :status,
10977
11093
  :provision_data,
11094
+ :premigration_assessment_statuses,
10978
11095
  :stop_reason,
10979
11096
  :failure_messages,
10980
11097
  :replication_stats,
@@ -13374,6 +13491,43 @@ module Aws::DatabaseMigrationService
13374
13491
  # changes from the last stop position.
13375
13492
  # @return [String]
13376
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
+ #
13377
13531
  # @!attribute [rw] cdc_start_time
13378
13532
  # Indicates the start time for a change data capture (CDC) operation.
13379
13533
  # Use either `CdcStartTime` or `CdcStartPosition` to specify when you
@@ -13400,6 +13554,7 @@ module Aws::DatabaseMigrationService
13400
13554
  class StartReplicationMessage < Struct.new(
13401
13555
  :replication_config_arn,
13402
13556
  :start_replication_type,
13557
+ :premigration_assessment_settings,
13403
13558
  :cdc_start_time,
13404
13559
  :cdc_start_position,
13405
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.115.0'
58
+ GEM_VERSION = '1.116.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -2614,6 +2614,7 @@ module Aws
2614
2614
  def start_replication: (
2615
2615
  replication_config_arn: ::String,
2616
2616
  start_replication_type: ::String,
2617
+ ?premigration_assessment_settings: ::String,
2617
2618
  ?cdc_start_time: ::Time,
2618
2619
  ?cdc_start_position: ::String,
2619
2620
  ?cdc_stop_position: ::String
data/sig/types.rbs CHANGED
@@ -2119,6 +2119,21 @@ module Aws::DatabaseMigrationService
2119
2119
  SENSITIVE: []
2120
2120
  end
2121
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
+
2122
2137
  class ProvisionData
2123
2138
  attr_accessor provision_state: ::String
2124
2139
  attr_accessor provisioned_capacity_units: ::Integer
@@ -2307,6 +2322,7 @@ module Aws::DatabaseMigrationService
2307
2322
  attr_accessor replication_type: ("full-load" | "cdc" | "full-load-and-cdc")
2308
2323
  attr_accessor status: ::String
2309
2324
  attr_accessor provision_data: Types::ProvisionData
2325
+ attr_accessor premigration_assessment_statuses: ::Array[Types::PremigrationAssessmentStatus]
2310
2326
  attr_accessor stop_reason: ::String
2311
2327
  attr_accessor failure_messages: ::Array[::String]
2312
2328
  attr_accessor replication_stats: Types::ReplicationStats
@@ -2745,6 +2761,7 @@ module Aws::DatabaseMigrationService
2745
2761
  class StartReplicationMessage
2746
2762
  attr_accessor replication_config_arn: ::String
2747
2763
  attr_accessor start_replication_type: ::String
2764
+ attr_accessor premigration_assessment_settings: ::String
2748
2765
  attr_accessor cdc_start_time: ::Time
2749
2766
  attr_accessor cdc_start_position: ::String
2750
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.115.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-10 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