aws-sdk-databasemigrationservice 1.67.0 → 1.68.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.
@@ -269,6 +269,150 @@ module Aws::DatabaseMigrationService
269
269
  include Aws::Structure
270
270
  end
271
271
 
272
+ # Describes the last Fleet Advisor collector health check.
273
+ #
274
+ # @!attribute [rw] collector_status
275
+ # The status of the Fleet Advisor collector.
276
+ # @return [String]
277
+ #
278
+ # @!attribute [rw] local_collector_s3_access
279
+ # Whether the local collector can access its Amazon S3 bucket.
280
+ # @return [Boolean]
281
+ #
282
+ # @!attribute [rw] web_collector_s3_access
283
+ # Whether the web collector can access its Amazon S3 bucket.
284
+ # @return [Boolean]
285
+ #
286
+ # @!attribute [rw] web_collector_granted_role_based_access
287
+ # Whether the role that you provided when creating the Fleet Advisor
288
+ # collector has sufficient permissions to access the Fleet Advisor web
289
+ # collector.
290
+ # @return [Boolean]
291
+ #
292
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CollectorHealthCheck AWS API Documentation
293
+ #
294
+ class CollectorHealthCheck < Struct.new(
295
+ :collector_status,
296
+ :local_collector_s3_access,
297
+ :web_collector_s3_access,
298
+ :web_collector_granted_role_based_access)
299
+ SENSITIVE = []
300
+ include Aws::Structure
301
+ end
302
+
303
+ # The specified collector doesn't exist.
304
+ #
305
+ # @!attribute [rw] message
306
+ # @return [String]
307
+ #
308
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CollectorNotFoundFault AWS API Documentation
309
+ #
310
+ class CollectorNotFoundFault < Struct.new(
311
+ :message)
312
+ SENSITIVE = []
313
+ include Aws::Structure
314
+ end
315
+
316
+ # Describes a Fleet Advisor collector.
317
+ #
318
+ # @!attribute [rw] collector_referenced_id
319
+ # The reference ID of the Fleet Advisor collector.
320
+ # @return [String]
321
+ #
322
+ # @!attribute [rw] collector_name
323
+ # The name of the Fleet Advisor collector .
324
+ # @return [String]
325
+ #
326
+ # @!attribute [rw] collector_version
327
+ # The version of your Fleet Advisor collector, in semantic versioning
328
+ # format, for example `1.0.2`
329
+ # @return [String]
330
+ #
331
+ # @!attribute [rw] version_status
332
+ # Whether the collector version is up to date.
333
+ # @return [String]
334
+ #
335
+ # @!attribute [rw] description
336
+ # A summary description of the Fleet Advisor collector.
337
+ # @return [String]
338
+ #
339
+ # @!attribute [rw] s3_bucket_name
340
+ # The Amazon S3 bucket that the Fleet Advisor collector uses to store
341
+ # inventory metadata.
342
+ # @return [String]
343
+ #
344
+ # @!attribute [rw] service_access_role_arn
345
+ # The IAM role that grants permissions to access the specified Amazon
346
+ # S3 bucket.
347
+ # @return [String]
348
+ #
349
+ # @!attribute [rw] collector_health_check
350
+ # Describes the last Fleet Advisor collector health check.
351
+ # @return [Types::CollectorHealthCheck]
352
+ #
353
+ # @!attribute [rw] last_data_received
354
+ # The timestamp of the last time the collector received data, in the
355
+ # following format: `2022-01-24T19:04:02.596113Z`
356
+ # @return [String]
357
+ #
358
+ # @!attribute [rw] registered_date
359
+ # The timestamp when DMS registered the collector, in the following
360
+ # format: `2022-01-24T19:04:02.596113Z`
361
+ # @return [String]
362
+ #
363
+ # @!attribute [rw] created_date
364
+ # The timestamp when you created the collector, in the following
365
+ # format: `2022-01-24T19:04:02.596113Z`
366
+ # @return [String]
367
+ #
368
+ # @!attribute [rw] modified_date
369
+ # The timestamp when DMS last modified the collector, in the following
370
+ # format: `2022-01-24T19:04:02.596113Z`
371
+ # @return [String]
372
+ #
373
+ # @!attribute [rw] inventory_data
374
+ # Describes a Fleet Advisor collector inventory.
375
+ # @return [Types::InventoryData]
376
+ #
377
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CollectorResponse AWS API Documentation
378
+ #
379
+ class CollectorResponse < Struct.new(
380
+ :collector_referenced_id,
381
+ :collector_name,
382
+ :collector_version,
383
+ :version_status,
384
+ :description,
385
+ :s3_bucket_name,
386
+ :service_access_role_arn,
387
+ :collector_health_check,
388
+ :last_data_received,
389
+ :registered_date,
390
+ :created_date,
391
+ :modified_date,
392
+ :inventory_data)
393
+ SENSITIVE = []
394
+ include Aws::Structure
395
+ end
396
+
397
+ # Briefly describes a Fleet Advisor collector.
398
+ #
399
+ # @!attribute [rw] collector_referenced_id
400
+ # The reference ID of the Fleet Advisor collector.
401
+ # @return [String]
402
+ #
403
+ # @!attribute [rw] collector_name
404
+ # The name of the Fleet Advisor collector.
405
+ # @return [String]
406
+ #
407
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CollectorShortInfoResponse AWS API Documentation
408
+ #
409
+ class CollectorShortInfoResponse < Struct.new(
410
+ :collector_referenced_id,
411
+ :collector_name)
412
+ SENSITIVE = []
413
+ include Aws::Structure
414
+ end
415
+
272
416
  # Status of the connection between an endpoint and a replication
273
417
  # instance, including Amazon Resource Names (ARNs) and the last error
274
418
  # message issued.
@@ -682,7 +826,8 @@ module Aws::DatabaseMigrationService
682
826
  #
683
827
  # @!attribute [rw] database_name
684
828
  # The name of the endpoint database. For a MySQL source or target
685
- # endpoint, do not specify DatabaseName.
829
+ # endpoint, do not specify DatabaseName. To migrate to a specific
830
+ # database, use this setting and `targetDbType`.
686
831
  # @return [String]
687
832
  #
688
833
  # @!attribute [rw] extra_connection_attributes
@@ -1085,6 +1230,81 @@ module Aws::DatabaseMigrationService
1085
1230
  include Aws::Structure
1086
1231
  end
1087
1232
 
1233
+ # @note When making an API call, you may pass CreateFleetAdvisorCollectorRequest
1234
+ # data as a hash:
1235
+ #
1236
+ # {
1237
+ # collector_name: "String", # required
1238
+ # description: "String",
1239
+ # service_access_role_arn: "String", # required
1240
+ # s3_bucket_name: "String", # required
1241
+ # }
1242
+ #
1243
+ # @!attribute [rw] collector_name
1244
+ # The name of your Fleet Advisor collector (for example,
1245
+ # `sample-collector`).
1246
+ # @return [String]
1247
+ #
1248
+ # @!attribute [rw] description
1249
+ # A summary description of your Fleet Advisor collector.
1250
+ # @return [String]
1251
+ #
1252
+ # @!attribute [rw] service_access_role_arn
1253
+ # The IAM role that grants permissions to access the specified Amazon
1254
+ # S3 bucket.
1255
+ # @return [String]
1256
+ #
1257
+ # @!attribute [rw] s3_bucket_name
1258
+ # The Amazon S3 bucket that the Fleet Advisor collector uses to store
1259
+ # inventory metadata.
1260
+ # @return [String]
1261
+ #
1262
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateFleetAdvisorCollectorRequest AWS API Documentation
1263
+ #
1264
+ class CreateFleetAdvisorCollectorRequest < Struct.new(
1265
+ :collector_name,
1266
+ :description,
1267
+ :service_access_role_arn,
1268
+ :s3_bucket_name)
1269
+ SENSITIVE = []
1270
+ include Aws::Structure
1271
+ end
1272
+
1273
+ # @!attribute [rw] collector_referenced_id
1274
+ # The unique ID of the new Fleet Advisor collector, for example:
1275
+ # `22fda70c-40d5-4acf-b233-a495bd8eb7f5`
1276
+ # @return [String]
1277
+ #
1278
+ # @!attribute [rw] collector_name
1279
+ # The name of the new Fleet Advisor collector.
1280
+ # @return [String]
1281
+ #
1282
+ # @!attribute [rw] description
1283
+ # A summary description of the Fleet Advisor collector.
1284
+ # @return [String]
1285
+ #
1286
+ # @!attribute [rw] service_access_role_arn
1287
+ # The IAM role that grants permissions to access the specified Amazon
1288
+ # S3 bucket.
1289
+ # @return [String]
1290
+ #
1291
+ # @!attribute [rw] s3_bucket_name
1292
+ # The Amazon S3 bucket that the collector uses to store inventory
1293
+ # metadata.
1294
+ # @return [String]
1295
+ #
1296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateFleetAdvisorCollectorResponse AWS API Documentation
1297
+ #
1298
+ class CreateFleetAdvisorCollectorResponse < Struct.new(
1299
+ :collector_referenced_id,
1300
+ :collector_name,
1301
+ :description,
1302
+ :service_access_role_arn,
1303
+ :s3_bucket_name)
1304
+ SENSITIVE = []
1305
+ include Aws::Structure
1306
+ end
1307
+
1088
1308
  # @note When making an API call, you may pass CreateReplicationInstanceMessage
1089
1309
  # data as a hash:
1090
1310
  #
@@ -1528,6 +1748,132 @@ module Aws::DatabaseMigrationService
1528
1748
  include Aws::Structure
1529
1749
  end
1530
1750
 
1751
+ # Describes an inventory database instance for a Fleet Advisor
1752
+ # collector.
1753
+ #
1754
+ # @!attribute [rw] engine
1755
+ # The database engine of a database in a Fleet Advisor collector
1756
+ # inventory, for example `Microsoft SQL Server`.
1757
+ # @return [String]
1758
+ #
1759
+ # @!attribute [rw] engine_version
1760
+ # The database engine version of a database in a Fleet Advisor
1761
+ # collector inventory, for example `2019`.
1762
+ # @return [String]
1763
+ #
1764
+ # @!attribute [rw] engine_edition
1765
+ # The database engine edition of a database in a Fleet Advisor
1766
+ # collector inventory, for example `Express`.
1767
+ # @return [String]
1768
+ #
1769
+ # @!attribute [rw] service_pack
1770
+ # The service pack level of the database.
1771
+ # @return [String]
1772
+ #
1773
+ # @!attribute [rw] support_level
1774
+ # The support level of the database, for example `Mainstream support`.
1775
+ # @return [String]
1776
+ #
1777
+ # @!attribute [rw] os_architecture
1778
+ # The operating system architecture of the database.
1779
+ # @return [Integer]
1780
+ #
1781
+ # @!attribute [rw] tooltip
1782
+ # Information about the database engine software, for example
1783
+ # `Mainstream support ends on November 14th, 2024`.
1784
+ # @return [String]
1785
+ #
1786
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DatabaseInstanceSoftwareDetailsResponse AWS API Documentation
1787
+ #
1788
+ class DatabaseInstanceSoftwareDetailsResponse < Struct.new(
1789
+ :engine,
1790
+ :engine_version,
1791
+ :engine_edition,
1792
+ :service_pack,
1793
+ :support_level,
1794
+ :os_architecture,
1795
+ :tooltip)
1796
+ SENSITIVE = []
1797
+ include Aws::Structure
1798
+ end
1799
+
1800
+ # Describes a database in a Fleet Advisor collector inventory.
1801
+ #
1802
+ # @!attribute [rw] database_id
1803
+ # The ID of a database in a Fleet Advisor collector inventory.
1804
+ # @return [String]
1805
+ #
1806
+ # @!attribute [rw] database_name
1807
+ # The name of a database in a Fleet Advisor collector inventory.
1808
+ # @return [String]
1809
+ #
1810
+ # @!attribute [rw] ip_address
1811
+ # The IP address of a database in a Fleet Advisor collector inventory.
1812
+ # @return [String]
1813
+ #
1814
+ # @!attribute [rw] number_of_schemas
1815
+ # The number of schemas in a Fleet Advisor collector inventory
1816
+ # database.
1817
+ # @return [Integer]
1818
+ #
1819
+ # @!attribute [rw] server
1820
+ # The server name of a database in a Fleet Advisor collector
1821
+ # inventory.
1822
+ # @return [Types::ServerShortInfoResponse]
1823
+ #
1824
+ # @!attribute [rw] software_details
1825
+ # The software details of a database in a Fleet Advisor collector
1826
+ # inventory, such as database engine and version.
1827
+ # @return [Types::DatabaseInstanceSoftwareDetailsResponse]
1828
+ #
1829
+ # @!attribute [rw] collectors
1830
+ # A list of collectors associated with the database.
1831
+ # @return [Array<Types::CollectorShortInfoResponse>]
1832
+ #
1833
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DatabaseResponse AWS API Documentation
1834
+ #
1835
+ class DatabaseResponse < Struct.new(
1836
+ :database_id,
1837
+ :database_name,
1838
+ :ip_address,
1839
+ :number_of_schemas,
1840
+ :server,
1841
+ :software_details,
1842
+ :collectors)
1843
+ SENSITIVE = []
1844
+ include Aws::Structure
1845
+ end
1846
+
1847
+ # Describes a database in a Fleet Advisor collector inventory.
1848
+ #
1849
+ # @!attribute [rw] database_id
1850
+ # The ID of a database in a Fleet Advisor collector inventory.
1851
+ # @return [String]
1852
+ #
1853
+ # @!attribute [rw] database_name
1854
+ # The name of a database in a Fleet Advisor collector inventory.
1855
+ # @return [String]
1856
+ #
1857
+ # @!attribute [rw] database_ip_address
1858
+ # The IP address of a database in a Fleet Advisor collector inventory.
1859
+ # @return [String]
1860
+ #
1861
+ # @!attribute [rw] database_engine
1862
+ # The database engine of a database in a Fleet Advisor collector
1863
+ # inventory, for example `PostgreSQL`.
1864
+ # @return [String]
1865
+ #
1866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DatabaseShortInfoResponse AWS API Documentation
1867
+ #
1868
+ class DatabaseShortInfoResponse < Struct.new(
1869
+ :database_id,
1870
+ :database_name,
1871
+ :database_ip_address,
1872
+ :database_engine)
1873
+ SENSITIVE = []
1874
+ include Aws::Structure
1875
+ end
1876
+
1531
1877
  # @note When making an API call, you may pass DeleteCertificateMessage
1532
1878
  # data as a hash:
1533
1879
  #
@@ -1559,6 +1905,25 @@ module Aws::DatabaseMigrationService
1559
1905
  include Aws::Structure
1560
1906
  end
1561
1907
 
1908
+ # @note When making an API call, you may pass DeleteCollectorRequest
1909
+ # data as a hash:
1910
+ #
1911
+ # {
1912
+ # collector_referenced_id: "String", # required
1913
+ # }
1914
+ #
1915
+ # @!attribute [rw] collector_referenced_id
1916
+ # The reference ID of the Fleet Advisor collector to delete.
1917
+ # @return [String]
1918
+ #
1919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteCollectorRequest AWS API Documentation
1920
+ #
1921
+ class DeleteCollectorRequest < Struct.new(
1922
+ :collector_referenced_id)
1923
+ SENSITIVE = []
1924
+ include Aws::Structure
1925
+ end
1926
+
1562
1927
  # @note When making an API call, you may pass DeleteConnectionMessage
1563
1928
  # data as a hash:
1564
1929
  #
@@ -1660,6 +2025,37 @@ module Aws::DatabaseMigrationService
1660
2025
  include Aws::Structure
1661
2026
  end
1662
2027
 
2028
+ # @note When making an API call, you may pass DeleteFleetAdvisorDatabasesRequest
2029
+ # data as a hash:
2030
+ #
2031
+ # {
2032
+ # database_ids: ["String"], # required
2033
+ # }
2034
+ #
2035
+ # @!attribute [rw] database_ids
2036
+ # The IDs of the Fleet Advisor collector databases to delete.
2037
+ # @return [Array<String>]
2038
+ #
2039
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorDatabasesRequest AWS API Documentation
2040
+ #
2041
+ class DeleteFleetAdvisorDatabasesRequest < Struct.new(
2042
+ :database_ids)
2043
+ SENSITIVE = []
2044
+ include Aws::Structure
2045
+ end
2046
+
2047
+ # @!attribute [rw] database_ids
2048
+ # The IDs of the databases that the operation deleted.
2049
+ # @return [Array<String>]
2050
+ #
2051
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorDatabasesResponse AWS API Documentation
2052
+ #
2053
+ class DeleteFleetAdvisorDatabasesResponse < Struct.new(
2054
+ :database_ids)
2055
+ SENSITIVE = []
2056
+ include Aws::Structure
2057
+ end
2058
+
1663
2059
  # @note When making an API call, you may pass DeleteReplicationInstanceMessage
1664
2060
  # data as a hash:
1665
2061
  #
@@ -2446,6 +2842,353 @@ module Aws::DatabaseMigrationService
2446
2842
  include Aws::Structure
2447
2843
  end
2448
2844
 
2845
+ # @note When making an API call, you may pass DescribeFleetAdvisorCollectorsRequest
2846
+ # data as a hash:
2847
+ #
2848
+ # {
2849
+ # filters: [
2850
+ # {
2851
+ # name: "String", # required
2852
+ # values: ["String"], # required
2853
+ # },
2854
+ # ],
2855
+ # max_records: 1,
2856
+ # next_token: "String",
2857
+ # }
2858
+ #
2859
+ # @!attribute [rw] filters
2860
+ # If you specify any of the following filters, the output includes
2861
+ # information for only those collectors that meet the filter criteria:
2862
+ #
2863
+ # * `collector-referenced-id` – The ID of the collector agent, for
2864
+ # example `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
2865
+ #
2866
+ # * `collector-name` – The name of the collector agent.
2867
+ #
2868
+ # An example is: `describe-fleet-advisor-collectors --filter
2869
+ # Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
2870
+ # @return [Array<Types::Filter>]
2871
+ #
2872
+ # @!attribute [rw] max_records
2873
+ # Sets the maximum number of records returned in the response.
2874
+ # @return [Integer]
2875
+ #
2876
+ # @!attribute [rw] next_token
2877
+ # If `NextToken` is returned by a previous response, there are more
2878
+ # results available. The value of `NextToken` is a unique pagination
2879
+ # token for each page. Make the call again using the returned token to
2880
+ # retrieve the next page. Keep all other arguments unchanged.
2881
+ # @return [String]
2882
+ #
2883
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorCollectorsRequest AWS API Documentation
2884
+ #
2885
+ class DescribeFleetAdvisorCollectorsRequest < Struct.new(
2886
+ :filters,
2887
+ :max_records,
2888
+ :next_token)
2889
+ SENSITIVE = []
2890
+ include Aws::Structure
2891
+ end
2892
+
2893
+ # @!attribute [rw] collectors
2894
+ # Provides descriptions of the Fleet Advisor collectors, including the
2895
+ # collectors' name and ID, and the latest inventory data.
2896
+ # @return [Array<Types::CollectorResponse>]
2897
+ #
2898
+ # @!attribute [rw] next_token
2899
+ # If `NextToken` is returned, there are more results available. The
2900
+ # value of `NextToken` is a unique pagination token for each page.
2901
+ # Make the call again using the returned token to retrieve the next
2902
+ # page. Keep all other arguments unchanged.
2903
+ # @return [String]
2904
+ #
2905
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorCollectorsResponse AWS API Documentation
2906
+ #
2907
+ class DescribeFleetAdvisorCollectorsResponse < Struct.new(
2908
+ :collectors,
2909
+ :next_token)
2910
+ SENSITIVE = []
2911
+ include Aws::Structure
2912
+ end
2913
+
2914
+ # @note When making an API call, you may pass DescribeFleetAdvisorDatabasesRequest
2915
+ # data as a hash:
2916
+ #
2917
+ # {
2918
+ # filters: [
2919
+ # {
2920
+ # name: "String", # required
2921
+ # values: ["String"], # required
2922
+ # },
2923
+ # ],
2924
+ # max_records: 1,
2925
+ # next_token: "String",
2926
+ # }
2927
+ #
2928
+ # @!attribute [rw] filters
2929
+ # If you specify any of the following filters, the output includes
2930
+ # information for only those databases that meet the filter criteria:
2931
+ #
2932
+ # * `database-id` – The ID of the database, for example
2933
+ # `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
2934
+ #
2935
+ # * `database-name` – The name of the database.
2936
+ #
2937
+ # * `database-engine` – The name of the database engine.
2938
+ #
2939
+ # * `server-ip-address` – The IP address of the database server.
2940
+ #
2941
+ # * `database-ip-address` – The IP address of the database.
2942
+ #
2943
+ # * `collector-name` – The name of the associated Fleet Advisor
2944
+ # collector.
2945
+ #
2946
+ # An example is: `describe-fleet-advisor-databases --filter
2947
+ # Name="database-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
2948
+ # @return [Array<Types::Filter>]
2949
+ #
2950
+ # @!attribute [rw] max_records
2951
+ # Sets the maximum number of records returned in the response.
2952
+ # @return [Integer]
2953
+ #
2954
+ # @!attribute [rw] next_token
2955
+ # If `NextToken` is returned by a previous response, there are more
2956
+ # results available. The value of `NextToken` is a unique pagination
2957
+ # token for each page. Make the call again using the returned token to
2958
+ # retrieve the next page. Keep all other arguments unchanged.
2959
+ # @return [String]
2960
+ #
2961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorDatabasesRequest AWS API Documentation
2962
+ #
2963
+ class DescribeFleetAdvisorDatabasesRequest < Struct.new(
2964
+ :filters,
2965
+ :max_records,
2966
+ :next_token)
2967
+ SENSITIVE = []
2968
+ include Aws::Structure
2969
+ end
2970
+
2971
+ # @!attribute [rw] databases
2972
+ # Provides descriptions of the Fleet Advisor collector databases,
2973
+ # including the database's collector, ID, and name.
2974
+ # @return [Array<Types::DatabaseResponse>]
2975
+ #
2976
+ # @!attribute [rw] next_token
2977
+ # If `NextToken` is returned, there are more results available. The
2978
+ # value of `NextToken` is a unique pagination token for each page.
2979
+ # Make the call again using the returned token to retrieve the next
2980
+ # page. Keep all other arguments unchanged.
2981
+ # @return [String]
2982
+ #
2983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorDatabasesResponse AWS API Documentation
2984
+ #
2985
+ class DescribeFleetAdvisorDatabasesResponse < Struct.new(
2986
+ :databases,
2987
+ :next_token)
2988
+ SENSITIVE = []
2989
+ include Aws::Structure
2990
+ end
2991
+
2992
+ # @note When making an API call, you may pass DescribeFleetAdvisorLsaAnalysisRequest
2993
+ # data as a hash:
2994
+ #
2995
+ # {
2996
+ # max_records: 1,
2997
+ # next_token: "String",
2998
+ # }
2999
+ #
3000
+ # @!attribute [rw] max_records
3001
+ # Sets the maximum number of records returned in the response.
3002
+ # @return [Integer]
3003
+ #
3004
+ # @!attribute [rw] next_token
3005
+ # If `NextToken` is returned by a previous response, there are more
3006
+ # results available. The value of `NextToken` is a unique pagination
3007
+ # token for each page. Make the call again using the returned token to
3008
+ # retrieve the next page. Keep all other arguments unchanged.
3009
+ # @return [String]
3010
+ #
3011
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorLsaAnalysisRequest AWS API Documentation
3012
+ #
3013
+ class DescribeFleetAdvisorLsaAnalysisRequest < Struct.new(
3014
+ :max_records,
3015
+ :next_token)
3016
+ SENSITIVE = []
3017
+ include Aws::Structure
3018
+ end
3019
+
3020
+ # @!attribute [rw] analysis
3021
+ # A list of `FleetAdvisorLsaAnalysisResponse` objects.
3022
+ # @return [Array<Types::FleetAdvisorLsaAnalysisResponse>]
3023
+ #
3024
+ # @!attribute [rw] next_token
3025
+ # If `NextToken` is returned, there are more results available. The
3026
+ # value of `NextToken` is a unique pagination token for each page.
3027
+ # Make the call again using the returned token to retrieve the next
3028
+ # page. Keep all other arguments unchanged.
3029
+ # @return [String]
3030
+ #
3031
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorLsaAnalysisResponse AWS API Documentation
3032
+ #
3033
+ class DescribeFleetAdvisorLsaAnalysisResponse < Struct.new(
3034
+ :analysis,
3035
+ :next_token)
3036
+ SENSITIVE = []
3037
+ include Aws::Structure
3038
+ end
3039
+
3040
+ # @note When making an API call, you may pass DescribeFleetAdvisorSchemaObjectSummaryRequest
3041
+ # data as a hash:
3042
+ #
3043
+ # {
3044
+ # filters: [
3045
+ # {
3046
+ # name: "String", # required
3047
+ # values: ["String"], # required
3048
+ # },
3049
+ # ],
3050
+ # max_records: 1,
3051
+ # next_token: "String",
3052
+ # }
3053
+ #
3054
+ # @!attribute [rw] filters
3055
+ # If you specify any of the following filters, the output includes
3056
+ # information for only those schema objects that meet the filter
3057
+ # criteria:
3058
+ #
3059
+ # * `schema-id` – The ID of the schema, for example
3060
+ # `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
3061
+ #
3062
+ # ^
3063
+ #
3064
+ # Example: `describe-fleet-advisor-schema-object-summary --filter
3065
+ # Name="schema-id",Values="50"`
3066
+ # @return [Array<Types::Filter>]
3067
+ #
3068
+ # @!attribute [rw] max_records
3069
+ # Sets the maximum number of records returned in the response.
3070
+ # @return [Integer]
3071
+ #
3072
+ # @!attribute [rw] next_token
3073
+ # If `NextToken` is returned by a previous response, there are more
3074
+ # results available. The value of `NextToken` is a unique pagination
3075
+ # token for each page. Make the call again using the returned token to
3076
+ # retrieve the next page. Keep all other arguments unchanged.
3077
+ # @return [String]
3078
+ #
3079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemaObjectSummaryRequest AWS API Documentation
3080
+ #
3081
+ class DescribeFleetAdvisorSchemaObjectSummaryRequest < Struct.new(
3082
+ :filters,
3083
+ :max_records,
3084
+ :next_token)
3085
+ SENSITIVE = []
3086
+ include Aws::Structure
3087
+ end
3088
+
3089
+ # @!attribute [rw] fleet_advisor_schema_objects
3090
+ # A collection of `FleetAdvisorSchemaObjectResponse` objects.
3091
+ # @return [Array<Types::FleetAdvisorSchemaObjectResponse>]
3092
+ #
3093
+ # @!attribute [rw] next_token
3094
+ # If `NextToken` is returned, there are more results available. The
3095
+ # value of `NextToken` is a unique pagination token for each page.
3096
+ # Make the call again using the returned token to retrieve the next
3097
+ # page. Keep all other arguments unchanged.
3098
+ # @return [String]
3099
+ #
3100
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemaObjectSummaryResponse AWS API Documentation
3101
+ #
3102
+ class DescribeFleetAdvisorSchemaObjectSummaryResponse < Struct.new(
3103
+ :fleet_advisor_schema_objects,
3104
+ :next_token)
3105
+ SENSITIVE = []
3106
+ include Aws::Structure
3107
+ end
3108
+
3109
+ # @note When making an API call, you may pass DescribeFleetAdvisorSchemasRequest
3110
+ # data as a hash:
3111
+ #
3112
+ # {
3113
+ # filters: [
3114
+ # {
3115
+ # name: "String", # required
3116
+ # values: ["String"], # required
3117
+ # },
3118
+ # ],
3119
+ # max_records: 1,
3120
+ # next_token: "String",
3121
+ # }
3122
+ #
3123
+ # @!attribute [rw] filters
3124
+ # If you specify any of the following filters, the output includes
3125
+ # information for only those schemas that meet the filter criteria:
3126
+ #
3127
+ # * `complexity` – The schema's complexity, for example `Simple`.
3128
+ #
3129
+ # * `database-id` – The ID of the schema's database.
3130
+ #
3131
+ # * `database-ip-address` – The IP address of the schema's database.
3132
+ #
3133
+ # * `database-name` – The name of the schema's database.
3134
+ #
3135
+ # * `database-engine` – The name of the schema database's engine.
3136
+ #
3137
+ # * `original-schema-name` – The name of the schema's database's
3138
+ # main schema.
3139
+ #
3140
+ # * `schema-id` – The ID of the schema, for example `15`.
3141
+ #
3142
+ # * `schema-name` – The name of the schema.
3143
+ #
3144
+ # * `server-ip-address` – The IP address of the schema database's
3145
+ # server.
3146
+ #
3147
+ # An example is: `describe-fleet-advisor-schemas --filter
3148
+ # Name="schema-id",Values="50"`
3149
+ # @return [Array<Types::Filter>]
3150
+ #
3151
+ # @!attribute [rw] max_records
3152
+ # Sets the maximum number of records returned in the response.
3153
+ # @return [Integer]
3154
+ #
3155
+ # @!attribute [rw] next_token
3156
+ # If `NextToken` is returned by a previous response, there are more
3157
+ # results available. The value of `NextToken` is a unique pagination
3158
+ # token for each page. Make the call again using the returned token to
3159
+ # retrieve the next page. Keep all other arguments unchanged.
3160
+ # @return [String]
3161
+ #
3162
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemasRequest AWS API Documentation
3163
+ #
3164
+ class DescribeFleetAdvisorSchemasRequest < Struct.new(
3165
+ :filters,
3166
+ :max_records,
3167
+ :next_token)
3168
+ SENSITIVE = []
3169
+ include Aws::Structure
3170
+ end
3171
+
3172
+ # @!attribute [rw] fleet_advisor_schemas
3173
+ # A collection of `SchemaResponse` objects.
3174
+ # @return [Array<Types::SchemaResponse>]
3175
+ #
3176
+ # @!attribute [rw] next_token
3177
+ # If `NextToken` is returned, there are more results available. The
3178
+ # value of `NextToken` is a unique pagination token for each page.
3179
+ # Make the call again using the returned token to retrieve the next
3180
+ # page. Keep all other arguments unchanged.
3181
+ # @return [String]
3182
+ #
3183
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemasResponse AWS API Documentation
3184
+ #
3185
+ class DescribeFleetAdvisorSchemasResponse < Struct.new(
3186
+ :fleet_advisor_schemas,
3187
+ :next_token)
3188
+ SENSITIVE = []
3189
+ include Aws::Structure
3190
+ end
3191
+
2449
3192
  # @note When making an API call, you may pass DescribeOrderableReplicationInstancesMessage
2450
3193
  # data as a hash:
2451
3194
  #
@@ -3888,6 +4631,72 @@ module Aws::DatabaseMigrationService
3888
4631
  include Aws::Structure
3889
4632
  end
3890
4633
 
4634
+ # Describes a large-scale assessment (LSA) analysis run by a Fleet
4635
+ # Advisor collector.
4636
+ #
4637
+ # @!attribute [rw] lsa_analysis_id
4638
+ # The ID of an LSA analysis run by a Fleet Advisor collector.
4639
+ # @return [String]
4640
+ #
4641
+ # @!attribute [rw] status
4642
+ # The status of an LSA analysis run by a Fleet Advisor collector.
4643
+ # @return [String]
4644
+ #
4645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/FleetAdvisorLsaAnalysisResponse AWS API Documentation
4646
+ #
4647
+ class FleetAdvisorLsaAnalysisResponse < Struct.new(
4648
+ :lsa_analysis_id,
4649
+ :status)
4650
+ SENSITIVE = []
4651
+ include Aws::Structure
4652
+ end
4653
+
4654
+ # Describes a schema object in a Fleet Advisor collector inventory.
4655
+ #
4656
+ # @!attribute [rw] schema_id
4657
+ # The ID of a schema object in a Fleet Advisor collector inventory.
4658
+ # @return [String]
4659
+ #
4660
+ # @!attribute [rw] object_type
4661
+ # The type of the schema object, as reported by the database engine.
4662
+ # Examples include the following:
4663
+ #
4664
+ # * `function`
4665
+ #
4666
+ # * `trigger`
4667
+ #
4668
+ # * `SYSTEM_TABLE`
4669
+ #
4670
+ # * `QUEUE`
4671
+ # @return [String]
4672
+ #
4673
+ # @!attribute [rw] number_of_objects
4674
+ # The number of objects in a schema object in a Fleet Advisor
4675
+ # collector inventory.
4676
+ # @return [Integer]
4677
+ #
4678
+ # @!attribute [rw] code_line_count
4679
+ # The number of lines of code in a schema object in a Fleet Advisor
4680
+ # collector inventory.
4681
+ # @return [Integer]
4682
+ #
4683
+ # @!attribute [rw] code_size
4684
+ # The size level of the code in a schema object in a Fleet Advisor
4685
+ # collector inventory.
4686
+ # @return [Integer]
4687
+ #
4688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/FleetAdvisorSchemaObjectResponse AWS API Documentation
4689
+ #
4690
+ class FleetAdvisorSchemaObjectResponse < Struct.new(
4691
+ :schema_id,
4692
+ :object_type,
4693
+ :number_of_objects,
4694
+ :code_line_count,
4695
+ :code_size)
4696
+ SENSITIVE = []
4697
+ include Aws::Structure
4698
+ end
4699
+
3891
4700
  # Settings in JSON format for the source GCP MySQL endpoint.
3892
4701
  #
3893
4702
  # @note When making an API call, you may pass GcpMySQLSettings
@@ -4236,6 +5045,19 @@ module Aws::DatabaseMigrationService
4236
5045
  include Aws::Structure
4237
5046
  end
4238
5047
 
5048
+ # The action or operation requested isn't valid.
5049
+ #
5050
+ # @!attribute [rw] message
5051
+ # @return [String]
5052
+ #
5053
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/InvalidOperationFault AWS API Documentation
5054
+ #
5055
+ class InvalidOperationFault < Struct.new(
5056
+ :message)
5057
+ SENSITIVE = []
5058
+ include Aws::Structure
5059
+ end
5060
+
4239
5061
  # The resource is in a state that prevents it from being used for
4240
5062
  # database migration.
4241
5063
  #
@@ -4263,6 +5085,25 @@ module Aws::DatabaseMigrationService
4263
5085
  include Aws::Structure
4264
5086
  end
4265
5087
 
5088
+ # Describes a Fleet Advisor collector inventory.
5089
+ #
5090
+ # @!attribute [rw] number_of_databases
5091
+ # The number of databases in the Fleet Advisor collector inventory.
5092
+ # @return [Integer]
5093
+ #
5094
+ # @!attribute [rw] number_of_schemas
5095
+ # The number of schemas in the Fleet Advisor collector inventory.
5096
+ # @return [Integer]
5097
+ #
5098
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/InventoryData AWS API Documentation
5099
+ #
5100
+ class InventoryData < Struct.new(
5101
+ :number_of_databases,
5102
+ :number_of_schemas)
5103
+ SENSITIVE = []
5104
+ include Aws::Structure
5105
+ end
5106
+
4266
5107
  # The ciphertext references a key that doesn't exist or that the DMS
4267
5108
  # account doesn't have access to.
4268
5109
  #
@@ -6128,7 +6969,9 @@ module Aws::DatabaseMigrationService
6128
6969
  #
6129
6970
  # @!attribute [rw] target_db_type
6130
6971
  # Specifies where to migrate source tables on the target, either to a
6131
- # single database or multiple databases.
6972
+ # single database or multiple databases. If you specify
6973
+ # `SPECIFIC_DATABASE`, specify the database name using the
6974
+ # `DatabaseName` parameter of the `Endpoint` object.
6132
6975
  #
6133
6976
  # Example: `targetDbType=MULTIPLE_DATABASES`
6134
6977
  # @return [String]
@@ -8657,6 +9500,23 @@ module Aws::DatabaseMigrationService
8657
9500
  include Aws::Structure
8658
9501
  end
8659
9502
 
9503
+ # @!attribute [rw] lsa_analysis_id
9504
+ # The ID of the LSA analysis run.
9505
+ # @return [String]
9506
+ #
9507
+ # @!attribute [rw] status
9508
+ # The status of the LSA analysis, for example `COMPLETED`.
9509
+ # @return [String]
9510
+ #
9511
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RunFleetAdvisorLsaAnalysisResponse AWS API Documentation
9512
+ #
9513
+ class RunFleetAdvisorLsaAnalysisResponse < Struct.new(
9514
+ :lsa_analysis_id,
9515
+ :status)
9516
+ SENSITIVE = []
9517
+ include Aws::Structure
9518
+ end
9519
+
8660
9520
  # Insufficient privileges are preventing access to an Amazon S3 object.
8661
9521
  #
8662
9522
  # @!attribute [rw] message
@@ -9352,6 +10212,124 @@ module Aws::DatabaseMigrationService
9352
10212
  include Aws::Structure
9353
10213
  end
9354
10214
 
10215
+ # Describes a schema in a Fleet Advisor collector inventory.
10216
+ #
10217
+ # @!attribute [rw] code_line_count
10218
+ # The number of lines of code in a schema in a Fleet Advisor collector
10219
+ # inventory.
10220
+ # @return [Integer]
10221
+ #
10222
+ # @!attribute [rw] code_size
10223
+ # The size level of the code in a schema in a Fleet Advisor collector
10224
+ # inventory.
10225
+ # @return [Integer]
10226
+ #
10227
+ # @!attribute [rw] complexity
10228
+ # The complexity level of the code in a schema in a Fleet Advisor
10229
+ # collector inventory.
10230
+ # @return [String]
10231
+ #
10232
+ # @!attribute [rw] server
10233
+ # The database server for a schema in a Fleet Advisor collector
10234
+ # inventory.
10235
+ # @return [Types::ServerShortInfoResponse]
10236
+ #
10237
+ # @!attribute [rw] database_instance
10238
+ # The database for a schema in a Fleet Advisor collector inventory.
10239
+ # @return [Types::DatabaseShortInfoResponse]
10240
+ #
10241
+ # @!attribute [rw] schema_id
10242
+ # The ID of a schema in a Fleet Advisor collector inventory.
10243
+ # @return [String]
10244
+ #
10245
+ # @!attribute [rw] schema_name
10246
+ # The name of a schema in a Fleet Advisor collector inventory.
10247
+ # @return [String]
10248
+ #
10249
+ # @!attribute [rw] original_schema
10250
+ # Describes a schema in a Fleet Advisor collector inventory.
10251
+ # @return [Types::SchemaShortInfoResponse]
10252
+ #
10253
+ # @!attribute [rw] similarity
10254
+ # The similarity value for a schema in a Fleet Advisor collector
10255
+ # inventory. A higher similarity value indicates that a schema is
10256
+ # likely to be a duplicate.
10257
+ # @return [Float]
10258
+ #
10259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SchemaResponse AWS API Documentation
10260
+ #
10261
+ class SchemaResponse < Struct.new(
10262
+ :code_line_count,
10263
+ :code_size,
10264
+ :complexity,
10265
+ :server,
10266
+ :database_instance,
10267
+ :schema_id,
10268
+ :schema_name,
10269
+ :original_schema,
10270
+ :similarity)
10271
+ SENSITIVE = []
10272
+ include Aws::Structure
10273
+ end
10274
+
10275
+ # Describes a schema in a Fleet Advisor collector inventory.
10276
+ #
10277
+ # @!attribute [rw] schema_id
10278
+ # The ID of a schema in a Fleet Advisor collector inventory.
10279
+ # @return [String]
10280
+ #
10281
+ # @!attribute [rw] schema_name
10282
+ # The name of a schema in a Fleet Advisor collector inventory.
10283
+ # @return [String]
10284
+ #
10285
+ # @!attribute [rw] database_id
10286
+ # The ID of a database in a Fleet Advisor collector inventory.
10287
+ # @return [String]
10288
+ #
10289
+ # @!attribute [rw] database_name
10290
+ # The name of a database in a Fleet Advisor collector inventory.
10291
+ # @return [String]
10292
+ #
10293
+ # @!attribute [rw] database_ip_address
10294
+ # The IP address of a database in a Fleet Advisor collector inventory.
10295
+ # @return [String]
10296
+ #
10297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SchemaShortInfoResponse AWS API Documentation
10298
+ #
10299
+ class SchemaShortInfoResponse < Struct.new(
10300
+ :schema_id,
10301
+ :schema_name,
10302
+ :database_id,
10303
+ :database_name,
10304
+ :database_ip_address)
10305
+ SENSITIVE = []
10306
+ include Aws::Structure
10307
+ end
10308
+
10309
+ # Describes a server in a Fleet Advisor collector inventory.
10310
+ #
10311
+ # @!attribute [rw] server_id
10312
+ # The ID of a server in a Fleet Advisor collector inventory.
10313
+ # @return [String]
10314
+ #
10315
+ # @!attribute [rw] ip_address
10316
+ # The IP address of a server in a Fleet Advisor collector inventory.
10317
+ # @return [String]
10318
+ #
10319
+ # @!attribute [rw] server_name
10320
+ # The name address of a server in a Fleet Advisor collector inventory.
10321
+ # @return [String]
10322
+ #
10323
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ServerShortInfoResponse AWS API Documentation
10324
+ #
10325
+ class ServerShortInfoResponse < Struct.new(
10326
+ :server_id,
10327
+ :ip_address,
10328
+ :server_name)
10329
+ SENSITIVE = []
10330
+ include Aws::Structure
10331
+ end
10332
+
9355
10333
  # @note When making an API call, you may pass StartReplicationTaskAssessmentMessage
9356
10334
  # data as a hash:
9357
10335
  #