aws-sdk-databasemigrationservice 1.112.0 → 1.113.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: 7053050e69118a95ba3a94549a0ebd14a1bfd04c2fa65ab29fc86282f0461b51
4
- data.tar.gz: e4f770e1481a6ad2ba7ddb5a349d6008f5a7a6fc95f5330eec829e8a7822cbd9
3
+ metadata.gz: 854d093115eeaafc8986b22532e6e48e92ce2fdc628775c288e8fb6fac1b1064
4
+ data.tar.gz: f09d70dd579da0ac8064aed73edd13b0be69acb63b5469c5a8b8dc2da95e4508
5
5
  SHA512:
6
- metadata.gz: cf4f640d030b9351d3ad71edf10c36739bd1c34af5462ef8bff61aa59495a98e738fd65b12c98d50193d0e91d20b432ebb77eb1e85f995afd5105bae0cdb573c
7
- data.tar.gz: 5ebba030b43059ef52662bd3ed6c8781b82faeb19d69623d3186ec9bd744ef48a5180a962af77d214b3992be00e081128198199dc6fee33ddad69b08a4f8bb75
6
+ metadata.gz: 84687eecaed3a75142bf12d50fd579db1ed98224b279f698eb2a0793401bc47383fddc24c576e1e0de67c71d1ceda6d5c9efecf38e49a91a00456bb21b50514a
7
+ data.tar.gz: 62a4747a62a80640b7ddc7a014236f6631abfd17eb3bc1cb0fe0b25429e4b24d67844e09cc21bd96ee16ebb9268b8629ec934e444580e3071505129975320771
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.113.0 (2025-02-04)
5
+ ------------------
6
+
7
+ * Feature - Introduces TargetDataSettings with the TablePreparationMode option available for data migrations.
8
+
4
9
  1.112.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.112.0
1
+ 1.113.0
@@ -734,6 +734,9 @@ module Aws::DatabaseMigrationService
734
734
  # @option params [Array<Types::SourceDataSetting>] :source_data_settings
735
735
  # Specifies information about the source data provider.
736
736
  #
737
+ # @option params [Array<Types::TargetDataSetting>] :target_data_settings
738
+ # Specifies information about the target data provider.
739
+ #
737
740
  # @option params [Integer] :number_of_jobs
738
741
  # The number of parallel jobs that trigger parallel threads to unload
739
742
  # the tables from the source, and then load them to the target.
@@ -765,6 +768,11 @@ module Aws::DatabaseMigrationService
765
768
  # slot_name: "String",
766
769
  # },
767
770
  # ],
771
+ # target_data_settings: [
772
+ # {
773
+ # table_preparation_mode: "do-nothing", # accepts do-nothing, truncate, drop-tables-on-target
774
+ # },
775
+ # ],
768
776
  # number_of_jobs: 1,
769
777
  # tags: [
770
778
  # {
@@ -794,6 +802,8 @@ module Aws::DatabaseMigrationService
794
802
  # resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
795
803
  # resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
796
804
  # resp.data_migration.source_data_settings[0].slot_name #=> String
805
+ # resp.data_migration.target_data_settings #=> Array
806
+ # resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
797
807
  # resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
798
808
  # resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
799
809
  # resp.data_migration.data_migration_statistics.tables_loading #=> Integer
@@ -3415,6 +3425,8 @@ module Aws::DatabaseMigrationService
3415
3425
  # resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
3416
3426
  # resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
3417
3427
  # resp.data_migration.source_data_settings[0].slot_name #=> String
3428
+ # resp.data_migration.target_data_settings #=> Array
3429
+ # resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
3418
3430
  # resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
3419
3431
  # resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
3420
3432
  # resp.data_migration.data_migration_statistics.tables_loading #=> Integer
@@ -4965,6 +4977,8 @@ module Aws::DatabaseMigrationService
4965
4977
  # resp.data_migrations[0].source_data_settings[0].cdc_start_time #=> Time
4966
4978
  # resp.data_migrations[0].source_data_settings[0].cdc_stop_time #=> Time
4967
4979
  # resp.data_migrations[0].source_data_settings[0].slot_name #=> String
4980
+ # resp.data_migrations[0].target_data_settings #=> Array
4981
+ # resp.data_migrations[0].target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
4968
4982
  # resp.data_migrations[0].data_migration_statistics.tables_loaded #=> Integer
4969
4983
  # resp.data_migrations[0].data_migration_statistics.elapsed_time_millis #=> Integer
4970
4984
  # resp.data_migrations[0].data_migration_statistics.tables_loading #=> Integer
@@ -8769,6 +8783,10 @@ module Aws::DatabaseMigrationService
8769
8783
  # The new information about the source data provider for the data
8770
8784
  # migration.
8771
8785
  #
8786
+ # @option params [Array<Types::TargetDataSetting>] :target_data_settings
8787
+ # The new information about the target data provider for the data
8788
+ # migration.
8789
+ #
8772
8790
  # @option params [Integer] :number_of_jobs
8773
8791
  # The number of parallel jobs that trigger parallel threads to unload
8774
8792
  # the tables from the source, and then load them to the target.
@@ -8797,6 +8815,11 @@ module Aws::DatabaseMigrationService
8797
8815
  # slot_name: "String",
8798
8816
  # },
8799
8817
  # ],
8818
+ # target_data_settings: [
8819
+ # {
8820
+ # table_preparation_mode: "do-nothing", # accepts do-nothing, truncate, drop-tables-on-target
8821
+ # },
8822
+ # ],
8800
8823
  # number_of_jobs: 1,
8801
8824
  # selection_rules: "SecretString",
8802
8825
  # })
@@ -8819,6 +8842,8 @@ module Aws::DatabaseMigrationService
8819
8842
  # resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
8820
8843
  # resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
8821
8844
  # resp.data_migration.source_data_settings[0].slot_name #=> String
8845
+ # resp.data_migration.target_data_settings #=> Array
8846
+ # resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
8822
8847
  # resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
8823
8848
  # resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
8824
8849
  # resp.data_migration.data_migration_statistics.tables_loading #=> Integer
@@ -11362,6 +11387,8 @@ module Aws::DatabaseMigrationService
11362
11387
  # resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
11363
11388
  # resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
11364
11389
  # resp.data_migration.source_data_settings[0].slot_name #=> String
11390
+ # resp.data_migration.target_data_settings #=> Array
11391
+ # resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
11365
11392
  # resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
11366
11393
  # resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
11367
11394
  # resp.data_migration.data_migration_statistics.tables_loading #=> Integer
@@ -12267,6 +12294,8 @@ module Aws::DatabaseMigrationService
12267
12294
  # resp.data_migration.source_data_settings[0].cdc_start_time #=> Time
12268
12295
  # resp.data_migration.source_data_settings[0].cdc_stop_time #=> Time
12269
12296
  # resp.data_migration.source_data_settings[0].slot_name #=> String
12297
+ # resp.data_migration.target_data_settings #=> Array
12298
+ # resp.data_migration.target_data_settings[0].table_preparation_mode #=> String, one of "do-nothing", "truncate", "drop-tables-on-target"
12270
12299
  # resp.data_migration.data_migration_statistics.tables_loaded #=> Integer
12271
12300
  # resp.data_migration.data_migration_statistics.elapsed_time_millis #=> Integer
12272
12301
  # resp.data_migration.data_migration_statistics.tables_loading #=> Integer
@@ -12560,7 +12589,7 @@ module Aws::DatabaseMigrationService
12560
12589
  tracer: tracer
12561
12590
  )
12562
12591
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
12563
- context[:gem_version] = '1.112.0'
12592
+ context[:gem_version] = '1.113.0'
12564
12593
  Seahorse::Client::Request.new(handlers, context)
12565
12594
  end
12566
12595
 
@@ -471,11 +471,14 @@ module Aws::DatabaseMigrationService
471
471
  SybaseSettings = Shapes::StructureShape.new(name: 'SybaseSettings')
472
472
  TStamp = Shapes::TimestampShape.new(name: 'TStamp')
473
473
  TableListToReload = Shapes::ListShape.new(name: 'TableListToReload')
474
+ TablePreparationMode = Shapes::StringShape.new(name: 'TablePreparationMode')
474
475
  TableStatistics = Shapes::StructureShape.new(name: 'TableStatistics')
475
476
  TableStatisticsList = Shapes::ListShape.new(name: 'TableStatisticsList')
476
477
  TableToReload = Shapes::StructureShape.new(name: 'TableToReload')
477
478
  Tag = Shapes::StructureShape.new(name: 'Tag')
478
479
  TagList = Shapes::ListShape.new(name: 'TagList')
480
+ TargetDataSetting = Shapes::StructureShape.new(name: 'TargetDataSetting')
481
+ TargetDataSettings = Shapes::ListShape.new(name: 'TargetDataSettings')
479
482
  TargetDbType = Shapes::StringShape.new(name: 'TargetDbType')
480
483
  TestConnectionMessage = Shapes::StructureShape.new(name: 'TestConnectionMessage')
481
484
  TestConnectionResponse = Shapes::StructureShape.new(name: 'TestConnectionResponse')
@@ -616,6 +619,7 @@ module Aws::DatabaseMigrationService
616
619
  CreateDataMigrationMessage.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceAccessRoleArn"))
617
620
  CreateDataMigrationMessage.add_member(:enable_cloudwatch_logs, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCloudwatchLogs"))
618
621
  CreateDataMigrationMessage.add_member(:source_data_settings, Shapes::ShapeRef.new(shape: SourceDataSettings, location_name: "SourceDataSettings"))
622
+ CreateDataMigrationMessage.add_member(:target_data_settings, Shapes::ShapeRef.new(shape: TargetDataSettings, location_name: "TargetDataSettings"))
619
623
  CreateDataMigrationMessage.add_member(:number_of_jobs, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfJobs"))
620
624
  CreateDataMigrationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
621
625
  CreateDataMigrationMessage.add_member(:selection_rules, Shapes::ShapeRef.new(shape: SecretString, location_name: "SelectionRules"))
@@ -800,6 +804,7 @@ module Aws::DatabaseMigrationService
800
804
  DataMigration.add_member(:data_migration_type, Shapes::ShapeRef.new(shape: MigrationTypeValue, location_name: "DataMigrationType"))
801
805
  DataMigration.add_member(:data_migration_settings, Shapes::ShapeRef.new(shape: DataMigrationSettings, location_name: "DataMigrationSettings"))
802
806
  DataMigration.add_member(:source_data_settings, Shapes::ShapeRef.new(shape: SourceDataSettings, location_name: "SourceDataSettings"))
807
+ DataMigration.add_member(:target_data_settings, Shapes::ShapeRef.new(shape: TargetDataSettings, location_name: "TargetDataSettings"))
803
808
  DataMigration.add_member(:data_migration_statistics, Shapes::ShapeRef.new(shape: DataMigrationStatistics, location_name: "DataMigrationStatistics"))
804
809
  DataMigration.add_member(:data_migration_status, Shapes::ShapeRef.new(shape: String, location_name: "DataMigrationStatus"))
805
810
  DataMigration.add_member(:public_ip_addresses, Shapes::ShapeRef.new(shape: PublicIpAddressList, location_name: "PublicIpAddresses"))
@@ -1807,6 +1812,7 @@ module Aws::DatabaseMigrationService
1807
1812
  ModifyDataMigrationMessage.add_member(:service_access_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ServiceAccessRoleArn"))
1808
1813
  ModifyDataMigrationMessage.add_member(:data_migration_type, Shapes::ShapeRef.new(shape: MigrationTypeValue, location_name: "DataMigrationType"))
1809
1814
  ModifyDataMigrationMessage.add_member(:source_data_settings, Shapes::ShapeRef.new(shape: SourceDataSettings, location_name: "SourceDataSettings"))
1815
+ ModifyDataMigrationMessage.add_member(:target_data_settings, Shapes::ShapeRef.new(shape: TargetDataSettings, location_name: "TargetDataSettings"))
1810
1816
  ModifyDataMigrationMessage.add_member(:number_of_jobs, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfJobs"))
1811
1817
  ModifyDataMigrationMessage.add_member(:selection_rules, Shapes::ShapeRef.new(shape: SecretString, location_name: "SelectionRules"))
1812
1818
  ModifyDataMigrationMessage.struct_class = Types::ModifyDataMigrationMessage
@@ -2801,6 +2807,11 @@ module Aws::DatabaseMigrationService
2801
2807
 
2802
2808
  TagList.member = Shapes::ShapeRef.new(shape: Tag)
2803
2809
 
2810
+ TargetDataSetting.add_member(:table_preparation_mode, Shapes::ShapeRef.new(shape: TablePreparationMode, location_name: "TablePreparationMode"))
2811
+ TargetDataSetting.struct_class = Types::TargetDataSetting
2812
+
2813
+ TargetDataSettings.member = Shapes::ShapeRef.new(shape: TargetDataSetting)
2814
+
2804
2815
  TestConnectionMessage.add_member(:replication_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReplicationInstanceArn"))
2805
2816
  TestConnectionMessage.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EndpointArn"))
2806
2817
  TestConnectionMessage.struct_class = Types::TestConnectionMessage
@@ -623,6 +623,10 @@ module Aws::DatabaseMigrationService
623
623
  # Specifies information about the source data provider.
624
624
  # @return [Array<Types::SourceDataSetting>]
625
625
  #
626
+ # @!attribute [rw] target_data_settings
627
+ # Specifies information about the target data provider.
628
+ # @return [Array<Types::TargetDataSetting>]
629
+ #
626
630
  # @!attribute [rw] number_of_jobs
627
631
  # The number of parallel jobs that trigger parallel threads to unload
628
632
  # the tables from the source, and then load them to the target.
@@ -646,6 +650,7 @@ module Aws::DatabaseMigrationService
646
650
  :service_access_role_arn,
647
651
  :enable_cloudwatch_logs,
648
652
  :source_data_settings,
653
+ :target_data_settings,
649
654
  :number_of_jobs,
650
655
  :tags,
651
656
  :selection_rules)
@@ -1922,6 +1927,11 @@ module Aws::DatabaseMigrationService
1922
1927
  # provider.
1923
1928
  # @return [Array<Types::SourceDataSetting>]
1924
1929
  #
1930
+ # @!attribute [rw] target_data_settings
1931
+ # Specifies information about the data migration's target data
1932
+ # provider.
1933
+ # @return [Array<Types::TargetDataSetting>]
1934
+ #
1925
1935
  # @!attribute [rw] data_migration_statistics
1926
1936
  # Provides information about the data migration's run, including
1927
1937
  # start and stop time, latency, and data migration progress.
@@ -1961,6 +1971,7 @@ module Aws::DatabaseMigrationService
1961
1971
  :data_migration_type,
1962
1972
  :data_migration_settings,
1963
1973
  :source_data_settings,
1974
+ :target_data_settings,
1964
1975
  :data_migration_statistics,
1965
1976
  :data_migration_status,
1966
1977
  :public_ip_addresses,
@@ -6801,22 +6812,23 @@ module Aws::DatabaseMigrationService
6801
6812
  include Aws::Structure
6802
6813
  end
6803
6814
 
6804
- # Specifies using Kerberos authentication settings for use with DMS.
6815
+ # Specifies the settings required for kerberos authentication when
6816
+ # creating the replication instance.
6805
6817
  #
6806
6818
  # @!attribute [rw] key_cache_secret_id
6807
- # Specifies the secret ID of the key cache for the replication
6808
- # instance.
6819
+ # Specifies the ID of the secret that stores the key cache file
6820
+ # required for kerberos authentication.
6809
6821
  # @return [String]
6810
6822
  #
6811
6823
  # @!attribute [rw] key_cache_secret_iam_arn
6812
6824
  # Specifies the Amazon Resource Name (ARN) of the IAM role that grants
6813
6825
  # Amazon Web Services DMS access to the secret containing key cache
6814
- # file for the replication instance.
6826
+ # file for the kerberos authentication.
6815
6827
  # @return [String]
6816
6828
  #
6817
6829
  # @!attribute [rw] krb_5_file_contents
6818
- # Specifies the ID of the secret that stores the key cache file
6819
- # required for kerberos authentication of the replication instance.
6830
+ # Specifies the contents of krb5 configuration file required for
6831
+ # kerberos authentication.
6820
6832
  # @return [String]
6821
6833
  #
6822
6834
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KerberosAuthenticationSettings AWS API Documentation
@@ -7181,7 +7193,8 @@ module Aws::DatabaseMigrationService
7181
7193
  # @return [Boolean]
7182
7194
  #
7183
7195
  # @!attribute [rw] authentication_method
7184
- # Specifies using Kerberos authentication with Microsoft SQL Server.
7196
+ # Specifies the authentication method to be used with Microsoft SQL
7197
+ # Server.
7185
7198
  # @return [String]
7186
7199
  #
7187
7200
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
@@ -7368,6 +7381,11 @@ module Aws::DatabaseMigrationService
7368
7381
  # migration.
7369
7382
  # @return [Array<Types::SourceDataSetting>]
7370
7383
  #
7384
+ # @!attribute [rw] target_data_settings
7385
+ # The new information about the target data provider for the data
7386
+ # migration.
7387
+ # @return [Array<Types::TargetDataSetting>]
7388
+ #
7371
7389
  # @!attribute [rw] number_of_jobs
7372
7390
  # The number of parallel jobs that trigger parallel threads to unload
7373
7391
  # the tables from the source, and then load them to the target.
@@ -7387,6 +7405,7 @@ module Aws::DatabaseMigrationService
7387
7405
  :service_access_role_arn,
7388
7406
  :data_migration_type,
7389
7407
  :source_data_settings,
7408
+ :target_data_settings,
7390
7409
  :number_of_jobs,
7391
7410
  :selection_rules)
7392
7411
  SENSITIVE = [:selection_rules]
@@ -9387,7 +9406,7 @@ module Aws::DatabaseMigrationService
9387
9406
  # @return [Integer]
9388
9407
  #
9389
9408
  # @!attribute [rw] authentication_method
9390
- # Specifies using Kerberos authentication with Oracle.
9409
+ # Specifies the authentication method to be used with Oracle.
9391
9410
  # @return [String]
9392
9411
  #
9393
9412
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
@@ -14018,6 +14037,23 @@ module Aws::DatabaseMigrationService
14018
14037
  include Aws::Structure
14019
14038
  end
14020
14039
 
14040
+ # Defines settings for a target data provider for a data migration.
14041
+ #
14042
+ # @!attribute [rw] table_preparation_mode
14043
+ # This setting determines how DMS handles the target tables before
14044
+ # starting a data migration, either by leaving them untouched,
14045
+ # dropping and recreating them, or truncating the existing data in the
14046
+ # target tables.
14047
+ # @return [String]
14048
+ #
14049
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/TargetDataSetting AWS API Documentation
14050
+ #
14051
+ class TargetDataSetting < Struct.new(
14052
+ :table_preparation_mode)
14053
+ SENSITIVE = []
14054
+ include Aws::Structure
14055
+ end
14056
+
14021
14057
  # @!attribute [rw] replication_instance_arn
14022
14058
  # The Amazon Resource Name (ARN) of the replication instance.
14023
14059
  # @return [String]
@@ -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.112.0'
58
+ GEM_VERSION = '1.113.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -153,6 +153,11 @@ module Aws
153
153
  slot_name: ::String?
154
154
  },
155
155
  ],
156
+ ?target_data_settings: Array[
157
+ {
158
+ table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")?
159
+ },
160
+ ],
156
161
  ?number_of_jobs: ::Integer,
157
162
  ?tags: Array[
158
163
  {
@@ -1802,6 +1807,11 @@ module Aws
1802
1807
  slot_name: ::String?
1803
1808
  },
1804
1809
  ],
1810
+ ?target_data_settings: Array[
1811
+ {
1812
+ table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")?
1813
+ },
1814
+ ],
1805
1815
  ?number_of_jobs: ::Integer,
1806
1816
  ?selection_rules: ::String
1807
1817
  ) -> _ModifyDataMigrationResponseSuccess
data/sig/types.rbs CHANGED
@@ -153,6 +153,7 @@ module Aws::DatabaseMigrationService
153
153
  attr_accessor service_access_role_arn: ::String
154
154
  attr_accessor enable_cloudwatch_logs: bool
155
155
  attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
156
+ attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
156
157
  attr_accessor number_of_jobs: ::Integer
157
158
  attr_accessor tags: ::Array[Types::Tag]
158
159
  attr_accessor selection_rules: ::String
@@ -381,6 +382,7 @@ module Aws::DatabaseMigrationService
381
382
  attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
382
383
  attr_accessor data_migration_settings: Types::DataMigrationSettings
383
384
  attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
385
+ attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
384
386
  attr_accessor data_migration_statistics: Types::DataMigrationStatistics
385
387
  attr_accessor data_migration_status: ::String
386
388
  attr_accessor public_ip_addresses: ::Array[::String]
@@ -1701,6 +1703,7 @@ module Aws::DatabaseMigrationService
1701
1703
  attr_accessor service_access_role_arn: ::String
1702
1704
  attr_accessor data_migration_type: ("full-load" | "cdc" | "full-load-and-cdc")
1703
1705
  attr_accessor source_data_settings: ::Array[Types::SourceDataSetting]
1706
+ attr_accessor target_data_settings: ::Array[Types::TargetDataSetting]
1704
1707
  attr_accessor number_of_jobs: ::Integer
1705
1708
  attr_accessor selection_rules: ::String
1706
1709
  SENSITIVE: [:selection_rules]
@@ -2879,6 +2882,11 @@ module Aws::DatabaseMigrationService
2879
2882
  SENSITIVE: []
2880
2883
  end
2881
2884
 
2885
+ class TargetDataSetting
2886
+ attr_accessor table_preparation_mode: ("do-nothing" | "truncate" | "drop-tables-on-target")
2887
+ SENSITIVE: []
2888
+ end
2889
+
2882
2890
  class TestConnectionMessage
2883
2891
  attr_accessor replication_instance_arn: ::String
2884
2892
  attr_accessor endpoint_arn: ::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.112.0
4
+ version: 1.113.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-01-15 00:00:00.000000000 Z
11
+ date: 2025-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core