aws-sdk-databasemigrationservice 1.85.0 → 1.87.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +2747 -140
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +872 -0
- data/lib/aws-sdk-databasemigrationservice/endpoints.rb +378 -0
- data/lib/aws-sdk-databasemigrationservice/plugins/endpoints.rb +54 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +2182 -60
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- metadata +2 -2
@@ -471,25 +471,25 @@ module Aws::DatabaseMigrationService
|
|
471
471
|
# @!attribute [rw] max_capacity_units
|
472
472
|
# Specifies the maximum value of the DMS capacity units (DCUs) for
|
473
473
|
# which a given DMS Serverless replication can be provisioned. A
|
474
|
-
# single DCU is 2GB of RAM, with
|
475
|
-
# The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128,
|
476
|
-
# 256, and 384. So, the maximum value that you can specify for
|
477
|
-
# Serverless is 384. The `MaxCapacityUnits` parameter is the only
|
478
|
-
# parameter you are required to specify.
|
474
|
+
# single DCU is 2GB of RAM, with 1 DCU as the minimum value allowed.
|
475
|
+
# The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128,
|
476
|
+
# 192, 256, and 384. So, the maximum value that you can specify for
|
477
|
+
# DMS Serverless is 384. The `MaxCapacityUnits` parameter is the only
|
478
|
+
# DCU parameter you are required to specify.
|
479
479
|
# @return [Integer]
|
480
480
|
#
|
481
481
|
# @!attribute [rw] min_capacity_units
|
482
482
|
# Specifies the minimum value of the DMS capacity units (DCUs) for
|
483
483
|
# which a given DMS Serverless replication can be provisioned. A
|
484
|
-
# single DCU is 2GB of RAM, with
|
485
|
-
# The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128,
|
486
|
-
# 256, and 384. So, the minimum DCU value that you can specify
|
487
|
-
# Serverless is
|
484
|
+
# single DCU is 2GB of RAM, with 1 DCU as the minimum value allowed.
|
485
|
+
# The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128,
|
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
488
|
# `MinCapacityUnits` parameter. If you don't set this value, DMS
|
489
489
|
# scans the current activity of available source tables to identify an
|
490
490
|
# optimum setting for this parameter. If there is no current source
|
491
491
|
# activity or DMS can't otherwise identify a more appropriate value,
|
492
|
-
# it sets this parameter to the minimum DCU value allowed,
|
492
|
+
# it sets this parameter to the minimum DCU value allowed, 1.
|
493
493
|
# @return [Integer]
|
494
494
|
#
|
495
495
|
# @!attribute [rw] multi_az
|
@@ -591,6 +591,53 @@ module Aws::DatabaseMigrationService
|
|
591
591
|
include Aws::Structure
|
592
592
|
end
|
593
593
|
|
594
|
+
# @!attribute [rw] data_provider_name
|
595
|
+
# A user-friendly name for the data provider.
|
596
|
+
# @return [String]
|
597
|
+
#
|
598
|
+
# @!attribute [rw] description
|
599
|
+
# A user-friendly description of the data provider.
|
600
|
+
# @return [String]
|
601
|
+
#
|
602
|
+
# @!attribute [rw] engine
|
603
|
+
# The type of database engine for the data provider. Valid values
|
604
|
+
# include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
|
605
|
+
# `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
|
606
|
+
# Amazon Aurora MySQL-Compatible Edition.
|
607
|
+
# @return [String]
|
608
|
+
#
|
609
|
+
# @!attribute [rw] settings
|
610
|
+
# The settings in JSON format for a data provider.
|
611
|
+
# @return [Types::DataProviderSettings]
|
612
|
+
#
|
613
|
+
# @!attribute [rw] tags
|
614
|
+
# One or more tags to be assigned to the data provider.
|
615
|
+
# @return [Array<Types::Tag>]
|
616
|
+
#
|
617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateDataProviderMessage AWS API Documentation
|
618
|
+
#
|
619
|
+
class CreateDataProviderMessage < Struct.new(
|
620
|
+
:data_provider_name,
|
621
|
+
:description,
|
622
|
+
:engine,
|
623
|
+
:settings,
|
624
|
+
:tags)
|
625
|
+
SENSITIVE = []
|
626
|
+
include Aws::Structure
|
627
|
+
end
|
628
|
+
|
629
|
+
# @!attribute [rw] data_provider
|
630
|
+
# The data provider that was created.
|
631
|
+
# @return [Types::DataProvider]
|
632
|
+
#
|
633
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateDataProviderResponse AWS API Documentation
|
634
|
+
#
|
635
|
+
class CreateDataProviderResponse < Struct.new(
|
636
|
+
:data_provider)
|
637
|
+
SENSITIVE = []
|
638
|
+
include Aws::Structure
|
639
|
+
end
|
640
|
+
|
594
641
|
# @!attribute [rw] endpoint_identifier
|
595
642
|
# The database endpoint identifier. Identifiers must begin with a
|
596
643
|
# letter and must contain only ASCII letters, digits, and hyphens.
|
@@ -1084,6 +1131,160 @@ module Aws::DatabaseMigrationService
|
|
1084
1131
|
include Aws::Structure
|
1085
1132
|
end
|
1086
1133
|
|
1134
|
+
# @!attribute [rw] availability_zone
|
1135
|
+
# The Availability Zone where the instance profile will be created.
|
1136
|
+
# The default value is a random, system-chosen Availability Zone in
|
1137
|
+
# the Amazon Web Services Region where your data provider is created,
|
1138
|
+
# for examplem `us-east-1d`.
|
1139
|
+
# @return [String]
|
1140
|
+
#
|
1141
|
+
# @!attribute [rw] kms_key_arn
|
1142
|
+
# The Amazon Resource Name (ARN) of the KMS key that is used to
|
1143
|
+
# encrypt the connection parameters for the instance profile.
|
1144
|
+
#
|
1145
|
+
# If you don't specify a value for the `KmsKeyArn` parameter, then
|
1146
|
+
# DMS uses your default encryption key.
|
1147
|
+
#
|
1148
|
+
# KMS creates the default encryption key for your Amazon Web Services
|
1149
|
+
# account. Your Amazon Web Services account has a different default
|
1150
|
+
# encryption key for each Amazon Web Services Region.
|
1151
|
+
# @return [String]
|
1152
|
+
#
|
1153
|
+
# @!attribute [rw] publicly_accessible
|
1154
|
+
# Specifies the accessibility options for the instance profile. A
|
1155
|
+
# value of `true` represents an instance profile with a public IP
|
1156
|
+
# address. A value of `false` represents an instance profile with a
|
1157
|
+
# private IP address. The default value is `true`.
|
1158
|
+
# @return [Boolean]
|
1159
|
+
#
|
1160
|
+
# @!attribute [rw] tags
|
1161
|
+
# One or more tags to be assigned to the instance profile.
|
1162
|
+
# @return [Array<Types::Tag>]
|
1163
|
+
#
|
1164
|
+
# @!attribute [rw] network_type
|
1165
|
+
# Specifies the network type for the instance profile. A value of
|
1166
|
+
# `IPV4` represents an instance profile with IPv4 network type and
|
1167
|
+
# only supports IPv4 addressing. A value of `IPV6` represents an
|
1168
|
+
# instance profile with IPv6 network type and only supports IPv6
|
1169
|
+
# addressing. A value of `DUAL` represents an instance profile with
|
1170
|
+
# dual network type that supports IPv4 and IPv6 addressing.
|
1171
|
+
# @return [String]
|
1172
|
+
#
|
1173
|
+
# @!attribute [rw] instance_profile_name
|
1174
|
+
# A user-friendly name for the instance profile.
|
1175
|
+
# @return [String]
|
1176
|
+
#
|
1177
|
+
# @!attribute [rw] description
|
1178
|
+
# A user-friendly description of the instance profile.
|
1179
|
+
# @return [String]
|
1180
|
+
#
|
1181
|
+
# @!attribute [rw] subnet_group_identifier
|
1182
|
+
# A subnet group to associate with the instance profile.
|
1183
|
+
# @return [String]
|
1184
|
+
#
|
1185
|
+
# @!attribute [rw] vpc_security_groups
|
1186
|
+
# Specifies the VPC security group names to be used with the instance
|
1187
|
+
# profile. The VPC security group must work with the VPC containing
|
1188
|
+
# the instance profile.
|
1189
|
+
# @return [Array<String>]
|
1190
|
+
#
|
1191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateInstanceProfileMessage AWS API Documentation
|
1192
|
+
#
|
1193
|
+
class CreateInstanceProfileMessage < Struct.new(
|
1194
|
+
:availability_zone,
|
1195
|
+
:kms_key_arn,
|
1196
|
+
:publicly_accessible,
|
1197
|
+
:tags,
|
1198
|
+
:network_type,
|
1199
|
+
:instance_profile_name,
|
1200
|
+
:description,
|
1201
|
+
:subnet_group_identifier,
|
1202
|
+
:vpc_security_groups)
|
1203
|
+
SENSITIVE = []
|
1204
|
+
include Aws::Structure
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
# @!attribute [rw] instance_profile
|
1208
|
+
# The instance profile that was created.
|
1209
|
+
# @return [Types::InstanceProfile]
|
1210
|
+
#
|
1211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateInstanceProfileResponse AWS API Documentation
|
1212
|
+
#
|
1213
|
+
class CreateInstanceProfileResponse < Struct.new(
|
1214
|
+
:instance_profile)
|
1215
|
+
SENSITIVE = []
|
1216
|
+
include Aws::Structure
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
# @!attribute [rw] migration_project_name
|
1220
|
+
# A user-friendly name for the migration project.
|
1221
|
+
# @return [String]
|
1222
|
+
#
|
1223
|
+
# @!attribute [rw] source_data_provider_descriptors
|
1224
|
+
# Information about the source data provider, including the name, ARN,
|
1225
|
+
# and Secrets Manager parameters.
|
1226
|
+
# @return [Array<Types::DataProviderDescriptorDefinition>]
|
1227
|
+
#
|
1228
|
+
# @!attribute [rw] target_data_provider_descriptors
|
1229
|
+
# Information about the target data provider, including the name, ARN,
|
1230
|
+
# and Amazon Web Services Secrets Manager parameters.
|
1231
|
+
# @return [Array<Types::DataProviderDescriptorDefinition>]
|
1232
|
+
#
|
1233
|
+
# @!attribute [rw] instance_profile_identifier
|
1234
|
+
# The identifier of the associated instance profile. Identifiers must
|
1235
|
+
# begin with a letter and must contain only ASCII letters, digits, and
|
1236
|
+
# hyphens. They can't end with a hyphen, or contain two consecutive
|
1237
|
+
# hyphens.
|
1238
|
+
# @return [String]
|
1239
|
+
#
|
1240
|
+
# @!attribute [rw] transformation_rules
|
1241
|
+
# The settings in JSON format for migration rules. Migration rules
|
1242
|
+
# make it possible for you to change the object names according to the
|
1243
|
+
# rules that you specify. For example, you can change an object name
|
1244
|
+
# to lowercase or uppercase, add or remove a prefix or suffix, or
|
1245
|
+
# rename objects.
|
1246
|
+
# @return [String]
|
1247
|
+
#
|
1248
|
+
# @!attribute [rw] description
|
1249
|
+
# A user-friendly description of the migration project.
|
1250
|
+
# @return [String]
|
1251
|
+
#
|
1252
|
+
# @!attribute [rw] tags
|
1253
|
+
# One or more tags to be assigned to the migration project.
|
1254
|
+
# @return [Array<Types::Tag>]
|
1255
|
+
#
|
1256
|
+
# @!attribute [rw] schema_conversion_application_attributes
|
1257
|
+
# The schema conversion application attributes, including the Amazon
|
1258
|
+
# S3 bucket name and Amazon S3 role ARN.
|
1259
|
+
# @return [Types::SCApplicationAttributes]
|
1260
|
+
#
|
1261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateMigrationProjectMessage AWS API Documentation
|
1262
|
+
#
|
1263
|
+
class CreateMigrationProjectMessage < Struct.new(
|
1264
|
+
:migration_project_name,
|
1265
|
+
:source_data_provider_descriptors,
|
1266
|
+
:target_data_provider_descriptors,
|
1267
|
+
:instance_profile_identifier,
|
1268
|
+
:transformation_rules,
|
1269
|
+
:description,
|
1270
|
+
:tags,
|
1271
|
+
:schema_conversion_application_attributes)
|
1272
|
+
SENSITIVE = []
|
1273
|
+
include Aws::Structure
|
1274
|
+
end
|
1275
|
+
|
1276
|
+
# @!attribute [rw] migration_project
|
1277
|
+
# The migration project that was created.
|
1278
|
+
# @return [Types::MigrationProject]
|
1279
|
+
#
|
1280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateMigrationProjectResponse AWS API Documentation
|
1281
|
+
#
|
1282
|
+
class CreateMigrationProjectResponse < Struct.new(
|
1283
|
+
:migration_project)
|
1284
|
+
SENSITIVE = []
|
1285
|
+
include Aws::Structure
|
1286
|
+
end
|
1287
|
+
|
1087
1288
|
# @!attribute [rw] replication_config_identifier
|
1088
1289
|
# A unique identifier that you want to use to create a
|
1089
1290
|
# `ReplicationConfigArn` that is returned as part of the output from
|
@@ -1295,15 +1496,6 @@ module Aws::DatabaseMigrationService
|
|
1295
1496
|
# window. This parameter defaults to `true`.
|
1296
1497
|
#
|
1297
1498
|
# Default: `true`
|
1298
|
-
#
|
1299
|
-
# When `AutoMinorVersionUpgrade` is enabled, DMS uses the current
|
1300
|
-
# default engine version when you create a replication instance. For
|
1301
|
-
# example, if you set `EngineVersion` to a lower version number than
|
1302
|
-
# the current default version, DMS uses the default version.
|
1303
|
-
#
|
1304
|
-
# If `AutoMinorVersionUpgrade` *isn’t* enabled when you create a
|
1305
|
-
# replication instance, DMS uses the engine version specified by the
|
1306
|
-
# `EngineVersion` parameter.
|
1307
1499
|
# @return [Boolean]
|
1308
1500
|
#
|
1309
1501
|
# @!attribute [rw] tags
|
@@ -1534,8 +1726,8 @@ module Aws::DatabaseMigrationService
|
|
1534
1726
|
# Server time example: --cdc-stop-position
|
1535
1727
|
# “server\_time:2018-02-09T12:12:12”
|
1536
1728
|
#
|
1537
|
-
# Commit time example: --cdc-stop-position
|
1538
|
-
# 2018-02-09T12:12:12“
|
1729
|
+
# Commit time example: --cdc-stop-position
|
1730
|
+
# “commit\_time:2018-02-09T12:12:12“
|
1539
1731
|
# @return [String]
|
1540
1732
|
#
|
1541
1733
|
# @!attribute [rw] tags
|
@@ -1599,6 +1791,175 @@ module Aws::DatabaseMigrationService
|
|
1599
1791
|
include Aws::Structure
|
1600
1792
|
end
|
1601
1793
|
|
1794
|
+
# Provides information that defines a data provider.
|
1795
|
+
#
|
1796
|
+
# @!attribute [rw] data_provider_name
|
1797
|
+
# The name of the data provider.
|
1798
|
+
# @return [String]
|
1799
|
+
#
|
1800
|
+
# @!attribute [rw] data_provider_arn
|
1801
|
+
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1802
|
+
# data provider.
|
1803
|
+
# @return [String]
|
1804
|
+
#
|
1805
|
+
# @!attribute [rw] data_provider_creation_time
|
1806
|
+
# The time the data provider was created.
|
1807
|
+
# @return [Time]
|
1808
|
+
#
|
1809
|
+
# @!attribute [rw] description
|
1810
|
+
# A description of the data provider. Descriptions can have up to 31
|
1811
|
+
# characters. A description can contain only ASCII letters, digits,
|
1812
|
+
# and hyphens ('-'). Also, it can't end with a hyphen or contain
|
1813
|
+
# two consecutive hyphens, and can only begin with a letter.
|
1814
|
+
# @return [String]
|
1815
|
+
#
|
1816
|
+
# @!attribute [rw] engine
|
1817
|
+
# The type of database engine for the data provider. Valid values
|
1818
|
+
# include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
|
1819
|
+
# `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
|
1820
|
+
# Amazon Aurora MySQL-Compatible Edition.
|
1821
|
+
# @return [String]
|
1822
|
+
#
|
1823
|
+
# @!attribute [rw] settings
|
1824
|
+
# The settings in JSON format for a data provider.
|
1825
|
+
# @return [Types::DataProviderSettings]
|
1826
|
+
#
|
1827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProvider AWS API Documentation
|
1828
|
+
#
|
1829
|
+
class DataProvider < Struct.new(
|
1830
|
+
:data_provider_name,
|
1831
|
+
:data_provider_arn,
|
1832
|
+
:data_provider_creation_time,
|
1833
|
+
:description,
|
1834
|
+
:engine,
|
1835
|
+
:settings)
|
1836
|
+
SENSITIVE = []
|
1837
|
+
include Aws::Structure
|
1838
|
+
end
|
1839
|
+
|
1840
|
+
# Information about a data provider.
|
1841
|
+
#
|
1842
|
+
# @!attribute [rw] secrets_manager_secret_id
|
1843
|
+
# The identifier of the Amazon Web Services Secrets Manager Secret
|
1844
|
+
# used to store access credentials for the data provider.
|
1845
|
+
# @return [String]
|
1846
|
+
#
|
1847
|
+
# @!attribute [rw] secrets_manager_access_role_arn
|
1848
|
+
# The ARN of the role used to access Amazon Web Services Secrets
|
1849
|
+
# Manager.
|
1850
|
+
# @return [String]
|
1851
|
+
#
|
1852
|
+
# @!attribute [rw] data_provider_name
|
1853
|
+
# The user-friendly name of the data provider.
|
1854
|
+
# @return [String]
|
1855
|
+
#
|
1856
|
+
# @!attribute [rw] data_provider_arn
|
1857
|
+
# The Amazon Resource Name (ARN) of the data provider.
|
1858
|
+
# @return [String]
|
1859
|
+
#
|
1860
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProviderDescriptor AWS API Documentation
|
1861
|
+
#
|
1862
|
+
class DataProviderDescriptor < Struct.new(
|
1863
|
+
:secrets_manager_secret_id,
|
1864
|
+
:secrets_manager_access_role_arn,
|
1865
|
+
:data_provider_name,
|
1866
|
+
:data_provider_arn)
|
1867
|
+
SENSITIVE = []
|
1868
|
+
include Aws::Structure
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# Information about a data provider.
|
1872
|
+
#
|
1873
|
+
# @!attribute [rw] data_provider_identifier
|
1874
|
+
# The name or Amazon Resource Name (ARN) of the data provider.
|
1875
|
+
# @return [String]
|
1876
|
+
#
|
1877
|
+
# @!attribute [rw] secrets_manager_secret_id
|
1878
|
+
# The identifier of the Amazon Web Services Secrets Manager Secret
|
1879
|
+
# used to store access credentials for the data provider.
|
1880
|
+
# @return [String]
|
1881
|
+
#
|
1882
|
+
# @!attribute [rw] secrets_manager_access_role_arn
|
1883
|
+
# The ARN of the role used to access Amazon Web Services Secrets
|
1884
|
+
# Manager.
|
1885
|
+
# @return [String]
|
1886
|
+
#
|
1887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProviderDescriptorDefinition AWS API Documentation
|
1888
|
+
#
|
1889
|
+
class DataProviderDescriptorDefinition < Struct.new(
|
1890
|
+
:data_provider_identifier,
|
1891
|
+
:secrets_manager_secret_id,
|
1892
|
+
:secrets_manager_access_role_arn)
|
1893
|
+
SENSITIVE = []
|
1894
|
+
include Aws::Structure
|
1895
|
+
end
|
1896
|
+
|
1897
|
+
# Provides information that defines a data provider.
|
1898
|
+
#
|
1899
|
+
# @note DataProviderSettings is a union - when making an API calls you must set exactly one of the members.
|
1900
|
+
#
|
1901
|
+
# @note DataProviderSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataProviderSettings corresponding to the set member.
|
1902
|
+
#
|
1903
|
+
# @!attribute [rw] redshift_settings
|
1904
|
+
# Provides information that defines an Amazon Redshift data provider.
|
1905
|
+
# @return [Types::RedshiftDataProviderSettings]
|
1906
|
+
#
|
1907
|
+
# @!attribute [rw] postgre_sql_settings
|
1908
|
+
# Provides information that defines a PostgreSQL data provider.
|
1909
|
+
# @return [Types::PostgreSqlDataProviderSettings]
|
1910
|
+
#
|
1911
|
+
# @!attribute [rw] my_sql_settings
|
1912
|
+
# Provides information that defines a MySQL data provider.
|
1913
|
+
# @return [Types::MySqlDataProviderSettings]
|
1914
|
+
#
|
1915
|
+
# @!attribute [rw] oracle_settings
|
1916
|
+
# Provides information that defines an Oracle data provider.
|
1917
|
+
# @return [Types::OracleDataProviderSettings]
|
1918
|
+
#
|
1919
|
+
# @!attribute [rw] microsoft_sql_server_settings
|
1920
|
+
# Provides information that defines a Microsoft SQL Server data
|
1921
|
+
# provider.
|
1922
|
+
# @return [Types::MicrosoftSqlServerDataProviderSettings]
|
1923
|
+
#
|
1924
|
+
# @!attribute [rw] doc_db_settings
|
1925
|
+
# Provides information that defines a DocumentDB data provider.
|
1926
|
+
# @return [Types::DocDbDataProviderSettings]
|
1927
|
+
#
|
1928
|
+
# @!attribute [rw] maria_db_settings
|
1929
|
+
# Provides information that defines a MariaDB data provider.
|
1930
|
+
# @return [Types::MariaDbDataProviderSettings]
|
1931
|
+
#
|
1932
|
+
# @!attribute [rw] mongo_db_settings
|
1933
|
+
# Provides information that defines a MongoDB data provider.
|
1934
|
+
# @return [Types::MongoDbDataProviderSettings]
|
1935
|
+
#
|
1936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProviderSettings AWS API Documentation
|
1937
|
+
#
|
1938
|
+
class DataProviderSettings < Struct.new(
|
1939
|
+
:redshift_settings,
|
1940
|
+
:postgre_sql_settings,
|
1941
|
+
:my_sql_settings,
|
1942
|
+
:oracle_settings,
|
1943
|
+
:microsoft_sql_server_settings,
|
1944
|
+
:doc_db_settings,
|
1945
|
+
:maria_db_settings,
|
1946
|
+
:mongo_db_settings,
|
1947
|
+
:unknown)
|
1948
|
+
SENSITIVE = []
|
1949
|
+
include Aws::Structure
|
1950
|
+
include Aws::Structure::Union
|
1951
|
+
|
1952
|
+
class RedshiftSettings < DataProviderSettings; end
|
1953
|
+
class PostgreSqlSettings < DataProviderSettings; end
|
1954
|
+
class MySqlSettings < DataProviderSettings; end
|
1955
|
+
class OracleSettings < DataProviderSettings; end
|
1956
|
+
class MicrosoftSqlServerSettings < DataProviderSettings; end
|
1957
|
+
class DocDbSettings < DataProviderSettings; end
|
1958
|
+
class MariaDbSettings < DataProviderSettings; end
|
1959
|
+
class MongoDbSettings < DataProviderSettings; end
|
1960
|
+
class Unknown < DataProviderSettings; end
|
1961
|
+
end
|
1962
|
+
|
1602
1963
|
# Describes an inventory database instance for a Fleet Advisor
|
1603
1964
|
# collector.
|
1604
1965
|
#
|
@@ -1725,6 +2086,20 @@ module Aws::DatabaseMigrationService
|
|
1725
2086
|
include Aws::Structure
|
1726
2087
|
end
|
1727
2088
|
|
2089
|
+
# Provides error information about a schema conversion operation.
|
2090
|
+
#
|
2091
|
+
# @!attribute [rw] message
|
2092
|
+
# The error message.
|
2093
|
+
# @return [String]
|
2094
|
+
#
|
2095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DefaultErrorDetails AWS API Documentation
|
2096
|
+
#
|
2097
|
+
class DefaultErrorDetails < Struct.new(
|
2098
|
+
:message)
|
2099
|
+
SENSITIVE = []
|
2100
|
+
include Aws::Structure
|
2101
|
+
end
|
2102
|
+
|
1728
2103
|
# @!attribute [rw] certificate_arn
|
1729
2104
|
# The Amazon Resource Name (ARN) of the certificate.
|
1730
2105
|
# @return [String]
|
@@ -1791,6 +2166,30 @@ module Aws::DatabaseMigrationService
|
|
1791
2166
|
include Aws::Structure
|
1792
2167
|
end
|
1793
2168
|
|
2169
|
+
# @!attribute [rw] data_provider_identifier
|
2170
|
+
# The identifier of the data provider to delete.
|
2171
|
+
# @return [String]
|
2172
|
+
#
|
2173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataProviderMessage AWS API Documentation
|
2174
|
+
#
|
2175
|
+
class DeleteDataProviderMessage < Struct.new(
|
2176
|
+
:data_provider_identifier)
|
2177
|
+
SENSITIVE = []
|
2178
|
+
include Aws::Structure
|
2179
|
+
end
|
2180
|
+
|
2181
|
+
# @!attribute [rw] data_provider
|
2182
|
+
# The data provider that was deleted.
|
2183
|
+
# @return [Types::DataProvider]
|
2184
|
+
#
|
2185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataProviderResponse AWS API Documentation
|
2186
|
+
#
|
2187
|
+
class DeleteDataProviderResponse < Struct.new(
|
2188
|
+
:data_provider)
|
2189
|
+
SENSITIVE = []
|
2190
|
+
include Aws::Structure
|
2191
|
+
end
|
2192
|
+
|
1794
2193
|
# @!attribute [rw] endpoint_arn
|
1795
2194
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
1796
2195
|
# endpoint.
|
@@ -1864,6 +2263,55 @@ module Aws::DatabaseMigrationService
|
|
1864
2263
|
include Aws::Structure
|
1865
2264
|
end
|
1866
2265
|
|
2266
|
+
# @!attribute [rw] instance_profile_identifier
|
2267
|
+
# The identifier of the instance profile to delete.
|
2268
|
+
# @return [String]
|
2269
|
+
#
|
2270
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteInstanceProfileMessage AWS API Documentation
|
2271
|
+
#
|
2272
|
+
class DeleteInstanceProfileMessage < Struct.new(
|
2273
|
+
:instance_profile_identifier)
|
2274
|
+
SENSITIVE = []
|
2275
|
+
include Aws::Structure
|
2276
|
+
end
|
2277
|
+
|
2278
|
+
# @!attribute [rw] instance_profile
|
2279
|
+
# The instance profile that was deleted.
|
2280
|
+
# @return [Types::InstanceProfile]
|
2281
|
+
#
|
2282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteInstanceProfileResponse AWS API Documentation
|
2283
|
+
#
|
2284
|
+
class DeleteInstanceProfileResponse < Struct.new(
|
2285
|
+
:instance_profile)
|
2286
|
+
SENSITIVE = []
|
2287
|
+
include Aws::Structure
|
2288
|
+
end
|
2289
|
+
|
2290
|
+
# @!attribute [rw] migration_project_identifier
|
2291
|
+
# The name or Amazon Resource Name (ARN) of the migration project to
|
2292
|
+
# delete.
|
2293
|
+
# @return [String]
|
2294
|
+
#
|
2295
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteMigrationProjectMessage AWS API Documentation
|
2296
|
+
#
|
2297
|
+
class DeleteMigrationProjectMessage < Struct.new(
|
2298
|
+
:migration_project_identifier)
|
2299
|
+
SENSITIVE = []
|
2300
|
+
include Aws::Structure
|
2301
|
+
end
|
2302
|
+
|
2303
|
+
# @!attribute [rw] migration_project
|
2304
|
+
# The migration project that was deleted.
|
2305
|
+
# @return [Types::MigrationProject]
|
2306
|
+
#
|
2307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteMigrationProjectResponse AWS API Documentation
|
2308
|
+
#
|
2309
|
+
class DeleteMigrationProjectResponse < Struct.new(
|
2310
|
+
:migration_project)
|
2311
|
+
SENSITIVE = []
|
2312
|
+
include Aws::Structure
|
2313
|
+
end
|
2314
|
+
|
1867
2315
|
# @!attribute [rw] replication_config_arn
|
1868
2316
|
# The replication config to delete.
|
1869
2317
|
# @return [String]
|
@@ -2198,21 +2646,111 @@ module Aws::DatabaseMigrationService
|
|
2198
2646
|
include Aws::Structure
|
2199
2647
|
end
|
2200
2648
|
|
2201
|
-
# @!attribute [rw]
|
2202
|
-
# The
|
2649
|
+
# @!attribute [rw] migration_project_identifier
|
2650
|
+
# The name or Amazon Resource Name (ARN) for the schema conversion
|
2651
|
+
# project to describe.
|
2203
2652
|
# @return [String]
|
2204
2653
|
#
|
2205
|
-
#
|
2206
|
-
# The maximum number of records to include in the response. If more
|
2207
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
2208
|
-
# token called a marker is included in the response so that the
|
2209
|
-
# remaining results can be retrieved.
|
2210
|
-
# @return [Integer]
|
2654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConversionConfigurationMessage AWS API Documentation
|
2211
2655
|
#
|
2212
|
-
|
2213
|
-
|
2214
|
-
|
2215
|
-
|
2656
|
+
class DescribeConversionConfigurationMessage < Struct.new(
|
2657
|
+
:migration_project_identifier)
|
2658
|
+
SENSITIVE = []
|
2659
|
+
include Aws::Structure
|
2660
|
+
end
|
2661
|
+
|
2662
|
+
# @!attribute [rw] migration_project_identifier
|
2663
|
+
# The name or Amazon Resource Name (ARN) for the schema conversion
|
2664
|
+
# project.
|
2665
|
+
# @return [String]
|
2666
|
+
#
|
2667
|
+
# @!attribute [rw] conversion_configuration
|
2668
|
+
# The configuration parameters for the schema conversion project.
|
2669
|
+
# @return [String]
|
2670
|
+
#
|
2671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConversionConfigurationResponse AWS API Documentation
|
2672
|
+
#
|
2673
|
+
class DescribeConversionConfigurationResponse < Struct.new(
|
2674
|
+
:migration_project_identifier,
|
2675
|
+
:conversion_configuration)
|
2676
|
+
SENSITIVE = []
|
2677
|
+
include Aws::Structure
|
2678
|
+
end
|
2679
|
+
|
2680
|
+
# @!attribute [rw] filters
|
2681
|
+
# Filters applied to the data providers described in the form of
|
2682
|
+
# key-value pairs.
|
2683
|
+
# @return [Array<Types::Filter>]
|
2684
|
+
#
|
2685
|
+
# @!attribute [rw] max_records
|
2686
|
+
# The maximum number of records to include in the response. If more
|
2687
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
2688
|
+
# pagination token in the response so that you can retrieve the
|
2689
|
+
# remaining results.
|
2690
|
+
# @return [Integer]
|
2691
|
+
#
|
2692
|
+
# @!attribute [rw] marker
|
2693
|
+
# Specifies the unique pagination token that makes it possible to
|
2694
|
+
# display the next page of results. If this parameter is specified,
|
2695
|
+
# the response includes only records beyond the marker, up to the
|
2696
|
+
# value specified by `MaxRecords`.
|
2697
|
+
#
|
2698
|
+
# If `Marker` is returned by a previous response, there are more
|
2699
|
+
# results available. The value of `Marker` is a unique pagination
|
2700
|
+
# token for each page. To retrieve the next page, make the call again
|
2701
|
+
# using the returned token and keeping all other arguments unchanged.
|
2702
|
+
# @return [String]
|
2703
|
+
#
|
2704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataProvidersMessage AWS API Documentation
|
2705
|
+
#
|
2706
|
+
class DescribeDataProvidersMessage < Struct.new(
|
2707
|
+
:filters,
|
2708
|
+
:max_records,
|
2709
|
+
:marker)
|
2710
|
+
SENSITIVE = []
|
2711
|
+
include Aws::Structure
|
2712
|
+
end
|
2713
|
+
|
2714
|
+
# @!attribute [rw] marker
|
2715
|
+
# Specifies the unique pagination token that makes it possible to
|
2716
|
+
# display the next page of results. If this parameter is specified,
|
2717
|
+
# the response includes only records beyond the marker, up to the
|
2718
|
+
# value specified by `MaxRecords`.
|
2719
|
+
#
|
2720
|
+
# If `Marker` is returned by a previous response, there are more
|
2721
|
+
# results available. The value of `Marker` is a unique pagination
|
2722
|
+
# token for each page. To retrieve the next page, make the call again
|
2723
|
+
# using the returned token and keeping all other arguments unchanged.
|
2724
|
+
# @return [String]
|
2725
|
+
#
|
2726
|
+
# @!attribute [rw] data_providers
|
2727
|
+
# A description of data providers.
|
2728
|
+
# @return [Array<Types::DataProvider>]
|
2729
|
+
#
|
2730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataProvidersResponse AWS API Documentation
|
2731
|
+
#
|
2732
|
+
class DescribeDataProvidersResponse < Struct.new(
|
2733
|
+
:marker,
|
2734
|
+
:data_providers)
|
2735
|
+
SENSITIVE = []
|
2736
|
+
include Aws::Structure
|
2737
|
+
end
|
2738
|
+
|
2739
|
+
# @!attribute [rw] engine_name
|
2740
|
+
# The database engine used for your source or target endpoint.
|
2741
|
+
# @return [String]
|
2742
|
+
#
|
2743
|
+
# @!attribute [rw] max_records
|
2744
|
+
# The maximum number of records to include in the response. If more
|
2745
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2746
|
+
# token called a marker is included in the response so that the
|
2747
|
+
# remaining results can be retrieved.
|
2748
|
+
# @return [Integer]
|
2749
|
+
#
|
2750
|
+
# @!attribute [rw] marker
|
2751
|
+
# An optional pagination token provided by a previous request. If this
|
2752
|
+
# parameter is specified, the response includes only records beyond
|
2753
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2216
2754
|
# @return [String]
|
2217
2755
|
#
|
2218
2756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointSettingsMessage AWS API Documentation
|
@@ -2563,6 +3101,71 @@ module Aws::DatabaseMigrationService
|
|
2563
3101
|
include Aws::Structure
|
2564
3102
|
end
|
2565
3103
|
|
3104
|
+
# @!attribute [rw] migration_project_identifier
|
3105
|
+
# The name or Amazon Resource Name (ARN) for the migration project.
|
3106
|
+
# @return [String]
|
3107
|
+
#
|
3108
|
+
# @!attribute [rw] filters
|
3109
|
+
# Filters applied to the extension pack associations described in the
|
3110
|
+
# form of key-value pairs.
|
3111
|
+
# @return [Array<Types::Filter>]
|
3112
|
+
#
|
3113
|
+
# @!attribute [rw] marker
|
3114
|
+
# Specifies the unique pagination token that makes it possible to
|
3115
|
+
# display the next page of results. If this parameter is specified,
|
3116
|
+
# the response includes only records beyond the marker, up to the
|
3117
|
+
# value specified by `MaxRecords`.
|
3118
|
+
#
|
3119
|
+
# If `Marker` is returned by a previous response, there are more
|
3120
|
+
# results available. The value of `Marker` is a unique pagination
|
3121
|
+
# token for each page. To retrieve the next page, make the call again
|
3122
|
+
# using the returned token and keeping all other arguments unchanged.
|
3123
|
+
# @return [String]
|
3124
|
+
#
|
3125
|
+
# @!attribute [rw] max_records
|
3126
|
+
# The maximum number of records to include in the response. If more
|
3127
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
3128
|
+
# pagination token in the response so that you can retrieve the
|
3129
|
+
# remaining results.
|
3130
|
+
# @return [Integer]
|
3131
|
+
#
|
3132
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeExtensionPackAssociationsMessage AWS API Documentation
|
3133
|
+
#
|
3134
|
+
class DescribeExtensionPackAssociationsMessage < Struct.new(
|
3135
|
+
:migration_project_identifier,
|
3136
|
+
:filters,
|
3137
|
+
:marker,
|
3138
|
+
:max_records)
|
3139
|
+
SENSITIVE = []
|
3140
|
+
include Aws::Structure
|
3141
|
+
end
|
3142
|
+
|
3143
|
+
# @!attribute [rw] marker
|
3144
|
+
# Specifies the unique pagination token that makes it possible to
|
3145
|
+
# display the next page of results. If this parameter is specified,
|
3146
|
+
# the response includes only records beyond the marker, up to the
|
3147
|
+
# value specified by `MaxRecords`.
|
3148
|
+
#
|
3149
|
+
# If `Marker` is returned by a previous response, there are more
|
3150
|
+
# results available. The value of `Marker` is a unique pagination
|
3151
|
+
# token for each page. To retrieve the next page, make the call again
|
3152
|
+
# using the returned token and keeping all other arguments unchanged.
|
3153
|
+
# @return [String]
|
3154
|
+
#
|
3155
|
+
# @!attribute [rw] requests
|
3156
|
+
# A paginated list of extension pack associations for the specified
|
3157
|
+
# migration project.
|
3158
|
+
# @return [Array<Types::SchemaConversionRequest>]
|
3159
|
+
#
|
3160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeExtensionPackAssociationsResponse AWS API Documentation
|
3161
|
+
#
|
3162
|
+
class DescribeExtensionPackAssociationsResponse < Struct.new(
|
3163
|
+
:marker,
|
3164
|
+
:requests)
|
3165
|
+
SENSITIVE = []
|
3166
|
+
include Aws::Structure
|
3167
|
+
end
|
3168
|
+
|
2566
3169
|
# @!attribute [rw] filters
|
2567
3170
|
# If you specify any of the following filters, the output includes
|
2568
3171
|
# information for only those collectors that meet the filter criteria:
|
@@ -2845,6 +3448,442 @@ module Aws::DatabaseMigrationService
|
|
2845
3448
|
include Aws::Structure
|
2846
3449
|
end
|
2847
3450
|
|
3451
|
+
# @!attribute [rw] filters
|
3452
|
+
# Filters applied to the instance profiles described in the form of
|
3453
|
+
# key-value pairs.
|
3454
|
+
# @return [Array<Types::Filter>]
|
3455
|
+
#
|
3456
|
+
# @!attribute [rw] max_records
|
3457
|
+
# The maximum number of records to include in the response. If more
|
3458
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
3459
|
+
# pagination token in the response so that you can retrieve the
|
3460
|
+
# remaining results.
|
3461
|
+
# @return [Integer]
|
3462
|
+
#
|
3463
|
+
# @!attribute [rw] marker
|
3464
|
+
# Specifies the unique pagination token that makes it possible to
|
3465
|
+
# display the next page of results. If this parameter is specified,
|
3466
|
+
# the response includes only records beyond the marker, up to the
|
3467
|
+
# value specified by `MaxRecords`.
|
3468
|
+
#
|
3469
|
+
# If `Marker` is returned by a previous response, there are more
|
3470
|
+
# results available. The value of `Marker` is a unique pagination
|
3471
|
+
# token for each page. To retrieve the next page, make the call again
|
3472
|
+
# using the returned token and keeping all other arguments unchanged.
|
3473
|
+
# @return [String]
|
3474
|
+
#
|
3475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeInstanceProfilesMessage AWS API Documentation
|
3476
|
+
#
|
3477
|
+
class DescribeInstanceProfilesMessage < Struct.new(
|
3478
|
+
:filters,
|
3479
|
+
:max_records,
|
3480
|
+
:marker)
|
3481
|
+
SENSITIVE = []
|
3482
|
+
include Aws::Structure
|
3483
|
+
end
|
3484
|
+
|
3485
|
+
# @!attribute [rw] marker
|
3486
|
+
# Specifies the unique pagination token that makes it possible to
|
3487
|
+
# display the next page of results. If this parameter is specified,
|
3488
|
+
# the response includes only records beyond the marker, up to the
|
3489
|
+
# value specified by `MaxRecords`.
|
3490
|
+
#
|
3491
|
+
# If `Marker` is returned by a previous response, there are more
|
3492
|
+
# results available. The value of `Marker` is a unique pagination
|
3493
|
+
# token for each page. To retrieve the next page, make the call again
|
3494
|
+
# using the returned token and keeping all other arguments unchanged.
|
3495
|
+
# @return [String]
|
3496
|
+
#
|
3497
|
+
# @!attribute [rw] instance_profiles
|
3498
|
+
# A description of instance profiles.
|
3499
|
+
# @return [Array<Types::InstanceProfile>]
|
3500
|
+
#
|
3501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeInstanceProfilesResponse AWS API Documentation
|
3502
|
+
#
|
3503
|
+
class DescribeInstanceProfilesResponse < Struct.new(
|
3504
|
+
:marker,
|
3505
|
+
:instance_profiles)
|
3506
|
+
SENSITIVE = []
|
3507
|
+
include Aws::Structure
|
3508
|
+
end
|
3509
|
+
|
3510
|
+
# @!attribute [rw] migration_project_identifier
|
3511
|
+
# The name or Amazon Resource Name (ARN) of the migration project.
|
3512
|
+
# @return [String]
|
3513
|
+
#
|
3514
|
+
# @!attribute [rw] filters
|
3515
|
+
# Filters applied to the metadata model assessments described in the
|
3516
|
+
# form of key-value pairs.
|
3517
|
+
# @return [Array<Types::Filter>]
|
3518
|
+
#
|
3519
|
+
# @!attribute [rw] marker
|
3520
|
+
# Specifies the unique pagination token that makes it possible to
|
3521
|
+
# display the next page of results. If this parameter is specified,
|
3522
|
+
# the response includes only records beyond the marker, up to the
|
3523
|
+
# value specified by `MaxRecords`.
|
3524
|
+
#
|
3525
|
+
# If `Marker` is returned by a previous response, there are more
|
3526
|
+
# results available. The value of `Marker` is a unique pagination
|
3527
|
+
# token for each page. To retrieve the next page, make the call again
|
3528
|
+
# using the returned token and keeping all other arguments unchanged.
|
3529
|
+
# @return [String]
|
3530
|
+
#
|
3531
|
+
# @!attribute [rw] max_records
|
3532
|
+
# The maximum number of records to include in the response. If more
|
3533
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
3534
|
+
# pagination token in the response so that you can retrieve the
|
3535
|
+
# remaining results.
|
3536
|
+
# @return [Integer]
|
3537
|
+
#
|
3538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelAssessmentsMessage AWS API Documentation
|
3539
|
+
#
|
3540
|
+
class DescribeMetadataModelAssessmentsMessage < Struct.new(
|
3541
|
+
:migration_project_identifier,
|
3542
|
+
:filters,
|
3543
|
+
:marker,
|
3544
|
+
:max_records)
|
3545
|
+
SENSITIVE = []
|
3546
|
+
include Aws::Structure
|
3547
|
+
end
|
3548
|
+
|
3549
|
+
# @!attribute [rw] marker
|
3550
|
+
# Specifies the unique pagination token that makes it possible to
|
3551
|
+
# display the next page of results. If this parameter is specified,
|
3552
|
+
# the response includes only records beyond the marker, up to the
|
3553
|
+
# value specified by `MaxRecords`.
|
3554
|
+
#
|
3555
|
+
# If `Marker` is returned by a previous response, there are more
|
3556
|
+
# results available. The value of `Marker` is a unique pagination
|
3557
|
+
# token for each page. To retrieve the next page, make the call again
|
3558
|
+
# using the returned token and keeping all other arguments unchanged.
|
3559
|
+
# @return [String]
|
3560
|
+
#
|
3561
|
+
# @!attribute [rw] requests
|
3562
|
+
# A paginated list of metadata model assessments for the specified
|
3563
|
+
# migration project.
|
3564
|
+
# @return [Array<Types::SchemaConversionRequest>]
|
3565
|
+
#
|
3566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelAssessmentsResponse AWS API Documentation
|
3567
|
+
#
|
3568
|
+
class DescribeMetadataModelAssessmentsResponse < Struct.new(
|
3569
|
+
:marker,
|
3570
|
+
:requests)
|
3571
|
+
SENSITIVE = []
|
3572
|
+
include Aws::Structure
|
3573
|
+
end
|
3574
|
+
|
3575
|
+
# @!attribute [rw] migration_project_identifier
|
3576
|
+
# The migration project name or Amazon Resource Name (ARN).
|
3577
|
+
# @return [String]
|
3578
|
+
#
|
3579
|
+
# @!attribute [rw] filters
|
3580
|
+
# Filters applied to the metadata model conversions described in the
|
3581
|
+
# form of key-value pairs.
|
3582
|
+
# @return [Array<Types::Filter>]
|
3583
|
+
#
|
3584
|
+
# @!attribute [rw] marker
|
3585
|
+
# Specifies the unique pagination token that makes it possible to
|
3586
|
+
# display the next page of results. If this parameter is specified,
|
3587
|
+
# the response includes only records beyond the marker, up to the
|
3588
|
+
# value specified by `MaxRecords`.
|
3589
|
+
#
|
3590
|
+
# If `Marker` is returned by a previous response, there are more
|
3591
|
+
# results available. The value of `Marker` is a unique pagination
|
3592
|
+
# token for each page. To retrieve the next page, make the call again
|
3593
|
+
# using the returned token and keeping all other arguments unchanged.
|
3594
|
+
# @return [String]
|
3595
|
+
#
|
3596
|
+
# @!attribute [rw] max_records
|
3597
|
+
# The maximum number of records to include in the response. If more
|
3598
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
3599
|
+
# pagination token in the response so that you can retrieve the
|
3600
|
+
# remaining results.
|
3601
|
+
# @return [Integer]
|
3602
|
+
#
|
3603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelConversionsMessage AWS API Documentation
|
3604
|
+
#
|
3605
|
+
class DescribeMetadataModelConversionsMessage < Struct.new(
|
3606
|
+
:migration_project_identifier,
|
3607
|
+
:filters,
|
3608
|
+
:marker,
|
3609
|
+
:max_records)
|
3610
|
+
SENSITIVE = []
|
3611
|
+
include Aws::Structure
|
3612
|
+
end
|
3613
|
+
|
3614
|
+
# @!attribute [rw] marker
|
3615
|
+
# Specifies the unique pagination token that makes it possible to
|
3616
|
+
# display the next page of results. If this parameter is specified,
|
3617
|
+
# the response includes only records beyond the marker, up to the
|
3618
|
+
# value specified by `MaxRecords`.
|
3619
|
+
#
|
3620
|
+
# If `Marker` is returned by a previous response, there are more
|
3621
|
+
# results available. The value of `Marker` is a unique pagination
|
3622
|
+
# token for each page. To retrieve the next page, make the call again
|
3623
|
+
# using the returned token and keeping all other arguments unchanged.
|
3624
|
+
# @return [String]
|
3625
|
+
#
|
3626
|
+
# @!attribute [rw] requests
|
3627
|
+
# A paginated list of metadata model conversions.
|
3628
|
+
# @return [Array<Types::SchemaConversionRequest>]
|
3629
|
+
#
|
3630
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelConversionsResponse AWS API Documentation
|
3631
|
+
#
|
3632
|
+
class DescribeMetadataModelConversionsResponse < Struct.new(
|
3633
|
+
:marker,
|
3634
|
+
:requests)
|
3635
|
+
SENSITIVE = []
|
3636
|
+
include Aws::Structure
|
3637
|
+
end
|
3638
|
+
|
3639
|
+
# @!attribute [rw] migration_project_identifier
|
3640
|
+
# The migration project name or Amazon Resource Name (ARN).
|
3641
|
+
# @return [String]
|
3642
|
+
#
|
3643
|
+
# @!attribute [rw] filters
|
3644
|
+
# Filters applied to the metadata model exports described in the form
|
3645
|
+
# of key-value pairs.
|
3646
|
+
# @return [Array<Types::Filter>]
|
3647
|
+
#
|
3648
|
+
# @!attribute [rw] marker
|
3649
|
+
# Specifies the unique pagination token that makes it possible to
|
3650
|
+
# display the next page of results. If this parameter is specified,
|
3651
|
+
# the response includes only records beyond the marker, up to the
|
3652
|
+
# value specified by `MaxRecords`.
|
3653
|
+
#
|
3654
|
+
# If `Marker` is returned by a previous response, there are more
|
3655
|
+
# results available. The value of `Marker` is a unique pagination
|
3656
|
+
# token for each page. To retrieve the next page, make the call again
|
3657
|
+
# using the returned token and keeping all other arguments unchanged.
|
3658
|
+
# @return [String]
|
3659
|
+
#
|
3660
|
+
# @!attribute [rw] max_records
|
3661
|
+
# The maximum number of records to include in the response. If more
|
3662
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
3663
|
+
# pagination token in the response so that you can retrieve the
|
3664
|
+
# remaining results.
|
3665
|
+
# @return [Integer]
|
3666
|
+
#
|
3667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsAsScriptMessage AWS API Documentation
|
3668
|
+
#
|
3669
|
+
class DescribeMetadataModelExportsAsScriptMessage < Struct.new(
|
3670
|
+
:migration_project_identifier,
|
3671
|
+
:filters,
|
3672
|
+
:marker,
|
3673
|
+
:max_records)
|
3674
|
+
SENSITIVE = []
|
3675
|
+
include Aws::Structure
|
3676
|
+
end
|
3677
|
+
|
3678
|
+
# @!attribute [rw] marker
|
3679
|
+
# Specifies the unique pagination token that makes it possible to
|
3680
|
+
# display the next page of results. If this parameter is specified,
|
3681
|
+
# the response includes only records beyond the marker, up to the
|
3682
|
+
# value specified by `MaxRecords`.
|
3683
|
+
#
|
3684
|
+
# If `Marker` is returned by a previous response, there are more
|
3685
|
+
# results available. The value of `Marker` is a unique pagination
|
3686
|
+
# token for each page. To retrieve the next page, make the call again
|
3687
|
+
# using the returned token and keeping all other arguments unchanged.
|
3688
|
+
# @return [String]
|
3689
|
+
#
|
3690
|
+
# @!attribute [rw] requests
|
3691
|
+
# A paginated list of metadata model exports.
|
3692
|
+
# @return [Array<Types::SchemaConversionRequest>]
|
3693
|
+
#
|
3694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsAsScriptResponse AWS API Documentation
|
3695
|
+
#
|
3696
|
+
class DescribeMetadataModelExportsAsScriptResponse < Struct.new(
|
3697
|
+
:marker,
|
3698
|
+
:requests)
|
3699
|
+
SENSITIVE = []
|
3700
|
+
include Aws::Structure
|
3701
|
+
end
|
3702
|
+
|
3703
|
+
# @!attribute [rw] migration_project_identifier
|
3704
|
+
# The migration project name or Amazon Resource Name (ARN).
|
3705
|
+
# @return [String]
|
3706
|
+
#
|
3707
|
+
# @!attribute [rw] filters
|
3708
|
+
# Filters applied to the metadata model exports described in the form
|
3709
|
+
# of key-value pairs.
|
3710
|
+
# @return [Array<Types::Filter>]
|
3711
|
+
#
|
3712
|
+
# @!attribute [rw] marker
|
3713
|
+
# Specifies the unique pagination token that makes it possible to
|
3714
|
+
# display the next page of results. If this parameter is specified,
|
3715
|
+
# the response includes only records beyond the marker, up to the
|
3716
|
+
# value specified by `MaxRecords`.
|
3717
|
+
#
|
3718
|
+
# If `Marker` is returned by a previous response, there are more
|
3719
|
+
# results available. The value of `Marker` is a unique pagination
|
3720
|
+
# token for each page. To retrieve the next page, make the call again
|
3721
|
+
# using the returned token and keeping all other arguments unchanged.
|
3722
|
+
# @return [String]
|
3723
|
+
#
|
3724
|
+
# @!attribute [rw] max_records
|
3725
|
+
# The maximum number of records to include in the response. If more
|
3726
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
3727
|
+
# pagination token in the response so that you can retrieve the
|
3728
|
+
# remaining results.
|
3729
|
+
# @return [Integer]
|
3730
|
+
#
|
3731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsToTargetMessage AWS API Documentation
|
3732
|
+
#
|
3733
|
+
class DescribeMetadataModelExportsToTargetMessage < Struct.new(
|
3734
|
+
:migration_project_identifier,
|
3735
|
+
:filters,
|
3736
|
+
:marker,
|
3737
|
+
:max_records)
|
3738
|
+
SENSITIVE = []
|
3739
|
+
include Aws::Structure
|
3740
|
+
end
|
3741
|
+
|
3742
|
+
# @!attribute [rw] marker
|
3743
|
+
# Specifies the unique pagination token that makes it possible to
|
3744
|
+
# display the next page of results. If this parameter is specified,
|
3745
|
+
# the response includes only records beyond the marker, up to the
|
3746
|
+
# value specified by `MaxRecords`.
|
3747
|
+
#
|
3748
|
+
# If `Marker` is returned by a previous response, there are more
|
3749
|
+
# results available. The value of `Marker` is a unique pagination
|
3750
|
+
# token for each page. To retrieve the next page, make the call again
|
3751
|
+
# using the returned token and keeping all other arguments unchanged.
|
3752
|
+
# @return [String]
|
3753
|
+
#
|
3754
|
+
# @!attribute [rw] requests
|
3755
|
+
# A paginated list of metadata model exports.
|
3756
|
+
# @return [Array<Types::SchemaConversionRequest>]
|
3757
|
+
#
|
3758
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsToTargetResponse AWS API Documentation
|
3759
|
+
#
|
3760
|
+
class DescribeMetadataModelExportsToTargetResponse < Struct.new(
|
3761
|
+
:marker,
|
3762
|
+
:requests)
|
3763
|
+
SENSITIVE = []
|
3764
|
+
include Aws::Structure
|
3765
|
+
end
|
3766
|
+
|
3767
|
+
# @!attribute [rw] migration_project_identifier
|
3768
|
+
# The migration project name or Amazon Resource Name (ARN).
|
3769
|
+
# @return [String]
|
3770
|
+
#
|
3771
|
+
# @!attribute [rw] filters
|
3772
|
+
# Filters applied to the metadata model imports described in the form
|
3773
|
+
# of key-value pairs.
|
3774
|
+
# @return [Array<Types::Filter>]
|
3775
|
+
#
|
3776
|
+
# @!attribute [rw] marker
|
3777
|
+
# Specifies the unique pagination token that makes it possible to
|
3778
|
+
# display the next page of results. If this parameter is specified,
|
3779
|
+
# the response includes only records beyond the marker, up to the
|
3780
|
+
# value specified by `MaxRecords`.
|
3781
|
+
#
|
3782
|
+
# If `Marker` is returned by a previous response, there are more
|
3783
|
+
# results available. The value of `Marker` is a unique pagination
|
3784
|
+
# token for each page. To retrieve the next page, make the call again
|
3785
|
+
# using the returned token and keeping all other arguments unchanged.
|
3786
|
+
# @return [String]
|
3787
|
+
#
|
3788
|
+
# @!attribute [rw] max_records
|
3789
|
+
# A paginated list of metadata model imports.
|
3790
|
+
# @return [Integer]
|
3791
|
+
#
|
3792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelImportsMessage AWS API Documentation
|
3793
|
+
#
|
3794
|
+
class DescribeMetadataModelImportsMessage < Struct.new(
|
3795
|
+
:migration_project_identifier,
|
3796
|
+
:filters,
|
3797
|
+
:marker,
|
3798
|
+
:max_records)
|
3799
|
+
SENSITIVE = []
|
3800
|
+
include Aws::Structure
|
3801
|
+
end
|
3802
|
+
|
3803
|
+
# @!attribute [rw] marker
|
3804
|
+
# Specifies the unique pagination token that makes it possible to
|
3805
|
+
# display the next page of results. If this parameter is specified,
|
3806
|
+
# the response includes only records beyond the marker, up to the
|
3807
|
+
# value specified by `MaxRecords`.
|
3808
|
+
#
|
3809
|
+
# If `Marker` is returned by a previous response, there are more
|
3810
|
+
# results available. The value of `Marker` is a unique pagination
|
3811
|
+
# token for each page. To retrieve the next page, make the call again
|
3812
|
+
# using the returned token and keeping all other arguments unchanged.
|
3813
|
+
# @return [String]
|
3814
|
+
#
|
3815
|
+
# @!attribute [rw] requests
|
3816
|
+
# A paginated list of metadata model imports.
|
3817
|
+
# @return [Array<Types::SchemaConversionRequest>]
|
3818
|
+
#
|
3819
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelImportsResponse AWS API Documentation
|
3820
|
+
#
|
3821
|
+
class DescribeMetadataModelImportsResponse < Struct.new(
|
3822
|
+
:marker,
|
3823
|
+
:requests)
|
3824
|
+
SENSITIVE = []
|
3825
|
+
include Aws::Structure
|
3826
|
+
end
|
3827
|
+
|
3828
|
+
# @!attribute [rw] filters
|
3829
|
+
# Filters applied to the migration projects described in the form of
|
3830
|
+
# key-value pairs.
|
3831
|
+
# @return [Array<Types::Filter>]
|
3832
|
+
#
|
3833
|
+
# @!attribute [rw] max_records
|
3834
|
+
# The maximum number of records to include in the response. If more
|
3835
|
+
# records exist than the specified `MaxRecords` value, DMS includes a
|
3836
|
+
# pagination token in the response so that you can retrieve the
|
3837
|
+
# remaining results.
|
3838
|
+
# @return [Integer]
|
3839
|
+
#
|
3840
|
+
# @!attribute [rw] marker
|
3841
|
+
# Specifies the unique pagination token that makes it possible to
|
3842
|
+
# display the next page of results. If this parameter is specified,
|
3843
|
+
# the response includes only records beyond the marker, up to the
|
3844
|
+
# value specified by `MaxRecords`.
|
3845
|
+
#
|
3846
|
+
# If `Marker` is returned by a previous response, there are more
|
3847
|
+
# results available. The value of `Marker` is a unique pagination
|
3848
|
+
# token for each page. To retrieve the next page, make the call again
|
3849
|
+
# using the returned token and keeping all other arguments unchanged.
|
3850
|
+
# @return [String]
|
3851
|
+
#
|
3852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMigrationProjectsMessage AWS API Documentation
|
3853
|
+
#
|
3854
|
+
class DescribeMigrationProjectsMessage < Struct.new(
|
3855
|
+
:filters,
|
3856
|
+
:max_records,
|
3857
|
+
:marker)
|
3858
|
+
SENSITIVE = []
|
3859
|
+
include Aws::Structure
|
3860
|
+
end
|
3861
|
+
|
3862
|
+
# @!attribute [rw] marker
|
3863
|
+
# Specifies the unique pagination token that makes it possible to
|
3864
|
+
# display the next page of results. If this parameter is specified,
|
3865
|
+
# the response includes only records beyond the marker, up to the
|
3866
|
+
# value specified by `MaxRecords`.
|
3867
|
+
#
|
3868
|
+
# If `Marker` is returned by a previous response, there are more
|
3869
|
+
# results available. The value of `Marker` is a unique pagination
|
3870
|
+
# token for each page. To retrieve the next page, make the call again
|
3871
|
+
# using the returned token and keeping all other arguments unchanged.
|
3872
|
+
# @return [String]
|
3873
|
+
#
|
3874
|
+
# @!attribute [rw] migration_projects
|
3875
|
+
# A description of migration projects.
|
3876
|
+
# @return [Array<Types::MigrationProject>]
|
3877
|
+
#
|
3878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMigrationProjectsResponse AWS API Documentation
|
3879
|
+
#
|
3880
|
+
class DescribeMigrationProjectsResponse < Struct.new(
|
3881
|
+
:marker,
|
3882
|
+
:migration_projects)
|
3883
|
+
SENSITIVE = []
|
3884
|
+
include Aws::Structure
|
3885
|
+
end
|
3886
|
+
|
2848
3887
|
# @!attribute [rw] max_records
|
2849
3888
|
# The maximum number of records to include in the response. If more
|
2850
3889
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -3751,6 +4790,42 @@ module Aws::DatabaseMigrationService
|
|
3751
4790
|
include Aws::Structure
|
3752
4791
|
end
|
3753
4792
|
|
4793
|
+
# Provides information that defines a DocumentDB data provider.
|
4794
|
+
#
|
4795
|
+
# @!attribute [rw] server_name
|
4796
|
+
# The name of the source DocumentDB server.
|
4797
|
+
# @return [String]
|
4798
|
+
#
|
4799
|
+
# @!attribute [rw] port
|
4800
|
+
# The port value for the DocumentDB data provider.
|
4801
|
+
# @return [Integer]
|
4802
|
+
#
|
4803
|
+
# @!attribute [rw] database_name
|
4804
|
+
# The database name on the DocumentDB data provider.
|
4805
|
+
# @return [String]
|
4806
|
+
#
|
4807
|
+
# @!attribute [rw] ssl_mode
|
4808
|
+
# The SSL mode used to connect to the DocumentDB data provider. The
|
4809
|
+
# default value is `none`.
|
4810
|
+
# @return [String]
|
4811
|
+
#
|
4812
|
+
# @!attribute [rw] certificate_arn
|
4813
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
4814
|
+
# connection.
|
4815
|
+
# @return [String]
|
4816
|
+
#
|
4817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DocDbDataProviderSettings AWS API Documentation
|
4818
|
+
#
|
4819
|
+
class DocDbDataProviderSettings < Struct.new(
|
4820
|
+
:server_name,
|
4821
|
+
:port,
|
4822
|
+
:database_name,
|
4823
|
+
:ssl_mode,
|
4824
|
+
:certificate_arn)
|
4825
|
+
SENSITIVE = []
|
4826
|
+
include Aws::Structure
|
4827
|
+
end
|
4828
|
+
|
3754
4829
|
# Provides information that defines a DocumentDB endpoint.
|
3755
4830
|
#
|
3756
4831
|
# @!attribute [rw] username
|
@@ -4286,6 +5361,27 @@ module Aws::DatabaseMigrationService
|
|
4286
5361
|
include Aws::Structure
|
4287
5362
|
end
|
4288
5363
|
|
5364
|
+
# Provides error information about a project.
|
5365
|
+
#
|
5366
|
+
# @note ErrorDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ErrorDetails corresponding to the set member.
|
5367
|
+
#
|
5368
|
+
# @!attribute [rw] default_error_details
|
5369
|
+
# Error information about a project.
|
5370
|
+
# @return [Types::DefaultErrorDetails]
|
5371
|
+
#
|
5372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ErrorDetails AWS API Documentation
|
5373
|
+
#
|
5374
|
+
class ErrorDetails < Struct.new(
|
5375
|
+
:default_error_details,
|
5376
|
+
:unknown)
|
5377
|
+
SENSITIVE = []
|
5378
|
+
include Aws::Structure
|
5379
|
+
include Aws::Structure::Union
|
5380
|
+
|
5381
|
+
class DefaultErrorDetails < ErrorDetails; end
|
5382
|
+
class Unknown < ErrorDetails; end
|
5383
|
+
end
|
5384
|
+
|
4289
5385
|
# Describes an identifiable significant activity that affects a
|
4290
5386
|
# replication instance or task. This object can provide the message, the
|
4291
5387
|
# available event categories, the date and source of the event, and the
|
@@ -4422,6 +5518,93 @@ module Aws::DatabaseMigrationService
|
|
4422
5518
|
include Aws::Structure
|
4423
5519
|
end
|
4424
5520
|
|
5521
|
+
# @!attribute [rw] migration_project_identifier
|
5522
|
+
# The migration project name or Amazon Resource Name (ARN).
|
5523
|
+
# @return [String]
|
5524
|
+
#
|
5525
|
+
# @!attribute [rw] selection_rules
|
5526
|
+
# A value that specifies the database objects to assess.
|
5527
|
+
# @return [String]
|
5528
|
+
#
|
5529
|
+
# @!attribute [rw] file_name
|
5530
|
+
# The name of the assessment file to create in your Amazon S3 bucket.
|
5531
|
+
# @return [String]
|
5532
|
+
#
|
5533
|
+
# @!attribute [rw] assessment_report_types
|
5534
|
+
# The file format of the assessment file.
|
5535
|
+
# @return [Array<String>]
|
5536
|
+
#
|
5537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportMetadataModelAssessmentMessage AWS API Documentation
|
5538
|
+
#
|
5539
|
+
class ExportMetadataModelAssessmentMessage < Struct.new(
|
5540
|
+
:migration_project_identifier,
|
5541
|
+
:selection_rules,
|
5542
|
+
:file_name,
|
5543
|
+
:assessment_report_types)
|
5544
|
+
SENSITIVE = []
|
5545
|
+
include Aws::Structure
|
5546
|
+
end
|
5547
|
+
|
5548
|
+
# @!attribute [rw] pdf_report
|
5549
|
+
# The Amazon S3 details for an assessment exported in PDF format.
|
5550
|
+
# @return [Types::ExportMetadataModelAssessmentResultEntry]
|
5551
|
+
#
|
5552
|
+
# @!attribute [rw] csv_report
|
5553
|
+
# The Amazon S3 details for an assessment exported in CSV format.
|
5554
|
+
# @return [Types::ExportMetadataModelAssessmentResultEntry]
|
5555
|
+
#
|
5556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportMetadataModelAssessmentResponse AWS API Documentation
|
5557
|
+
#
|
5558
|
+
class ExportMetadataModelAssessmentResponse < Struct.new(
|
5559
|
+
:pdf_report,
|
5560
|
+
:csv_report)
|
5561
|
+
SENSITIVE = []
|
5562
|
+
include Aws::Structure
|
5563
|
+
end
|
5564
|
+
|
5565
|
+
# Provides information about an exported metadata model assessment.
|
5566
|
+
#
|
5567
|
+
# @!attribute [rw] s3_object_key
|
5568
|
+
# The object key for the object containing the exported metadata model
|
5569
|
+
# assessment.
|
5570
|
+
# @return [String]
|
5571
|
+
#
|
5572
|
+
# @!attribute [rw] object_url
|
5573
|
+
# The URL for the object containing the exported metadata model
|
5574
|
+
# assessment.
|
5575
|
+
# @return [String]
|
5576
|
+
#
|
5577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportMetadataModelAssessmentResultEntry AWS API Documentation
|
5578
|
+
#
|
5579
|
+
class ExportMetadataModelAssessmentResultEntry < Struct.new(
|
5580
|
+
:s3_object_key,
|
5581
|
+
:object_url)
|
5582
|
+
SENSITIVE = []
|
5583
|
+
include Aws::Structure
|
5584
|
+
end
|
5585
|
+
|
5586
|
+
# Provides information about a metadata model assessment exported to
|
5587
|
+
# SQL.
|
5588
|
+
#
|
5589
|
+
# @!attribute [rw] s3_object_key
|
5590
|
+
# The Amazon S3 object key for the object containing the exported
|
5591
|
+
# metadata model assessment.
|
5592
|
+
# @return [String]
|
5593
|
+
#
|
5594
|
+
# @!attribute [rw] object_url
|
5595
|
+
# The URL for the object containing the exported metadata model
|
5596
|
+
# assessment.
|
5597
|
+
# @return [String]
|
5598
|
+
#
|
5599
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportSqlDetails AWS API Documentation
|
5600
|
+
#
|
5601
|
+
class ExportSqlDetails < Struct.new(
|
5602
|
+
:s3_object_key,
|
5603
|
+
:object_url)
|
5604
|
+
SENSITIVE = []
|
5605
|
+
include Aws::Structure
|
5606
|
+
end
|
5607
|
+
|
4425
5608
|
# Identifies the name and value of a filter object. This filter is used
|
4426
5609
|
# to limit the number and type of DMS objects that are returned for a
|
4427
5610
|
# particular `Describe*` call or similar operation. Filters are used as
|
@@ -4775,10 +5958,92 @@ module Aws::DatabaseMigrationService
|
|
4775
5958
|
# The certificate to be uploaded.
|
4776
5959
|
# @return [Types::Certificate]
|
4777
5960
|
#
|
4778
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ImportCertificateResponse AWS API Documentation
|
5961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ImportCertificateResponse AWS API Documentation
|
5962
|
+
#
|
5963
|
+
class ImportCertificateResponse < Struct.new(
|
5964
|
+
:certificate)
|
5965
|
+
SENSITIVE = []
|
5966
|
+
include Aws::Structure
|
5967
|
+
end
|
5968
|
+
|
5969
|
+
# Provides information that defines an instance profile.
|
5970
|
+
#
|
5971
|
+
# @!attribute [rw] instance_profile_arn
|
5972
|
+
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
5973
|
+
# instance profile.
|
5974
|
+
# @return [String]
|
5975
|
+
#
|
5976
|
+
# @!attribute [rw] availability_zone
|
5977
|
+
# The Availability Zone where the instance profile runs.
|
5978
|
+
# @return [String]
|
5979
|
+
#
|
5980
|
+
# @!attribute [rw] kms_key_arn
|
5981
|
+
# The Amazon Resource Name (ARN) of the KMS key that is used to
|
5982
|
+
# encrypt the connection parameters for the instance profile.
|
5983
|
+
#
|
5984
|
+
# If you don't specify a value for the `KmsKeyArn` parameter, then
|
5985
|
+
# DMS uses your default encryption key.
|
5986
|
+
#
|
5987
|
+
# KMS creates the default encryption key for your Amazon Web Services
|
5988
|
+
# account. Your Amazon Web Services account has a different default
|
5989
|
+
# encryption key for each Amazon Web Services Region.
|
5990
|
+
# @return [String]
|
5991
|
+
#
|
5992
|
+
# @!attribute [rw] publicly_accessible
|
5993
|
+
# Specifies the accessibility options for the instance profile. A
|
5994
|
+
# value of `true` represents an instance profile with a public IP
|
5995
|
+
# address. A value of `false` represents an instance profile with a
|
5996
|
+
# private IP address. The default value is `true`.
|
5997
|
+
# @return [Boolean]
|
5998
|
+
#
|
5999
|
+
# @!attribute [rw] network_type
|
6000
|
+
# Specifies the network type for the instance profile. A value of
|
6001
|
+
# `IPV4` represents an instance profile with IPv4 network type and
|
6002
|
+
# only supports IPv4 addressing. A value of `IPV6` represents an
|
6003
|
+
# instance profile with IPv6 network type and only supports IPv6
|
6004
|
+
# addressing. A value of `DUAL` represents an instance profile with
|
6005
|
+
# dual network type that supports IPv4 and IPv6 addressing.
|
6006
|
+
# @return [String]
|
6007
|
+
#
|
6008
|
+
# @!attribute [rw] instance_profile_name
|
6009
|
+
# The user-friendly name for the instance profile.
|
6010
|
+
# @return [String]
|
6011
|
+
#
|
6012
|
+
# @!attribute [rw] description
|
6013
|
+
# A description of the instance profile. Descriptions can have up to
|
6014
|
+
# 31 characters. A description can contain only ASCII letters, digits,
|
6015
|
+
# and hyphens ('-'). Also, it can't end with a hyphen or contain
|
6016
|
+
# two consecutive hyphens, and can only begin with a letter.
|
6017
|
+
# @return [String]
|
4779
6018
|
#
|
4780
|
-
|
4781
|
-
|
6019
|
+
# @!attribute [rw] instance_profile_creation_time
|
6020
|
+
# The time the instance profile was created.
|
6021
|
+
# @return [Time]
|
6022
|
+
#
|
6023
|
+
# @!attribute [rw] subnet_group_identifier
|
6024
|
+
# The identifier of the subnet group that is associated with the
|
6025
|
+
# instance profile.
|
6026
|
+
# @return [String]
|
6027
|
+
#
|
6028
|
+
# @!attribute [rw] vpc_security_groups
|
6029
|
+
# The VPC security groups that are used with the instance profile. The
|
6030
|
+
# VPC security group must work with the VPC containing the instance
|
6031
|
+
# profile.
|
6032
|
+
# @return [Array<String>]
|
6033
|
+
#
|
6034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/InstanceProfile AWS API Documentation
|
6035
|
+
#
|
6036
|
+
class InstanceProfile < Struct.new(
|
6037
|
+
:instance_profile_arn,
|
6038
|
+
:availability_zone,
|
6039
|
+
:kms_key_arn,
|
6040
|
+
:publicly_accessible,
|
6041
|
+
:network_type,
|
6042
|
+
:instance_profile_name,
|
6043
|
+
:description,
|
6044
|
+
:instance_profile_creation_time,
|
6045
|
+
:subnet_group_identifier,
|
6046
|
+
:vpc_security_groups)
|
4782
6047
|
SENSITIVE = []
|
4783
6048
|
include Aws::Structure
|
4784
6049
|
end
|
@@ -5303,6 +6568,37 @@ module Aws::DatabaseMigrationService
|
|
5303
6568
|
include Aws::Structure
|
5304
6569
|
end
|
5305
6570
|
|
6571
|
+
# Provides information that defines a MariaDB data provider.
|
6572
|
+
#
|
6573
|
+
# @!attribute [rw] server_name
|
6574
|
+
# The name of the MariaDB server.
|
6575
|
+
# @return [String]
|
6576
|
+
#
|
6577
|
+
# @!attribute [rw] port
|
6578
|
+
# The port value for the MariaDB data provider
|
6579
|
+
# @return [Integer]
|
6580
|
+
#
|
6581
|
+
# @!attribute [rw] ssl_mode
|
6582
|
+
# The SSL mode used to connect to the MariaDB data provider. The
|
6583
|
+
# default value is `none`.
|
6584
|
+
# @return [String]
|
6585
|
+
#
|
6586
|
+
# @!attribute [rw] certificate_arn
|
6587
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
6588
|
+
# connection.
|
6589
|
+
# @return [String]
|
6590
|
+
#
|
6591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MariaDbDataProviderSettings AWS API Documentation
|
6592
|
+
#
|
6593
|
+
class MariaDbDataProviderSettings < Struct.new(
|
6594
|
+
:server_name,
|
6595
|
+
:port,
|
6596
|
+
:ssl_mode,
|
6597
|
+
:certificate_arn)
|
6598
|
+
SENSITIVE = []
|
6599
|
+
include Aws::Structure
|
6600
|
+
end
|
6601
|
+
|
5306
6602
|
# Provides information that defines a Microsoft SQL Server endpoint.
|
5307
6603
|
#
|
5308
6604
|
# @!attribute [rw] port
|
@@ -5425,8 +6721,9 @@ module Aws::DatabaseMigrationService
|
|
5425
6721
|
# @return [String]
|
5426
6722
|
#
|
5427
6723
|
# @!attribute [rw] trim_space_in_char
|
5428
|
-
# Use the `TrimSpaceInChar` source endpoint setting to trim data
|
5429
|
-
# CHAR and NCHAR data types during migration.
|
6724
|
+
# Use the `TrimSpaceInChar` source endpoint setting to right-trim data
|
6725
|
+
# on CHAR and NCHAR data types during migration. Setting
|
6726
|
+
# `TrimSpaceInChar` does not left-trim data. The default value is
|
5430
6727
|
# `true`.
|
5431
6728
|
# @return [Boolean]
|
5432
6729
|
#
|
@@ -5462,6 +6759,203 @@ module Aws::DatabaseMigrationService
|
|
5462
6759
|
include Aws::Structure
|
5463
6760
|
end
|
5464
6761
|
|
6762
|
+
# Provides information that defines a Microsoft SQL Server data
|
6763
|
+
# provider.
|
6764
|
+
#
|
6765
|
+
# @!attribute [rw] server_name
|
6766
|
+
# The name of the Microsoft SQL Server server.
|
6767
|
+
# @return [String]
|
6768
|
+
#
|
6769
|
+
# @!attribute [rw] port
|
6770
|
+
# The port value for the Microsoft SQL Server data provider.
|
6771
|
+
# @return [Integer]
|
6772
|
+
#
|
6773
|
+
# @!attribute [rw] database_name
|
6774
|
+
# The database name on the Microsoft SQL Server data provider.
|
6775
|
+
# @return [String]
|
6776
|
+
#
|
6777
|
+
# @!attribute [rw] ssl_mode
|
6778
|
+
# The SSL mode used to connect to the Microsoft SQL Server data
|
6779
|
+
# provider. The default value is `none`.
|
6780
|
+
# @return [String]
|
6781
|
+
#
|
6782
|
+
# @!attribute [rw] certificate_arn
|
6783
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
6784
|
+
# connection.
|
6785
|
+
# @return [String]
|
6786
|
+
#
|
6787
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSqlServerDataProviderSettings AWS API Documentation
|
6788
|
+
#
|
6789
|
+
class MicrosoftSqlServerDataProviderSettings < Struct.new(
|
6790
|
+
:server_name,
|
6791
|
+
:port,
|
6792
|
+
:database_name,
|
6793
|
+
:ssl_mode,
|
6794
|
+
:certificate_arn)
|
6795
|
+
SENSITIVE = []
|
6796
|
+
include Aws::Structure
|
6797
|
+
end
|
6798
|
+
|
6799
|
+
# Provides information that defines a migration project.
|
6800
|
+
#
|
6801
|
+
# @!attribute [rw] migration_project_name
|
6802
|
+
# The name of the migration project.
|
6803
|
+
# @return [String]
|
6804
|
+
#
|
6805
|
+
# @!attribute [rw] migration_project_arn
|
6806
|
+
# The ARN string that uniquely identifies the migration project.
|
6807
|
+
# @return [String]
|
6808
|
+
#
|
6809
|
+
# @!attribute [rw] migration_project_creation_time
|
6810
|
+
# The time when the migration project was created.
|
6811
|
+
# @return [Time]
|
6812
|
+
#
|
6813
|
+
# @!attribute [rw] source_data_provider_descriptors
|
6814
|
+
# Information about the source data provider, including the name or
|
6815
|
+
# ARN, and Secrets Manager parameters.
|
6816
|
+
# @return [Array<Types::DataProviderDescriptor>]
|
6817
|
+
#
|
6818
|
+
# @!attribute [rw] target_data_provider_descriptors
|
6819
|
+
# Information about the target data provider, including the name or
|
6820
|
+
# ARN, and Secrets Manager parameters.
|
6821
|
+
# @return [Array<Types::DataProviderDescriptor>]
|
6822
|
+
#
|
6823
|
+
# @!attribute [rw] instance_profile_arn
|
6824
|
+
# The Amazon Resource Name (ARN) of the instance profile for your
|
6825
|
+
# migration project.
|
6826
|
+
# @return [String]
|
6827
|
+
#
|
6828
|
+
# @!attribute [rw] instance_profile_name
|
6829
|
+
# The name of the associated instance profile.
|
6830
|
+
# @return [String]
|
6831
|
+
#
|
6832
|
+
# @!attribute [rw] transformation_rules
|
6833
|
+
# The settings in JSON format for migration rules. Migration rules
|
6834
|
+
# make it possible for you to change the object names according to the
|
6835
|
+
# rules that you specify. For example, you can change an object name
|
6836
|
+
# to lowercase or uppercase, add or remove a prefix or suffix, or
|
6837
|
+
# rename objects.
|
6838
|
+
# @return [String]
|
6839
|
+
#
|
6840
|
+
# @!attribute [rw] description
|
6841
|
+
# A user-friendly description of the migration project.
|
6842
|
+
# @return [String]
|
6843
|
+
#
|
6844
|
+
# @!attribute [rw] schema_conversion_application_attributes
|
6845
|
+
# The schema conversion application attributes, including the Amazon
|
6846
|
+
# S3 bucket name and Amazon S3 role ARN.
|
6847
|
+
# @return [Types::SCApplicationAttributes]
|
6848
|
+
#
|
6849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MigrationProject AWS API Documentation
|
6850
|
+
#
|
6851
|
+
class MigrationProject < Struct.new(
|
6852
|
+
:migration_project_name,
|
6853
|
+
:migration_project_arn,
|
6854
|
+
:migration_project_creation_time,
|
6855
|
+
:source_data_provider_descriptors,
|
6856
|
+
:target_data_provider_descriptors,
|
6857
|
+
:instance_profile_arn,
|
6858
|
+
:instance_profile_name,
|
6859
|
+
:transformation_rules,
|
6860
|
+
:description,
|
6861
|
+
:schema_conversion_application_attributes)
|
6862
|
+
SENSITIVE = []
|
6863
|
+
include Aws::Structure
|
6864
|
+
end
|
6865
|
+
|
6866
|
+
# @!attribute [rw] migration_project_identifier
|
6867
|
+
# The migration project name or Amazon Resource Name (ARN).
|
6868
|
+
# @return [String]
|
6869
|
+
#
|
6870
|
+
# @!attribute [rw] conversion_configuration
|
6871
|
+
# The new conversion configuration.
|
6872
|
+
# @return [String]
|
6873
|
+
#
|
6874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyConversionConfigurationMessage AWS API Documentation
|
6875
|
+
#
|
6876
|
+
class ModifyConversionConfigurationMessage < Struct.new(
|
6877
|
+
:migration_project_identifier,
|
6878
|
+
:conversion_configuration)
|
6879
|
+
SENSITIVE = []
|
6880
|
+
include Aws::Structure
|
6881
|
+
end
|
6882
|
+
|
6883
|
+
# @!attribute [rw] migration_project_identifier
|
6884
|
+
# The name or Amazon Resource Name (ARN) of the modified
|
6885
|
+
# configuration.
|
6886
|
+
# @return [String]
|
6887
|
+
#
|
6888
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyConversionConfigurationResponse AWS API Documentation
|
6889
|
+
#
|
6890
|
+
class ModifyConversionConfigurationResponse < Struct.new(
|
6891
|
+
:migration_project_identifier)
|
6892
|
+
SENSITIVE = []
|
6893
|
+
include Aws::Structure
|
6894
|
+
end
|
6895
|
+
|
6896
|
+
# @!attribute [rw] data_provider_identifier
|
6897
|
+
# The identifier of the data provider. Identifiers must begin with a
|
6898
|
+
# letter and must contain only ASCII letters, digits, and hyphens.
|
6899
|
+
# They can't end with a hyphen, or contain two consecutive hyphens.
|
6900
|
+
# @return [String]
|
6901
|
+
#
|
6902
|
+
# @!attribute [rw] data_provider_name
|
6903
|
+
# The name of the data provider.
|
6904
|
+
# @return [String]
|
6905
|
+
#
|
6906
|
+
# @!attribute [rw] description
|
6907
|
+
# A user-friendly description of the data provider.
|
6908
|
+
# @return [String]
|
6909
|
+
#
|
6910
|
+
# @!attribute [rw] engine
|
6911
|
+
# The type of database engine for the data provider. Valid values
|
6912
|
+
# include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
|
6913
|
+
# `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
|
6914
|
+
# Amazon Aurora MySQL-Compatible Edition.
|
6915
|
+
# @return [String]
|
6916
|
+
#
|
6917
|
+
# @!attribute [rw] exact_settings
|
6918
|
+
# If this attribute is Y, the current call to `ModifyDataProvider`
|
6919
|
+
# replaces all existing data provider settings with the exact settings
|
6920
|
+
# that you specify in this call. If this attribute is N, the current
|
6921
|
+
# call to `ModifyDataProvider` does two things:
|
6922
|
+
#
|
6923
|
+
# * It replaces any data provider settings that already exist with new
|
6924
|
+
# values, for settings with the same names.
|
6925
|
+
#
|
6926
|
+
# * It creates new data provider settings that you specify in the
|
6927
|
+
# call, for settings with different names.
|
6928
|
+
# @return [Boolean]
|
6929
|
+
#
|
6930
|
+
# @!attribute [rw] settings
|
6931
|
+
# The settings in JSON format for a data provider.
|
6932
|
+
# @return [Types::DataProviderSettings]
|
6933
|
+
#
|
6934
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataProviderMessage AWS API Documentation
|
6935
|
+
#
|
6936
|
+
class ModifyDataProviderMessage < Struct.new(
|
6937
|
+
:data_provider_identifier,
|
6938
|
+
:data_provider_name,
|
6939
|
+
:description,
|
6940
|
+
:engine,
|
6941
|
+
:exact_settings,
|
6942
|
+
:settings)
|
6943
|
+
SENSITIVE = []
|
6944
|
+
include Aws::Structure
|
6945
|
+
end
|
6946
|
+
|
6947
|
+
# @!attribute [rw] data_provider
|
6948
|
+
# The data provider that was modified.
|
6949
|
+
# @return [Types::DataProvider]
|
6950
|
+
#
|
6951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataProviderResponse AWS API Documentation
|
6952
|
+
#
|
6953
|
+
class ModifyDataProviderResponse < Struct.new(
|
6954
|
+
:data_provider)
|
6955
|
+
SENSITIVE = []
|
6956
|
+
include Aws::Structure
|
6957
|
+
end
|
6958
|
+
|
5465
6959
|
# @!attribute [rw] endpoint_arn
|
5466
6960
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
5467
6961
|
# endpoint.
|
@@ -5862,6 +7356,158 @@ module Aws::DatabaseMigrationService
|
|
5862
7356
|
include Aws::Structure
|
5863
7357
|
end
|
5864
7358
|
|
7359
|
+
# @!attribute [rw] instance_profile_identifier
|
7360
|
+
# The identifier of the instance profile. Identifiers must begin with
|
7361
|
+
# a letter and must contain only ASCII letters, digits, and hyphens.
|
7362
|
+
# They can't end with a hyphen, or contain two consecutive hyphens.
|
7363
|
+
# @return [String]
|
7364
|
+
#
|
7365
|
+
# @!attribute [rw] availability_zone
|
7366
|
+
# The Availability Zone where the instance profile runs.
|
7367
|
+
# @return [String]
|
7368
|
+
#
|
7369
|
+
# @!attribute [rw] kms_key_arn
|
7370
|
+
# The Amazon Resource Name (ARN) of the KMS key that is used to
|
7371
|
+
# encrypt the connection parameters for the instance profile.
|
7372
|
+
#
|
7373
|
+
# If you don't specify a value for the `KmsKeyArn` parameter, then
|
7374
|
+
# DMS uses your default encryption key.
|
7375
|
+
#
|
7376
|
+
# KMS creates the default encryption key for your Amazon Web Services
|
7377
|
+
# account. Your Amazon Web Services account has a different default
|
7378
|
+
# encryption key for each Amazon Web Services Region.
|
7379
|
+
# @return [String]
|
7380
|
+
#
|
7381
|
+
# @!attribute [rw] publicly_accessible
|
7382
|
+
# Specifies the accessibility options for the instance profile. A
|
7383
|
+
# value of `true` represents an instance profile with a public IP
|
7384
|
+
# address. A value of `false` represents an instance profile with a
|
7385
|
+
# private IP address. The default value is `true`.
|
7386
|
+
# @return [Boolean]
|
7387
|
+
#
|
7388
|
+
# @!attribute [rw] network_type
|
7389
|
+
# Specifies the network type for the instance profile. A value of
|
7390
|
+
# `IPV4` represents an instance profile with IPv4 network type and
|
7391
|
+
# only supports IPv4 addressing. A value of `IPV6` represents an
|
7392
|
+
# instance profile with IPv6 network type and only supports IPv6
|
7393
|
+
# addressing. A value of `DUAL` represents an instance profile with
|
7394
|
+
# dual network type that supports IPv4 and IPv6 addressing.
|
7395
|
+
# @return [String]
|
7396
|
+
#
|
7397
|
+
# @!attribute [rw] instance_profile_name
|
7398
|
+
# A user-friendly name for the instance profile.
|
7399
|
+
# @return [String]
|
7400
|
+
#
|
7401
|
+
# @!attribute [rw] description
|
7402
|
+
# A user-friendly description for the instance profile.
|
7403
|
+
# @return [String]
|
7404
|
+
#
|
7405
|
+
# @!attribute [rw] subnet_group_identifier
|
7406
|
+
# A subnet group to associate with the instance profile.
|
7407
|
+
# @return [String]
|
7408
|
+
#
|
7409
|
+
# @!attribute [rw] vpc_security_groups
|
7410
|
+
# Specifies the VPC security groups to be used with the instance
|
7411
|
+
# profile. The VPC security group must work with the VPC containing
|
7412
|
+
# the instance profile.
|
7413
|
+
# @return [Array<String>]
|
7414
|
+
#
|
7415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyInstanceProfileMessage AWS API Documentation
|
7416
|
+
#
|
7417
|
+
class ModifyInstanceProfileMessage < Struct.new(
|
7418
|
+
:instance_profile_identifier,
|
7419
|
+
:availability_zone,
|
7420
|
+
:kms_key_arn,
|
7421
|
+
:publicly_accessible,
|
7422
|
+
:network_type,
|
7423
|
+
:instance_profile_name,
|
7424
|
+
:description,
|
7425
|
+
:subnet_group_identifier,
|
7426
|
+
:vpc_security_groups)
|
7427
|
+
SENSITIVE = []
|
7428
|
+
include Aws::Structure
|
7429
|
+
end
|
7430
|
+
|
7431
|
+
# @!attribute [rw] instance_profile
|
7432
|
+
# The instance profile that was modified.
|
7433
|
+
# @return [Types::InstanceProfile]
|
7434
|
+
#
|
7435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyInstanceProfileResponse AWS API Documentation
|
7436
|
+
#
|
7437
|
+
class ModifyInstanceProfileResponse < Struct.new(
|
7438
|
+
:instance_profile)
|
7439
|
+
SENSITIVE = []
|
7440
|
+
include Aws::Structure
|
7441
|
+
end
|
7442
|
+
|
7443
|
+
# @!attribute [rw] migration_project_identifier
|
7444
|
+
# The identifier of the migration project. Identifiers must begin with
|
7445
|
+
# a letter and must contain only ASCII letters, digits, and hyphens.
|
7446
|
+
# They can't end with a hyphen, or contain two consecutive hyphens.
|
7447
|
+
# @return [String]
|
7448
|
+
#
|
7449
|
+
# @!attribute [rw] migration_project_name
|
7450
|
+
# A user-friendly name for the migration project.
|
7451
|
+
# @return [String]
|
7452
|
+
#
|
7453
|
+
# @!attribute [rw] source_data_provider_descriptors
|
7454
|
+
# Information about the source data provider, including the name, ARN,
|
7455
|
+
# and Amazon Web Services Secrets Manager parameters.
|
7456
|
+
# @return [Array<Types::DataProviderDescriptorDefinition>]
|
7457
|
+
#
|
7458
|
+
# @!attribute [rw] target_data_provider_descriptors
|
7459
|
+
# Information about the target data provider, including the name, ARN,
|
7460
|
+
# and Amazon Web Services Secrets Manager parameters.
|
7461
|
+
# @return [Array<Types::DataProviderDescriptorDefinition>]
|
7462
|
+
#
|
7463
|
+
# @!attribute [rw] instance_profile_identifier
|
7464
|
+
# The name or Amazon Resource Name (ARN) for the instance profile.
|
7465
|
+
# @return [String]
|
7466
|
+
#
|
7467
|
+
# @!attribute [rw] transformation_rules
|
7468
|
+
# The settings in JSON format for migration rules. Migration rules
|
7469
|
+
# make it possible for you to change the object names according to the
|
7470
|
+
# rules that you specify. For example, you can change an object name
|
7471
|
+
# to lowercase or uppercase, add or remove a prefix or suffix, or
|
7472
|
+
# rename objects.
|
7473
|
+
# @return [String]
|
7474
|
+
#
|
7475
|
+
# @!attribute [rw] description
|
7476
|
+
# A user-friendly description of the migration project.
|
7477
|
+
# @return [String]
|
7478
|
+
#
|
7479
|
+
# @!attribute [rw] schema_conversion_application_attributes
|
7480
|
+
# The schema conversion application attributes, including the Amazon
|
7481
|
+
# S3 bucket name and Amazon S3 role ARN.
|
7482
|
+
# @return [Types::SCApplicationAttributes]
|
7483
|
+
#
|
7484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyMigrationProjectMessage AWS API Documentation
|
7485
|
+
#
|
7486
|
+
class ModifyMigrationProjectMessage < Struct.new(
|
7487
|
+
:migration_project_identifier,
|
7488
|
+
:migration_project_name,
|
7489
|
+
:source_data_provider_descriptors,
|
7490
|
+
:target_data_provider_descriptors,
|
7491
|
+
:instance_profile_identifier,
|
7492
|
+
:transformation_rules,
|
7493
|
+
:description,
|
7494
|
+
:schema_conversion_application_attributes)
|
7495
|
+
SENSITIVE = []
|
7496
|
+
include Aws::Structure
|
7497
|
+
end
|
7498
|
+
|
7499
|
+
# @!attribute [rw] migration_project
|
7500
|
+
# The migration project that was modified.
|
7501
|
+
# @return [Types::MigrationProject]
|
7502
|
+
#
|
7503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyMigrationProjectResponse AWS API Documentation
|
7504
|
+
#
|
7505
|
+
class ModifyMigrationProjectResponse < Struct.new(
|
7506
|
+
:migration_project)
|
7507
|
+
SENSITIVE = []
|
7508
|
+
include Aws::Structure
|
7509
|
+
end
|
7510
|
+
|
5865
7511
|
# @!attribute [rw] replication_config_arn
|
5866
7512
|
# The Amazon Resource Name of the replication to modify.
|
5867
7513
|
# @return [String]
|
@@ -6020,15 +7666,6 @@ module Aws::DatabaseMigrationService
|
|
6020
7666
|
# * A newer minor version is available.
|
6021
7667
|
#
|
6022
7668
|
# * DMS has enabled automatic patching for the given engine version.
|
6023
|
-
#
|
6024
|
-
# When `AutoMinorVersionUpgrade` is enabled, DMS uses the current
|
6025
|
-
# default engine version when you modify a replication instance. For
|
6026
|
-
# example, if you set `EngineVersion` to a lower version number than
|
6027
|
-
# the current default version, DMS uses the default version.
|
6028
|
-
#
|
6029
|
-
# If `AutoMinorVersionUpgrade` *isn’t* enabled when you modify a
|
6030
|
-
# replication instance, DMS uses the engine version specified by the
|
6031
|
-
# `EngineVersion` parameter.
|
6032
7669
|
# @return [Boolean]
|
6033
7670
|
#
|
6034
7671
|
# @!attribute [rw] replication_instance_identifier
|
@@ -6185,8 +7822,8 @@ module Aws::DatabaseMigrationService
|
|
6185
7822
|
# Server time example: --cdc-stop-position
|
6186
7823
|
# “server\_time:2018-02-09T12:12:12”
|
6187
7824
|
#
|
6188
|
-
# Commit time example: --cdc-stop-position
|
6189
|
-
# 2018-02-09T12:12:12“
|
7825
|
+
# Commit time example: --cdc-stop-position
|
7826
|
+
# “commit\_time:2018-02-09T12:12:12“
|
6190
7827
|
# @return [String]
|
6191
7828
|
#
|
6192
7829
|
# @!attribute [rw] task_data
|
@@ -6228,6 +7865,62 @@ module Aws::DatabaseMigrationService
|
|
6228
7865
|
include Aws::Structure
|
6229
7866
|
end
|
6230
7867
|
|
7868
|
+
# Provides information that defines a MongoDB data provider.
|
7869
|
+
#
|
7870
|
+
# @!attribute [rw] server_name
|
7871
|
+
# The name of the MongoDB server.
|
7872
|
+
# @return [String]
|
7873
|
+
#
|
7874
|
+
# @!attribute [rw] port
|
7875
|
+
# The port value for the MongoDB data provider.
|
7876
|
+
# @return [Integer]
|
7877
|
+
#
|
7878
|
+
# @!attribute [rw] database_name
|
7879
|
+
# The database name on the MongoDB data provider.
|
7880
|
+
# @return [String]
|
7881
|
+
#
|
7882
|
+
# @!attribute [rw] ssl_mode
|
7883
|
+
# The SSL mode used to connect to the MongoDB data provider. The
|
7884
|
+
# default value is `none`.
|
7885
|
+
# @return [String]
|
7886
|
+
#
|
7887
|
+
# @!attribute [rw] certificate_arn
|
7888
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
7889
|
+
# connection.
|
7890
|
+
# @return [String]
|
7891
|
+
#
|
7892
|
+
# @!attribute [rw] auth_type
|
7893
|
+
# The authentication type for the database connection. Valid values
|
7894
|
+
# are PASSWORD or NO.
|
7895
|
+
# @return [String]
|
7896
|
+
#
|
7897
|
+
# @!attribute [rw] auth_source
|
7898
|
+
# The MongoDB database name. This setting isn't used when `AuthType`
|
7899
|
+
# is set to `"no"`.
|
7900
|
+
#
|
7901
|
+
# The default is `"admin"`.
|
7902
|
+
# @return [String]
|
7903
|
+
#
|
7904
|
+
# @!attribute [rw] auth_mechanism
|
7905
|
+
# The authentication method for connecting to the data provider. Valid
|
7906
|
+
# values are DEFAULT, MONGODB\_CR, or SCRAM\_SHA\_1.
|
7907
|
+
# @return [String]
|
7908
|
+
#
|
7909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MongoDbDataProviderSettings AWS API Documentation
|
7910
|
+
#
|
7911
|
+
class MongoDbDataProviderSettings < Struct.new(
|
7912
|
+
:server_name,
|
7913
|
+
:port,
|
7914
|
+
:database_name,
|
7915
|
+
:ssl_mode,
|
7916
|
+
:certificate_arn,
|
7917
|
+
:auth_type,
|
7918
|
+
:auth_source,
|
7919
|
+
:auth_mechanism)
|
7920
|
+
SENSITIVE = []
|
7921
|
+
include Aws::Structure
|
7922
|
+
end
|
7923
|
+
|
6231
7924
|
# Provides information that defines a MongoDB endpoint.
|
6232
7925
|
#
|
6233
7926
|
# @!attribute [rw] username
|
@@ -6240,7 +7933,9 @@ module Aws::DatabaseMigrationService
|
|
6240
7933
|
# @return [String]
|
6241
7934
|
#
|
6242
7935
|
# @!attribute [rw] server_name
|
6243
|
-
# The name of the server on the MongoDB source endpoint.
|
7936
|
+
# The name of the server on the MongoDB source endpoint. For MongoDB
|
7937
|
+
# Atlas, provide the server name for any of the servers in the
|
7938
|
+
# replication set.
|
6244
7939
|
# @return [String]
|
6245
7940
|
#
|
6246
7941
|
# @!attribute [rw] port
|
@@ -6562,6 +8257,37 @@ module Aws::DatabaseMigrationService
|
|
6562
8257
|
include Aws::Structure
|
6563
8258
|
end
|
6564
8259
|
|
8260
|
+
# Provides information that defines a MySQL data provider.
|
8261
|
+
#
|
8262
|
+
# @!attribute [rw] server_name
|
8263
|
+
# The name of the MySQL server.
|
8264
|
+
# @return [String]
|
8265
|
+
#
|
8266
|
+
# @!attribute [rw] port
|
8267
|
+
# The port value for the MySQL data provider.
|
8268
|
+
# @return [Integer]
|
8269
|
+
#
|
8270
|
+
# @!attribute [rw] ssl_mode
|
8271
|
+
# The SSL mode used to connect to the MySQL data provider. The default
|
8272
|
+
# value is `none`.
|
8273
|
+
# @return [String]
|
8274
|
+
#
|
8275
|
+
# @!attribute [rw] certificate_arn
|
8276
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
8277
|
+
# connection.
|
8278
|
+
# @return [String]
|
8279
|
+
#
|
8280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MySqlDataProviderSettings AWS API Documentation
|
8281
|
+
#
|
8282
|
+
class MySqlDataProviderSettings < Struct.new(
|
8283
|
+
:server_name,
|
8284
|
+
:port,
|
8285
|
+
:ssl_mode,
|
8286
|
+
:certificate_arn)
|
8287
|
+
SENSITIVE = []
|
8288
|
+
include Aws::Structure
|
8289
|
+
end
|
8290
|
+
|
6565
8291
|
# Provides information that defines an Amazon Neptune endpoint.
|
6566
8292
|
#
|
6567
8293
|
# @!attribute [rw] service_access_role_arn
|
@@ -6629,6 +8355,84 @@ module Aws::DatabaseMigrationService
|
|
6629
8355
|
include Aws::Structure
|
6630
8356
|
end
|
6631
8357
|
|
8358
|
+
# Provides information that defines an Oracle data provider.
|
8359
|
+
#
|
8360
|
+
# @!attribute [rw] server_name
|
8361
|
+
# The name of the Oracle server.
|
8362
|
+
# @return [String]
|
8363
|
+
#
|
8364
|
+
# @!attribute [rw] port
|
8365
|
+
# The port value for the Oracle data provider.
|
8366
|
+
# @return [Integer]
|
8367
|
+
#
|
8368
|
+
# @!attribute [rw] database_name
|
8369
|
+
# The database name on the Oracle data provider.
|
8370
|
+
# @return [String]
|
8371
|
+
#
|
8372
|
+
# @!attribute [rw] ssl_mode
|
8373
|
+
# The SSL mode used to connect to the Oracle data provider. The
|
8374
|
+
# default value is `none`.
|
8375
|
+
# @return [String]
|
8376
|
+
#
|
8377
|
+
# @!attribute [rw] certificate_arn
|
8378
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
8379
|
+
# connection.
|
8380
|
+
# @return [String]
|
8381
|
+
#
|
8382
|
+
# @!attribute [rw] asm_server
|
8383
|
+
# The address of your Oracle Automatic Storage Management (ASM)
|
8384
|
+
# server. You can set this value from the `asm_server` value. You set
|
8385
|
+
# `asm_server` as part of the extra connection attribute string to
|
8386
|
+
# access an Oracle server with Binary Reader that uses ASM. For more
|
8387
|
+
# information, see [Configuration for change data capture (CDC) on an
|
8388
|
+
# Oracle source database][1].
|
8389
|
+
#
|
8390
|
+
#
|
8391
|
+
#
|
8392
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration
|
8393
|
+
# @return [String]
|
8394
|
+
#
|
8395
|
+
# @!attribute [rw] secrets_manager_oracle_asm_secret_id
|
8396
|
+
# The identifier of the secret in Secrets Manager that contains the
|
8397
|
+
# Oracle ASM connection details.
|
8398
|
+
#
|
8399
|
+
# Required only if your data provider uses the Oracle ASM server.
|
8400
|
+
# @return [String]
|
8401
|
+
#
|
8402
|
+
# @!attribute [rw] secrets_manager_oracle_asm_access_role_arn
|
8403
|
+
# The ARN of the IAM role that provides access to the secret in
|
8404
|
+
# Secrets Manager that contains the Oracle ASM connection details.
|
8405
|
+
# @return [String]
|
8406
|
+
#
|
8407
|
+
# @!attribute [rw] secrets_manager_security_db_encryption_secret_id
|
8408
|
+
# The identifier of the secret in Secrets Manager that contains the
|
8409
|
+
# transparent data encryption (TDE) password. DMS requires this
|
8410
|
+
# password to access Oracle redo logs encrypted by TDE using Binary
|
8411
|
+
# Reader.
|
8412
|
+
# @return [String]
|
8413
|
+
#
|
8414
|
+
# @!attribute [rw] secrets_manager_security_db_encryption_access_role_arn
|
8415
|
+
# The ARN of the IAM role that provides access to the secret in
|
8416
|
+
# Secrets Manager that contains the TDE password.
|
8417
|
+
# @return [String]
|
8418
|
+
#
|
8419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleDataProviderSettings AWS API Documentation
|
8420
|
+
#
|
8421
|
+
class OracleDataProviderSettings < Struct.new(
|
8422
|
+
:server_name,
|
8423
|
+
:port,
|
8424
|
+
:database_name,
|
8425
|
+
:ssl_mode,
|
8426
|
+
:certificate_arn,
|
8427
|
+
:asm_server,
|
8428
|
+
:secrets_manager_oracle_asm_secret_id,
|
8429
|
+
:secrets_manager_oracle_asm_access_role_arn,
|
8430
|
+
:secrets_manager_security_db_encryption_secret_id,
|
8431
|
+
:secrets_manager_security_db_encryption_access_role_arn)
|
8432
|
+
SENSITIVE = []
|
8433
|
+
include Aws::Structure
|
8434
|
+
end
|
8435
|
+
|
6632
8436
|
# Provides information that defines an Oracle endpoint.
|
6633
8437
|
#
|
6634
8438
|
# @!attribute [rw] add_supplemental_logging
|
@@ -7011,8 +8815,8 @@ module Aws::DatabaseMigrationService
|
|
7011
8815
|
# <note markdown="1"> You can specify one of two sets of values for these permissions. You
|
7012
8816
|
# can specify the values for this setting and
|
7013
8817
|
# `SecretsManagerOracleAsmSecretId`. Or you can specify clear-text
|
7014
|
-
# values for `
|
7015
|
-
#
|
8818
|
+
# values for `AsmUser`, `AsmPassword`, and `AsmServerName`. You can't
|
8819
|
+
# specify both. For more information on creating this
|
7016
8820
|
# `SecretsManagerOracleAsmSecret` and the
|
7017
8821
|
# `SecretsManagerOracleAsmAccessRoleArn` and
|
7018
8822
|
# `SecretsManagerOracleAsmSecretId` required to access it, see [Using
|
@@ -7405,7 +9209,9 @@ module Aws::DatabaseMigrationService
|
|
7405
9209
|
#
|
7406
9210
|
# @!attribute [rw] map_boolean_as_boolean
|
7407
9211
|
# When true, lets PostgreSQL migrate the boolean type as boolean. By
|
7408
|
-
# default, PostgreSQL migrates booleans as `varchar(5)`.
|
9212
|
+
# default, PostgreSQL migrates booleans as `varchar(5)`. You must set
|
9213
|
+
# this setting on both the source and target endpoints for it to take
|
9214
|
+
# effect.
|
7409
9215
|
# @return [Boolean]
|
7410
9216
|
#
|
7411
9217
|
# @!attribute [rw] map_jsonb_as_clob
|
@@ -7457,6 +9263,42 @@ module Aws::DatabaseMigrationService
|
|
7457
9263
|
include Aws::Structure
|
7458
9264
|
end
|
7459
9265
|
|
9266
|
+
# Provides information that defines a PostgreSQL data provider.
|
9267
|
+
#
|
9268
|
+
# @!attribute [rw] server_name
|
9269
|
+
# The name of the PostgreSQL server.
|
9270
|
+
# @return [String]
|
9271
|
+
#
|
9272
|
+
# @!attribute [rw] port
|
9273
|
+
# The port value for the PostgreSQL data provider.
|
9274
|
+
# @return [Integer]
|
9275
|
+
#
|
9276
|
+
# @!attribute [rw] database_name
|
9277
|
+
# The database name on the PostgreSQL data provider.
|
9278
|
+
# @return [String]
|
9279
|
+
#
|
9280
|
+
# @!attribute [rw] ssl_mode
|
9281
|
+
# The SSL mode used to connect to the PostgreSQL data provider. The
|
9282
|
+
# default value is `none`.
|
9283
|
+
# @return [String]
|
9284
|
+
#
|
9285
|
+
# @!attribute [rw] certificate_arn
|
9286
|
+
# The Amazon Resource Name (ARN) of the certificate used for SSL
|
9287
|
+
# connection.
|
9288
|
+
# @return [String]
|
9289
|
+
#
|
9290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSqlDataProviderSettings AWS API Documentation
|
9291
|
+
#
|
9292
|
+
class PostgreSqlDataProviderSettings < Struct.new(
|
9293
|
+
:server_name,
|
9294
|
+
:port,
|
9295
|
+
:database_name,
|
9296
|
+
:ssl_mode,
|
9297
|
+
:certificate_arn)
|
9298
|
+
SENSITIVE = []
|
9299
|
+
include Aws::Structure
|
9300
|
+
end
|
9301
|
+
|
7460
9302
|
# Information about provisioning resources for an DMS serverless
|
7461
9303
|
# replication.
|
7462
9304
|
#
|
@@ -7843,6 +9685,30 @@ module Aws::DatabaseMigrationService
|
|
7843
9685
|
include Aws::Structure
|
7844
9686
|
end
|
7845
9687
|
|
9688
|
+
# Provides information that defines an Amazon Redshift data provider.
|
9689
|
+
#
|
9690
|
+
# @!attribute [rw] server_name
|
9691
|
+
# The name of the Amazon Redshift server.
|
9692
|
+
# @return [String]
|
9693
|
+
#
|
9694
|
+
# @!attribute [rw] port
|
9695
|
+
# The port value for the Amazon Redshift data provider.
|
9696
|
+
# @return [Integer]
|
9697
|
+
#
|
9698
|
+
# @!attribute [rw] database_name
|
9699
|
+
# The database name on the Amazon Redshift data provider.
|
9700
|
+
# @return [String]
|
9701
|
+
#
|
9702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RedshiftDataProviderSettings AWS API Documentation
|
9703
|
+
#
|
9704
|
+
class RedshiftDataProviderSettings < Struct.new(
|
9705
|
+
:server_name,
|
9706
|
+
:port,
|
9707
|
+
:database_name)
|
9708
|
+
SENSITIVE = []
|
9709
|
+
include Aws::Structure
|
9710
|
+
end
|
9711
|
+
|
7846
9712
|
# Provides information that defines an Amazon Redshift endpoint.
|
7847
9713
|
#
|
7848
9714
|
# @!attribute [rw] accept_any_date
|
@@ -8091,7 +9957,9 @@ module Aws::DatabaseMigrationService
|
|
8091
9957
|
#
|
8092
9958
|
# @!attribute [rw] map_boolean_as_boolean
|
8093
9959
|
# When true, lets Redshift migrate the boolean type as boolean. By
|
8094
|
-
# default, Redshift migrates booleans as `varchar(1)`.
|
9960
|
+
# default, Redshift migrates booleans as `varchar(1)`. You must set
|
9961
|
+
# this setting on both the source and target endpoints for it to take
|
9962
|
+
# effect.
|
8095
9963
|
# @return [Boolean]
|
8096
9964
|
#
|
8097
9965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RedshiftSettings AWS API Documentation
|
@@ -9119,8 +10987,8 @@ module Aws::DatabaseMigrationService
|
|
9119
10987
|
# Server time example: --cdc-stop-position
|
9120
10988
|
# “server\_time:2018-02-09T12:12:12”
|
9121
10989
|
#
|
9122
|
-
# Commit time example: --cdc-stop-position
|
9123
|
-
# 2018-02-09T12:12:12“
|
10990
|
+
# Commit time example: --cdc-stop-position
|
10991
|
+
# “commit\_time:2018-02-09T12:12:12“
|
9124
10992
|
# @return [String]
|
9125
10993
|
#
|
9126
10994
|
# @!attribute [rw] recovery_checkpoint
|
@@ -10109,7 +11977,7 @@ module Aws::DatabaseMigrationService
|
|
10109
11977
|
# An optional parameter that specifies how DMS treats null values.
|
10110
11978
|
# While handling the null value, you can use this parameter to pass a
|
10111
11979
|
# user-defined string as null when writing to the target. For example,
|
10112
|
-
# when target columns are
|
11980
|
+
# when target columns are nullable, you can use this option to
|
10113
11981
|
# differentiate between the empty string value and the null value. So,
|
10114
11982
|
# if you set this parameter value to the empty string ("" or ''),
|
10115
11983
|
# DMS treats the empty string as the null value instead of `NULL`.
|
@@ -10238,6 +12106,27 @@ module Aws::DatabaseMigrationService
|
|
10238
12106
|
include Aws::Structure
|
10239
12107
|
end
|
10240
12108
|
|
12109
|
+
# Provides information that defines a schema conversion application.
|
12110
|
+
#
|
12111
|
+
# @!attribute [rw] s3_bucket_path
|
12112
|
+
# The path for the Amazon S3 bucket that the application uses for
|
12113
|
+
# exporting assessment reports.
|
12114
|
+
# @return [String]
|
12115
|
+
#
|
12116
|
+
# @!attribute [rw] s3_bucket_role_arn
|
12117
|
+
# The ARN for the role the application uses to access its Amazon S3
|
12118
|
+
# bucket.
|
12119
|
+
# @return [String]
|
12120
|
+
#
|
12121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SCApplicationAttributes AWS API Documentation
|
12122
|
+
#
|
12123
|
+
class SCApplicationAttributes < Struct.new(
|
12124
|
+
:s3_bucket_path,
|
12125
|
+
:s3_bucket_role_arn)
|
12126
|
+
SENSITIVE = []
|
12127
|
+
include Aws::Structure
|
12128
|
+
end
|
12129
|
+
|
10241
12130
|
# The SNS topic is invalid.
|
10242
12131
|
#
|
10243
12132
|
# @!attribute [rw] message
|
@@ -10264,6 +12153,41 @@ module Aws::DatabaseMigrationService
|
|
10264
12153
|
include Aws::Structure
|
10265
12154
|
end
|
10266
12155
|
|
12156
|
+
# Provides information about a schema conversion action.
|
12157
|
+
#
|
12158
|
+
# @!attribute [rw] status
|
12159
|
+
# The schema conversion action status.
|
12160
|
+
# @return [String]
|
12161
|
+
#
|
12162
|
+
# @!attribute [rw] request_identifier
|
12163
|
+
# The identifier for the schema conversion action.
|
12164
|
+
# @return [String]
|
12165
|
+
#
|
12166
|
+
# @!attribute [rw] migration_project_arn
|
12167
|
+
# The migration project ARN.
|
12168
|
+
# @return [String]
|
12169
|
+
#
|
12170
|
+
# @!attribute [rw] error
|
12171
|
+
# Provides error information about a project.
|
12172
|
+
# @return [Types::ErrorDetails]
|
12173
|
+
#
|
12174
|
+
# @!attribute [rw] export_sql_details
|
12175
|
+
# Provides information about a metadata model assessment exported to
|
12176
|
+
# SQL.
|
12177
|
+
# @return [Types::ExportSqlDetails]
|
12178
|
+
#
|
12179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SchemaConversionRequest AWS API Documentation
|
12180
|
+
#
|
12181
|
+
class SchemaConversionRequest < Struct.new(
|
12182
|
+
:status,
|
12183
|
+
:request_identifier,
|
12184
|
+
:migration_project_arn,
|
12185
|
+
:error,
|
12186
|
+
:export_sql_details)
|
12187
|
+
SENSITIVE = []
|
12188
|
+
include Aws::Structure
|
12189
|
+
end
|
12190
|
+
|
10267
12191
|
# Describes a schema in a Fleet Advisor collector inventory.
|
10268
12192
|
#
|
10269
12193
|
# @!attribute [rw] code_line_count
|
@@ -10382,6 +12306,204 @@ module Aws::DatabaseMigrationService
|
|
10382
12306
|
include Aws::Structure
|
10383
12307
|
end
|
10384
12308
|
|
12309
|
+
# @!attribute [rw] migration_project_identifier
|
12310
|
+
# The migration project name or Amazon Resource Name (ARN).
|
12311
|
+
# @return [String]
|
12312
|
+
#
|
12313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartExtensionPackAssociationMessage AWS API Documentation
|
12314
|
+
#
|
12315
|
+
class StartExtensionPackAssociationMessage < Struct.new(
|
12316
|
+
:migration_project_identifier)
|
12317
|
+
SENSITIVE = []
|
12318
|
+
include Aws::Structure
|
12319
|
+
end
|
12320
|
+
|
12321
|
+
# @!attribute [rw] request_identifier
|
12322
|
+
# The identifier for the request operation.
|
12323
|
+
# @return [String]
|
12324
|
+
#
|
12325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartExtensionPackAssociationResponse AWS API Documentation
|
12326
|
+
#
|
12327
|
+
class StartExtensionPackAssociationResponse < Struct.new(
|
12328
|
+
:request_identifier)
|
12329
|
+
SENSITIVE = []
|
12330
|
+
include Aws::Structure
|
12331
|
+
end
|
12332
|
+
|
12333
|
+
# @!attribute [rw] migration_project_identifier
|
12334
|
+
# The migration project name or Amazon Resource Name (ARN).
|
12335
|
+
# @return [String]
|
12336
|
+
#
|
12337
|
+
# @!attribute [rw] selection_rules
|
12338
|
+
# A value that specifies the database objects to assess.
|
12339
|
+
# @return [String]
|
12340
|
+
#
|
12341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelAssessmentMessage AWS API Documentation
|
12342
|
+
#
|
12343
|
+
class StartMetadataModelAssessmentMessage < Struct.new(
|
12344
|
+
:migration_project_identifier,
|
12345
|
+
:selection_rules)
|
12346
|
+
SENSITIVE = []
|
12347
|
+
include Aws::Structure
|
12348
|
+
end
|
12349
|
+
|
12350
|
+
# @!attribute [rw] request_identifier
|
12351
|
+
# The identifier for the assessment operation.
|
12352
|
+
# @return [String]
|
12353
|
+
#
|
12354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelAssessmentResponse AWS API Documentation
|
12355
|
+
#
|
12356
|
+
class StartMetadataModelAssessmentResponse < Struct.new(
|
12357
|
+
:request_identifier)
|
12358
|
+
SENSITIVE = []
|
12359
|
+
include Aws::Structure
|
12360
|
+
end
|
12361
|
+
|
12362
|
+
# @!attribute [rw] migration_project_identifier
|
12363
|
+
# The migration project name or Amazon Resource Name (ARN).
|
12364
|
+
# @return [String]
|
12365
|
+
#
|
12366
|
+
# @!attribute [rw] selection_rules
|
12367
|
+
# A value that specifies the database objects to convert.
|
12368
|
+
# @return [String]
|
12369
|
+
#
|
12370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelConversionMessage AWS API Documentation
|
12371
|
+
#
|
12372
|
+
class StartMetadataModelConversionMessage < Struct.new(
|
12373
|
+
:migration_project_identifier,
|
12374
|
+
:selection_rules)
|
12375
|
+
SENSITIVE = []
|
12376
|
+
include Aws::Structure
|
12377
|
+
end
|
12378
|
+
|
12379
|
+
# @!attribute [rw] request_identifier
|
12380
|
+
# The identifier for the conversion operation.
|
12381
|
+
# @return [String]
|
12382
|
+
#
|
12383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelConversionResponse AWS API Documentation
|
12384
|
+
#
|
12385
|
+
class StartMetadataModelConversionResponse < Struct.new(
|
12386
|
+
:request_identifier)
|
12387
|
+
SENSITIVE = []
|
12388
|
+
include Aws::Structure
|
12389
|
+
end
|
12390
|
+
|
12391
|
+
# @!attribute [rw] migration_project_identifier
|
12392
|
+
# The migration project name or Amazon Resource Name (ARN).
|
12393
|
+
# @return [String]
|
12394
|
+
#
|
12395
|
+
# @!attribute [rw] selection_rules
|
12396
|
+
# A value that specifies the database objects to export.
|
12397
|
+
# @return [String]
|
12398
|
+
#
|
12399
|
+
# @!attribute [rw] origin
|
12400
|
+
# Whether to export the metadata model from the source or the target.
|
12401
|
+
# @return [String]
|
12402
|
+
#
|
12403
|
+
# @!attribute [rw] file_name
|
12404
|
+
# The name of the model file to create in the Amazon S3 bucket.
|
12405
|
+
# @return [String]
|
12406
|
+
#
|
12407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportAsScriptMessage AWS API Documentation
|
12408
|
+
#
|
12409
|
+
class StartMetadataModelExportAsScriptMessage < Struct.new(
|
12410
|
+
:migration_project_identifier,
|
12411
|
+
:selection_rules,
|
12412
|
+
:origin,
|
12413
|
+
:file_name)
|
12414
|
+
SENSITIVE = []
|
12415
|
+
include Aws::Structure
|
12416
|
+
end
|
12417
|
+
|
12418
|
+
# @!attribute [rw] request_identifier
|
12419
|
+
# The identifier for the export operation.
|
12420
|
+
# @return [String]
|
12421
|
+
#
|
12422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportAsScriptResponse AWS API Documentation
|
12423
|
+
#
|
12424
|
+
class StartMetadataModelExportAsScriptResponse < Struct.new(
|
12425
|
+
:request_identifier)
|
12426
|
+
SENSITIVE = []
|
12427
|
+
include Aws::Structure
|
12428
|
+
end
|
12429
|
+
|
12430
|
+
# @!attribute [rw] migration_project_identifier
|
12431
|
+
# The migration project name or Amazon Resource Name (ARN).
|
12432
|
+
# @return [String]
|
12433
|
+
#
|
12434
|
+
# @!attribute [rw] selection_rules
|
12435
|
+
# A value that specifies the database objects to export.
|
12436
|
+
# @return [String]
|
12437
|
+
#
|
12438
|
+
# @!attribute [rw] overwrite_extension_pack
|
12439
|
+
# Whether to overwrite the migration project extension pack. An
|
12440
|
+
# extension pack is an add-on module that emulates functions present
|
12441
|
+
# in a source database that are required when converting objects to
|
12442
|
+
# the target database.
|
12443
|
+
# @return [Boolean]
|
12444
|
+
#
|
12445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportToTargetMessage AWS API Documentation
|
12446
|
+
#
|
12447
|
+
class StartMetadataModelExportToTargetMessage < Struct.new(
|
12448
|
+
:migration_project_identifier,
|
12449
|
+
:selection_rules,
|
12450
|
+
:overwrite_extension_pack)
|
12451
|
+
SENSITIVE = []
|
12452
|
+
include Aws::Structure
|
12453
|
+
end
|
12454
|
+
|
12455
|
+
# @!attribute [rw] request_identifier
|
12456
|
+
# The identifier for the export operation.
|
12457
|
+
# @return [String]
|
12458
|
+
#
|
12459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportToTargetResponse AWS API Documentation
|
12460
|
+
#
|
12461
|
+
class StartMetadataModelExportToTargetResponse < Struct.new(
|
12462
|
+
:request_identifier)
|
12463
|
+
SENSITIVE = []
|
12464
|
+
include Aws::Structure
|
12465
|
+
end
|
12466
|
+
|
12467
|
+
# @!attribute [rw] migration_project_identifier
|
12468
|
+
# The migration project name or Amazon Resource Name (ARN).
|
12469
|
+
# @return [String]
|
12470
|
+
#
|
12471
|
+
# @!attribute [rw] selection_rules
|
12472
|
+
# A value that specifies the database objects to import.
|
12473
|
+
# @return [String]
|
12474
|
+
#
|
12475
|
+
# @!attribute [rw] origin
|
12476
|
+
# Whether to load metadata to the source or target database.
|
12477
|
+
# @return [String]
|
12478
|
+
#
|
12479
|
+
# @!attribute [rw] refresh
|
12480
|
+
# If `true`, DMS loads metadata for the specified objects from the
|
12481
|
+
# source database.
|
12482
|
+
# @return [Boolean]
|
12483
|
+
#
|
12484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelImportMessage AWS API Documentation
|
12485
|
+
#
|
12486
|
+
class StartMetadataModelImportMessage < Struct.new(
|
12487
|
+
:migration_project_identifier,
|
12488
|
+
:selection_rules,
|
12489
|
+
:origin,
|
12490
|
+
:refresh)
|
12491
|
+
SENSITIVE = []
|
12492
|
+
include Aws::Structure
|
12493
|
+
end
|
12494
|
+
|
12495
|
+
# @!attribute [rw] request_identifier
|
12496
|
+
# The identifier for the import operation.
|
12497
|
+
# @return [String]
|
12498
|
+
#
|
12499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelImportResponse AWS API Documentation
|
12500
|
+
#
|
12501
|
+
class StartMetadataModelImportResponse < Struct.new(
|
12502
|
+
:request_identifier)
|
12503
|
+
SENSITIVE = []
|
12504
|
+
include Aws::Structure
|
12505
|
+
end
|
12506
|
+
|
10385
12507
|
# @!attribute [rw] database_id
|
10386
12508
|
# The identifier of the source database to analyze and provide
|
10387
12509
|
# recommendations for.
|
@@ -10681,8 +12803,8 @@ module Aws::DatabaseMigrationService
|
|
10681
12803
|
# Server time example: --cdc-stop-position
|
10682
12804
|
# “server\_time:2018-02-09T12:12:12”
|
10683
12805
|
#
|
10684
|
-
# Commit time example: --cdc-stop-position
|
10685
|
-
# 2018-02-09T12:12:12“
|
12806
|
+
# Commit time example: --cdc-stop-position
|
12807
|
+
# “commit\_time:2018-02-09T12:12:12“
|
10686
12808
|
# @return [String]
|
10687
12809
|
#
|
10688
12810
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskMessage AWS API Documentation
|
@@ -11247,7 +13369,7 @@ module Aws::DatabaseMigrationService
|
|
11247
13369
|
# When set to true, this operation migrates DMS subscriptions for
|
11248
13370
|
# Amazon SNS notifications no matter what your replication instance
|
11249
13371
|
# version is. If not set or set to false, this operation runs only
|
11250
|
-
# when all your replication instances are from DMS version 3.4.
|
13372
|
+
# when all your replication instances are from DMS version 3.4.5 or
|
11251
13373
|
# higher.
|
11252
13374
|
# @return [Boolean]
|
11253
13375
|
#
|