aws-sdk-databasemigrationservice 1.85.0 → 1.86.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.
@@ -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
@@ -1599,6 +1800,151 @@ module Aws::DatabaseMigrationService
1599
1800
  include Aws::Structure
1600
1801
  end
1601
1802
 
1803
+ # Provides information that defines a data provider.
1804
+ #
1805
+ # @!attribute [rw] data_provider_name
1806
+ # The name of the data provider.
1807
+ # @return [String]
1808
+ #
1809
+ # @!attribute [rw] data_provider_arn
1810
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
1811
+ # data provider.
1812
+ # @return [String]
1813
+ #
1814
+ # @!attribute [rw] data_provider_creation_time
1815
+ # The time the data provider was created.
1816
+ # @return [Time]
1817
+ #
1818
+ # @!attribute [rw] description
1819
+ # A description of the data provider. Descriptions can have up to 31
1820
+ # characters. A description can contain only ASCII letters, digits,
1821
+ # and hyphens ('-'). Also, it can't end with a hyphen or contain
1822
+ # two consecutive hyphens, and can only begin with a letter.
1823
+ # @return [String]
1824
+ #
1825
+ # @!attribute [rw] engine
1826
+ # The type of database engine for the data provider. Valid values
1827
+ # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
1828
+ # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
1829
+ # Amazon Aurora MySQL-Compatible Edition.
1830
+ # @return [String]
1831
+ #
1832
+ # @!attribute [rw] settings
1833
+ # The settings in JSON format for a data provider.
1834
+ # @return [Types::DataProviderSettings]
1835
+ #
1836
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProvider AWS API Documentation
1837
+ #
1838
+ class DataProvider < Struct.new(
1839
+ :data_provider_name,
1840
+ :data_provider_arn,
1841
+ :data_provider_creation_time,
1842
+ :description,
1843
+ :engine,
1844
+ :settings)
1845
+ SENSITIVE = []
1846
+ include Aws::Structure
1847
+ end
1848
+
1849
+ # Information about a data provider.
1850
+ #
1851
+ # @!attribute [rw] secrets_manager_secret_id
1852
+ # The identifier of the Amazon Web Services Secrets Manager Secret
1853
+ # used to store access credentials for the data provider.
1854
+ # @return [String]
1855
+ #
1856
+ # @!attribute [rw] secrets_manager_access_role_arn
1857
+ # The ARN of the role used to access Amazon Web Services Secrets
1858
+ # Manager.
1859
+ # @return [String]
1860
+ #
1861
+ # @!attribute [rw] data_provider_name
1862
+ # The user-friendly name of the data provider.
1863
+ # @return [String]
1864
+ #
1865
+ # @!attribute [rw] data_provider_arn
1866
+ # The Amazon Resource Name (ARN) of the data provider.
1867
+ # @return [String]
1868
+ #
1869
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProviderDescriptor AWS API Documentation
1870
+ #
1871
+ class DataProviderDescriptor < Struct.new(
1872
+ :secrets_manager_secret_id,
1873
+ :secrets_manager_access_role_arn,
1874
+ :data_provider_name,
1875
+ :data_provider_arn)
1876
+ SENSITIVE = []
1877
+ include Aws::Structure
1878
+ end
1879
+
1880
+ # Information about a data provider.
1881
+ #
1882
+ # @!attribute [rw] data_provider_identifier
1883
+ # The name or Amazon Resource Name (ARN) of the data provider.
1884
+ # @return [String]
1885
+ #
1886
+ # @!attribute [rw] secrets_manager_secret_id
1887
+ # The identifier of the Amazon Web Services Secrets Manager Secret
1888
+ # used to store access credentials for the data provider.
1889
+ # @return [String]
1890
+ #
1891
+ # @!attribute [rw] secrets_manager_access_role_arn
1892
+ # The ARN of the role used to access Amazon Web Services Secrets
1893
+ # Manager.
1894
+ # @return [String]
1895
+ #
1896
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProviderDescriptorDefinition AWS API Documentation
1897
+ #
1898
+ class DataProviderDescriptorDefinition < Struct.new(
1899
+ :data_provider_identifier,
1900
+ :secrets_manager_secret_id,
1901
+ :secrets_manager_access_role_arn)
1902
+ SENSITIVE = []
1903
+ include Aws::Structure
1904
+ end
1905
+
1906
+ # Provides information that defines a data provider.
1907
+ #
1908
+ # @note DataProviderSettings is a union - when making an API calls you must set exactly one of the members.
1909
+ #
1910
+ # @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.
1911
+ #
1912
+ # @!attribute [rw] postgre_sql_settings
1913
+ # Provides information that defines a PostgreSQL data provider.
1914
+ # @return [Types::PostgreSqlDataProviderSettings]
1915
+ #
1916
+ # @!attribute [rw] my_sql_settings
1917
+ # Provides information that defines a MySQL data provider.
1918
+ # @return [Types::MySqlDataProviderSettings]
1919
+ #
1920
+ # @!attribute [rw] oracle_settings
1921
+ # Provides information that defines an Oracle data provider.
1922
+ # @return [Types::OracleDataProviderSettings]
1923
+ #
1924
+ # @!attribute [rw] microsoft_sql_server_settings
1925
+ # Provides information that defines a Microsoft SQL Server data
1926
+ # provider.
1927
+ # @return [Types::MicrosoftSqlServerDataProviderSettings]
1928
+ #
1929
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DataProviderSettings AWS API Documentation
1930
+ #
1931
+ class DataProviderSettings < Struct.new(
1932
+ :postgre_sql_settings,
1933
+ :my_sql_settings,
1934
+ :oracle_settings,
1935
+ :microsoft_sql_server_settings,
1936
+ :unknown)
1937
+ SENSITIVE = []
1938
+ include Aws::Structure
1939
+ include Aws::Structure::Union
1940
+
1941
+ class PostgreSqlSettings < DataProviderSettings; end
1942
+ class MySqlSettings < DataProviderSettings; end
1943
+ class OracleSettings < DataProviderSettings; end
1944
+ class MicrosoftSqlServerSettings < DataProviderSettings; end
1945
+ class Unknown < DataProviderSettings; end
1946
+ end
1947
+
1602
1948
  # Describes an inventory database instance for a Fleet Advisor
1603
1949
  # collector.
1604
1950
  #
@@ -1725,6 +2071,20 @@ module Aws::DatabaseMigrationService
1725
2071
  include Aws::Structure
1726
2072
  end
1727
2073
 
2074
+ # Provides error information about a schema conversion operation.
2075
+ #
2076
+ # @!attribute [rw] message
2077
+ # The error message.
2078
+ # @return [String]
2079
+ #
2080
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DefaultErrorDetails AWS API Documentation
2081
+ #
2082
+ class DefaultErrorDetails < Struct.new(
2083
+ :message)
2084
+ SENSITIVE = []
2085
+ include Aws::Structure
2086
+ end
2087
+
1728
2088
  # @!attribute [rw] certificate_arn
1729
2089
  # The Amazon Resource Name (ARN) of the certificate.
1730
2090
  # @return [String]
@@ -1791,6 +2151,30 @@ module Aws::DatabaseMigrationService
1791
2151
  include Aws::Structure
1792
2152
  end
1793
2153
 
2154
+ # @!attribute [rw] data_provider_identifier
2155
+ # The identifier of the data provider to delete.
2156
+ # @return [String]
2157
+ #
2158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataProviderMessage AWS API Documentation
2159
+ #
2160
+ class DeleteDataProviderMessage < Struct.new(
2161
+ :data_provider_identifier)
2162
+ SENSITIVE = []
2163
+ include Aws::Structure
2164
+ end
2165
+
2166
+ # @!attribute [rw] data_provider
2167
+ # The data provider that was deleted.
2168
+ # @return [Types::DataProvider]
2169
+ #
2170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataProviderResponse AWS API Documentation
2171
+ #
2172
+ class DeleteDataProviderResponse < Struct.new(
2173
+ :data_provider)
2174
+ SENSITIVE = []
2175
+ include Aws::Structure
2176
+ end
2177
+
1794
2178
  # @!attribute [rw] endpoint_arn
1795
2179
  # The Amazon Resource Name (ARN) string that uniquely identifies the
1796
2180
  # endpoint.
@@ -1864,6 +2248,55 @@ module Aws::DatabaseMigrationService
1864
2248
  include Aws::Structure
1865
2249
  end
1866
2250
 
2251
+ # @!attribute [rw] instance_profile_identifier
2252
+ # The identifier of the instance profile to delete.
2253
+ # @return [String]
2254
+ #
2255
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteInstanceProfileMessage AWS API Documentation
2256
+ #
2257
+ class DeleteInstanceProfileMessage < Struct.new(
2258
+ :instance_profile_identifier)
2259
+ SENSITIVE = []
2260
+ include Aws::Structure
2261
+ end
2262
+
2263
+ # @!attribute [rw] instance_profile
2264
+ # The instance profile that was deleted.
2265
+ # @return [Types::InstanceProfile]
2266
+ #
2267
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteInstanceProfileResponse AWS API Documentation
2268
+ #
2269
+ class DeleteInstanceProfileResponse < Struct.new(
2270
+ :instance_profile)
2271
+ SENSITIVE = []
2272
+ include Aws::Structure
2273
+ end
2274
+
2275
+ # @!attribute [rw] migration_project_identifier
2276
+ # The name or Amazon Resource Name (ARN) of the migration project to
2277
+ # delete.
2278
+ # @return [String]
2279
+ #
2280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteMigrationProjectMessage AWS API Documentation
2281
+ #
2282
+ class DeleteMigrationProjectMessage < Struct.new(
2283
+ :migration_project_identifier)
2284
+ SENSITIVE = []
2285
+ include Aws::Structure
2286
+ end
2287
+
2288
+ # @!attribute [rw] migration_project
2289
+ # The migration project that was deleted.
2290
+ # @return [Types::MigrationProject]
2291
+ #
2292
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteMigrationProjectResponse AWS API Documentation
2293
+ #
2294
+ class DeleteMigrationProjectResponse < Struct.new(
2295
+ :migration_project)
2296
+ SENSITIVE = []
2297
+ include Aws::Structure
2298
+ end
2299
+
1867
2300
  # @!attribute [rw] replication_config_arn
1868
2301
  # The replication config to delete.
1869
2302
  # @return [String]
@@ -2198,38 +2631,128 @@ module Aws::DatabaseMigrationService
2198
2631
  include Aws::Structure
2199
2632
  end
2200
2633
 
2201
- # @!attribute [rw] engine_name
2202
- # The database engine used for your source or target endpoint.
2634
+ # @!attribute [rw] migration_project_identifier
2635
+ # The name or Amazon Resource Name (ARN) for the schema conversion
2636
+ # project to describe.
2203
2637
  # @return [String]
2204
2638
  #
2205
- # @!attribute [rw] max_records
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]
2639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConversionConfigurationMessage AWS API Documentation
2211
2640
  #
2212
- # @!attribute [rw] marker
2213
- # An optional pagination token provided by a previous request. If this
2214
- # parameter is specified, the response includes only records beyond
2215
- # the marker, up to the value specified by `MaxRecords`.
2641
+ class DescribeConversionConfigurationMessage < Struct.new(
2642
+ :migration_project_identifier)
2643
+ SENSITIVE = []
2644
+ include Aws::Structure
2645
+ end
2646
+
2647
+ # @!attribute [rw] migration_project_identifier
2648
+ # The name or Amazon Resource Name (ARN) for the schema conversion
2649
+ # project.
2216
2650
  # @return [String]
2217
2651
  #
2218
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointSettingsMessage AWS API Documentation
2652
+ # @!attribute [rw] conversion_configuration
2653
+ # The configuration parameters for the schema conversion project.
2654
+ # @return [String]
2219
2655
  #
2220
- class DescribeEndpointSettingsMessage < Struct.new(
2221
- :engine_name,
2222
- :max_records,
2223
- :marker)
2656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConversionConfigurationResponse AWS API Documentation
2657
+ #
2658
+ class DescribeConversionConfigurationResponse < Struct.new(
2659
+ :migration_project_identifier,
2660
+ :conversion_configuration)
2224
2661
  SENSITIVE = []
2225
2662
  include Aws::Structure
2226
2663
  end
2227
2664
 
2228
- # @!attribute [rw] marker
2229
- # An optional pagination token provided by a previous request. If this
2230
- # parameter is specified, the response includes only records beyond
2231
- # the marker, up to the value specified by `MaxRecords`.
2232
- # @return [String]
2665
+ # @!attribute [rw] filters
2666
+ # Filters applied to the data providers described in the form of
2667
+ # key-value pairs.
2668
+ # @return [Array<Types::Filter>]
2669
+ #
2670
+ # @!attribute [rw] max_records
2671
+ # The maximum number of records to include in the response. If more
2672
+ # records exist than the specified `MaxRecords` value, DMS includes a
2673
+ # pagination token in the response so that you can retrieve the
2674
+ # remaining results.
2675
+ # @return [Integer]
2676
+ #
2677
+ # @!attribute [rw] marker
2678
+ # Specifies the unique pagination token that makes it possible to
2679
+ # display the next page of results. If this parameter is specified,
2680
+ # the response includes only records beyond the marker, up to the
2681
+ # value specified by `MaxRecords`.
2682
+ #
2683
+ # If `Marker` is returned by a previous response, there are more
2684
+ # results available. The value of `Marker` is a unique pagination
2685
+ # token for each page. To retrieve the next page, make the call again
2686
+ # using the returned token and keeping all other arguments unchanged.
2687
+ # @return [String]
2688
+ #
2689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataProvidersMessage AWS API Documentation
2690
+ #
2691
+ class DescribeDataProvidersMessage < Struct.new(
2692
+ :filters,
2693
+ :max_records,
2694
+ :marker)
2695
+ SENSITIVE = []
2696
+ include Aws::Structure
2697
+ end
2698
+
2699
+ # @!attribute [rw] marker
2700
+ # Specifies the unique pagination token that makes it possible to
2701
+ # display the next page of results. If this parameter is specified,
2702
+ # the response includes only records beyond the marker, up to the
2703
+ # value specified by `MaxRecords`.
2704
+ #
2705
+ # If `Marker` is returned by a previous response, there are more
2706
+ # results available. The value of `Marker` is a unique pagination
2707
+ # token for each page. To retrieve the next page, make the call again
2708
+ # using the returned token and keeping all other arguments unchanged.
2709
+ # @return [String]
2710
+ #
2711
+ # @!attribute [rw] data_providers
2712
+ # A description of data providers.
2713
+ # @return [Array<Types::DataProvider>]
2714
+ #
2715
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataProvidersResponse AWS API Documentation
2716
+ #
2717
+ class DescribeDataProvidersResponse < Struct.new(
2718
+ :marker,
2719
+ :data_providers)
2720
+ SENSITIVE = []
2721
+ include Aws::Structure
2722
+ end
2723
+
2724
+ # @!attribute [rw] engine_name
2725
+ # The database engine used for your source or target endpoint.
2726
+ # @return [String]
2727
+ #
2728
+ # @!attribute [rw] max_records
2729
+ # The maximum number of records to include in the response. If more
2730
+ # records exist than the specified `MaxRecords` value, a pagination
2731
+ # token called a marker is included in the response so that the
2732
+ # remaining results can be retrieved.
2733
+ # @return [Integer]
2734
+ #
2735
+ # @!attribute [rw] marker
2736
+ # An optional pagination token provided by a previous request. If this
2737
+ # parameter is specified, the response includes only records beyond
2738
+ # the marker, up to the value specified by `MaxRecords`.
2739
+ # @return [String]
2740
+ #
2741
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointSettingsMessage AWS API Documentation
2742
+ #
2743
+ class DescribeEndpointSettingsMessage < Struct.new(
2744
+ :engine_name,
2745
+ :max_records,
2746
+ :marker)
2747
+ SENSITIVE = []
2748
+ include Aws::Structure
2749
+ end
2750
+
2751
+ # @!attribute [rw] marker
2752
+ # An optional pagination token provided by a previous request. If this
2753
+ # parameter is specified, the response includes only records beyond
2754
+ # the marker, up to the value specified by `MaxRecords`.
2755
+ # @return [String]
2233
2756
  #
2234
2757
  # @!attribute [rw] endpoint_settings
2235
2758
  # Descriptions of the endpoint settings available for your source or
@@ -2563,6 +3086,71 @@ module Aws::DatabaseMigrationService
2563
3086
  include Aws::Structure
2564
3087
  end
2565
3088
 
3089
+ # @!attribute [rw] migration_project_identifier
3090
+ # The name or Amazon Resource Name (ARN) for the migration project.
3091
+ # @return [String]
3092
+ #
3093
+ # @!attribute [rw] filters
3094
+ # Filters applied to the extension pack associations described in the
3095
+ # form of key-value pairs.
3096
+ # @return [Array<Types::Filter>]
3097
+ #
3098
+ # @!attribute [rw] marker
3099
+ # Specifies the unique pagination token that makes it possible to
3100
+ # display the next page of results. If this parameter is specified,
3101
+ # the response includes only records beyond the marker, up to the
3102
+ # value specified by `MaxRecords`.
3103
+ #
3104
+ # If `Marker` is returned by a previous response, there are more
3105
+ # results available. The value of `Marker` is a unique pagination
3106
+ # token for each page. To retrieve the next page, make the call again
3107
+ # using the returned token and keeping all other arguments unchanged.
3108
+ # @return [String]
3109
+ #
3110
+ # @!attribute [rw] max_records
3111
+ # The maximum number of records to include in the response. If more
3112
+ # records exist than the specified `MaxRecords` value, DMS includes a
3113
+ # pagination token in the response so that you can retrieve the
3114
+ # remaining results.
3115
+ # @return [Integer]
3116
+ #
3117
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeExtensionPackAssociationsMessage AWS API Documentation
3118
+ #
3119
+ class DescribeExtensionPackAssociationsMessage < Struct.new(
3120
+ :migration_project_identifier,
3121
+ :filters,
3122
+ :marker,
3123
+ :max_records)
3124
+ SENSITIVE = []
3125
+ include Aws::Structure
3126
+ end
3127
+
3128
+ # @!attribute [rw] marker
3129
+ # Specifies the unique pagination token that makes it possible to
3130
+ # display the next page of results. If this parameter is specified,
3131
+ # the response includes only records beyond the marker, up to the
3132
+ # value specified by `MaxRecords`.
3133
+ #
3134
+ # If `Marker` is returned by a previous response, there are more
3135
+ # results available. The value of `Marker` is a unique pagination
3136
+ # token for each page. To retrieve the next page, make the call again
3137
+ # using the returned token and keeping all other arguments unchanged.
3138
+ # @return [String]
3139
+ #
3140
+ # @!attribute [rw] requests
3141
+ # A paginated list of extension pack associations for the specified
3142
+ # migration project.
3143
+ # @return [Array<Types::SchemaConversionRequest>]
3144
+ #
3145
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeExtensionPackAssociationsResponse AWS API Documentation
3146
+ #
3147
+ class DescribeExtensionPackAssociationsResponse < Struct.new(
3148
+ :marker,
3149
+ :requests)
3150
+ SENSITIVE = []
3151
+ include Aws::Structure
3152
+ end
3153
+
2566
3154
  # @!attribute [rw] filters
2567
3155
  # If you specify any of the following filters, the output includes
2568
3156
  # information for only those collectors that meet the filter criteria:
@@ -2845,6 +3433,442 @@ module Aws::DatabaseMigrationService
2845
3433
  include Aws::Structure
2846
3434
  end
2847
3435
 
3436
+ # @!attribute [rw] filters
3437
+ # Filters applied to the instance profiles described in the form of
3438
+ # key-value pairs.
3439
+ # @return [Array<Types::Filter>]
3440
+ #
3441
+ # @!attribute [rw] max_records
3442
+ # The maximum number of records to include in the response. If more
3443
+ # records exist than the specified `MaxRecords` value, DMS includes a
3444
+ # pagination token in the response so that you can retrieve the
3445
+ # remaining results.
3446
+ # @return [Integer]
3447
+ #
3448
+ # @!attribute [rw] marker
3449
+ # Specifies the unique pagination token that makes it possible to
3450
+ # display the next page of results. If this parameter is specified,
3451
+ # the response includes only records beyond the marker, up to the
3452
+ # value specified by `MaxRecords`.
3453
+ #
3454
+ # If `Marker` is returned by a previous response, there are more
3455
+ # results available. The value of `Marker` is a unique pagination
3456
+ # token for each page. To retrieve the next page, make the call again
3457
+ # using the returned token and keeping all other arguments unchanged.
3458
+ # @return [String]
3459
+ #
3460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeInstanceProfilesMessage AWS API Documentation
3461
+ #
3462
+ class DescribeInstanceProfilesMessage < Struct.new(
3463
+ :filters,
3464
+ :max_records,
3465
+ :marker)
3466
+ SENSITIVE = []
3467
+ include Aws::Structure
3468
+ end
3469
+
3470
+ # @!attribute [rw] marker
3471
+ # Specifies the unique pagination token that makes it possible to
3472
+ # display the next page of results. If this parameter is specified,
3473
+ # the response includes only records beyond the marker, up to the
3474
+ # value specified by `MaxRecords`.
3475
+ #
3476
+ # If `Marker` is returned by a previous response, there are more
3477
+ # results available. The value of `Marker` is a unique pagination
3478
+ # token for each page. To retrieve the next page, make the call again
3479
+ # using the returned token and keeping all other arguments unchanged.
3480
+ # @return [String]
3481
+ #
3482
+ # @!attribute [rw] instance_profiles
3483
+ # A description of instance profiles.
3484
+ # @return [Array<Types::InstanceProfile>]
3485
+ #
3486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeInstanceProfilesResponse AWS API Documentation
3487
+ #
3488
+ class DescribeInstanceProfilesResponse < Struct.new(
3489
+ :marker,
3490
+ :instance_profiles)
3491
+ SENSITIVE = []
3492
+ include Aws::Structure
3493
+ end
3494
+
3495
+ # @!attribute [rw] migration_project_identifier
3496
+ # The name or Amazon Resource Name (ARN) of the migration project.
3497
+ # @return [String]
3498
+ #
3499
+ # @!attribute [rw] filters
3500
+ # Filters applied to the metadata model assessments described in the
3501
+ # form of key-value pairs.
3502
+ # @return [Array<Types::Filter>]
3503
+ #
3504
+ # @!attribute [rw] marker
3505
+ # Specifies the unique pagination token that makes it possible to
3506
+ # display the next page of results. If this parameter is specified,
3507
+ # the response includes only records beyond the marker, up to the
3508
+ # value specified by `MaxRecords`.
3509
+ #
3510
+ # If `Marker` is returned by a previous response, there are more
3511
+ # results available. The value of `Marker` is a unique pagination
3512
+ # token for each page. To retrieve the next page, make the call again
3513
+ # using the returned token and keeping all other arguments unchanged.
3514
+ # @return [String]
3515
+ #
3516
+ # @!attribute [rw] max_records
3517
+ # The maximum number of records to include in the response. If more
3518
+ # records exist than the specified `MaxRecords` value, DMS includes a
3519
+ # pagination token in the response so that you can retrieve the
3520
+ # remaining results.
3521
+ # @return [Integer]
3522
+ #
3523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelAssessmentsMessage AWS API Documentation
3524
+ #
3525
+ class DescribeMetadataModelAssessmentsMessage < Struct.new(
3526
+ :migration_project_identifier,
3527
+ :filters,
3528
+ :marker,
3529
+ :max_records)
3530
+ SENSITIVE = []
3531
+ include Aws::Structure
3532
+ end
3533
+
3534
+ # @!attribute [rw] marker
3535
+ # Specifies the unique pagination token that makes it possible to
3536
+ # display the next page of results. If this parameter is specified,
3537
+ # the response includes only records beyond the marker, up to the
3538
+ # value specified by `MaxRecords`.
3539
+ #
3540
+ # If `Marker` is returned by a previous response, there are more
3541
+ # results available. The value of `Marker` is a unique pagination
3542
+ # token for each page. To retrieve the next page, make the call again
3543
+ # using the returned token and keeping all other arguments unchanged.
3544
+ # @return [String]
3545
+ #
3546
+ # @!attribute [rw] requests
3547
+ # A paginated list of metadata model assessments for the specified
3548
+ # migration project.
3549
+ # @return [Array<Types::SchemaConversionRequest>]
3550
+ #
3551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelAssessmentsResponse AWS API Documentation
3552
+ #
3553
+ class DescribeMetadataModelAssessmentsResponse < Struct.new(
3554
+ :marker,
3555
+ :requests)
3556
+ SENSITIVE = []
3557
+ include Aws::Structure
3558
+ end
3559
+
3560
+ # @!attribute [rw] migration_project_identifier
3561
+ # The migration project name or Amazon Resource Name (ARN).
3562
+ # @return [String]
3563
+ #
3564
+ # @!attribute [rw] filters
3565
+ # Filters applied to the metadata model conversions described in the
3566
+ # form of key-value pairs.
3567
+ # @return [Array<Types::Filter>]
3568
+ #
3569
+ # @!attribute [rw] marker
3570
+ # Specifies the unique pagination token that makes it possible to
3571
+ # display the next page of results. If this parameter is specified,
3572
+ # the response includes only records beyond the marker, up to the
3573
+ # value specified by `MaxRecords`.
3574
+ #
3575
+ # If `Marker` is returned by a previous response, there are more
3576
+ # results available. The value of `Marker` is a unique pagination
3577
+ # token for each page. To retrieve the next page, make the call again
3578
+ # using the returned token and keeping all other arguments unchanged.
3579
+ # @return [String]
3580
+ #
3581
+ # @!attribute [rw] max_records
3582
+ # The maximum number of records to include in the response. If more
3583
+ # records exist than the specified `MaxRecords` value, DMS includes a
3584
+ # pagination token in the response so that you can retrieve the
3585
+ # remaining results.
3586
+ # @return [Integer]
3587
+ #
3588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelConversionsMessage AWS API Documentation
3589
+ #
3590
+ class DescribeMetadataModelConversionsMessage < Struct.new(
3591
+ :migration_project_identifier,
3592
+ :filters,
3593
+ :marker,
3594
+ :max_records)
3595
+ SENSITIVE = []
3596
+ include Aws::Structure
3597
+ end
3598
+
3599
+ # @!attribute [rw] marker
3600
+ # Specifies the unique pagination token that makes it possible to
3601
+ # display the next page of results. If this parameter is specified,
3602
+ # the response includes only records beyond the marker, up to the
3603
+ # value specified by `MaxRecords`.
3604
+ #
3605
+ # If `Marker` is returned by a previous response, there are more
3606
+ # results available. The value of `Marker` is a unique pagination
3607
+ # token for each page. To retrieve the next page, make the call again
3608
+ # using the returned token and keeping all other arguments unchanged.
3609
+ # @return [String]
3610
+ #
3611
+ # @!attribute [rw] requests
3612
+ # A paginated list of metadata model conversions.
3613
+ # @return [Array<Types::SchemaConversionRequest>]
3614
+ #
3615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelConversionsResponse AWS API Documentation
3616
+ #
3617
+ class DescribeMetadataModelConversionsResponse < Struct.new(
3618
+ :marker,
3619
+ :requests)
3620
+ SENSITIVE = []
3621
+ include Aws::Structure
3622
+ end
3623
+
3624
+ # @!attribute [rw] migration_project_identifier
3625
+ # The migration project name or Amazon Resource Name (ARN).
3626
+ # @return [String]
3627
+ #
3628
+ # @!attribute [rw] filters
3629
+ # Filters applied to the metadata model exports described in the form
3630
+ # of key-value pairs.
3631
+ # @return [Array<Types::Filter>]
3632
+ #
3633
+ # @!attribute [rw] marker
3634
+ # Specifies the unique pagination token that makes it possible to
3635
+ # display the next page of results. If this parameter is specified,
3636
+ # the response includes only records beyond the marker, up to the
3637
+ # value specified by `MaxRecords`.
3638
+ #
3639
+ # If `Marker` is returned by a previous response, there are more
3640
+ # results available. The value of `Marker` is a unique pagination
3641
+ # token for each page. To retrieve the next page, make the call again
3642
+ # using the returned token and keeping all other arguments unchanged.
3643
+ # @return [String]
3644
+ #
3645
+ # @!attribute [rw] max_records
3646
+ # The maximum number of records to include in the response. If more
3647
+ # records exist than the specified `MaxRecords` value, DMS includes a
3648
+ # pagination token in the response so that you can retrieve the
3649
+ # remaining results.
3650
+ # @return [Integer]
3651
+ #
3652
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsAsScriptMessage AWS API Documentation
3653
+ #
3654
+ class DescribeMetadataModelExportsAsScriptMessage < Struct.new(
3655
+ :migration_project_identifier,
3656
+ :filters,
3657
+ :marker,
3658
+ :max_records)
3659
+ SENSITIVE = []
3660
+ include Aws::Structure
3661
+ end
3662
+
3663
+ # @!attribute [rw] marker
3664
+ # Specifies the unique pagination token that makes it possible to
3665
+ # display the next page of results. If this parameter is specified,
3666
+ # the response includes only records beyond the marker, up to the
3667
+ # value specified by `MaxRecords`.
3668
+ #
3669
+ # If `Marker` is returned by a previous response, there are more
3670
+ # results available. The value of `Marker` is a unique pagination
3671
+ # token for each page. To retrieve the next page, make the call again
3672
+ # using the returned token and keeping all other arguments unchanged.
3673
+ # @return [String]
3674
+ #
3675
+ # @!attribute [rw] requests
3676
+ # A paginated list of metadata model exports.
3677
+ # @return [Array<Types::SchemaConversionRequest>]
3678
+ #
3679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsAsScriptResponse AWS API Documentation
3680
+ #
3681
+ class DescribeMetadataModelExportsAsScriptResponse < Struct.new(
3682
+ :marker,
3683
+ :requests)
3684
+ SENSITIVE = []
3685
+ include Aws::Structure
3686
+ end
3687
+
3688
+ # @!attribute [rw] migration_project_identifier
3689
+ # The migration project name or Amazon Resource Name (ARN).
3690
+ # @return [String]
3691
+ #
3692
+ # @!attribute [rw] filters
3693
+ # Filters applied to the metadata model exports described in the form
3694
+ # of key-value pairs.
3695
+ # @return [Array<Types::Filter>]
3696
+ #
3697
+ # @!attribute [rw] marker
3698
+ # Specifies the unique pagination token that makes it possible to
3699
+ # display the next page of results. If this parameter is specified,
3700
+ # the response includes only records beyond the marker, up to the
3701
+ # value specified by `MaxRecords`.
3702
+ #
3703
+ # If `Marker` is returned by a previous response, there are more
3704
+ # results available. The value of `Marker` is a unique pagination
3705
+ # token for each page. To retrieve the next page, make the call again
3706
+ # using the returned token and keeping all other arguments unchanged.
3707
+ # @return [String]
3708
+ #
3709
+ # @!attribute [rw] max_records
3710
+ # The maximum number of records to include in the response. If more
3711
+ # records exist than the specified `MaxRecords` value, DMS includes a
3712
+ # pagination token in the response so that you can retrieve the
3713
+ # remaining results.
3714
+ # @return [Integer]
3715
+ #
3716
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsToTargetMessage AWS API Documentation
3717
+ #
3718
+ class DescribeMetadataModelExportsToTargetMessage < Struct.new(
3719
+ :migration_project_identifier,
3720
+ :filters,
3721
+ :marker,
3722
+ :max_records)
3723
+ SENSITIVE = []
3724
+ include Aws::Structure
3725
+ end
3726
+
3727
+ # @!attribute [rw] marker
3728
+ # Specifies the unique pagination token that makes it possible to
3729
+ # display the next page of results. If this parameter is specified,
3730
+ # the response includes only records beyond the marker, up to the
3731
+ # value specified by `MaxRecords`.
3732
+ #
3733
+ # If `Marker` is returned by a previous response, there are more
3734
+ # results available. The value of `Marker` is a unique pagination
3735
+ # token for each page. To retrieve the next page, make the call again
3736
+ # using the returned token and keeping all other arguments unchanged.
3737
+ # @return [String]
3738
+ #
3739
+ # @!attribute [rw] requests
3740
+ # A paginated list of metadata model exports.
3741
+ # @return [Array<Types::SchemaConversionRequest>]
3742
+ #
3743
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsToTargetResponse AWS API Documentation
3744
+ #
3745
+ class DescribeMetadataModelExportsToTargetResponse < Struct.new(
3746
+ :marker,
3747
+ :requests)
3748
+ SENSITIVE = []
3749
+ include Aws::Structure
3750
+ end
3751
+
3752
+ # @!attribute [rw] migration_project_identifier
3753
+ # The migration project name or Amazon Resource Name (ARN).
3754
+ # @return [String]
3755
+ #
3756
+ # @!attribute [rw] filters
3757
+ # Filters applied to the metadata model imports described in the form
3758
+ # of key-value pairs.
3759
+ # @return [Array<Types::Filter>]
3760
+ #
3761
+ # @!attribute [rw] marker
3762
+ # Specifies the unique pagination token that makes it possible to
3763
+ # display the next page of results. If this parameter is specified,
3764
+ # the response includes only records beyond the marker, up to the
3765
+ # value specified by `MaxRecords`.
3766
+ #
3767
+ # If `Marker` is returned by a previous response, there are more
3768
+ # results available. The value of `Marker` is a unique pagination
3769
+ # token for each page. To retrieve the next page, make the call again
3770
+ # using the returned token and keeping all other arguments unchanged.
3771
+ # @return [String]
3772
+ #
3773
+ # @!attribute [rw] max_records
3774
+ # A paginated list of metadata model imports.
3775
+ # @return [Integer]
3776
+ #
3777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelImportsMessage AWS API Documentation
3778
+ #
3779
+ class DescribeMetadataModelImportsMessage < Struct.new(
3780
+ :migration_project_identifier,
3781
+ :filters,
3782
+ :marker,
3783
+ :max_records)
3784
+ SENSITIVE = []
3785
+ include Aws::Structure
3786
+ end
3787
+
3788
+ # @!attribute [rw] marker
3789
+ # Specifies the unique pagination token that makes it possible to
3790
+ # display the next page of results. If this parameter is specified,
3791
+ # the response includes only records beyond the marker, up to the
3792
+ # value specified by `MaxRecords`.
3793
+ #
3794
+ # If `Marker` is returned by a previous response, there are more
3795
+ # results available. The value of `Marker` is a unique pagination
3796
+ # token for each page. To retrieve the next page, make the call again
3797
+ # using the returned token and keeping all other arguments unchanged.
3798
+ # @return [String]
3799
+ #
3800
+ # @!attribute [rw] requests
3801
+ # A paginated list of metadata model imports.
3802
+ # @return [Array<Types::SchemaConversionRequest>]
3803
+ #
3804
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelImportsResponse AWS API Documentation
3805
+ #
3806
+ class DescribeMetadataModelImportsResponse < Struct.new(
3807
+ :marker,
3808
+ :requests)
3809
+ SENSITIVE = []
3810
+ include Aws::Structure
3811
+ end
3812
+
3813
+ # @!attribute [rw] filters
3814
+ # Filters applied to the migration projects described in the form of
3815
+ # key-value pairs.
3816
+ # @return [Array<Types::Filter>]
3817
+ #
3818
+ # @!attribute [rw] max_records
3819
+ # The maximum number of records to include in the response. If more
3820
+ # records exist than the specified `MaxRecords` value, DMS includes a
3821
+ # pagination token in the response so that you can retrieve the
3822
+ # remaining results.
3823
+ # @return [Integer]
3824
+ #
3825
+ # @!attribute [rw] marker
3826
+ # Specifies the unique pagination token that makes it possible to
3827
+ # display the next page of results. If this parameter is specified,
3828
+ # the response includes only records beyond the marker, up to the
3829
+ # value specified by `MaxRecords`.
3830
+ #
3831
+ # If `Marker` is returned by a previous response, there are more
3832
+ # results available. The value of `Marker` is a unique pagination
3833
+ # token for each page. To retrieve the next page, make the call again
3834
+ # using the returned token and keeping all other arguments unchanged.
3835
+ # @return [String]
3836
+ #
3837
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMigrationProjectsMessage AWS API Documentation
3838
+ #
3839
+ class DescribeMigrationProjectsMessage < Struct.new(
3840
+ :filters,
3841
+ :max_records,
3842
+ :marker)
3843
+ SENSITIVE = []
3844
+ include Aws::Structure
3845
+ end
3846
+
3847
+ # @!attribute [rw] marker
3848
+ # Specifies the unique pagination token that makes it possible to
3849
+ # display the next page of results. If this parameter is specified,
3850
+ # the response includes only records beyond the marker, up to the
3851
+ # value specified by `MaxRecords`.
3852
+ #
3853
+ # If `Marker` is returned by a previous response, there are more
3854
+ # results available. The value of `Marker` is a unique pagination
3855
+ # token for each page. To retrieve the next page, make the call again
3856
+ # using the returned token and keeping all other arguments unchanged.
3857
+ # @return [String]
3858
+ #
3859
+ # @!attribute [rw] migration_projects
3860
+ # A description of migration projects.
3861
+ # @return [Array<Types::MigrationProject>]
3862
+ #
3863
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMigrationProjectsResponse AWS API Documentation
3864
+ #
3865
+ class DescribeMigrationProjectsResponse < Struct.new(
3866
+ :marker,
3867
+ :migration_projects)
3868
+ SENSITIVE = []
3869
+ include Aws::Structure
3870
+ end
3871
+
2848
3872
  # @!attribute [rw] max_records
2849
3873
  # The maximum number of records to include in the response. If more
2850
3874
  # records exist than the specified `MaxRecords` value, a pagination
@@ -4286,6 +5310,27 @@ module Aws::DatabaseMigrationService
4286
5310
  include Aws::Structure
4287
5311
  end
4288
5312
 
5313
+ # Provides error information about a project.
5314
+ #
5315
+ # @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.
5316
+ #
5317
+ # @!attribute [rw] default_error_details
5318
+ # Error information about a project.
5319
+ # @return [Types::DefaultErrorDetails]
5320
+ #
5321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ErrorDetails AWS API Documentation
5322
+ #
5323
+ class ErrorDetails < Struct.new(
5324
+ :default_error_details,
5325
+ :unknown)
5326
+ SENSITIVE = []
5327
+ include Aws::Structure
5328
+ include Aws::Structure::Union
5329
+
5330
+ class DefaultErrorDetails < ErrorDetails; end
5331
+ class Unknown < ErrorDetails; end
5332
+ end
5333
+
4289
5334
  # Describes an identifiable significant activity that affects a
4290
5335
  # replication instance or task. This object can provide the message, the
4291
5336
  # available event categories, the date and source of the event, and the
@@ -4398,26 +5443,113 @@ module Aws::DatabaseMigrationService
4398
5443
  # A list of source Ids for the event subscription.
4399
5444
  # @return [Array<String>]
4400
5445
  #
4401
- # @!attribute [rw] event_categories_list
4402
- # A lists of event categories.
4403
- # @return [Array<String>]
5446
+ # @!attribute [rw] event_categories_list
5447
+ # A lists of event categories.
5448
+ # @return [Array<String>]
5449
+ #
5450
+ # @!attribute [rw] enabled
5451
+ # Boolean value that indicates if the event subscription is enabled.
5452
+ # @return [Boolean]
5453
+ #
5454
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/EventSubscription AWS API Documentation
5455
+ #
5456
+ class EventSubscription < Struct.new(
5457
+ :customer_aws_id,
5458
+ :cust_subscription_id,
5459
+ :sns_topic_arn,
5460
+ :status,
5461
+ :subscription_creation_time,
5462
+ :source_type,
5463
+ :source_ids_list,
5464
+ :event_categories_list,
5465
+ :enabled)
5466
+ SENSITIVE = []
5467
+ include Aws::Structure
5468
+ end
5469
+
5470
+ # @!attribute [rw] migration_project_identifier
5471
+ # The migration project name or Amazon Resource Name (ARN).
5472
+ # @return [String]
5473
+ #
5474
+ # @!attribute [rw] selection_rules
5475
+ # A value that specifies the database objects to assess.
5476
+ # @return [String]
5477
+ #
5478
+ # @!attribute [rw] file_name
5479
+ # The name of the assessment file to create in your Amazon S3 bucket.
5480
+ # @return [String]
5481
+ #
5482
+ # @!attribute [rw] assessment_report_types
5483
+ # The file format of the assessment file.
5484
+ # @return [Array<String>]
5485
+ #
5486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportMetadataModelAssessmentMessage AWS API Documentation
5487
+ #
5488
+ class ExportMetadataModelAssessmentMessage < Struct.new(
5489
+ :migration_project_identifier,
5490
+ :selection_rules,
5491
+ :file_name,
5492
+ :assessment_report_types)
5493
+ SENSITIVE = []
5494
+ include Aws::Structure
5495
+ end
5496
+
5497
+ # @!attribute [rw] pdf_report
5498
+ # The Amazon S3 details for an assessment exported in PDF format.
5499
+ # @return [Types::ExportMetadataModelAssessmentResultEntry]
5500
+ #
5501
+ # @!attribute [rw] csv_report
5502
+ # The Amazon S3 details for an assessment exported in CSV format.
5503
+ # @return [Types::ExportMetadataModelAssessmentResultEntry]
5504
+ #
5505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportMetadataModelAssessmentResponse AWS API Documentation
5506
+ #
5507
+ class ExportMetadataModelAssessmentResponse < Struct.new(
5508
+ :pdf_report,
5509
+ :csv_report)
5510
+ SENSITIVE = []
5511
+ include Aws::Structure
5512
+ end
5513
+
5514
+ # Provides information about an exported metadata model assessment.
5515
+ #
5516
+ # @!attribute [rw] s3_object_key
5517
+ # The object key for the object containing the exported metadata model
5518
+ # assessment.
5519
+ # @return [String]
5520
+ #
5521
+ # @!attribute [rw] object_url
5522
+ # The URL for the object containing the exported metadata model
5523
+ # assessment.
5524
+ # @return [String]
5525
+ #
5526
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportMetadataModelAssessmentResultEntry AWS API Documentation
5527
+ #
5528
+ class ExportMetadataModelAssessmentResultEntry < Struct.new(
5529
+ :s3_object_key,
5530
+ :object_url)
5531
+ SENSITIVE = []
5532
+ include Aws::Structure
5533
+ end
5534
+
5535
+ # Provides information about a metadata model assessment exported to
5536
+ # SQL.
5537
+ #
5538
+ # @!attribute [rw] s3_object_key
5539
+ # The Amazon S3 object key for the object containing the exported
5540
+ # metadata model assessment.
5541
+ # @return [String]
4404
5542
  #
4405
- # @!attribute [rw] enabled
4406
- # Boolean value that indicates if the event subscription is enabled.
4407
- # @return [Boolean]
5543
+ # @!attribute [rw] object_url
5544
+ # The URL for the object containing the exported metadata model
5545
+ # assessment.
5546
+ # @return [String]
4408
5547
  #
4409
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/EventSubscription AWS API Documentation
5548
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportSqlDetails AWS API Documentation
4410
5549
  #
4411
- class EventSubscription < Struct.new(
4412
- :customer_aws_id,
4413
- :cust_subscription_id,
4414
- :sns_topic_arn,
4415
- :status,
4416
- :subscription_creation_time,
4417
- :source_type,
4418
- :source_ids_list,
4419
- :event_categories_list,
4420
- :enabled)
5550
+ class ExportSqlDetails < Struct.new(
5551
+ :s3_object_key,
5552
+ :object_url)
4421
5553
  SENSITIVE = []
4422
5554
  include Aws::Structure
4423
5555
  end
@@ -4783,6 +5915,88 @@ module Aws::DatabaseMigrationService
4783
5915
  include Aws::Structure
4784
5916
  end
4785
5917
 
5918
+ # Provides information that defines an instance profile.
5919
+ #
5920
+ # @!attribute [rw] instance_profile_arn
5921
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
5922
+ # instance profile.
5923
+ # @return [String]
5924
+ #
5925
+ # @!attribute [rw] availability_zone
5926
+ # The Availability Zone where the instance profile runs.
5927
+ # @return [String]
5928
+ #
5929
+ # @!attribute [rw] kms_key_arn
5930
+ # The Amazon Resource Name (ARN) of the KMS key that is used to
5931
+ # encrypt the connection parameters for the instance profile.
5932
+ #
5933
+ # If you don't specify a value for the `KmsKeyArn` parameter, then
5934
+ # DMS uses your default encryption key.
5935
+ #
5936
+ # KMS creates the default encryption key for your Amazon Web Services
5937
+ # account. Your Amazon Web Services account has a different default
5938
+ # encryption key for each Amazon Web Services Region.
5939
+ # @return [String]
5940
+ #
5941
+ # @!attribute [rw] publicly_accessible
5942
+ # Specifies the accessibility options for the instance profile. A
5943
+ # value of `true` represents an instance profile with a public IP
5944
+ # address. A value of `false` represents an instance profile with a
5945
+ # private IP address. The default value is `true`.
5946
+ # @return [Boolean]
5947
+ #
5948
+ # @!attribute [rw] network_type
5949
+ # Specifies the network type for the instance profile. A value of
5950
+ # `IPV4` represents an instance profile with IPv4 network type and
5951
+ # only supports IPv4 addressing. A value of `IPV6` represents an
5952
+ # instance profile with IPv6 network type and only supports IPv6
5953
+ # addressing. A value of `DUAL` represents an instance profile with
5954
+ # dual network type that supports IPv4 and IPv6 addressing.
5955
+ # @return [String]
5956
+ #
5957
+ # @!attribute [rw] instance_profile_name
5958
+ # The user-friendly name for the instance profile.
5959
+ # @return [String]
5960
+ #
5961
+ # @!attribute [rw] description
5962
+ # A description of the instance profile. Descriptions can have up to
5963
+ # 31 characters. A description can contain only ASCII letters, digits,
5964
+ # and hyphens ('-'). Also, it can't end with a hyphen or contain
5965
+ # two consecutive hyphens, and can only begin with a letter.
5966
+ # @return [String]
5967
+ #
5968
+ # @!attribute [rw] instance_profile_creation_time
5969
+ # The time the instance profile was created.
5970
+ # @return [Time]
5971
+ #
5972
+ # @!attribute [rw] subnet_group_identifier
5973
+ # The identifier of the subnet group that is associated with the
5974
+ # instance profile.
5975
+ # @return [String]
5976
+ #
5977
+ # @!attribute [rw] vpc_security_groups
5978
+ # The VPC security groups that are used with the instance profile. The
5979
+ # VPC security group must work with the VPC containing the instance
5980
+ # profile.
5981
+ # @return [Array<String>]
5982
+ #
5983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/InstanceProfile AWS API Documentation
5984
+ #
5985
+ class InstanceProfile < Struct.new(
5986
+ :instance_profile_arn,
5987
+ :availability_zone,
5988
+ :kms_key_arn,
5989
+ :publicly_accessible,
5990
+ :network_type,
5991
+ :instance_profile_name,
5992
+ :description,
5993
+ :instance_profile_creation_time,
5994
+ :subnet_group_identifier,
5995
+ :vpc_security_groups)
5996
+ SENSITIVE = []
5997
+ include Aws::Structure
5998
+ end
5999
+
4786
6000
  # There are not enough resources allocated to the database migration.
4787
6001
  #
4788
6002
  # @!attribute [rw] message
@@ -5462,6 +6676,203 @@ module Aws::DatabaseMigrationService
5462
6676
  include Aws::Structure
5463
6677
  end
5464
6678
 
6679
+ # Provides information that defines a Microsoft SQL Server data
6680
+ # provider.
6681
+ #
6682
+ # @!attribute [rw] server_name
6683
+ # The name of the Microsoft SQL Server server.
6684
+ # @return [String]
6685
+ #
6686
+ # @!attribute [rw] port
6687
+ # The port value for the Microsoft SQL Server data provider.
6688
+ # @return [Integer]
6689
+ #
6690
+ # @!attribute [rw] database_name
6691
+ # The database name on the Microsoft SQL Server data provider.
6692
+ # @return [String]
6693
+ #
6694
+ # @!attribute [rw] ssl_mode
6695
+ # The SSL mode used to connect to the Microsoft SQL Server data
6696
+ # provider. The default value is `none`.
6697
+ # @return [String]
6698
+ #
6699
+ # @!attribute [rw] certificate_arn
6700
+ # The Amazon Resource Name (ARN) of the certificate used for SSL
6701
+ # connection.
6702
+ # @return [String]
6703
+ #
6704
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSqlServerDataProviderSettings AWS API Documentation
6705
+ #
6706
+ class MicrosoftSqlServerDataProviderSettings < Struct.new(
6707
+ :server_name,
6708
+ :port,
6709
+ :database_name,
6710
+ :ssl_mode,
6711
+ :certificate_arn)
6712
+ SENSITIVE = []
6713
+ include Aws::Structure
6714
+ end
6715
+
6716
+ # Provides information that defines a migration project.
6717
+ #
6718
+ # @!attribute [rw] migration_project_name
6719
+ # The name of the migration project.
6720
+ # @return [String]
6721
+ #
6722
+ # @!attribute [rw] migration_project_arn
6723
+ # The ARN string that uniquely identifies the migration project.
6724
+ # @return [String]
6725
+ #
6726
+ # @!attribute [rw] migration_project_creation_time
6727
+ # The time when the migration project was created.
6728
+ # @return [Time]
6729
+ #
6730
+ # @!attribute [rw] source_data_provider_descriptors
6731
+ # Information about the source data provider, including the name or
6732
+ # ARN, and Secrets Manager parameters.
6733
+ # @return [Array<Types::DataProviderDescriptor>]
6734
+ #
6735
+ # @!attribute [rw] target_data_provider_descriptors
6736
+ # Information about the target data provider, including the name or
6737
+ # ARN, and Secrets Manager parameters.
6738
+ # @return [Array<Types::DataProviderDescriptor>]
6739
+ #
6740
+ # @!attribute [rw] instance_profile_arn
6741
+ # The Amazon Resource Name (ARN) of the instance profile for your
6742
+ # migration project.
6743
+ # @return [String]
6744
+ #
6745
+ # @!attribute [rw] instance_profile_name
6746
+ # The name of the associated instance profile.
6747
+ # @return [String]
6748
+ #
6749
+ # @!attribute [rw] transformation_rules
6750
+ # The settings in JSON format for migration rules. Migration rules
6751
+ # make it possible for you to change the object names according to the
6752
+ # rules that you specify. For example, you can change an object name
6753
+ # to lowercase or uppercase, add or remove a prefix or suffix, or
6754
+ # rename objects.
6755
+ # @return [String]
6756
+ #
6757
+ # @!attribute [rw] description
6758
+ # A user-friendly description of the migration project.
6759
+ # @return [String]
6760
+ #
6761
+ # @!attribute [rw] schema_conversion_application_attributes
6762
+ # The schema conversion application attributes, including the Amazon
6763
+ # S3 bucket name and Amazon S3 role ARN.
6764
+ # @return [Types::SCApplicationAttributes]
6765
+ #
6766
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MigrationProject AWS API Documentation
6767
+ #
6768
+ class MigrationProject < Struct.new(
6769
+ :migration_project_name,
6770
+ :migration_project_arn,
6771
+ :migration_project_creation_time,
6772
+ :source_data_provider_descriptors,
6773
+ :target_data_provider_descriptors,
6774
+ :instance_profile_arn,
6775
+ :instance_profile_name,
6776
+ :transformation_rules,
6777
+ :description,
6778
+ :schema_conversion_application_attributes)
6779
+ SENSITIVE = []
6780
+ include Aws::Structure
6781
+ end
6782
+
6783
+ # @!attribute [rw] migration_project_identifier
6784
+ # The migration project name or Amazon Resource Name (ARN).
6785
+ # @return [String]
6786
+ #
6787
+ # @!attribute [rw] conversion_configuration
6788
+ # The new conversion configuration.
6789
+ # @return [String]
6790
+ #
6791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyConversionConfigurationMessage AWS API Documentation
6792
+ #
6793
+ class ModifyConversionConfigurationMessage < Struct.new(
6794
+ :migration_project_identifier,
6795
+ :conversion_configuration)
6796
+ SENSITIVE = []
6797
+ include Aws::Structure
6798
+ end
6799
+
6800
+ # @!attribute [rw] migration_project_identifier
6801
+ # The name or Amazon Resource Name (ARN) of the modified
6802
+ # configuration.
6803
+ # @return [String]
6804
+ #
6805
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyConversionConfigurationResponse AWS API Documentation
6806
+ #
6807
+ class ModifyConversionConfigurationResponse < Struct.new(
6808
+ :migration_project_identifier)
6809
+ SENSITIVE = []
6810
+ include Aws::Structure
6811
+ end
6812
+
6813
+ # @!attribute [rw] data_provider_identifier
6814
+ # The identifier of the data provider. Identifiers must begin with a
6815
+ # letter and must contain only ASCII letters, digits, and hyphens.
6816
+ # They can't end with a hyphen, or contain two consecutive hyphens.
6817
+ # @return [String]
6818
+ #
6819
+ # @!attribute [rw] data_provider_name
6820
+ # The name of the data provider.
6821
+ # @return [String]
6822
+ #
6823
+ # @!attribute [rw] description
6824
+ # A user-friendly description of the data provider.
6825
+ # @return [String]
6826
+ #
6827
+ # @!attribute [rw] engine
6828
+ # The type of database engine for the data provider. Valid values
6829
+ # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
6830
+ # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
6831
+ # Amazon Aurora MySQL-Compatible Edition.
6832
+ # @return [String]
6833
+ #
6834
+ # @!attribute [rw] exact_settings
6835
+ # If this attribute is Y, the current call to `ModifyDataProvider`
6836
+ # replaces all existing data provider settings with the exact settings
6837
+ # that you specify in this call. If this attribute is N, the current
6838
+ # call to `ModifyDataProvider` does two things:
6839
+ #
6840
+ # * It replaces any data provider settings that already exist with new
6841
+ # values, for settings with the same names.
6842
+ #
6843
+ # * It creates new data provider settings that you specify in the
6844
+ # call, for settings with different names.
6845
+ # @return [Boolean]
6846
+ #
6847
+ # @!attribute [rw] settings
6848
+ # The settings in JSON format for a data provider.
6849
+ # @return [Types::DataProviderSettings]
6850
+ #
6851
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataProviderMessage AWS API Documentation
6852
+ #
6853
+ class ModifyDataProviderMessage < Struct.new(
6854
+ :data_provider_identifier,
6855
+ :data_provider_name,
6856
+ :description,
6857
+ :engine,
6858
+ :exact_settings,
6859
+ :settings)
6860
+ SENSITIVE = []
6861
+ include Aws::Structure
6862
+ end
6863
+
6864
+ # @!attribute [rw] data_provider
6865
+ # The data provider that was modified.
6866
+ # @return [Types::DataProvider]
6867
+ #
6868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataProviderResponse AWS API Documentation
6869
+ #
6870
+ class ModifyDataProviderResponse < Struct.new(
6871
+ :data_provider)
6872
+ SENSITIVE = []
6873
+ include Aws::Structure
6874
+ end
6875
+
5465
6876
  # @!attribute [rw] endpoint_arn
5466
6877
  # The Amazon Resource Name (ARN) string that uniquely identifies the
5467
6878
  # endpoint.
@@ -5828,36 +7239,188 @@ module Aws::DatabaseMigrationService
5828
7239
  # Valid values: replication-instance \| replication-task
5829
7240
  # @return [String]
5830
7241
  #
5831
- # @!attribute [rw] event_categories
5832
- # A list of event categories for a source type that you want to
5833
- # subscribe to. Use the `DescribeEventCategories` action to see a list
5834
- # of event categories.
5835
- # @return [Array<String>]
7242
+ # @!attribute [rw] event_categories
7243
+ # A list of event categories for a source type that you want to
7244
+ # subscribe to. Use the `DescribeEventCategories` action to see a list
7245
+ # of event categories.
7246
+ # @return [Array<String>]
7247
+ #
7248
+ # @!attribute [rw] enabled
7249
+ # A Boolean value; set to **true** to activate the subscription.
7250
+ # @return [Boolean]
7251
+ #
7252
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEventSubscriptionMessage AWS API Documentation
7253
+ #
7254
+ class ModifyEventSubscriptionMessage < Struct.new(
7255
+ :subscription_name,
7256
+ :sns_topic_arn,
7257
+ :source_type,
7258
+ :event_categories,
7259
+ :enabled)
7260
+ SENSITIVE = []
7261
+ include Aws::Structure
7262
+ end
7263
+
7264
+ # @!attribute [rw] event_subscription
7265
+ # The modified event subscription.
7266
+ # @return [Types::EventSubscription]
7267
+ #
7268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEventSubscriptionResponse AWS API Documentation
7269
+ #
7270
+ class ModifyEventSubscriptionResponse < Struct.new(
7271
+ :event_subscription)
7272
+ SENSITIVE = []
7273
+ include Aws::Structure
7274
+ end
7275
+
7276
+ # @!attribute [rw] instance_profile_identifier
7277
+ # The identifier of the instance profile. Identifiers must begin with
7278
+ # a letter and must contain only ASCII letters, digits, and hyphens.
7279
+ # They can't end with a hyphen, or contain two consecutive hyphens.
7280
+ # @return [String]
7281
+ #
7282
+ # @!attribute [rw] availability_zone
7283
+ # The Availability Zone where the instance profile runs.
7284
+ # @return [String]
7285
+ #
7286
+ # @!attribute [rw] kms_key_arn
7287
+ # The Amazon Resource Name (ARN) of the KMS key that is used to
7288
+ # encrypt the connection parameters for the instance profile.
7289
+ #
7290
+ # If you don't specify a value for the `KmsKeyArn` parameter, then
7291
+ # DMS uses your default encryption key.
7292
+ #
7293
+ # KMS creates the default encryption key for your Amazon Web Services
7294
+ # account. Your Amazon Web Services account has a different default
7295
+ # encryption key for each Amazon Web Services Region.
7296
+ # @return [String]
7297
+ #
7298
+ # @!attribute [rw] publicly_accessible
7299
+ # Specifies the accessibility options for the instance profile. A
7300
+ # value of `true` represents an instance profile with a public IP
7301
+ # address. A value of `false` represents an instance profile with a
7302
+ # private IP address. The default value is `true`.
7303
+ # @return [Boolean]
7304
+ #
7305
+ # @!attribute [rw] network_type
7306
+ # Specifies the network type for the instance profile. A value of
7307
+ # `IPV4` represents an instance profile with IPv4 network type and
7308
+ # only supports IPv4 addressing. A value of `IPV6` represents an
7309
+ # instance profile with IPv6 network type and only supports IPv6
7310
+ # addressing. A value of `DUAL` represents an instance profile with
7311
+ # dual network type that supports IPv4 and IPv6 addressing.
7312
+ # @return [String]
7313
+ #
7314
+ # @!attribute [rw] instance_profile_name
7315
+ # A user-friendly name for the instance profile.
7316
+ # @return [String]
7317
+ #
7318
+ # @!attribute [rw] description
7319
+ # A user-friendly description for the instance profile.
7320
+ # @return [String]
7321
+ #
7322
+ # @!attribute [rw] subnet_group_identifier
7323
+ # A subnet group to associate with the instance profile.
7324
+ # @return [String]
7325
+ #
7326
+ # @!attribute [rw] vpc_security_groups
7327
+ # Specifies the VPC security groups to be used with the instance
7328
+ # profile. The VPC security group must work with the VPC containing
7329
+ # the instance profile.
7330
+ # @return [Array<String>]
7331
+ #
7332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyInstanceProfileMessage AWS API Documentation
7333
+ #
7334
+ class ModifyInstanceProfileMessage < Struct.new(
7335
+ :instance_profile_identifier,
7336
+ :availability_zone,
7337
+ :kms_key_arn,
7338
+ :publicly_accessible,
7339
+ :network_type,
7340
+ :instance_profile_name,
7341
+ :description,
7342
+ :subnet_group_identifier,
7343
+ :vpc_security_groups)
7344
+ SENSITIVE = []
7345
+ include Aws::Structure
7346
+ end
7347
+
7348
+ # @!attribute [rw] instance_profile
7349
+ # The instance profile that was modified.
7350
+ # @return [Types::InstanceProfile]
7351
+ #
7352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyInstanceProfileResponse AWS API Documentation
7353
+ #
7354
+ class ModifyInstanceProfileResponse < Struct.new(
7355
+ :instance_profile)
7356
+ SENSITIVE = []
7357
+ include Aws::Structure
7358
+ end
7359
+
7360
+ # @!attribute [rw] migration_project_identifier
7361
+ # The identifier of the migration project. Identifiers must begin with
7362
+ # a letter and must contain only ASCII letters, digits, and hyphens.
7363
+ # They can't end with a hyphen, or contain two consecutive hyphens.
7364
+ # @return [String]
7365
+ #
7366
+ # @!attribute [rw] migration_project_name
7367
+ # A user-friendly name for the migration project.
7368
+ # @return [String]
7369
+ #
7370
+ # @!attribute [rw] source_data_provider_descriptors
7371
+ # Information about the source data provider, including the name, ARN,
7372
+ # and Amazon Web Services Secrets Manager parameters.
7373
+ # @return [Array<Types::DataProviderDescriptorDefinition>]
7374
+ #
7375
+ # @!attribute [rw] target_data_provider_descriptors
7376
+ # Information about the target data provider, including the name, ARN,
7377
+ # and Amazon Web Services Secrets Manager parameters.
7378
+ # @return [Array<Types::DataProviderDescriptorDefinition>]
7379
+ #
7380
+ # @!attribute [rw] instance_profile_identifier
7381
+ # The name or Amazon Resource Name (ARN) for the instance profile.
7382
+ # @return [String]
7383
+ #
7384
+ # @!attribute [rw] transformation_rules
7385
+ # The settings in JSON format for migration rules. Migration rules
7386
+ # make it possible for you to change the object names according to the
7387
+ # rules that you specify. For example, you can change an object name
7388
+ # to lowercase or uppercase, add or remove a prefix or suffix, or
7389
+ # rename objects.
7390
+ # @return [String]
7391
+ #
7392
+ # @!attribute [rw] description
7393
+ # A user-friendly description of the migration project.
7394
+ # @return [String]
5836
7395
  #
5837
- # @!attribute [rw] enabled
5838
- # A Boolean value; set to **true** to activate the subscription.
5839
- # @return [Boolean]
7396
+ # @!attribute [rw] schema_conversion_application_attributes
7397
+ # The schema conversion application attributes, including the Amazon
7398
+ # S3 bucket name and Amazon S3 role ARN.
7399
+ # @return [Types::SCApplicationAttributes]
5840
7400
  #
5841
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEventSubscriptionMessage AWS API Documentation
7401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyMigrationProjectMessage AWS API Documentation
5842
7402
  #
5843
- class ModifyEventSubscriptionMessage < Struct.new(
5844
- :subscription_name,
5845
- :sns_topic_arn,
5846
- :source_type,
5847
- :event_categories,
5848
- :enabled)
7403
+ class ModifyMigrationProjectMessage < Struct.new(
7404
+ :migration_project_identifier,
7405
+ :migration_project_name,
7406
+ :source_data_provider_descriptors,
7407
+ :target_data_provider_descriptors,
7408
+ :instance_profile_identifier,
7409
+ :transformation_rules,
7410
+ :description,
7411
+ :schema_conversion_application_attributes)
5849
7412
  SENSITIVE = []
5850
7413
  include Aws::Structure
5851
7414
  end
5852
7415
 
5853
- # @!attribute [rw] event_subscription
5854
- # The modified event subscription.
5855
- # @return [Types::EventSubscription]
7416
+ # @!attribute [rw] migration_project
7417
+ # The migration project that was modified.
7418
+ # @return [Types::MigrationProject]
5856
7419
  #
5857
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEventSubscriptionResponse AWS API Documentation
7420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyMigrationProjectResponse AWS API Documentation
5858
7421
  #
5859
- class ModifyEventSubscriptionResponse < Struct.new(
5860
- :event_subscription)
7422
+ class ModifyMigrationProjectResponse < Struct.new(
7423
+ :migration_project)
5861
7424
  SENSITIVE = []
5862
7425
  include Aws::Structure
5863
7426
  end
@@ -6562,6 +8125,37 @@ module Aws::DatabaseMigrationService
6562
8125
  include Aws::Structure
6563
8126
  end
6564
8127
 
8128
+ # Provides information that defines a MySQL data provider.
8129
+ #
8130
+ # @!attribute [rw] server_name
8131
+ # The name of the MySQL server.
8132
+ # @return [String]
8133
+ #
8134
+ # @!attribute [rw] port
8135
+ # The port value for the MySQL data provider.
8136
+ # @return [Integer]
8137
+ #
8138
+ # @!attribute [rw] ssl_mode
8139
+ # The SSL mode used to connect to the MySQL data provider. The default
8140
+ # value is `none`.
8141
+ # @return [String]
8142
+ #
8143
+ # @!attribute [rw] certificate_arn
8144
+ # The Amazon Resource Name (ARN) of the certificate used for SSL
8145
+ # connection.
8146
+ # @return [String]
8147
+ #
8148
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MySqlDataProviderSettings AWS API Documentation
8149
+ #
8150
+ class MySqlDataProviderSettings < Struct.new(
8151
+ :server_name,
8152
+ :port,
8153
+ :ssl_mode,
8154
+ :certificate_arn)
8155
+ SENSITIVE = []
8156
+ include Aws::Structure
8157
+ end
8158
+
6565
8159
  # Provides information that defines an Amazon Neptune endpoint.
6566
8160
  #
6567
8161
  # @!attribute [rw] service_access_role_arn
@@ -6629,6 +8223,84 @@ module Aws::DatabaseMigrationService
6629
8223
  include Aws::Structure
6630
8224
  end
6631
8225
 
8226
+ # Provides information that defines an Oracle data provider.
8227
+ #
8228
+ # @!attribute [rw] server_name
8229
+ # The name of the Oracle server.
8230
+ # @return [String]
8231
+ #
8232
+ # @!attribute [rw] port
8233
+ # The port value for the Oracle data provider.
8234
+ # @return [Integer]
8235
+ #
8236
+ # @!attribute [rw] database_name
8237
+ # The database name on the Oracle data provider.
8238
+ # @return [String]
8239
+ #
8240
+ # @!attribute [rw] ssl_mode
8241
+ # The SSL mode used to connect to the Oracle data provider. The
8242
+ # default value is `none`.
8243
+ # @return [String]
8244
+ #
8245
+ # @!attribute [rw] certificate_arn
8246
+ # The Amazon Resource Name (ARN) of the certificate used for SSL
8247
+ # connection.
8248
+ # @return [String]
8249
+ #
8250
+ # @!attribute [rw] asm_server
8251
+ # The address of your Oracle Automatic Storage Management (ASM)
8252
+ # server. You can set this value from the `asm_server` value. You set
8253
+ # `asm_server` as part of the extra connection attribute string to
8254
+ # access an Oracle server with Binary Reader that uses ASM. For more
8255
+ # information, see [Configuration for change data capture (CDC) on an
8256
+ # Oracle source database][1].
8257
+ #
8258
+ #
8259
+ #
8260
+ # [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
8261
+ # @return [String]
8262
+ #
8263
+ # @!attribute [rw] secrets_manager_oracle_asm_secret_id
8264
+ # The identifier of the secret in Secrets Manager that contains the
8265
+ # Oracle ASM connection details.
8266
+ #
8267
+ # Required only if your data provider uses the Oracle ASM server.
8268
+ # @return [String]
8269
+ #
8270
+ # @!attribute [rw] secrets_manager_oracle_asm_access_role_arn
8271
+ # The ARN of the IAM role that provides access to the secret in
8272
+ # Secrets Manager that contains the Oracle ASM connection details.
8273
+ # @return [String]
8274
+ #
8275
+ # @!attribute [rw] secrets_manager_security_db_encryption_secret_id
8276
+ # The identifier of the secret in Secrets Manager that contains the
8277
+ # transparent data encryption (TDE) password. DMS requires this
8278
+ # password to access Oracle redo logs encrypted by TDE using Binary
8279
+ # Reader.
8280
+ # @return [String]
8281
+ #
8282
+ # @!attribute [rw] secrets_manager_security_db_encryption_access_role_arn
8283
+ # The ARN of the IAM role that provides access to the secret in
8284
+ # Secrets Manager that contains the TDE password.
8285
+ # @return [String]
8286
+ #
8287
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleDataProviderSettings AWS API Documentation
8288
+ #
8289
+ class OracleDataProviderSettings < Struct.new(
8290
+ :server_name,
8291
+ :port,
8292
+ :database_name,
8293
+ :ssl_mode,
8294
+ :certificate_arn,
8295
+ :asm_server,
8296
+ :secrets_manager_oracle_asm_secret_id,
8297
+ :secrets_manager_oracle_asm_access_role_arn,
8298
+ :secrets_manager_security_db_encryption_secret_id,
8299
+ :secrets_manager_security_db_encryption_access_role_arn)
8300
+ SENSITIVE = []
8301
+ include Aws::Structure
8302
+ end
8303
+
6632
8304
  # Provides information that defines an Oracle endpoint.
6633
8305
  #
6634
8306
  # @!attribute [rw] add_supplemental_logging
@@ -7457,6 +9129,42 @@ module Aws::DatabaseMigrationService
7457
9129
  include Aws::Structure
7458
9130
  end
7459
9131
 
9132
+ # Provides information that defines a PostgreSQL data provider.
9133
+ #
9134
+ # @!attribute [rw] server_name
9135
+ # The name of the PostgreSQL server.
9136
+ # @return [String]
9137
+ #
9138
+ # @!attribute [rw] port
9139
+ # The port value for the PostgreSQL data provider.
9140
+ # @return [Integer]
9141
+ #
9142
+ # @!attribute [rw] database_name
9143
+ # The database name on the PostgreSQL data provider.
9144
+ # @return [String]
9145
+ #
9146
+ # @!attribute [rw] ssl_mode
9147
+ # The SSL mode used to connect to the PostgreSQL data provider. The
9148
+ # default value is `none`.
9149
+ # @return [String]
9150
+ #
9151
+ # @!attribute [rw] certificate_arn
9152
+ # The Amazon Resource Name (ARN) of the certificate used for SSL
9153
+ # connection.
9154
+ # @return [String]
9155
+ #
9156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSqlDataProviderSettings AWS API Documentation
9157
+ #
9158
+ class PostgreSqlDataProviderSettings < Struct.new(
9159
+ :server_name,
9160
+ :port,
9161
+ :database_name,
9162
+ :ssl_mode,
9163
+ :certificate_arn)
9164
+ SENSITIVE = []
9165
+ include Aws::Structure
9166
+ end
9167
+
7460
9168
  # Information about provisioning resources for an DMS serverless
7461
9169
  # replication.
7462
9170
  #
@@ -10238,6 +11946,27 @@ module Aws::DatabaseMigrationService
10238
11946
  include Aws::Structure
10239
11947
  end
10240
11948
 
11949
+ # Provides information that defines a schema conversion application.
11950
+ #
11951
+ # @!attribute [rw] s3_bucket_path
11952
+ # The path for the Amazon S3 bucket that the application uses for
11953
+ # exporting assessment reports.
11954
+ # @return [String]
11955
+ #
11956
+ # @!attribute [rw] s3_bucket_role_arn
11957
+ # The ARN for the role the application uses to access its Amazon S3
11958
+ # bucket.
11959
+ # @return [String]
11960
+ #
11961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SCApplicationAttributes AWS API Documentation
11962
+ #
11963
+ class SCApplicationAttributes < Struct.new(
11964
+ :s3_bucket_path,
11965
+ :s3_bucket_role_arn)
11966
+ SENSITIVE = []
11967
+ include Aws::Structure
11968
+ end
11969
+
10241
11970
  # The SNS topic is invalid.
10242
11971
  #
10243
11972
  # @!attribute [rw] message
@@ -10264,6 +11993,41 @@ module Aws::DatabaseMigrationService
10264
11993
  include Aws::Structure
10265
11994
  end
10266
11995
 
11996
+ # Provides information about a schema conversion action.
11997
+ #
11998
+ # @!attribute [rw] status
11999
+ # The schema conversion action status.
12000
+ # @return [String]
12001
+ #
12002
+ # @!attribute [rw] request_identifier
12003
+ # The identifier for the schema conversion action.
12004
+ # @return [String]
12005
+ #
12006
+ # @!attribute [rw] migration_project_arn
12007
+ # The migration project ARN.
12008
+ # @return [String]
12009
+ #
12010
+ # @!attribute [rw] error
12011
+ # Provides error information about a project.
12012
+ # @return [Types::ErrorDetails]
12013
+ #
12014
+ # @!attribute [rw] export_sql_details
12015
+ # Provides information about a metadata model assessment exported to
12016
+ # SQL.
12017
+ # @return [Types::ExportSqlDetails]
12018
+ #
12019
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SchemaConversionRequest AWS API Documentation
12020
+ #
12021
+ class SchemaConversionRequest < Struct.new(
12022
+ :status,
12023
+ :request_identifier,
12024
+ :migration_project_arn,
12025
+ :error,
12026
+ :export_sql_details)
12027
+ SENSITIVE = []
12028
+ include Aws::Structure
12029
+ end
12030
+
10267
12031
  # Describes a schema in a Fleet Advisor collector inventory.
10268
12032
  #
10269
12033
  # @!attribute [rw] code_line_count
@@ -10382,6 +12146,204 @@ module Aws::DatabaseMigrationService
10382
12146
  include Aws::Structure
10383
12147
  end
10384
12148
 
12149
+ # @!attribute [rw] migration_project_identifier
12150
+ # The migration project name or Amazon Resource Name (ARN).
12151
+ # @return [String]
12152
+ #
12153
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartExtensionPackAssociationMessage AWS API Documentation
12154
+ #
12155
+ class StartExtensionPackAssociationMessage < Struct.new(
12156
+ :migration_project_identifier)
12157
+ SENSITIVE = []
12158
+ include Aws::Structure
12159
+ end
12160
+
12161
+ # @!attribute [rw] request_identifier
12162
+ # The identifier for the request operation.
12163
+ # @return [String]
12164
+ #
12165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartExtensionPackAssociationResponse AWS API Documentation
12166
+ #
12167
+ class StartExtensionPackAssociationResponse < Struct.new(
12168
+ :request_identifier)
12169
+ SENSITIVE = []
12170
+ include Aws::Structure
12171
+ end
12172
+
12173
+ # @!attribute [rw] migration_project_identifier
12174
+ # The migration project name or Amazon Resource Name (ARN).
12175
+ # @return [String]
12176
+ #
12177
+ # @!attribute [rw] selection_rules
12178
+ # A value that specifies the database objects to assess.
12179
+ # @return [String]
12180
+ #
12181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelAssessmentMessage AWS API Documentation
12182
+ #
12183
+ class StartMetadataModelAssessmentMessage < Struct.new(
12184
+ :migration_project_identifier,
12185
+ :selection_rules)
12186
+ SENSITIVE = []
12187
+ include Aws::Structure
12188
+ end
12189
+
12190
+ # @!attribute [rw] request_identifier
12191
+ # The identifier for the assessment operation.
12192
+ # @return [String]
12193
+ #
12194
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelAssessmentResponse AWS API Documentation
12195
+ #
12196
+ class StartMetadataModelAssessmentResponse < Struct.new(
12197
+ :request_identifier)
12198
+ SENSITIVE = []
12199
+ include Aws::Structure
12200
+ end
12201
+
12202
+ # @!attribute [rw] migration_project_identifier
12203
+ # The migration project name or Amazon Resource Name (ARN).
12204
+ # @return [String]
12205
+ #
12206
+ # @!attribute [rw] selection_rules
12207
+ # A value that specifies the database objects to convert.
12208
+ # @return [String]
12209
+ #
12210
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelConversionMessage AWS API Documentation
12211
+ #
12212
+ class StartMetadataModelConversionMessage < Struct.new(
12213
+ :migration_project_identifier,
12214
+ :selection_rules)
12215
+ SENSITIVE = []
12216
+ include Aws::Structure
12217
+ end
12218
+
12219
+ # @!attribute [rw] request_identifier
12220
+ # The identifier for the conversion operation.
12221
+ # @return [String]
12222
+ #
12223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelConversionResponse AWS API Documentation
12224
+ #
12225
+ class StartMetadataModelConversionResponse < Struct.new(
12226
+ :request_identifier)
12227
+ SENSITIVE = []
12228
+ include Aws::Structure
12229
+ end
12230
+
12231
+ # @!attribute [rw] migration_project_identifier
12232
+ # The migration project name or Amazon Resource Name (ARN).
12233
+ # @return [String]
12234
+ #
12235
+ # @!attribute [rw] selection_rules
12236
+ # A value that specifies the database objects to export.
12237
+ # @return [String]
12238
+ #
12239
+ # @!attribute [rw] origin
12240
+ # Whether to export the metadata model from the source or the target.
12241
+ # @return [String]
12242
+ #
12243
+ # @!attribute [rw] file_name
12244
+ # The name of the model file to create in the Amazon S3 bucket.
12245
+ # @return [String]
12246
+ #
12247
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportAsScriptMessage AWS API Documentation
12248
+ #
12249
+ class StartMetadataModelExportAsScriptMessage < Struct.new(
12250
+ :migration_project_identifier,
12251
+ :selection_rules,
12252
+ :origin,
12253
+ :file_name)
12254
+ SENSITIVE = []
12255
+ include Aws::Structure
12256
+ end
12257
+
12258
+ # @!attribute [rw] request_identifier
12259
+ # The identifier for the export operation.
12260
+ # @return [String]
12261
+ #
12262
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportAsScriptResponse AWS API Documentation
12263
+ #
12264
+ class StartMetadataModelExportAsScriptResponse < Struct.new(
12265
+ :request_identifier)
12266
+ SENSITIVE = []
12267
+ include Aws::Structure
12268
+ end
12269
+
12270
+ # @!attribute [rw] migration_project_identifier
12271
+ # The migration project name or Amazon Resource Name (ARN).
12272
+ # @return [String]
12273
+ #
12274
+ # @!attribute [rw] selection_rules
12275
+ # A value that specifies the database objects to export.
12276
+ # @return [String]
12277
+ #
12278
+ # @!attribute [rw] overwrite_extension_pack
12279
+ # Whether to overwrite the migration project extension pack. An
12280
+ # extension pack is an add-on module that emulates functions present
12281
+ # in a source database that are required when converting objects to
12282
+ # the target database.
12283
+ # @return [Boolean]
12284
+ #
12285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportToTargetMessage AWS API Documentation
12286
+ #
12287
+ class StartMetadataModelExportToTargetMessage < Struct.new(
12288
+ :migration_project_identifier,
12289
+ :selection_rules,
12290
+ :overwrite_extension_pack)
12291
+ SENSITIVE = []
12292
+ include Aws::Structure
12293
+ end
12294
+
12295
+ # @!attribute [rw] request_identifier
12296
+ # The identifier for the export operation.
12297
+ # @return [String]
12298
+ #
12299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportToTargetResponse AWS API Documentation
12300
+ #
12301
+ class StartMetadataModelExportToTargetResponse < Struct.new(
12302
+ :request_identifier)
12303
+ SENSITIVE = []
12304
+ include Aws::Structure
12305
+ end
12306
+
12307
+ # @!attribute [rw] migration_project_identifier
12308
+ # The migration project name or Amazon Resource Name (ARN).
12309
+ # @return [String]
12310
+ #
12311
+ # @!attribute [rw] selection_rules
12312
+ # A value that specifies the database objects to import.
12313
+ # @return [String]
12314
+ #
12315
+ # @!attribute [rw] origin
12316
+ # Whether to load metadata to the source or target database.
12317
+ # @return [String]
12318
+ #
12319
+ # @!attribute [rw] refresh
12320
+ # If `true`, DMS loads metadata for the specified objects from the
12321
+ # source database.
12322
+ # @return [Boolean]
12323
+ #
12324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelImportMessage AWS API Documentation
12325
+ #
12326
+ class StartMetadataModelImportMessage < Struct.new(
12327
+ :migration_project_identifier,
12328
+ :selection_rules,
12329
+ :origin,
12330
+ :refresh)
12331
+ SENSITIVE = []
12332
+ include Aws::Structure
12333
+ end
12334
+
12335
+ # @!attribute [rw] request_identifier
12336
+ # The identifier for the import operation.
12337
+ # @return [String]
12338
+ #
12339
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelImportResponse AWS API Documentation
12340
+ #
12341
+ class StartMetadataModelImportResponse < Struct.new(
12342
+ :request_identifier)
12343
+ SENSITIVE = []
12344
+ include Aws::Structure
12345
+ end
12346
+
10385
12347
  # @!attribute [rw] database_id
10386
12348
  # The identifier of the source database to analyze and provide
10387
12349
  # recommendations for.