aws-sdk-databasemigrationservice 1.88.0 → 1.111.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +115 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +803 -85
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +272 -6
- data/lib/aws-sdk-databasemigrationservice/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-databasemigrationservice/endpoint_provider.rb +4 -4
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +2 -1482
- data/lib/aws-sdk-databasemigrationservice/errors.rb +16 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +23 -226
- data/lib/aws-sdk-databasemigrationservice/types.rb +821 -76
- data/lib/aws-sdk-databasemigrationservice.rb +16 -12
- data/sig/client.rbs +2779 -0
- data/sig/errors.rbs +95 -0
- data/sig/resource.rbs +83 -0
- data/sig/types.rbs +2923 -0
- data/sig/waiters.rbs +153 -0
- metadata +16 -11
@@ -248,7 +248,7 @@ module Aws::DatabaseMigrationService
|
|
248
248
|
#
|
249
249
|
# @!attribute [rw] certificate_wallet
|
250
250
|
# The location of an imported Oracle Wallet certificate for use with
|
251
|
-
# SSL. Example: `filebase64("
|
251
|
+
# SSL. Example: `filebase64("${path.root}/rds-ca-2019-root.sso")`
|
252
252
|
# @return [String]
|
253
253
|
#
|
254
254
|
# @!attribute [rw] certificate_arn
|
@@ -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.
|
488
|
-
#
|
489
|
-
#
|
490
|
-
#
|
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]
|
@@ -601,9 +675,10 @@ module Aws::DatabaseMigrationService
|
|
601
675
|
#
|
602
676
|
# @!attribute [rw] engine
|
603
677
|
# The type of database engine for the data provider. Valid values
|
604
|
-
# include `"aurora"`, `"
|
605
|
-
# `"postgres"`,
|
606
|
-
# Amazon Aurora
|
678
|
+
# include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
|
679
|
+
# `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
|
680
|
+
# `docdb`. A value of `"aurora"` represents Amazon Aurora
|
681
|
+
# MySQL-Compatible Edition.
|
607
682
|
# @return [String]
|
608
683
|
#
|
609
684
|
# @!attribute [rw] settings
|
@@ -654,8 +729,10 @@ module Aws::DatabaseMigrationService
|
|
654
729
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"opensearch"`,
|
655
730
|
# `"redshift"`, `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`, `"sybase"`,
|
656
731
|
# `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
|
657
|
-
# `"elasticsearch"`, `"docdb"`, `"sqlserver"`, `"neptune"`,
|
658
|
-
# `"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`.
|
659
736
|
# @return [String]
|
660
737
|
#
|
661
738
|
# @!attribute [rw] username
|
@@ -765,8 +842,8 @@ module Aws::DatabaseMigrationService
|
|
765
842
|
# Shorthand syntax for these settings is as follows:
|
766
843
|
# `ServiceAccessRoleArn=string,BucketName=string`
|
767
844
|
#
|
768
|
-
# JSON syntax for these settings is as follows:
|
769
|
-
# "ServiceAccessRoleArn": "string", "BucketName": "string",
|
845
|
+
# JSON syntax for these settings is as follows: `{
|
846
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string", } `
|
770
847
|
# @return [Types::DmsTransferSettings]
|
771
848
|
#
|
772
849
|
# @!attribute [rw] mongo_db_settings
|
@@ -1550,6 +1627,12 @@ module Aws::DatabaseMigrationService
|
|
1550
1627
|
# addressing. IPv6 only is not yet supported.
|
1551
1628
|
# @return [String]
|
1552
1629
|
#
|
1630
|
+
# @!attribute [rw] kerberos_authentication_settings
|
1631
|
+
# Specifies the ID of the secret that stores the key cache file
|
1632
|
+
# required for kerberos authentication, when creating a replication
|
1633
|
+
# instance.
|
1634
|
+
# @return [Types::KerberosAuthenticationSettings]
|
1635
|
+
#
|
1553
1636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
|
1554
1637
|
#
|
1555
1638
|
class CreateReplicationInstanceMessage < Struct.new(
|
@@ -1568,7 +1651,8 @@ module Aws::DatabaseMigrationService
|
|
1568
1651
|
:publicly_accessible,
|
1569
1652
|
:dns_name_servers,
|
1570
1653
|
:resource_identifier,
|
1571
|
-
:network_type
|
1654
|
+
:network_type,
|
1655
|
+
:kerberos_authentication_settings)
|
1572
1656
|
SENSITIVE = []
|
1573
1657
|
include Aws::Structure
|
1574
1658
|
end
|
@@ -1590,7 +1674,7 @@ module Aws::DatabaseMigrationService
|
|
1590
1674
|
# lowercase string.
|
1591
1675
|
#
|
1592
1676
|
# Constraints: Must contain no more than 255 alphanumeric characters,
|
1593
|
-
# periods,
|
1677
|
+
# periods, underscores, or hyphens. Must not be "default".
|
1594
1678
|
#
|
1595
1679
|
# Example: `mySubnetgroup`
|
1596
1680
|
# @return [String]
|
@@ -1600,7 +1684,7 @@ module Aws::DatabaseMigrationService
|
|
1600
1684
|
# @return [String]
|
1601
1685
|
#
|
1602
1686
|
# @!attribute [rw] subnet_ids
|
1603
|
-
#
|
1687
|
+
# Two or more subnet IDs to be assigned to the subnet group.
|
1604
1688
|
# @return [Array<String>]
|
1605
1689
|
#
|
1606
1690
|
# @!attribute [rw] tags
|
@@ -1791,6 +1875,185 @@ module Aws::DatabaseMigrationService
|
|
1791
1875
|
include Aws::Structure
|
1792
1876
|
end
|
1793
1877
|
|
1878
|
+
# This object provides information about a DMS data migration.
|
1879
|
+
#
|
1880
|
+
# @!attribute [rw] data_migration_name
|
1881
|
+
# The user-friendly name for the data migration.
|
1882
|
+
# @return [String]
|
1883
|
+
#
|
1884
|
+
# @!attribute [rw] data_migration_arn
|
1885
|
+
# The Amazon Resource Name (ARN) that identifies this replication.
|
1886
|
+
# @return [String]
|
1887
|
+
#
|
1888
|
+
# @!attribute [rw] data_migration_create_time
|
1889
|
+
# The UTC time when DMS created the data migration.
|
1890
|
+
# @return [Time]
|
1891
|
+
#
|
1892
|
+
# @!attribute [rw] data_migration_start_time
|
1893
|
+
# The UTC time when DMS started the data migration.
|
1894
|
+
# @return [Time]
|
1895
|
+
#
|
1896
|
+
# @!attribute [rw] data_migration_end_time
|
1897
|
+
# The UTC time when data migration ended.
|
1898
|
+
# @return [Time]
|
1899
|
+
#
|
1900
|
+
# @!attribute [rw] service_access_role_arn
|
1901
|
+
# The IAM role that the data migration uses to access Amazon Web
|
1902
|
+
# Services resources.
|
1903
|
+
# @return [String]
|
1904
|
+
#
|
1905
|
+
# @!attribute [rw] migration_project_arn
|
1906
|
+
# The Amazon Resource Name (ARN) of the data migration's associated
|
1907
|
+
# migration project.
|
1908
|
+
# @return [String]
|
1909
|
+
#
|
1910
|
+
# @!attribute [rw] data_migration_type
|
1911
|
+
# Specifies whether the data migration is full-load only, change data
|
1912
|
+
# capture (CDC) only, or full-load and CDC.
|
1913
|
+
# @return [String]
|
1914
|
+
#
|
1915
|
+
# @!attribute [rw] data_migration_settings
|
1916
|
+
# Specifies CloudWatch settings and selection rules for the data
|
1917
|
+
# migration.
|
1918
|
+
# @return [Types::DataMigrationSettings]
|
1919
|
+
#
|
1920
|
+
# @!attribute [rw] source_data_settings
|
1921
|
+
# Specifies information about the data migration's source data
|
1922
|
+
# provider.
|
1923
|
+
# @return [Array<Types::SourceDataSetting>]
|
1924
|
+
#
|
1925
|
+
# @!attribute [rw] data_migration_statistics
|
1926
|
+
# Provides information about the data migration's run, including
|
1927
|
+
# start and stop time, latency, and data migration progress.
|
1928
|
+
# @return [Types::DataMigrationStatistics]
|
1929
|
+
#
|
1930
|
+
# @!attribute [rw] data_migration_status
|
1931
|
+
# The current status of the data migration.
|
1932
|
+
# @return [String]
|
1933
|
+
#
|
1934
|
+
# @!attribute [rw] public_ip_addresses
|
1935
|
+
# The IP addresses of the endpoints for the data migration.
|
1936
|
+
# @return [Array<String>]
|
1937
|
+
#
|
1938
|
+
# @!attribute [rw] data_migration_cidr_blocks
|
1939
|
+
# The CIDR blocks of the endpoints for the data migration.
|
1940
|
+
# @return [Array<String>]
|
1941
|
+
#
|
1942
|
+
# @!attribute [rw] last_failure_message
|
1943
|
+
# Information about the data migration's most recent error or
|
1944
|
+
# failure.
|
1945
|
+
# @return [String]
|
1946
|
+
#
|
1947
|
+
# @!attribute [rw] stop_reason
|
1948
|
+
# The reason the data migration last stopped.
|
1949
|
+
# @return [String]
|
1950
|
+
#
|
1951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataMigration AWS API Documentation
|
1952
|
+
#
|
1953
|
+
class DataMigration < Struct.new(
|
1954
|
+
:data_migration_name,
|
1955
|
+
:data_migration_arn,
|
1956
|
+
:data_migration_create_time,
|
1957
|
+
:data_migration_start_time,
|
1958
|
+
:data_migration_end_time,
|
1959
|
+
:service_access_role_arn,
|
1960
|
+
:migration_project_arn,
|
1961
|
+
:data_migration_type,
|
1962
|
+
:data_migration_settings,
|
1963
|
+
:source_data_settings,
|
1964
|
+
:data_migration_statistics,
|
1965
|
+
:data_migration_status,
|
1966
|
+
:public_ip_addresses,
|
1967
|
+
:data_migration_cidr_blocks,
|
1968
|
+
:last_failure_message,
|
1969
|
+
:stop_reason)
|
1970
|
+
SENSITIVE = [:public_ip_addresses]
|
1971
|
+
include Aws::Structure
|
1972
|
+
end
|
1973
|
+
|
1974
|
+
# Options for configuring a data migration, including whether to enable
|
1975
|
+
# CloudWatch logs, and the selection rules to use to include or exclude
|
1976
|
+
# database objects from the migration.
|
1977
|
+
#
|
1978
|
+
# @!attribute [rw] number_of_jobs
|
1979
|
+
# The number of parallel jobs that trigger parallel threads to unload
|
1980
|
+
# the tables from the source, and then load them to the target.
|
1981
|
+
# @return [Integer]
|
1982
|
+
#
|
1983
|
+
# @!attribute [rw] cloudwatch_logs_enabled
|
1984
|
+
# Whether to enable CloudWatch logging for the data migration.
|
1985
|
+
# @return [Boolean]
|
1986
|
+
#
|
1987
|
+
# @!attribute [rw] selection_rules
|
1988
|
+
# A JSON-formatted string that defines what objects to include and
|
1989
|
+
# exclude from the migration.
|
1990
|
+
# @return [String]
|
1991
|
+
#
|
1992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataMigrationSettings AWS API Documentation
|
1993
|
+
#
|
1994
|
+
class DataMigrationSettings < Struct.new(
|
1995
|
+
:number_of_jobs,
|
1996
|
+
:cloudwatch_logs_enabled,
|
1997
|
+
:selection_rules)
|
1998
|
+
SENSITIVE = [:selection_rules]
|
1999
|
+
include Aws::Structure
|
2000
|
+
end
|
2001
|
+
|
2002
|
+
# Information about the data migration run, including start and stop
|
2003
|
+
# time, latency, and migration progress.
|
2004
|
+
#
|
2005
|
+
# @!attribute [rw] tables_loaded
|
2006
|
+
# The number of tables loaded in the current data migration run.
|
2007
|
+
# @return [Integer]
|
2008
|
+
#
|
2009
|
+
# @!attribute [rw] elapsed_time_millis
|
2010
|
+
# The elapsed duration of the data migration run.
|
2011
|
+
# @return [Integer]
|
2012
|
+
#
|
2013
|
+
# @!attribute [rw] tables_loading
|
2014
|
+
# The data migration's table loading progress.
|
2015
|
+
# @return [Integer]
|
2016
|
+
#
|
2017
|
+
# @!attribute [rw] full_load_percentage
|
2018
|
+
# The data migration's progress in the full-load migration phase.
|
2019
|
+
# @return [Integer]
|
2020
|
+
#
|
2021
|
+
# @!attribute [rw] cdc_latency
|
2022
|
+
# The current latency of the change data capture (CDC) operation.
|
2023
|
+
# @return [Integer]
|
2024
|
+
#
|
2025
|
+
# @!attribute [rw] tables_queued
|
2026
|
+
# The number of tables that are waiting for processing.
|
2027
|
+
# @return [Integer]
|
2028
|
+
#
|
2029
|
+
# @!attribute [rw] tables_errored
|
2030
|
+
# The number of tables that DMS failed to process.
|
2031
|
+
# @return [Integer]
|
2032
|
+
#
|
2033
|
+
# @!attribute [rw] start_time
|
2034
|
+
# The time when the migration started.
|
2035
|
+
# @return [Time]
|
2036
|
+
#
|
2037
|
+
# @!attribute [rw] stop_time
|
2038
|
+
# The time when the migration stopped or failed.
|
2039
|
+
# @return [Time]
|
2040
|
+
#
|
2041
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataMigrationStatistics AWS API Documentation
|
2042
|
+
#
|
2043
|
+
class DataMigrationStatistics < Struct.new(
|
2044
|
+
:tables_loaded,
|
2045
|
+
:elapsed_time_millis,
|
2046
|
+
:tables_loading,
|
2047
|
+
:full_load_percentage,
|
2048
|
+
:cdc_latency,
|
2049
|
+
:tables_queued,
|
2050
|
+
:tables_errored,
|
2051
|
+
:start_time,
|
2052
|
+
:stop_time)
|
2053
|
+
SENSITIVE = []
|
2054
|
+
include Aws::Structure
|
2055
|
+
end
|
2056
|
+
|
1794
2057
|
# Provides information that defines a data provider.
|
1795
2058
|
#
|
1796
2059
|
# @!attribute [rw] data_provider_name
|
@@ -1815,9 +2078,10 @@ module Aws::DatabaseMigrationService
|
|
1815
2078
|
#
|
1816
2079
|
# @!attribute [rw] engine
|
1817
2080
|
# The type of database engine for the data provider. Valid values
|
1818
|
-
# include `"aurora"`, `"
|
1819
|
-
# `"postgres"`,
|
1820
|
-
# Amazon Aurora
|
2081
|
+
# include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
|
2082
|
+
# `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
|
2083
|
+
# `docdb`. A value of `"aurora"` represents Amazon Aurora
|
2084
|
+
# MySQL-Compatible Edition.
|
1821
2085
|
# @return [String]
|
1822
2086
|
#
|
1823
2087
|
# @!attribute [rw] settings
|
@@ -2166,6 +2430,30 @@ module Aws::DatabaseMigrationService
|
|
2166
2430
|
include Aws::Structure
|
2167
2431
|
end
|
2168
2432
|
|
2433
|
+
# @!attribute [rw] data_migration_identifier
|
2434
|
+
# The identifier (name or ARN) of the data migration to delete.
|
2435
|
+
# @return [String]
|
2436
|
+
#
|
2437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataMigrationMessage AWS API Documentation
|
2438
|
+
#
|
2439
|
+
class DeleteDataMigrationMessage < Struct.new(
|
2440
|
+
:data_migration_identifier)
|
2441
|
+
SENSITIVE = []
|
2442
|
+
include Aws::Structure
|
2443
|
+
end
|
2444
|
+
|
2445
|
+
# @!attribute [rw] data_migration
|
2446
|
+
# The deleted data migration.
|
2447
|
+
# @return [Types::DataMigration]
|
2448
|
+
#
|
2449
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataMigrationResponse AWS API Documentation
|
2450
|
+
#
|
2451
|
+
class DeleteDataMigrationResponse < Struct.new(
|
2452
|
+
:data_migration)
|
2453
|
+
SENSITIVE = []
|
2454
|
+
include Aws::Structure
|
2455
|
+
end
|
2456
|
+
|
2169
2457
|
# @!attribute [rw] data_provider_identifier
|
2170
2458
|
# The identifier of the data provider to delete.
|
2171
2459
|
# @return [String]
|
@@ -2677,9 +2965,74 @@ module Aws::DatabaseMigrationService
|
|
2677
2965
|
include Aws::Structure
|
2678
2966
|
end
|
2679
2967
|
|
2968
|
+
# @!attribute [rw] filters
|
2969
|
+
# Filters applied to the data migrations.
|
2970
|
+
# @return [Array<Types::Filter>]
|
2971
|
+
#
|
2972
|
+
# @!attribute [rw] max_records
|
2973
|
+
# The maximum number of records to include in the response. If more
|
2974
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2975
|
+
# token called a marker is included in the response so that the
|
2976
|
+
# remaining results can be retrieved.
|
2977
|
+
# @return [Integer]
|
2978
|
+
#
|
2979
|
+
# @!attribute [rw] marker
|
2980
|
+
# An optional pagination token provided by a previous request. If this
|
2981
|
+
# parameter is specified, the response includes only records beyond
|
2982
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2983
|
+
# @return [String]
|
2984
|
+
#
|
2985
|
+
# @!attribute [rw] without_settings
|
2986
|
+
# An option to set to avoid returning information about settings. Use
|
2987
|
+
# this to reduce overhead when setting information is too large. To
|
2988
|
+
# use this option, choose `true`; otherwise, choose `false` (the
|
2989
|
+
# default).
|
2990
|
+
# @return [Boolean]
|
2991
|
+
#
|
2992
|
+
# @!attribute [rw] without_statistics
|
2993
|
+
# An option to set to avoid returning information about statistics.
|
2994
|
+
# Use this to reduce overhead when statistics information is too
|
2995
|
+
# large. To use this option, choose `true`; otherwise, choose `false`
|
2996
|
+
# (the default).
|
2997
|
+
# @return [Boolean]
|
2998
|
+
#
|
2999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataMigrationsMessage AWS API Documentation
|
3000
|
+
#
|
3001
|
+
class DescribeDataMigrationsMessage < Struct.new(
|
3002
|
+
:filters,
|
3003
|
+
:max_records,
|
3004
|
+
:marker,
|
3005
|
+
:without_settings,
|
3006
|
+
:without_statistics)
|
3007
|
+
SENSITIVE = []
|
3008
|
+
include Aws::Structure
|
3009
|
+
end
|
3010
|
+
|
3011
|
+
# @!attribute [rw] data_migrations
|
3012
|
+
# Returns information about the data migrations used in the project.
|
3013
|
+
# @return [Array<Types::DataMigration>]
|
3014
|
+
#
|
3015
|
+
# @!attribute [rw] marker
|
3016
|
+
# An optional pagination token provided by a previous request. If this
|
3017
|
+
# parameter is specified, the response includes only records beyond
|
3018
|
+
# the marker, up to the value specified by `MaxRecords`.
|
3019
|
+
# @return [String]
|
3020
|
+
#
|
3021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataMigrationsResponse AWS API Documentation
|
3022
|
+
#
|
3023
|
+
class DescribeDataMigrationsResponse < Struct.new(
|
3024
|
+
:data_migrations,
|
3025
|
+
:marker)
|
3026
|
+
SENSITIVE = []
|
3027
|
+
include Aws::Structure
|
3028
|
+
end
|
3029
|
+
|
2680
3030
|
# @!attribute [rw] filters
|
2681
3031
|
# Filters applied to the data providers described in the form of
|
2682
3032
|
# key-value pairs.
|
3033
|
+
#
|
3034
|
+
# Valid filter names and values: data-provider-identifier, data
|
3035
|
+
# provider arn or name
|
2683
3036
|
# @return [Array<Types::Filter>]
|
2684
3037
|
#
|
2685
3038
|
# @!attribute [rw] max_records
|
@@ -3451,6 +3804,9 @@ module Aws::DatabaseMigrationService
|
|
3451
3804
|
# @!attribute [rw] filters
|
3452
3805
|
# Filters applied to the instance profiles described in the form of
|
3453
3806
|
# key-value pairs.
|
3807
|
+
#
|
3808
|
+
# Valid filter names and values: instance-profile-identifier, instance
|
3809
|
+
# profile arn or name
|
3454
3810
|
# @return [Array<Types::Filter>]
|
3455
3811
|
#
|
3456
3812
|
# @!attribute [rw] max_records
|
@@ -3828,6 +4184,14 @@ module Aws::DatabaseMigrationService
|
|
3828
4184
|
# @!attribute [rw] filters
|
3829
4185
|
# Filters applied to the migration projects described in the form of
|
3830
4186
|
# key-value pairs.
|
4187
|
+
#
|
4188
|
+
# Valid filter names and values:
|
4189
|
+
#
|
4190
|
+
# * instance-profile-identifier, instance profile arn or name
|
4191
|
+
#
|
4192
|
+
# * data-provider-identifier, data provider arn or name
|
4193
|
+
#
|
4194
|
+
# * migration-project-identifier, migration project arn or name
|
3831
4195
|
# @return [Array<Types::Filter>]
|
3832
4196
|
#
|
3833
4197
|
# @!attribute [rw] max_records
|
@@ -5036,9 +5400,10 @@ module Aws::DatabaseMigrationService
|
|
5036
5400
|
# The database engine name. Valid values, depending on the
|
5037
5401
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
5038
5402
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
5039
|
-
# `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`,
|
5040
|
-
# `"
|
5041
|
-
# `"documentdb"`, `"sqlserver"`, `"neptune"`, and
|
5403
|
+
# `"redshift-serverless"`, `"s3"`, `"db2"`, `"db2-zos"`, `"azuredb"`,
|
5404
|
+
# `"sybase"`, `"dynamodb"`, `"mongodb"`, `"kinesis"`, `"kafka"`,
|
5405
|
+
# `"elasticsearch"`, `"documentdb"`, `"sqlserver"`, `"neptune"`, and
|
5406
|
+
# `"babelfish"`.
|
5042
5407
|
# @return [String]
|
5043
5408
|
#
|
5044
5409
|
# @!attribute [rw] engine_display_name
|
@@ -5605,6 +5970,19 @@ module Aws::DatabaseMigrationService
|
|
5605
5970
|
include Aws::Structure
|
5606
5971
|
end
|
5607
5972
|
|
5973
|
+
# A dependency threw an exception.
|
5974
|
+
#
|
5975
|
+
# @!attribute [rw] message
|
5976
|
+
# @return [String]
|
5977
|
+
#
|
5978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/FailedDependencyFault AWS API Documentation
|
5979
|
+
#
|
5980
|
+
class FailedDependencyFault < Struct.new(
|
5981
|
+
:message)
|
5982
|
+
SENSITIVE = []
|
5983
|
+
include Aws::Structure
|
5984
|
+
end
|
5985
|
+
|
5608
5986
|
# Identifies the name and value of a filter object. This filter is used
|
5609
5987
|
# to limit the number and type of DMS objects that are returned for a
|
5610
5988
|
# particular `Describe*` call or similar operation. Filters are used as
|
@@ -5903,6 +6281,31 @@ module Aws::DatabaseMigrationService
|
|
5903
6281
|
# details.
|
5904
6282
|
# @return [String]
|
5905
6283
|
#
|
6284
|
+
# @!attribute [rw] load_timeout
|
6285
|
+
# The amount of time (in milliseconds) before DMS times out operations
|
6286
|
+
# performed by DMS on the Db2 target. The default value is 1200 (20
|
6287
|
+
# minutes).
|
6288
|
+
# @return [Integer]
|
6289
|
+
#
|
6290
|
+
# @!attribute [rw] write_buffer_size
|
6291
|
+
# The size (in KB) of the in-memory file write buffer used when
|
6292
|
+
# generating .csv files on the local disk on the DMS replication
|
6293
|
+
# instance. The default value is 1024 (1 MB).
|
6294
|
+
# @return [Integer]
|
6295
|
+
#
|
6296
|
+
# @!attribute [rw] max_file_size
|
6297
|
+
# Specifies the maximum size (in KB) of .csv files used to transfer
|
6298
|
+
# data to Db2 LUW.
|
6299
|
+
# @return [Integer]
|
6300
|
+
#
|
6301
|
+
# @!attribute [rw] keep_csv_files
|
6302
|
+
# If true, DMS saves any .csv files to the Db2 LUW target that were
|
6303
|
+
# used to replicate data. DMS uses these files for analysis and
|
6304
|
+
# troubleshooting.
|
6305
|
+
#
|
6306
|
+
# The default value is false.
|
6307
|
+
# @return [Boolean]
|
6308
|
+
#
|
5906
6309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/IBMDb2Settings AWS API Documentation
|
5907
6310
|
#
|
5908
6311
|
class IBMDb2Settings < Struct.new(
|
@@ -5915,7 +6318,11 @@ module Aws::DatabaseMigrationService
|
|
5915
6318
|
:max_k_bytes_per_read,
|
5916
6319
|
:username,
|
5917
6320
|
:secrets_manager_access_role_arn,
|
5918
|
-
:secrets_manager_secret_id
|
6321
|
+
:secrets_manager_secret_id,
|
6322
|
+
:load_timeout,
|
6323
|
+
:write_buffer_size,
|
6324
|
+
:max_file_size,
|
6325
|
+
:keep_csv_files)
|
5919
6326
|
SENSITIVE = [:password]
|
5920
6327
|
include Aws::Structure
|
5921
6328
|
end
|
@@ -5936,7 +6343,7 @@ module Aws::DatabaseMigrationService
|
|
5936
6343
|
# SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
|
5937
6344
|
# You can't provide the certificate inline.
|
5938
6345
|
#
|
5939
|
-
# Example: `filebase64("
|
6346
|
+
# Example: `filebase64("${path.root}/rds-ca-2019-root.sso")`
|
5940
6347
|
# @return [String]
|
5941
6348
|
#
|
5942
6349
|
# @!attribute [rw] tags
|
@@ -6362,6 +6769,10 @@ module Aws::DatabaseMigrationService
|
|
6362
6769
|
# supported in DMS version 3.5.1 and later.
|
6363
6770
|
# @return [String]
|
6364
6771
|
#
|
6772
|
+
# @!attribute [rw] use_large_integer_value
|
6773
|
+
# Specifies using the large integer value with Kafka.
|
6774
|
+
# @return [Boolean]
|
6775
|
+
#
|
6365
6776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KafkaSettings AWS API Documentation
|
6366
6777
|
#
|
6367
6778
|
class KafkaSettings < Struct.new(
|
@@ -6384,11 +6795,40 @@ module Aws::DatabaseMigrationService
|
|
6384
6795
|
:sasl_password,
|
6385
6796
|
:no_hex_prefix,
|
6386
6797
|
:sasl_mechanism,
|
6387
|
-
:ssl_endpoint_identification_algorithm
|
6798
|
+
:ssl_endpoint_identification_algorithm,
|
6799
|
+
:use_large_integer_value)
|
6388
6800
|
SENSITIVE = [:ssl_client_key_password, :sasl_password]
|
6389
6801
|
include Aws::Structure
|
6390
6802
|
end
|
6391
6803
|
|
6804
|
+
# Specifies using Kerberos authentication settings for use with DMS.
|
6805
|
+
#
|
6806
|
+
# @!attribute [rw] key_cache_secret_id
|
6807
|
+
# Specifies the secret ID of the key cache for the replication
|
6808
|
+
# instance.
|
6809
|
+
# @return [String]
|
6810
|
+
#
|
6811
|
+
# @!attribute [rw] key_cache_secret_iam_arn
|
6812
|
+
# Specifies the Amazon Resource Name (ARN) of the IAM role that grants
|
6813
|
+
# Amazon Web Services DMS access to the secret containing key cache
|
6814
|
+
# file for the replication instance.
|
6815
|
+
# @return [String]
|
6816
|
+
#
|
6817
|
+
# @!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.
|
6820
|
+
# @return [String]
|
6821
|
+
#
|
6822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KerberosAuthenticationSettings AWS API Documentation
|
6823
|
+
#
|
6824
|
+
class KerberosAuthenticationSettings < Struct.new(
|
6825
|
+
:key_cache_secret_id,
|
6826
|
+
:key_cache_secret_iam_arn,
|
6827
|
+
:krb_5_file_contents)
|
6828
|
+
SENSITIVE = []
|
6829
|
+
include Aws::Structure
|
6830
|
+
end
|
6831
|
+
|
6392
6832
|
# Provides information that describes an Amazon Kinesis Data Stream
|
6393
6833
|
# endpoint. This information includes the output format of records
|
6394
6834
|
# applied to the endpoint and details of transaction and control table
|
@@ -6461,6 +6901,10 @@ module Aws::DatabaseMigrationService
|
|
6461
6901
|
# type columns without adding the '0x' prefix.
|
6462
6902
|
# @return [Boolean]
|
6463
6903
|
#
|
6904
|
+
# @!attribute [rw] use_large_integer_value
|
6905
|
+
# Specifies using the large integer value with Kinesis.
|
6906
|
+
# @return [Boolean]
|
6907
|
+
#
|
6464
6908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KinesisSettings AWS API Documentation
|
6465
6909
|
#
|
6466
6910
|
class KinesisSettings < Struct.new(
|
@@ -6473,7 +6917,8 @@ module Aws::DatabaseMigrationService
|
|
6473
6917
|
:include_table_alter_operations,
|
6474
6918
|
:include_control_details,
|
6475
6919
|
:include_null_and_empty,
|
6476
|
-
:no_hex_prefix
|
6920
|
+
:no_hex_prefix,
|
6921
|
+
:use_large_integer_value)
|
6477
6922
|
SENSITIVE = []
|
6478
6923
|
include Aws::Structure
|
6479
6924
|
end
|
@@ -6735,6 +7180,10 @@ module Aws::DatabaseMigrationService
|
|
6735
7180
|
# Forces LOB lookup on inline LOB.
|
6736
7181
|
# @return [Boolean]
|
6737
7182
|
#
|
7183
|
+
# @!attribute [rw] authentication_method
|
7184
|
+
# Specifies using Kerberos authentication with Microsoft SQL Server.
|
7185
|
+
# @return [String]
|
7186
|
+
#
|
6738
7187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
|
6739
7188
|
#
|
6740
7189
|
class MicrosoftSQLServerSettings < Struct.new(
|
@@ -6754,7 +7203,8 @@ module Aws::DatabaseMigrationService
|
|
6754
7203
|
:secrets_manager_secret_id,
|
6755
7204
|
:trim_space_in_char,
|
6756
7205
|
:tlog_access_mode,
|
6757
|
-
:force_lob_lookup
|
7206
|
+
:force_lob_lookup,
|
7207
|
+
:authentication_method)
|
6758
7208
|
SENSITIVE = [:password]
|
6759
7209
|
include Aws::Structure
|
6760
7210
|
end
|
@@ -6893,6 +7343,68 @@ module Aws::DatabaseMigrationService
|
|
6893
7343
|
include Aws::Structure
|
6894
7344
|
end
|
6895
7345
|
|
7346
|
+
# @!attribute [rw] data_migration_identifier
|
7347
|
+
# The identifier (name or ARN) of the data migration to modify.
|
7348
|
+
# @return [String]
|
7349
|
+
#
|
7350
|
+
# @!attribute [rw] data_migration_name
|
7351
|
+
# The new name for the data migration.
|
7352
|
+
# @return [String]
|
7353
|
+
#
|
7354
|
+
# @!attribute [rw] enable_cloudwatch_logs
|
7355
|
+
# Whether to enable Cloudwatch logs for the data migration.
|
7356
|
+
# @return [Boolean]
|
7357
|
+
#
|
7358
|
+
# @!attribute [rw] service_access_role_arn
|
7359
|
+
# The new service access role ARN for the data migration.
|
7360
|
+
# @return [String]
|
7361
|
+
#
|
7362
|
+
# @!attribute [rw] data_migration_type
|
7363
|
+
# The new migration type for the data migration.
|
7364
|
+
# @return [String]
|
7365
|
+
#
|
7366
|
+
# @!attribute [rw] source_data_settings
|
7367
|
+
# The new information about the source data provider for the data
|
7368
|
+
# migration.
|
7369
|
+
# @return [Array<Types::SourceDataSetting>]
|
7370
|
+
#
|
7371
|
+
# @!attribute [rw] number_of_jobs
|
7372
|
+
# The number of parallel jobs that trigger parallel threads to unload
|
7373
|
+
# the tables from the source, and then load them to the target.
|
7374
|
+
# @return [Integer]
|
7375
|
+
#
|
7376
|
+
# @!attribute [rw] selection_rules
|
7377
|
+
# A JSON-formatted string that defines what objects to include and
|
7378
|
+
# exclude from the migration.
|
7379
|
+
# @return [String]
|
7380
|
+
#
|
7381
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataMigrationMessage AWS API Documentation
|
7382
|
+
#
|
7383
|
+
class ModifyDataMigrationMessage < Struct.new(
|
7384
|
+
:data_migration_identifier,
|
7385
|
+
:data_migration_name,
|
7386
|
+
:enable_cloudwatch_logs,
|
7387
|
+
:service_access_role_arn,
|
7388
|
+
:data_migration_type,
|
7389
|
+
:source_data_settings,
|
7390
|
+
:number_of_jobs,
|
7391
|
+
:selection_rules)
|
7392
|
+
SENSITIVE = [:selection_rules]
|
7393
|
+
include Aws::Structure
|
7394
|
+
end
|
7395
|
+
|
7396
|
+
# @!attribute [rw] data_migration
|
7397
|
+
# Information about the modified data migration.
|
7398
|
+
# @return [Types::DataMigration]
|
7399
|
+
#
|
7400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataMigrationResponse AWS API Documentation
|
7401
|
+
#
|
7402
|
+
class ModifyDataMigrationResponse < Struct.new(
|
7403
|
+
:data_migration)
|
7404
|
+
SENSITIVE = []
|
7405
|
+
include Aws::Structure
|
7406
|
+
end
|
7407
|
+
|
6896
7408
|
# @!attribute [rw] data_provider_identifier
|
6897
7409
|
# The identifier of the data provider. Identifiers must begin with a
|
6898
7410
|
# letter and must contain only ASCII letters, digits, and hyphens.
|
@@ -6909,9 +7421,10 @@ module Aws::DatabaseMigrationService
|
|
6909
7421
|
#
|
6910
7422
|
# @!attribute [rw] engine
|
6911
7423
|
# The type of database engine for the data provider. Valid values
|
6912
|
-
# include `"aurora"`, `"
|
6913
|
-
# `"postgres"`,
|
6914
|
-
# Amazon Aurora
|
7424
|
+
# include `"aurora"`, `"aurora-postgresql"`, `"mysql"`, `"oracle"`,
|
7425
|
+
# `"postgres"`, `"sqlserver"`, `redshift`, `mariadb`, `mongodb`, and
|
7426
|
+
# `docdb`. A value of `"aurora"` represents Amazon Aurora
|
7427
|
+
# MySQL-Compatible Edition.
|
6915
7428
|
# @return [String]
|
6916
7429
|
#
|
6917
7430
|
# @!attribute [rw] exact_settings
|
@@ -7062,8 +7575,8 @@ module Aws::DatabaseMigrationService
|
|
7062
7575
|
# Shorthand syntax for these settings is as follows:
|
7063
7576
|
# `ServiceAccessRoleArn=string ,BucketName=string`
|
7064
7577
|
#
|
7065
|
-
# JSON syntax for these settings is as follows:
|
7066
|
-
# "ServiceAccessRoleArn": "string", "BucketName": "string"
|
7578
|
+
# JSON syntax for these settings is as follows: `{
|
7579
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string"} `
|
7067
7580
|
# @return [Types::DmsTransferSettings]
|
7068
7581
|
#
|
7069
7582
|
# @!attribute [rw] mongo_db_settings
|
@@ -7232,16 +7745,16 @@ module Aws::DatabaseMigrationService
|
|
7232
7745
|
# settings with different names.
|
7233
7746
|
#
|
7234
7747
|
# For example, if you call `create-endpoint ... --endpoint-settings
|
7235
|
-
# '
|
7236
|
-
# `'
|
7237
|
-
# --endpoint-settings '
|
7238
|
-
# endpoint has the following settings: `'
|
7748
|
+
# '{"a":1}' ...`, the endpoint has the following endpoint settings:
|
7749
|
+
# `'{"a":1}'`. If you then call `modify-endpoint ...
|
7750
|
+
# --endpoint-settings '{"b":2}' ...` for the same endpoint, the
|
7751
|
+
# endpoint has the following settings: `'{"a":1,"b":2}'`.
|
7239
7752
|
#
|
7240
7753
|
# However, suppose that you follow this with a call to
|
7241
|
-
# `modify-endpoint ... --endpoint-settings '
|
7242
|
-
#
|
7243
|
-
#
|
7244
|
-
#
|
7754
|
+
# `modify-endpoint ... --endpoint-settings '{"b":2}' --exact-settings
|
7755
|
+
# ...` for that same endpoint again. Then the endpoint has the
|
7756
|
+
# following settings: `'{"b":2}'`. All existing settings are replaced
|
7757
|
+
# with the exact settings that you specify.
|
7245
7758
|
# @return [Boolean]
|
7246
7759
|
#
|
7247
7760
|
# @!attribute [rw] gcp_my_sql_settings
|
@@ -7679,6 +8192,12 @@ module Aws::DatabaseMigrationService
|
|
7679
8192
|
# addressing. IPv6 only is not yet supported.
|
7680
8193
|
# @return [String]
|
7681
8194
|
#
|
8195
|
+
# @!attribute [rw] kerberos_authentication_settings
|
8196
|
+
# Specifies the ID of the secret that stores the key cache file
|
8197
|
+
# required for kerberos authentication, when modifying a replication
|
8198
|
+
# instance.
|
8199
|
+
# @return [Types::KerberosAuthenticationSettings]
|
8200
|
+
#
|
7682
8201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstanceMessage AWS API Documentation
|
7683
8202
|
#
|
7684
8203
|
class ModifyReplicationInstanceMessage < Struct.new(
|
@@ -7693,7 +8212,8 @@ module Aws::DatabaseMigrationService
|
|
7693
8212
|
:allow_major_version_upgrade,
|
7694
8213
|
:auto_minor_version_upgrade,
|
7695
8214
|
:replication_instance_identifier,
|
7696
|
-
:network_type
|
8215
|
+
:network_type,
|
8216
|
+
:kerberos_authentication_settings)
|
7697
8217
|
SENSITIVE = []
|
7698
8218
|
include Aws::Structure
|
7699
8219
|
end
|
@@ -8236,6 +8756,11 @@ module Aws::DatabaseMigrationService
|
|
8236
8756
|
# details.
|
8237
8757
|
# @return [String]
|
8238
8758
|
#
|
8759
|
+
# @!attribute [rw] execute_timeout
|
8760
|
+
# Sets the client statement timeout (in seconds) for a MySQL source
|
8761
|
+
# endpoint.
|
8762
|
+
# @return [Integer]
|
8763
|
+
#
|
8239
8764
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MySQLSettings AWS API Documentation
|
8240
8765
|
#
|
8241
8766
|
class MySQLSettings < Struct.new(
|
@@ -8252,7 +8777,8 @@ module Aws::DatabaseMigrationService
|
|
8252
8777
|
:server_timezone,
|
8253
8778
|
:username,
|
8254
8779
|
:secrets_manager_access_role_arn,
|
8255
|
-
:secrets_manager_secret_id
|
8780
|
+
:secrets_manager_secret_id,
|
8781
|
+
:execute_timeout)
|
8256
8782
|
SENSITIVE = [:password]
|
8257
8783
|
include Aws::Structure
|
8258
8784
|
end
|
@@ -8571,8 +9097,8 @@ module Aws::DatabaseMigrationService
|
|
8571
9097
|
# @return [Boolean]
|
8572
9098
|
#
|
8573
9099
|
# @!attribute [rw] archived_logs_only
|
8574
|
-
# When this field is set to `
|
8575
|
-
# logs. If the archived redo logs are stored on Automatic Storage
|
9100
|
+
# When this field is set to `True`, DMS only accesses the archived
|
9101
|
+
# redo logs. If the archived redo logs are stored on Automatic Storage
|
8576
9102
|
# Management (ASM) only, the DMS user account needs to be granted ASM
|
8577
9103
|
# privileges.
|
8578
9104
|
# @return [Boolean]
|
@@ -8741,12 +9267,12 @@ module Aws::DatabaseMigrationService
|
|
8741
9267
|
# @return [String]
|
8742
9268
|
#
|
8743
9269
|
# @!attribute [rw] use_b_file
|
8744
|
-
# Set this attribute to
|
8745
|
-
# Reader utility. Set `UseLogminerReader` to
|
8746
|
-
# to
|
8747
|
-
# you set additional attributes. For more information
|
8748
|
-
# setting with Oracle Automatic Storage Management
|
8749
|
-
# Oracle LogMiner or DMS Binary Reader for CDC][1].
|
9270
|
+
# Set this attribute to True to capture change data using the Binary
|
9271
|
+
# Reader utility. Set `UseLogminerReader` to False to set this
|
9272
|
+
# attribute to True. To use Binary Reader with Amazon RDS for Oracle
|
9273
|
+
# as the source, you set additional attributes. For more information
|
9274
|
+
# about using this setting with Oracle Automatic Storage Management
|
9275
|
+
# (ASM), see [ Using Oracle LogMiner or DMS Binary Reader for CDC][1].
|
8750
9276
|
#
|
8751
9277
|
#
|
8752
9278
|
#
|
@@ -8754,17 +9280,17 @@ module Aws::DatabaseMigrationService
|
|
8754
9280
|
# @return [Boolean]
|
8755
9281
|
#
|
8756
9282
|
# @!attribute [rw] use_direct_path_full_load
|
8757
|
-
# Set this attribute to
|
9283
|
+
# Set this attribute to True to have DMS use a direct path full load.
|
8758
9284
|
# Specify this value to use the direct path protocol in the Oracle
|
8759
9285
|
# Call Interface (OCI). By using this OCI protocol, you can bulk-load
|
8760
9286
|
# Oracle target tables during a full load.
|
8761
9287
|
# @return [Boolean]
|
8762
9288
|
#
|
8763
9289
|
# @!attribute [rw] use_logminer_reader
|
8764
|
-
# Set this attribute to
|
8765
|
-
# LogMiner utility (the default). Set this attribute to
|
8766
|
-
# to access the redo logs as a binary file. When you set
|
8767
|
-
# `UseLogminerReader` to
|
9290
|
+
# Set this attribute to True to capture change data using the Oracle
|
9291
|
+
# LogMiner utility (the default). Set this attribute to False if you
|
9292
|
+
# want to access the redo logs as a binary file. When you set
|
9293
|
+
# `UseLogminerReader` to False, also set `UseBfile` to True. For more
|
8768
9294
|
# information on this setting and using Oracle ASM, see [ Using Oracle
|
8769
9295
|
# LogMiner or DMS Binary Reader for CDC][1] in the *DMS User Guide*.
|
8770
9296
|
#
|
@@ -8855,13 +9381,15 @@ module Aws::DatabaseMigrationService
|
|
8855
9381
|
# You can specify an integer value between 0 (the default) and 240
|
8856
9382
|
# (the maximum).
|
8857
9383
|
#
|
8858
|
-
# <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later.
|
8859
|
-
# supports a window of up to 9.5 hours including the value for
|
8860
|
-
# `OpenTransactionWindow`.
|
9384
|
+
# <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later.
|
8861
9385
|
#
|
8862
9386
|
# </note>
|
8863
9387
|
# @return [Integer]
|
8864
9388
|
#
|
9389
|
+
# @!attribute [rw] authentication_method
|
9390
|
+
# Specifies using Kerberos authentication with Oracle.
|
9391
|
+
# @return [String]
|
9392
|
+
#
|
8865
9393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
|
8866
9394
|
#
|
8867
9395
|
class OracleSettings < Struct.new(
|
@@ -8907,7 +9435,8 @@ module Aws::DatabaseMigrationService
|
|
8907
9435
|
:secrets_manager_oracle_asm_secret_id,
|
8908
9436
|
:trim_space_in_char,
|
8909
9437
|
:convert_timestamp_with_zone_to_utc,
|
8910
|
-
:open_transaction_window
|
9438
|
+
:open_transaction_window,
|
9439
|
+
:authentication_method)
|
8911
9440
|
SENSITIVE = [:asm_password, :password, :security_db_encryption]
|
8912
9441
|
include Aws::Structure
|
8913
9442
|
end
|
@@ -9060,6 +9589,8 @@ module Aws::DatabaseMigrationService
|
|
9060
9589
|
# PostgreSQL database when the task starts. You can later remove these
|
9061
9590
|
# artifacts.
|
9062
9591
|
#
|
9592
|
+
# The default value is `true`.
|
9593
|
+
#
|
9063
9594
|
# If this value is set to `N`, you don't have to create tables or
|
9064
9595
|
# triggers on the source database.
|
9065
9596
|
# @return [Boolean]
|
@@ -9068,6 +9599,8 @@ module Aws::DatabaseMigrationService
|
|
9068
9599
|
# Specifies the maximum size (in KB) of any .csv file used to transfer
|
9069
9600
|
# data to PostgreSQL.
|
9070
9601
|
#
|
9602
|
+
# The default value is 32,768 KB (32 MB).
|
9603
|
+
#
|
9071
9604
|
# Example: `maxFileSize=512`
|
9072
9605
|
# @return [Integer]
|
9073
9606
|
#
|
@@ -9079,6 +9612,8 @@ module Aws::DatabaseMigrationService
|
|
9079
9612
|
# The schema in which the operational DDL database artifacts are
|
9080
9613
|
# created.
|
9081
9614
|
#
|
9615
|
+
# The default value is `public`.
|
9616
|
+
#
|
9082
9617
|
# Example: `ddlArtifactsSchema=xyzddlschema;`
|
9083
9618
|
# @return [String]
|
9084
9619
|
#
|
@@ -9093,6 +9628,8 @@ module Aws::DatabaseMigrationService
|
|
9093
9628
|
# When set to `true`, this value causes a task to fail if the actual
|
9094
9629
|
# size of a LOB column is greater than the specified `LobMaxSize`.
|
9095
9630
|
#
|
9631
|
+
# The default value is `false`.
|
9632
|
+
#
|
9096
9633
|
# If task is set to Limited LOB mode and this option is set to true,
|
9097
9634
|
# the task fails instead of truncating the LOB data.
|
9098
9635
|
# @return [Boolean]
|
@@ -9103,14 +9640,20 @@ module Aws::DatabaseMigrationService
|
|
9103
9640
|
# slots from holding onto old WAL logs, which can result in storage
|
9104
9641
|
# full situations on the source. This heartbeat keeps `restart_lsn`
|
9105
9642
|
# moving and prevents storage full scenarios.
|
9643
|
+
#
|
9644
|
+
# The default value is `false`.
|
9106
9645
|
# @return [Boolean]
|
9107
9646
|
#
|
9108
9647
|
# @!attribute [rw] heartbeat_schema
|
9109
9648
|
# Sets the schema in which the heartbeat artifacts are created.
|
9649
|
+
#
|
9650
|
+
# The default value is `public`.
|
9110
9651
|
# @return [String]
|
9111
9652
|
#
|
9112
9653
|
# @!attribute [rw] heartbeat_frequency
|
9113
9654
|
# Sets the WAL heartbeat frequency (in minutes).
|
9655
|
+
#
|
9656
|
+
# The default value is 5 minutes.
|
9114
9657
|
# @return [Integer]
|
9115
9658
|
#
|
9116
9659
|
# @!attribute [rw] password
|
@@ -9168,6 +9711,8 @@ module Aws::DatabaseMigrationService
|
|
9168
9711
|
#
|
9169
9712
|
# @!attribute [rw] plugin_name
|
9170
9713
|
# Specifies the plugin to use to create a replication slot.
|
9714
|
+
#
|
9715
|
+
# The default value is `pglogical`.
|
9171
9716
|
# @return [String]
|
9172
9717
|
#
|
9173
9718
|
# @!attribute [rw] secrets_manager_access_role_arn
|
@@ -9212,14 +9757,20 @@ module Aws::DatabaseMigrationService
|
|
9212
9757
|
# default, PostgreSQL migrates booleans as `varchar(5)`. You must set
|
9213
9758
|
# this setting on both the source and target endpoints for it to take
|
9214
9759
|
# effect.
|
9760
|
+
#
|
9761
|
+
# The default value is `false`.
|
9215
9762
|
# @return [Boolean]
|
9216
9763
|
#
|
9217
9764
|
# @!attribute [rw] map_jsonb_as_clob
|
9218
9765
|
# When true, DMS migrates JSONB values as CLOB.
|
9766
|
+
#
|
9767
|
+
# The default value is `false`.
|
9219
9768
|
# @return [Boolean]
|
9220
9769
|
#
|
9221
9770
|
# @!attribute [rw] map_long_varchar_as
|
9222
|
-
#
|
9771
|
+
# Sets what datatype to map LONG values as.
|
9772
|
+
#
|
9773
|
+
# The default value is `wstring`.
|
9223
9774
|
# @return [String]
|
9224
9775
|
#
|
9225
9776
|
# @!attribute [rw] database_mode
|
@@ -9232,6 +9783,17 @@ module Aws::DatabaseMigrationService
|
|
9232
9783
|
# The Babelfish for Aurora PostgreSQL database name for the endpoint.
|
9233
9784
|
# @return [String]
|
9234
9785
|
#
|
9786
|
+
# @!attribute [rw] disable_unicode_source_filter
|
9787
|
+
# Disables the Unicode source filter with PostgreSQL, for values
|
9788
|
+
# passed into the Selection rule filter on Source Endpoint column
|
9789
|
+
# values. By default DMS performs source filter comparisons using a
|
9790
|
+
# Unicode string which can cause look ups to ignore the indexes in the
|
9791
|
+
# text columns and slow down migrations.
|
9792
|
+
#
|
9793
|
+
# Unicode support should only be disabled when using a selection rule
|
9794
|
+
# filter is on a text column in the Source database that is indexed.
|
9795
|
+
# @return [Boolean]
|
9796
|
+
#
|
9235
9797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
|
9236
9798
|
#
|
9237
9799
|
class PostgreSQLSettings < Struct.new(
|
@@ -9258,7 +9820,8 @@ module Aws::DatabaseMigrationService
|
|
9258
9820
|
:map_jsonb_as_clob,
|
9259
9821
|
:map_long_varchar_as,
|
9260
9822
|
:database_mode,
|
9261
|
-
:babelfish_database_name
|
9823
|
+
:babelfish_database_name,
|
9824
|
+
:disable_unicode_source_filter)
|
9262
9825
|
SENSITIVE = [:password]
|
9263
9826
|
include Aws::Structure
|
9264
9827
|
end
|
@@ -10255,7 +10818,7 @@ module Aws::DatabaseMigrationService
|
|
10255
10818
|
# @return [Types::ReplicationStats]
|
10256
10819
|
#
|
10257
10820
|
# @!attribute [rw] start_replication_type
|
10258
|
-
# The replication
|
10821
|
+
# The type of replication to start.
|
10259
10822
|
# @return [String]
|
10260
10823
|
#
|
10261
10824
|
# @!attribute [rw] cdc_start_time
|
@@ -10296,6 +10859,10 @@ module Aws::DatabaseMigrationService
|
|
10296
10859
|
# The timestamp when replication was last stopped.
|
10297
10860
|
# @return [Time]
|
10298
10861
|
#
|
10862
|
+
# @!attribute [rw] replication_deprovision_time
|
10863
|
+
# The timestamp when DMS will deprovision the replication.
|
10864
|
+
# @return [Time]
|
10865
|
+
#
|
10299
10866
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Replication AWS API Documentation
|
10300
10867
|
#
|
10301
10868
|
class Replication < Struct.new(
|
@@ -10316,7 +10883,8 @@ module Aws::DatabaseMigrationService
|
|
10316
10883
|
:recovery_checkpoint,
|
10317
10884
|
:replication_create_time,
|
10318
10885
|
:replication_update_time,
|
10319
|
-
:replication_last_stop_time
|
10886
|
+
:replication_last_stop_time,
|
10887
|
+
:replication_deprovision_time)
|
10320
10888
|
SENSITIVE = []
|
10321
10889
|
include Aws::Structure
|
10322
10890
|
end
|
@@ -10571,6 +11139,11 @@ module Aws::DatabaseMigrationService
|
|
10571
11139
|
# addressing. IPv6 only is not yet supported.
|
10572
11140
|
# @return [String]
|
10573
11141
|
#
|
11142
|
+
# @!attribute [rw] kerberos_authentication_settings
|
11143
|
+
# Specifies the ID of the secret that stores the key cache file
|
11144
|
+
# required for kerberos authentication, when replicating an instance.
|
11145
|
+
# @return [Types::KerberosAuthenticationSettings]
|
11146
|
+
#
|
10574
11147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
|
10575
11148
|
#
|
10576
11149
|
class ReplicationInstance < Struct.new(
|
@@ -10598,7 +11171,8 @@ module Aws::DatabaseMigrationService
|
|
10598
11171
|
:secondary_availability_zone,
|
10599
11172
|
:free_until,
|
10600
11173
|
:dns_name_servers,
|
10601
|
-
:network_type
|
11174
|
+
:network_type,
|
11175
|
+
:kerberos_authentication_settings)
|
10602
11176
|
SENSITIVE = []
|
10603
11177
|
include Aws::Structure
|
10604
11178
|
end
|
@@ -10922,13 +11496,16 @@ module Aws::DatabaseMigrationService
|
|
10922
11496
|
# The reason the replication task was stopped. This response parameter
|
10923
11497
|
# can return one of the following values:
|
10924
11498
|
#
|
10925
|
-
# * `"Stop Reason NORMAL"`
|
11499
|
+
# * `"Stop Reason NORMAL"` – The task completed successfully with no
|
11500
|
+
# additional information returned.
|
10926
11501
|
#
|
10927
11502
|
# * `"Stop Reason RECOVERABLE_ERROR"`
|
10928
11503
|
#
|
10929
11504
|
# * `"Stop Reason FATAL_ERROR"`
|
10930
11505
|
#
|
10931
|
-
# * `"Stop Reason FULL_LOAD_ONLY_FINISHED"`
|
11506
|
+
# * `"Stop Reason FULL_LOAD_ONLY_FINISHED"` – The task completed the
|
11507
|
+
# full load phase. DMS applied cached changes if you set
|
11508
|
+
# `StopTaskCachedChangesApplied` to `true`.
|
10932
11509
|
#
|
10933
11510
|
# * `"Stop Reason STOPPED_AFTER_FULL_LOAD"` – Full load completed,
|
10934
11511
|
# with cached changes not applied
|
@@ -11104,7 +11681,7 @@ module Aws::DatabaseMigrationService
|
|
11104
11681
|
:assessment_results_file,
|
11105
11682
|
:assessment_results,
|
11106
11683
|
:s3_object_url)
|
11107
|
-
SENSITIVE = []
|
11684
|
+
SENSITIVE = [:s3_object_url]
|
11108
11685
|
include Aws::Structure
|
11109
11686
|
end
|
11110
11687
|
|
@@ -11156,6 +11733,9 @@ module Aws::DatabaseMigrationService
|
|
11156
11733
|
#
|
11157
11734
|
# * `"starting"` – The assessment run is starting, but resources are
|
11158
11735
|
# not yet being provisioned for individual assessments.
|
11736
|
+
#
|
11737
|
+
# * `"warning"` – At least one individual assessment completed with a
|
11738
|
+
# `warning` status.
|
11159
11739
|
# @return [String]
|
11160
11740
|
#
|
11161
11741
|
# @!attribute [rw] replication_task_assessment_run_creation_date
|
@@ -11201,6 +11781,17 @@ module Aws::DatabaseMigrationService
|
|
11201
11781
|
# Unique name of the assessment run.
|
11202
11782
|
# @return [String]
|
11203
11783
|
#
|
11784
|
+
# @!attribute [rw] is_latest_task_assessment_run
|
11785
|
+
# Indicates that the following PreflightAssessmentRun is the latest
|
11786
|
+
# for the ReplicationTask. The status is either true or false.
|
11787
|
+
# @return [Boolean]
|
11788
|
+
#
|
11789
|
+
# @!attribute [rw] result_statistic
|
11790
|
+
# Result statistics for a completed assessment run, showing aggregated
|
11791
|
+
# statistics of IndividualAssessments for how many assessments were
|
11792
|
+
# passed, failed, or encountered issues such as errors or warnings.
|
11793
|
+
# @return [Types::ReplicationTaskAssessmentRunResultStatistic]
|
11794
|
+
#
|
11204
11795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRun AWS API Documentation
|
11205
11796
|
#
|
11206
11797
|
class ReplicationTaskAssessmentRun < Struct.new(
|
@@ -11215,7 +11806,9 @@ module Aws::DatabaseMigrationService
|
|
11215
11806
|
:result_location_folder,
|
11216
11807
|
:result_encryption_mode,
|
11217
11808
|
:result_kms_key_arn,
|
11218
|
-
:assessment_run_name
|
11809
|
+
:assessment_run_name,
|
11810
|
+
:is_latest_task_assessment_run,
|
11811
|
+
:result_statistic)
|
11219
11812
|
SENSITIVE = []
|
11220
11813
|
include Aws::Structure
|
11221
11814
|
end
|
@@ -11241,6 +11834,46 @@ module Aws::DatabaseMigrationService
|
|
11241
11834
|
include Aws::Structure
|
11242
11835
|
end
|
11243
11836
|
|
11837
|
+
# The object containing the result statistics for a completed assessment
|
11838
|
+
# run.
|
11839
|
+
#
|
11840
|
+
# @!attribute [rw] passed
|
11841
|
+
# The number of individual assessments that successfully passed all
|
11842
|
+
# checks in the assessment run.
|
11843
|
+
# @return [Integer]
|
11844
|
+
#
|
11845
|
+
# @!attribute [rw] failed
|
11846
|
+
# The number of individual assessments that failed to meet the
|
11847
|
+
# criteria defined in the assessment run.
|
11848
|
+
# @return [Integer]
|
11849
|
+
#
|
11850
|
+
# @!attribute [rw] error
|
11851
|
+
# The number of individual assessments that encountered a critical
|
11852
|
+
# error and could not complete properly.
|
11853
|
+
# @return [Integer]
|
11854
|
+
#
|
11855
|
+
# @!attribute [rw] warning
|
11856
|
+
# Indicates that the recent completed AssessmentRun triggered a
|
11857
|
+
# warning.
|
11858
|
+
# @return [Integer]
|
11859
|
+
#
|
11860
|
+
# @!attribute [rw] cancelled
|
11861
|
+
# The number of individual assessments that were cancelled during the
|
11862
|
+
# assessment run.
|
11863
|
+
# @return [Integer]
|
11864
|
+
#
|
11865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRunResultStatistic AWS API Documentation
|
11866
|
+
#
|
11867
|
+
class ReplicationTaskAssessmentRunResultStatistic < Struct.new(
|
11868
|
+
:passed,
|
11869
|
+
:failed,
|
11870
|
+
:error,
|
11871
|
+
:warning,
|
11872
|
+
:cancelled)
|
11873
|
+
SENSITIVE = []
|
11874
|
+
include Aws::Structure
|
11875
|
+
end
|
11876
|
+
|
11244
11877
|
# Provides information that describes an individual assessment from a
|
11245
11878
|
# premigration assessment run.
|
11246
11879
|
#
|
@@ -12030,10 +12663,10 @@ module Aws::DatabaseMigrationService
|
|
12030
12663
|
# this parameter when `DatePartitionedEnabled` is set to `true`, as
|
12031
12664
|
# shown in the following example.
|
12032
12665
|
#
|
12033
|
-
# `s3-settings='
|
12666
|
+
# `s3-settings='{"DatePartitionEnabled": true,
|
12034
12667
|
# "DatePartitionSequence": "YYYYMMDDHH", "DatePartitionDelimiter":
|
12035
12668
|
# "SLASH", "DatePartitionTimezone":"Asia/Seoul", "BucketName":
|
12036
|
-
# "dms-nattarat-test"
|
12669
|
+
# "dms-nattarat-test"}'`
|
12037
12670
|
# @return [String]
|
12038
12671
|
#
|
12039
12672
|
# @!attribute [rw] add_trailing_padding_character
|
@@ -12045,8 +12678,7 @@ module Aws::DatabaseMigrationService
|
|
12045
12678
|
# To specify a bucket owner and prevent sniping, you can use the
|
12046
12679
|
# `ExpectedBucketOwner` endpoint setting.
|
12047
12680
|
#
|
12048
|
-
# Example: `--s3-settings='
|
12049
|
-
# "AWS_Account_ID"\}'`
|
12681
|
+
# Example: `--s3-settings='{"ExpectedBucketOwner": "AWS_Account_ID"}'`
|
12050
12682
|
#
|
12051
12683
|
# When you make a request to test a connection or perform a migration,
|
12052
12684
|
# S3 checks the account ID of the bucket owner against the specified
|
@@ -12306,6 +12938,71 @@ module Aws::DatabaseMigrationService
|
|
12306
12938
|
include Aws::Structure
|
12307
12939
|
end
|
12308
12940
|
|
12941
|
+
# Defines settings for a source data provider for a data migration.
|
12942
|
+
#
|
12943
|
+
# @!attribute [rw] cdc_start_position
|
12944
|
+
# The change data capture (CDC) start position for the source data
|
12945
|
+
# provider.
|
12946
|
+
# @return [String]
|
12947
|
+
#
|
12948
|
+
# @!attribute [rw] cdc_start_time
|
12949
|
+
# The change data capture (CDC) start time for the source data
|
12950
|
+
# provider.
|
12951
|
+
# @return [Time]
|
12952
|
+
#
|
12953
|
+
# @!attribute [rw] cdc_stop_time
|
12954
|
+
# The change data capture (CDC) stop time for the source data
|
12955
|
+
# provider.
|
12956
|
+
# @return [Time]
|
12957
|
+
#
|
12958
|
+
# @!attribute [rw] slot_name
|
12959
|
+
# The name of the replication slot on the source data provider. This
|
12960
|
+
# attribute is only valid for a PostgreSQL or Aurora PostgreSQL
|
12961
|
+
# source.
|
12962
|
+
# @return [String]
|
12963
|
+
#
|
12964
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SourceDataSetting AWS API Documentation
|
12965
|
+
#
|
12966
|
+
class SourceDataSetting < Struct.new(
|
12967
|
+
:cdc_start_position,
|
12968
|
+
:cdc_start_time,
|
12969
|
+
:cdc_stop_time,
|
12970
|
+
:slot_name)
|
12971
|
+
SENSITIVE = []
|
12972
|
+
include Aws::Structure
|
12973
|
+
end
|
12974
|
+
|
12975
|
+
# @!attribute [rw] data_migration_identifier
|
12976
|
+
# The identifier (name or ARN) of the data migration to start.
|
12977
|
+
# @return [String]
|
12978
|
+
#
|
12979
|
+
# @!attribute [rw] start_type
|
12980
|
+
# Specifies the start type for the data migration. Valid values
|
12981
|
+
# include `start-replication`, `reload-target`, and
|
12982
|
+
# `resume-processing`.
|
12983
|
+
# @return [String]
|
12984
|
+
#
|
12985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartDataMigrationMessage AWS API Documentation
|
12986
|
+
#
|
12987
|
+
class StartDataMigrationMessage < Struct.new(
|
12988
|
+
:data_migration_identifier,
|
12989
|
+
:start_type)
|
12990
|
+
SENSITIVE = []
|
12991
|
+
include Aws::Structure
|
12992
|
+
end
|
12993
|
+
|
12994
|
+
# @!attribute [rw] data_migration
|
12995
|
+
# The data migration that DMS started.
|
12996
|
+
# @return [Types::DataMigration]
|
12997
|
+
#
|
12998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartDataMigrationResponse AWS API Documentation
|
12999
|
+
#
|
13000
|
+
class StartDataMigrationResponse < Struct.new(
|
13001
|
+
:data_migration)
|
13002
|
+
SENSITIVE = []
|
13003
|
+
include Aws::Structure
|
13004
|
+
end
|
13005
|
+
|
12309
13006
|
# @!attribute [rw] migration_project_identifier
|
12310
13007
|
# The migration project name or Amazon Resource Name (ARN).
|
12311
13008
|
# @return [String]
|
@@ -12556,6 +13253,23 @@ module Aws::DatabaseMigrationService
|
|
12556
13253
|
#
|
12557
13254
|
# @!attribute [rw] start_replication_type
|
12558
13255
|
# The replication type.
|
13256
|
+
#
|
13257
|
+
# When the replication type is `full-load` or `full-load-and-cdc`, the
|
13258
|
+
# only valid value for the first run of the replication is
|
13259
|
+
# `start-replication`. This option will start the replication.
|
13260
|
+
#
|
13261
|
+
# You can also use ReloadTables to reload specific tables that failed
|
13262
|
+
# during replication instead of restarting the replication.
|
13263
|
+
#
|
13264
|
+
# The `resume-processing` option isn't applicable for a full-load
|
13265
|
+
# replication, because you can't resume partially loaded tables
|
13266
|
+
# during the full load phase.
|
13267
|
+
#
|
13268
|
+
# For a `full-load-and-cdc` replication, DMS migrates table data, and
|
13269
|
+
# then applies data changes that occur on the source. To load all the
|
13270
|
+
# tables again, and start capturing source changes, use
|
13271
|
+
# `reload-target`. Otherwise use `resume-processing`, to replicate the
|
13272
|
+
# changes from the last stop position.
|
12559
13273
|
# @return [String]
|
12560
13274
|
#
|
12561
13275
|
# @!attribute [rw] cdc_start_time
|
@@ -12704,6 +13418,11 @@ module Aws::DatabaseMigrationService
|
|
12704
13418
|
# </note>
|
12705
13419
|
# @return [Array<String>]
|
12706
13420
|
#
|
13421
|
+
# @!attribute [rw] tags
|
13422
|
+
# One or more tags to be assigned to the premigration assessment run
|
13423
|
+
# that you want to start.
|
13424
|
+
# @return [Array<Types::Tag>]
|
13425
|
+
#
|
12707
13426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRunMessage AWS API Documentation
|
12708
13427
|
#
|
12709
13428
|
class StartReplicationTaskAssessmentRunMessage < Struct.new(
|
@@ -12715,7 +13434,8 @@ module Aws::DatabaseMigrationService
|
|
12715
13434
|
:result_kms_key_arn,
|
12716
13435
|
:assessment_run_name,
|
12717
13436
|
:include_only,
|
12718
|
-
:exclude
|
13437
|
+
:exclude,
|
13438
|
+
:tags)
|
12719
13439
|
SENSITIVE = []
|
12720
13440
|
include Aws::Structure
|
12721
13441
|
end
|
@@ -12831,6 +13551,30 @@ module Aws::DatabaseMigrationService
|
|
12831
13551
|
include Aws::Structure
|
12832
13552
|
end
|
12833
13553
|
|
13554
|
+
# @!attribute [rw] data_migration_identifier
|
13555
|
+
# The identifier (name or ARN) of the data migration to stop.
|
13556
|
+
# @return [String]
|
13557
|
+
#
|
13558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopDataMigrationMessage AWS API Documentation
|
13559
|
+
#
|
13560
|
+
class StopDataMigrationMessage < Struct.new(
|
13561
|
+
:data_migration_identifier)
|
13562
|
+
SENSITIVE = []
|
13563
|
+
include Aws::Structure
|
13564
|
+
end
|
13565
|
+
|
13566
|
+
# @!attribute [rw] data_migration
|
13567
|
+
# The data migration that DMS stopped.
|
13568
|
+
# @return [Types::DataMigration]
|
13569
|
+
#
|
13570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopDataMigrationResponse AWS API Documentation
|
13571
|
+
#
|
13572
|
+
class StopDataMigrationResponse < Struct.new(
|
13573
|
+
:data_migration)
|
13574
|
+
SENSITIVE = []
|
13575
|
+
include Aws::Structure
|
13576
|
+
end
|
13577
|
+
|
12834
13578
|
# @!attribute [rw] replication_config_arn
|
12835
13579
|
# The Amazon Resource Name of the replication to stop.
|
12836
13580
|
# @return [String]
|
@@ -13247,7 +13991,7 @@ module Aws::DatabaseMigrationService
|
|
13247
13991
|
# "dms:". The string can only contain only the set of Unicode
|
13248
13992
|
# letters, digits, white-space, '\_', '.', '/', '=', '+',
|
13249
13993
|
# '-' (Java regular expressions:
|
13250
|
-
# "^(\[\\\\p
|
13994
|
+
# "^(\[\\\\p\{L}\\\\p\{Z}\\\\p\{N}\_.:/=+\\\\-\]*)$").
|
13251
13995
|
# @return [String]
|
13252
13996
|
#
|
13253
13997
|
# @!attribute [rw] value
|
@@ -13256,7 +14000,7 @@ module Aws::DatabaseMigrationService
|
|
13256
14000
|
# "aws:" or "dms:". The string can only contain only the set of
|
13257
14001
|
# Unicode letters, digits, white-space, '\_', '.', '/', '=',
|
13258
14002
|
# '+', '-' (Java regular expressions:
|
13259
|
-
# "^(\[\\\\p
|
14003
|
+
# "^(\[\\\\p\{L}\\\\p\{Z}\\\\p\{N}\_.:/=+\\\\-\]*)$").
|
13260
14004
|
# @return [String]
|
13261
14005
|
#
|
13262
14006
|
# @!attribute [rw] resource_arn
|
@@ -13429,3 +14173,4 @@ module Aws::DatabaseMigrationService
|
|
13429
14173
|
|
13430
14174
|
end
|
13431
14175
|
end
|
14176
|
+
|