aws-sdk-databasemigrationservice 1.105.0 → 1.107.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.
@@ -78,6 +78,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
78
78
  Aws::DatabaseMigrationService::Endpoints::BatchStartRecommendations.build(context)
79
79
  when :cancel_replication_task_assessment_run
80
80
  Aws::DatabaseMigrationService::Endpoints::CancelReplicationTaskAssessmentRun.build(context)
81
+ when :create_data_migration
82
+ Aws::DatabaseMigrationService::Endpoints::CreateDataMigration.build(context)
81
83
  when :create_data_provider
82
84
  Aws::DatabaseMigrationService::Endpoints::CreateDataProvider.build(context)
83
85
  when :create_endpoint
@@ -102,6 +104,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
102
104
  Aws::DatabaseMigrationService::Endpoints::DeleteCertificate.build(context)
103
105
  when :delete_connection
104
106
  Aws::DatabaseMigrationService::Endpoints::DeleteConnection.build(context)
107
+ when :delete_data_migration
108
+ Aws::DatabaseMigrationService::Endpoints::DeleteDataMigration.build(context)
105
109
  when :delete_data_provider
106
110
  Aws::DatabaseMigrationService::Endpoints::DeleteDataProvider.build(context)
107
111
  when :delete_endpoint
@@ -136,6 +140,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
136
140
  Aws::DatabaseMigrationService::Endpoints::DescribeConnections.build(context)
137
141
  when :describe_conversion_configuration
138
142
  Aws::DatabaseMigrationService::Endpoints::DescribeConversionConfiguration.build(context)
143
+ when :describe_data_migrations
144
+ Aws::DatabaseMigrationService::Endpoints::DescribeDataMigrations.build(context)
139
145
  when :describe_data_providers
140
146
  Aws::DatabaseMigrationService::Endpoints::DescribeDataProviders.build(context)
141
147
  when :describe_endpoint_settings
@@ -220,6 +226,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
220
226
  Aws::DatabaseMigrationService::Endpoints::ListTagsForResource.build(context)
221
227
  when :modify_conversion_configuration
222
228
  Aws::DatabaseMigrationService::Endpoints::ModifyConversionConfiguration.build(context)
229
+ when :modify_data_migration
230
+ Aws::DatabaseMigrationService::Endpoints::ModifyDataMigration.build(context)
223
231
  when :modify_data_provider
224
232
  Aws::DatabaseMigrationService::Endpoints::ModifyDataProvider.build(context)
225
233
  when :modify_endpoint
@@ -252,6 +260,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
252
260
  Aws::DatabaseMigrationService::Endpoints::RemoveTagsFromResource.build(context)
253
261
  when :run_fleet_advisor_lsa_analysis
254
262
  Aws::DatabaseMigrationService::Endpoints::RunFleetAdvisorLsaAnalysis.build(context)
263
+ when :start_data_migration
264
+ Aws::DatabaseMigrationService::Endpoints::StartDataMigration.build(context)
255
265
  when :start_extension_pack_association
256
266
  Aws::DatabaseMigrationService::Endpoints::StartExtensionPackAssociation.build(context)
257
267
  when :start_metadata_model_assessment
@@ -274,6 +284,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
274
284
  Aws::DatabaseMigrationService::Endpoints::StartReplicationTaskAssessment.build(context)
275
285
  when :start_replication_task_assessment_run
276
286
  Aws::DatabaseMigrationService::Endpoints::StartReplicationTaskAssessmentRun.build(context)
287
+ when :stop_data_migration
288
+ Aws::DatabaseMigrationService::Endpoints::StopDataMigration.build(context)
277
289
  when :stop_replication
278
290
  Aws::DatabaseMigrationService::Endpoints::StopReplication.build(context)
279
291
  when :stop_replication_task
@@ -484,12 +484,10 @@ module Aws::DatabaseMigrationService
484
484
  # single DCU is 2GB of RAM, with 1 DCU as the minimum value allowed.
485
485
  # The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128,
486
486
  # 192, 256, and 384. So, the minimum DCU value that you can specify
487
- # for DMS Serverless is 1. You don't have to specify a value for the
488
- # `MinCapacityUnits` parameter. If you don't set this value, DMS
489
- # scans the current activity of available source tables to identify an
490
- # optimum setting for this parameter. If there is no current source
491
- # activity or DMS can't otherwise identify a more appropriate value,
492
- # it sets this parameter to the minimum DCU value allowed, 1.
487
+ # for DMS Serverless is 1. If you don't set this value, DMS sets this
488
+ # parameter to the minimum DCU value allowed, 1. If there is no
489
+ # current source activity, DMS scales down your replication until it
490
+ # reaches the value specified in `MinCapacityUnits`.
493
491
  # @return [Integer]
494
492
  #
495
493
  # @!attribute [rw] multi_az
@@ -591,6 +589,82 @@ module Aws::DatabaseMigrationService
591
589
  include Aws::Structure
592
590
  end
593
591
 
592
+ # @!attribute [rw] data_migration_name
593
+ # A user-friendly name for the data migration. Data migration names
594
+ # have the following constraints:
595
+ #
596
+ # * Must begin with a letter, and can only contain ASCII letters,
597
+ # digits, and hyphens.
598
+ #
599
+ # * Can't end with a hyphen or contain two consecutive hyphens.
600
+ #
601
+ # * Length must be from 1 to 255 characters.
602
+ # @return [String]
603
+ #
604
+ # @!attribute [rw] migration_project_identifier
605
+ # An identifier for the migration project.
606
+ # @return [String]
607
+ #
608
+ # @!attribute [rw] data_migration_type
609
+ # Specifies if the data migration is full-load only, change data
610
+ # capture (CDC) only, or full-load and CDC.
611
+ # @return [String]
612
+ #
613
+ # @!attribute [rw] service_access_role_arn
614
+ # The Amazon Resource Name (ARN) for the service access role that you
615
+ # want to use to create the data migration.
616
+ # @return [String]
617
+ #
618
+ # @!attribute [rw] enable_cloudwatch_logs
619
+ # Specifies whether to enable CloudWatch logs for the data migration.
620
+ # @return [Boolean]
621
+ #
622
+ # @!attribute [rw] source_data_settings
623
+ # Specifies information about the source data provider.
624
+ # @return [Array<Types::SourceDataSetting>]
625
+ #
626
+ # @!attribute [rw] number_of_jobs
627
+ # The number of parallel jobs that trigger parallel threads to unload
628
+ # the tables from the source, and then load them to the target.
629
+ # @return [Integer]
630
+ #
631
+ # @!attribute [rw] tags
632
+ # One or more tags to be assigned to the data migration.
633
+ # @return [Array<Types::Tag>]
634
+ #
635
+ # @!attribute [rw] selection_rules
636
+ # An optional JSON string specifying what tables, views, and schemas
637
+ # to include or exclude from the migration.
638
+ # @return [String]
639
+ #
640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateDataMigrationMessage AWS API Documentation
641
+ #
642
+ class CreateDataMigrationMessage < Struct.new(
643
+ :data_migration_name,
644
+ :migration_project_identifier,
645
+ :data_migration_type,
646
+ :service_access_role_arn,
647
+ :enable_cloudwatch_logs,
648
+ :source_data_settings,
649
+ :number_of_jobs,
650
+ :tags,
651
+ :selection_rules)
652
+ SENSITIVE = [:selection_rules]
653
+ include Aws::Structure
654
+ end
655
+
656
+ # @!attribute [rw] data_migration
657
+ # Information about the created data migration.
658
+ # @return [Types::DataMigration]
659
+ #
660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateDataMigrationResponse AWS API Documentation
661
+ #
662
+ class CreateDataMigrationResponse < Struct.new(
663
+ :data_migration)
664
+ SENSITIVE = []
665
+ include Aws::Structure
666
+ end
667
+
594
668
  # @!attribute [rw] data_provider_name
595
669
  # A user-friendly name for the data provider.
596
670
  # @return [String]
@@ -655,8 +729,10 @@ module Aws::DatabaseMigrationService
655
729
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
656
730
  # `"redshift"`, `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`,
657
731
  # `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
658
- # `"elasticsearch"`, `"docdb"`, `"sqlserver"`, `"neptune"`, and
659
- # `"babelfish"`.
732
+ # `"elasticsearch"`, `"docdb"`, `"sqlserver"`, `"neptune"`,
733
+ # `"babelfish"`, `redshift-serverless`, `aurora-serverless`,
734
+ # `aurora-postgresql-serverless`, `gcp-mysql`,
735
+ # `azure-sql-managed-instance`, `redis`, `dms-transfer`.
660
736
  # @return [String]
661
737
  #
662
738
  # @!attribute [rw] username
@@ -1591,7 +1667,7 @@ module Aws::DatabaseMigrationService
1591
1667
  # lowercase string.
1592
1668
  #
1593
1669
  # Constraints: Must contain no more than 255 alphanumeric characters,
1594
- # periods, spaces, underscores, or hyphens. Must not be "default".
1670
+ # periods, underscores, or hyphens. Must not be "default".
1595
1671
  #
1596
1672
  # Example: `mySubnetgroup`
1597
1673
  # @return [String]
@@ -1792,6 +1868,180 @@ module Aws::DatabaseMigrationService
1792
1868
  include Aws::Structure
1793
1869
  end
1794
1870
 
1871
+ # This object provides information about a DMS data migration.
1872
+ #
1873
+ # @!attribute [rw] data_migration_name
1874
+ # The user-friendly name for the data migration.
1875
+ # @return [String]
1876
+ #
1877
+ # @!attribute [rw] data_migration_arn
1878
+ # The Amazon Resource Name (ARN) that identifies this replication.
1879
+ # @return [String]
1880
+ #
1881
+ # @!attribute [rw] data_migration_create_time
1882
+ # The UTC time when DMS created the data migration.
1883
+ # @return [Time]
1884
+ #
1885
+ # @!attribute [rw] data_migration_start_time
1886
+ # The UTC time when DMS started the data migration.
1887
+ # @return [Time]
1888
+ #
1889
+ # @!attribute [rw] data_migration_end_time
1890
+ # The UTC time when data migration ended.
1891
+ # @return [Time]
1892
+ #
1893
+ # @!attribute [rw] service_access_role_arn
1894
+ # The IAM role that the data migration uses to access Amazon Web
1895
+ # Services resources.
1896
+ # @return [String]
1897
+ #
1898
+ # @!attribute [rw] migration_project_arn
1899
+ # The Amazon Resource Name (ARN) of the data migration's associated
1900
+ # migration project.
1901
+ # @return [String]
1902
+ #
1903
+ # @!attribute [rw] data_migration_type
1904
+ # Specifies whether the data migration is full-load only, change data
1905
+ # capture (CDC) only, or full-load and CDC.
1906
+ # @return [String]
1907
+ #
1908
+ # @!attribute [rw] data_migration_settings
1909
+ # Specifies CloudWatch settings and selection rules for the data
1910
+ # migration.
1911
+ # @return [Types::DataMigrationSettings]
1912
+ #
1913
+ # @!attribute [rw] source_data_settings
1914
+ # Specifies information about the data migration's source data
1915
+ # provider.
1916
+ # @return [Array<Types::SourceDataSetting>]
1917
+ #
1918
+ # @!attribute [rw] data_migration_statistics
1919
+ # Provides information about the data migration's run, including
1920
+ # start and stop time, latency, and data migration progress.
1921
+ # @return [Types::DataMigrationStatistics]
1922
+ #
1923
+ # @!attribute [rw] data_migration_status
1924
+ # The current status of the data migration.
1925
+ # @return [String]
1926
+ #
1927
+ # @!attribute [rw] public_ip_addresses
1928
+ # The IP addresses of the endpoints for the data migration.
1929
+ # @return [Array<String>]
1930
+ #
1931
+ # @!attribute [rw] last_failure_message
1932
+ # Information about the data migration's most recent error or
1933
+ # failure.
1934
+ # @return [String]
1935
+ #
1936
+ # @!attribute [rw] stop_reason
1937
+ # The reason the data migration last stopped.
1938
+ # @return [String]
1939
+ #
1940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataMigration AWS API Documentation
1941
+ #
1942
+ class DataMigration < Struct.new(
1943
+ :data_migration_name,
1944
+ :data_migration_arn,
1945
+ :data_migration_create_time,
1946
+ :data_migration_start_time,
1947
+ :data_migration_end_time,
1948
+ :service_access_role_arn,
1949
+ :migration_project_arn,
1950
+ :data_migration_type,
1951
+ :data_migration_settings,
1952
+ :source_data_settings,
1953
+ :data_migration_statistics,
1954
+ :data_migration_status,
1955
+ :public_ip_addresses,
1956
+ :last_failure_message,
1957
+ :stop_reason)
1958
+ SENSITIVE = [:public_ip_addresses]
1959
+ include Aws::Structure
1960
+ end
1961
+
1962
+ # Options for configuring a data migration, including whether to enable
1963
+ # CloudWatch logs, and the selection rules to use to include or exclude
1964
+ # database objects from the migration.
1965
+ #
1966
+ # @!attribute [rw] number_of_jobs
1967
+ # The number of parallel jobs that trigger parallel threads to unload
1968
+ # the tables from the source, and then load them to the target.
1969
+ # @return [Integer]
1970
+ #
1971
+ # @!attribute [rw] cloudwatch_logs_enabled
1972
+ # Whether to enable CloudWatch logging for the data migration.
1973
+ # @return [Boolean]
1974
+ #
1975
+ # @!attribute [rw] selection_rules
1976
+ # A JSON-formatted string that defines what objects to include and
1977
+ # exclude from the migration.
1978
+ # @return [String]
1979
+ #
1980
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataMigrationSettings AWS API Documentation
1981
+ #
1982
+ class DataMigrationSettings < Struct.new(
1983
+ :number_of_jobs,
1984
+ :cloudwatch_logs_enabled,
1985
+ :selection_rules)
1986
+ SENSITIVE = [:selection_rules]
1987
+ include Aws::Structure
1988
+ end
1989
+
1990
+ # Information about the data migration run, including start and stop
1991
+ # time, latency, and migration progress.
1992
+ #
1993
+ # @!attribute [rw] tables_loaded
1994
+ # The number of tables loaded in the current data migration run.
1995
+ # @return [Integer]
1996
+ #
1997
+ # @!attribute [rw] elapsed_time_millis
1998
+ # The elapsed duration of the data migration run.
1999
+ # @return [Integer]
2000
+ #
2001
+ # @!attribute [rw] tables_loading
2002
+ # The data migration's table loading progress.
2003
+ # @return [Integer]
2004
+ #
2005
+ # @!attribute [rw] full_load_percentage
2006
+ # The data migration's progress in the full-load migration phase.
2007
+ # @return [Integer]
2008
+ #
2009
+ # @!attribute [rw] cdc_latency
2010
+ # The current latency of the change data capture (CDC) operation.
2011
+ # @return [Integer]
2012
+ #
2013
+ # @!attribute [rw] tables_queued
2014
+ # The number of tables that are waiting for processing.
2015
+ # @return [Integer]
2016
+ #
2017
+ # @!attribute [rw] tables_errored
2018
+ # The number of tables that DMS failed to process.
2019
+ # @return [Integer]
2020
+ #
2021
+ # @!attribute [rw] start_time
2022
+ # The time when the migration started.
2023
+ # @return [Time]
2024
+ #
2025
+ # @!attribute [rw] stop_time
2026
+ # The time when the migration stopped or failed.
2027
+ # @return [Time]
2028
+ #
2029
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataMigrationStatistics AWS API Documentation
2030
+ #
2031
+ class DataMigrationStatistics < Struct.new(
2032
+ :tables_loaded,
2033
+ :elapsed_time_millis,
2034
+ :tables_loading,
2035
+ :full_load_percentage,
2036
+ :cdc_latency,
2037
+ :tables_queued,
2038
+ :tables_errored,
2039
+ :start_time,
2040
+ :stop_time)
2041
+ SENSITIVE = []
2042
+ include Aws::Structure
2043
+ end
2044
+
1795
2045
  # Provides information that defines a data provider.
1796
2046
  #
1797
2047
  # @!attribute [rw] data_provider_name
@@ -2168,6 +2418,30 @@ module Aws::DatabaseMigrationService
2168
2418
  include Aws::Structure
2169
2419
  end
2170
2420
 
2421
+ # @!attribute [rw] data_migration_identifier
2422
+ # The identifier (name or ARN) of the data migration to delete.
2423
+ # @return [String]
2424
+ #
2425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataMigrationMessage AWS API Documentation
2426
+ #
2427
+ class DeleteDataMigrationMessage < Struct.new(
2428
+ :data_migration_identifier)
2429
+ SENSITIVE = []
2430
+ include Aws::Structure
2431
+ end
2432
+
2433
+ # @!attribute [rw] data_migration
2434
+ # The deleted data migration.
2435
+ # @return [Types::DataMigration]
2436
+ #
2437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataMigrationResponse AWS API Documentation
2438
+ #
2439
+ class DeleteDataMigrationResponse < Struct.new(
2440
+ :data_migration)
2441
+ SENSITIVE = []
2442
+ include Aws::Structure
2443
+ end
2444
+
2171
2445
  # @!attribute [rw] data_provider_identifier
2172
2446
  # The identifier of the data provider to delete.
2173
2447
  # @return [String]
@@ -2679,6 +2953,68 @@ module Aws::DatabaseMigrationService
2679
2953
  include Aws::Structure
2680
2954
  end
2681
2955
 
2956
+ # @!attribute [rw] filters
2957
+ # Filters applied to the data migrations.
2958
+ # @return [Array<Types::Filter>]
2959
+ #
2960
+ # @!attribute [rw] max_records
2961
+ # The maximum number of records to include in the response. If more
2962
+ # records exist than the specified `MaxRecords` value, a pagination
2963
+ # token called a marker is included in the response so that the
2964
+ # remaining results can be retrieved.
2965
+ # @return [Integer]
2966
+ #
2967
+ # @!attribute [rw] marker
2968
+ # An optional pagination token provided by a previous request. If this
2969
+ # parameter is specified, the response includes only records beyond
2970
+ # the marker, up to the value specified by `MaxRecords`.
2971
+ # @return [String]
2972
+ #
2973
+ # @!attribute [rw] without_settings
2974
+ # An option to set to avoid returning information about settings. Use
2975
+ # this to reduce overhead when setting information is too large. To
2976
+ # use this option, choose `true`; otherwise, choose `false` (the
2977
+ # default).
2978
+ # @return [Boolean]
2979
+ #
2980
+ # @!attribute [rw] without_statistics
2981
+ # An option to set to avoid returning information about statistics.
2982
+ # Use this to reduce overhead when statistics information is too
2983
+ # large. To use this option, choose `true`; otherwise, choose `false`
2984
+ # (the default).
2985
+ # @return [Boolean]
2986
+ #
2987
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataMigrationsMessage AWS API Documentation
2988
+ #
2989
+ class DescribeDataMigrationsMessage < Struct.new(
2990
+ :filters,
2991
+ :max_records,
2992
+ :marker,
2993
+ :without_settings,
2994
+ :without_statistics)
2995
+ SENSITIVE = []
2996
+ include Aws::Structure
2997
+ end
2998
+
2999
+ # @!attribute [rw] data_migrations
3000
+ # Returns information about the data migrations used in the project.
3001
+ # @return [Array<Types::DataMigration>]
3002
+ #
3003
+ # @!attribute [rw] marker
3004
+ # An optional pagination token provided by a previous request. If this
3005
+ # parameter is specified, the response includes only records beyond
3006
+ # the marker, up to the value specified by `MaxRecords`.
3007
+ # @return [String]
3008
+ #
3009
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataMigrationsResponse AWS API Documentation
3010
+ #
3011
+ class DescribeDataMigrationsResponse < Struct.new(
3012
+ :data_migrations,
3013
+ :marker)
3014
+ SENSITIVE = []
3015
+ include Aws::Structure
3016
+ end
3017
+
2682
3018
  # @!attribute [rw] filters
2683
3019
  # Filters applied to the data providers described in the form of
2684
3020
  # key-value pairs.
@@ -5610,6 +5946,19 @@ module Aws::DatabaseMigrationService
5610
5946
  include Aws::Structure
5611
5947
  end
5612
5948
 
5949
+ # A dependency threw an exception.
5950
+ #
5951
+ # @!attribute [rw] message
5952
+ # @return [String]
5953
+ #
5954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/FailedDependencyFault AWS API Documentation
5955
+ #
5956
+ class FailedDependencyFault < Struct.new(
5957
+ :message)
5958
+ SENSITIVE = []
5959
+ include Aws::Structure
5960
+ end
5961
+
5613
5962
  # Identifies the name and value of a filter object. This filter is used
5614
5963
  # to limit the number and type of DMS objects that are returned for a
5615
5964
  # particular `Describe*` call or similar operation. Filters are used as
@@ -6927,6 +7276,68 @@ module Aws::DatabaseMigrationService
6927
7276
  include Aws::Structure
6928
7277
  end
6929
7278
 
7279
+ # @!attribute [rw] data_migration_identifier
7280
+ # The identifier (name or ARN) of the data migration to modify.
7281
+ # @return [String]
7282
+ #
7283
+ # @!attribute [rw] data_migration_name
7284
+ # The new name for the data migration.
7285
+ # @return [String]
7286
+ #
7287
+ # @!attribute [rw] enable_cloudwatch_logs
7288
+ # Whether to enable Cloudwatch logs for the data migration.
7289
+ # @return [Boolean]
7290
+ #
7291
+ # @!attribute [rw] service_access_role_arn
7292
+ # The new service access role ARN for the data migration.
7293
+ # @return [String]
7294
+ #
7295
+ # @!attribute [rw] data_migration_type
7296
+ # The new migration type for the data migration.
7297
+ # @return [String]
7298
+ #
7299
+ # @!attribute [rw] source_data_settings
7300
+ # The new information about the source data provider for the data
7301
+ # migration.
7302
+ # @return [Array<Types::SourceDataSetting>]
7303
+ #
7304
+ # @!attribute [rw] number_of_jobs
7305
+ # The number of parallel jobs that trigger parallel threads to unload
7306
+ # the tables from the source, and then load them to the target.
7307
+ # @return [Integer]
7308
+ #
7309
+ # @!attribute [rw] selection_rules
7310
+ # A JSON-formatted string that defines what objects to include and
7311
+ # exclude from the migration.
7312
+ # @return [String]
7313
+ #
7314
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataMigrationMessage AWS API Documentation
7315
+ #
7316
+ class ModifyDataMigrationMessage < Struct.new(
7317
+ :data_migration_identifier,
7318
+ :data_migration_name,
7319
+ :enable_cloudwatch_logs,
7320
+ :service_access_role_arn,
7321
+ :data_migration_type,
7322
+ :source_data_settings,
7323
+ :number_of_jobs,
7324
+ :selection_rules)
7325
+ SENSITIVE = [:selection_rules]
7326
+ include Aws::Structure
7327
+ end
7328
+
7329
+ # @!attribute [rw] data_migration
7330
+ # Information about the modified data migration.
7331
+ # @return [Types::DataMigration]
7332
+ #
7333
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataMigrationResponse AWS API Documentation
7334
+ #
7335
+ class ModifyDataMigrationResponse < Struct.new(
7336
+ :data_migration)
7337
+ SENSITIVE = []
7338
+ include Aws::Structure
7339
+ end
7340
+
6930
7341
  # @!attribute [rw] data_provider_identifier
6931
7342
  # The identifier of the data provider. Identifiers must begin with a
6932
7343
  # letter and must contain only ASCII letters, digits, and hyphens.
@@ -12352,6 +12763,71 @@ module Aws::DatabaseMigrationService
12352
12763
  include Aws::Structure
12353
12764
  end
12354
12765
 
12766
+ # Defines settings for a source data provider for a data migration.
12767
+ #
12768
+ # @!attribute [rw] cdc_start_position
12769
+ # The change data capture (CDC) start position for the source data
12770
+ # provider.
12771
+ # @return [String]
12772
+ #
12773
+ # @!attribute [rw] cdc_start_time
12774
+ # The change data capture (CDC) start time for the source data
12775
+ # provider.
12776
+ # @return [Time]
12777
+ #
12778
+ # @!attribute [rw] cdc_stop_time
12779
+ # The change data capture (CDC) stop time for the source data
12780
+ # provider.
12781
+ # @return [Time]
12782
+ #
12783
+ # @!attribute [rw] slot_name
12784
+ # The name of the replication slot on the source data provider. This
12785
+ # attribute is only valid for a PostgreSQL or Aurora PostgreSQL
12786
+ # source.
12787
+ # @return [String]
12788
+ #
12789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SourceDataSetting AWS API Documentation
12790
+ #
12791
+ class SourceDataSetting < Struct.new(
12792
+ :cdc_start_position,
12793
+ :cdc_start_time,
12794
+ :cdc_stop_time,
12795
+ :slot_name)
12796
+ SENSITIVE = []
12797
+ include Aws::Structure
12798
+ end
12799
+
12800
+ # @!attribute [rw] data_migration_identifier
12801
+ # The identifier (name or ARN) of the data migration to start.
12802
+ # @return [String]
12803
+ #
12804
+ # @!attribute [rw] start_type
12805
+ # Specifies the start type for the data migration. Valid values
12806
+ # include `start-replication`, `reload-target`, and
12807
+ # `resume-processing`.
12808
+ # @return [String]
12809
+ #
12810
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartDataMigrationMessage AWS API Documentation
12811
+ #
12812
+ class StartDataMigrationMessage < Struct.new(
12813
+ :data_migration_identifier,
12814
+ :start_type)
12815
+ SENSITIVE = []
12816
+ include Aws::Structure
12817
+ end
12818
+
12819
+ # @!attribute [rw] data_migration
12820
+ # The data migration that DMS started.
12821
+ # @return [Types::DataMigration]
12822
+ #
12823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartDataMigrationResponse AWS API Documentation
12824
+ #
12825
+ class StartDataMigrationResponse < Struct.new(
12826
+ :data_migration)
12827
+ SENSITIVE = []
12828
+ include Aws::Structure
12829
+ end
12830
+
12355
12831
  # @!attribute [rw] migration_project_identifier
12356
12832
  # The migration project name or Amazon Resource Name (ARN).
12357
12833
  # @return [String]
@@ -12877,6 +13353,30 @@ module Aws::DatabaseMigrationService
12877
13353
  include Aws::Structure
12878
13354
  end
12879
13355
 
13356
+ # @!attribute [rw] data_migration_identifier
13357
+ # The identifier (name or ARN) of the data migration to stop.
13358
+ # @return [String]
13359
+ #
13360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopDataMigrationMessage AWS API Documentation
13361
+ #
13362
+ class StopDataMigrationMessage < Struct.new(
13363
+ :data_migration_identifier)
13364
+ SENSITIVE = []
13365
+ include Aws::Structure
13366
+ end
13367
+
13368
+ # @!attribute [rw] data_migration
13369
+ # The data migration that DMS stopped.
13370
+ # @return [Types::DataMigration]
13371
+ #
13372
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopDataMigrationResponse AWS API Documentation
13373
+ #
13374
+ class StopDataMigrationResponse < Struct.new(
13375
+ :data_migration)
13376
+ SENSITIVE = []
13377
+ include Aws::Structure
13378
+ end
13379
+
12880
13380
  # @!attribute [rw] replication_config_arn
12881
13381
  # The Amazon Resource Name of the replication to stop.
12882
13382
  # @return [String]
@@ -11,6 +11,8 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:databasemigrationservice)
15
+
14
16
  # This module provides support for AWS Database Migration Service. This module is available in the
15
17
  # `aws-sdk-databasemigrationservice` gem.
16
18
  #
@@ -53,7 +55,7 @@ module Aws::DatabaseMigrationService
53
55
  autoload :EndpointProvider, 'aws-sdk-databasemigrationservice/endpoint_provider'
54
56
  autoload :Endpoints, 'aws-sdk-databasemigrationservice/endpoints'
55
57
 
56
- GEM_VERSION = '1.105.0'
58
+ GEM_VERSION = '1.107.0'
57
59
 
58
60
  end
59
61