aws-sdk-databasemigrationservice 1.67.0 → 1.70.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +565 -2
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +360 -0
- data/lib/aws-sdk-databasemigrationservice/errors.rb +32 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +1198 -99
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- metadata +2 -2
@@ -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.
|
@@ -389,6 +533,8 @@ module Aws::DatabaseMigrationService
|
|
389
533
|
# max_file_size: 1,
|
390
534
|
# rfc_4180: false,
|
391
535
|
# date_partition_timezone: "String",
|
536
|
+
# add_trailing_padding_character: false,
|
537
|
+
# expected_bucket_owner: "String",
|
392
538
|
# },
|
393
539
|
# dms_transfer_settings: {
|
394
540
|
# service_access_role_arn: "String",
|
@@ -447,6 +593,7 @@ module Aws::DatabaseMigrationService
|
|
447
593
|
# endpoint_uri: "String", # required
|
448
594
|
# full_load_error_percentage: 1,
|
449
595
|
# error_retry_duration: 1,
|
596
|
+
# use_new_mapping_type: false,
|
450
597
|
# },
|
451
598
|
# neptune_settings: {
|
452
599
|
# service_access_role_arn: "String",
|
@@ -508,6 +655,7 @@ module Aws::DatabaseMigrationService
|
|
508
655
|
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
509
656
|
# secrets_manager_access_role_arn: "String",
|
510
657
|
# secrets_manager_secret_id: "String",
|
658
|
+
# trim_space_in_char: false,
|
511
659
|
# },
|
512
660
|
# my_sql_settings: {
|
513
661
|
# after_connect_script: "String",
|
@@ -566,6 +714,7 @@ module Aws::DatabaseMigrationService
|
|
566
714
|
# secrets_manager_secret_id: "String",
|
567
715
|
# secrets_manager_oracle_asm_access_role_arn: "String",
|
568
716
|
# secrets_manager_oracle_asm_secret_id: "String",
|
717
|
+
# trim_space_in_char: false,
|
569
718
|
# },
|
570
719
|
# sybase_settings: {
|
571
720
|
# database_name: "String",
|
@@ -591,6 +740,7 @@ module Aws::DatabaseMigrationService
|
|
591
740
|
# use_third_party_backup_device: false,
|
592
741
|
# secrets_manager_access_role_arn: "String",
|
593
742
|
# secrets_manager_secret_id: "String",
|
743
|
+
# trim_space_in_char: false,
|
594
744
|
# },
|
595
745
|
# ibm_db_2_settings: {
|
596
746
|
# database_name: "String",
|
@@ -682,7 +832,8 @@ module Aws::DatabaseMigrationService
|
|
682
832
|
#
|
683
833
|
# @!attribute [rw] database_name
|
684
834
|
# The name of the endpoint database. For a MySQL source or target
|
685
|
-
# endpoint, do not specify DatabaseName.
|
835
|
+
# endpoint, do not specify DatabaseName. To migrate to a specific
|
836
|
+
# database, use this setting and `targetDbType`.
|
686
837
|
# @return [String]
|
687
838
|
#
|
688
839
|
# @!attribute [rw] extra_connection_attributes
|
@@ -1085,6 +1236,81 @@ module Aws::DatabaseMigrationService
|
|
1085
1236
|
include Aws::Structure
|
1086
1237
|
end
|
1087
1238
|
|
1239
|
+
# @note When making an API call, you may pass CreateFleetAdvisorCollectorRequest
|
1240
|
+
# data as a hash:
|
1241
|
+
#
|
1242
|
+
# {
|
1243
|
+
# collector_name: "String", # required
|
1244
|
+
# description: "String",
|
1245
|
+
# service_access_role_arn: "String", # required
|
1246
|
+
# s3_bucket_name: "String", # required
|
1247
|
+
# }
|
1248
|
+
#
|
1249
|
+
# @!attribute [rw] collector_name
|
1250
|
+
# The name of your Fleet Advisor collector (for example,
|
1251
|
+
# `sample-collector`).
|
1252
|
+
# @return [String]
|
1253
|
+
#
|
1254
|
+
# @!attribute [rw] description
|
1255
|
+
# A summary description of your Fleet Advisor collector.
|
1256
|
+
# @return [String]
|
1257
|
+
#
|
1258
|
+
# @!attribute [rw] service_access_role_arn
|
1259
|
+
# The IAM role that grants permissions to access the specified Amazon
|
1260
|
+
# S3 bucket.
|
1261
|
+
# @return [String]
|
1262
|
+
#
|
1263
|
+
# @!attribute [rw] s3_bucket_name
|
1264
|
+
# The Amazon S3 bucket that the Fleet Advisor collector uses to store
|
1265
|
+
# inventory metadata.
|
1266
|
+
# @return [String]
|
1267
|
+
#
|
1268
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateFleetAdvisorCollectorRequest AWS API Documentation
|
1269
|
+
#
|
1270
|
+
class CreateFleetAdvisorCollectorRequest < Struct.new(
|
1271
|
+
:collector_name,
|
1272
|
+
:description,
|
1273
|
+
:service_access_role_arn,
|
1274
|
+
:s3_bucket_name)
|
1275
|
+
SENSITIVE = []
|
1276
|
+
include Aws::Structure
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
# @!attribute [rw] collector_referenced_id
|
1280
|
+
# The unique ID of the new Fleet Advisor collector, for example:
|
1281
|
+
# `22fda70c-40d5-4acf-b233-a495bd8eb7f5`
|
1282
|
+
# @return [String]
|
1283
|
+
#
|
1284
|
+
# @!attribute [rw] collector_name
|
1285
|
+
# The name of the new Fleet Advisor collector.
|
1286
|
+
# @return [String]
|
1287
|
+
#
|
1288
|
+
# @!attribute [rw] description
|
1289
|
+
# A summary description of the Fleet Advisor collector.
|
1290
|
+
# @return [String]
|
1291
|
+
#
|
1292
|
+
# @!attribute [rw] service_access_role_arn
|
1293
|
+
# The IAM role that grants permissions to access the specified Amazon
|
1294
|
+
# S3 bucket.
|
1295
|
+
# @return [String]
|
1296
|
+
#
|
1297
|
+
# @!attribute [rw] s3_bucket_name
|
1298
|
+
# The Amazon S3 bucket that the collector uses to store inventory
|
1299
|
+
# metadata.
|
1300
|
+
# @return [String]
|
1301
|
+
#
|
1302
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateFleetAdvisorCollectorResponse AWS API Documentation
|
1303
|
+
#
|
1304
|
+
class CreateFleetAdvisorCollectorResponse < Struct.new(
|
1305
|
+
:collector_referenced_id,
|
1306
|
+
:collector_name,
|
1307
|
+
:description,
|
1308
|
+
:service_access_role_arn,
|
1309
|
+
:s3_bucket_name)
|
1310
|
+
SENSITIVE = []
|
1311
|
+
include Aws::Structure
|
1312
|
+
end
|
1313
|
+
|
1088
1314
|
# @note When making an API call, you may pass CreateReplicationInstanceMessage
|
1089
1315
|
# data as a hash:
|
1090
1316
|
#
|
@@ -1528,6 +1754,132 @@ module Aws::DatabaseMigrationService
|
|
1528
1754
|
include Aws::Structure
|
1529
1755
|
end
|
1530
1756
|
|
1757
|
+
# Describes an inventory database instance for a Fleet Advisor
|
1758
|
+
# collector.
|
1759
|
+
#
|
1760
|
+
# @!attribute [rw] engine
|
1761
|
+
# The database engine of a database in a Fleet Advisor collector
|
1762
|
+
# inventory, for example `Microsoft SQL Server`.
|
1763
|
+
# @return [String]
|
1764
|
+
#
|
1765
|
+
# @!attribute [rw] engine_version
|
1766
|
+
# The database engine version of a database in a Fleet Advisor
|
1767
|
+
# collector inventory, for example `2019`.
|
1768
|
+
# @return [String]
|
1769
|
+
#
|
1770
|
+
# @!attribute [rw] engine_edition
|
1771
|
+
# The database engine edition of a database in a Fleet Advisor
|
1772
|
+
# collector inventory, for example `Express`.
|
1773
|
+
# @return [String]
|
1774
|
+
#
|
1775
|
+
# @!attribute [rw] service_pack
|
1776
|
+
# The service pack level of the database.
|
1777
|
+
# @return [String]
|
1778
|
+
#
|
1779
|
+
# @!attribute [rw] support_level
|
1780
|
+
# The support level of the database, for example `Mainstream support`.
|
1781
|
+
# @return [String]
|
1782
|
+
#
|
1783
|
+
# @!attribute [rw] os_architecture
|
1784
|
+
# The operating system architecture of the database.
|
1785
|
+
# @return [Integer]
|
1786
|
+
#
|
1787
|
+
# @!attribute [rw] tooltip
|
1788
|
+
# Information about the database engine software, for example
|
1789
|
+
# `Mainstream support ends on November 14th, 2024`.
|
1790
|
+
# @return [String]
|
1791
|
+
#
|
1792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DatabaseInstanceSoftwareDetailsResponse AWS API Documentation
|
1793
|
+
#
|
1794
|
+
class DatabaseInstanceSoftwareDetailsResponse < Struct.new(
|
1795
|
+
:engine,
|
1796
|
+
:engine_version,
|
1797
|
+
:engine_edition,
|
1798
|
+
:service_pack,
|
1799
|
+
:support_level,
|
1800
|
+
:os_architecture,
|
1801
|
+
:tooltip)
|
1802
|
+
SENSITIVE = []
|
1803
|
+
include Aws::Structure
|
1804
|
+
end
|
1805
|
+
|
1806
|
+
# Describes a database in a Fleet Advisor collector inventory.
|
1807
|
+
#
|
1808
|
+
# @!attribute [rw] database_id
|
1809
|
+
# The ID of a database in a Fleet Advisor collector inventory.
|
1810
|
+
# @return [String]
|
1811
|
+
#
|
1812
|
+
# @!attribute [rw] database_name
|
1813
|
+
# The name of a database in a Fleet Advisor collector inventory.
|
1814
|
+
# @return [String]
|
1815
|
+
#
|
1816
|
+
# @!attribute [rw] ip_address
|
1817
|
+
# The IP address of a database in a Fleet Advisor collector inventory.
|
1818
|
+
# @return [String]
|
1819
|
+
#
|
1820
|
+
# @!attribute [rw] number_of_schemas
|
1821
|
+
# The number of schemas in a Fleet Advisor collector inventory
|
1822
|
+
# database.
|
1823
|
+
# @return [Integer]
|
1824
|
+
#
|
1825
|
+
# @!attribute [rw] server
|
1826
|
+
# The server name of a database in a Fleet Advisor collector
|
1827
|
+
# inventory.
|
1828
|
+
# @return [Types::ServerShortInfoResponse]
|
1829
|
+
#
|
1830
|
+
# @!attribute [rw] software_details
|
1831
|
+
# The software details of a database in a Fleet Advisor collector
|
1832
|
+
# inventory, such as database engine and version.
|
1833
|
+
# @return [Types::DatabaseInstanceSoftwareDetailsResponse]
|
1834
|
+
#
|
1835
|
+
# @!attribute [rw] collectors
|
1836
|
+
# A list of collectors associated with the database.
|
1837
|
+
# @return [Array<Types::CollectorShortInfoResponse>]
|
1838
|
+
#
|
1839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DatabaseResponse AWS API Documentation
|
1840
|
+
#
|
1841
|
+
class DatabaseResponse < Struct.new(
|
1842
|
+
:database_id,
|
1843
|
+
:database_name,
|
1844
|
+
:ip_address,
|
1845
|
+
:number_of_schemas,
|
1846
|
+
:server,
|
1847
|
+
:software_details,
|
1848
|
+
:collectors)
|
1849
|
+
SENSITIVE = []
|
1850
|
+
include Aws::Structure
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
# Describes a database in a Fleet Advisor collector inventory.
|
1854
|
+
#
|
1855
|
+
# @!attribute [rw] database_id
|
1856
|
+
# The ID of a database in a Fleet Advisor collector inventory.
|
1857
|
+
# @return [String]
|
1858
|
+
#
|
1859
|
+
# @!attribute [rw] database_name
|
1860
|
+
# The name of a database in a Fleet Advisor collector inventory.
|
1861
|
+
# @return [String]
|
1862
|
+
#
|
1863
|
+
# @!attribute [rw] database_ip_address
|
1864
|
+
# The IP address of a database in a Fleet Advisor collector inventory.
|
1865
|
+
# @return [String]
|
1866
|
+
#
|
1867
|
+
# @!attribute [rw] database_engine
|
1868
|
+
# The database engine of a database in a Fleet Advisor collector
|
1869
|
+
# inventory, for example `PostgreSQL`.
|
1870
|
+
# @return [String]
|
1871
|
+
#
|
1872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DatabaseShortInfoResponse AWS API Documentation
|
1873
|
+
#
|
1874
|
+
class DatabaseShortInfoResponse < Struct.new(
|
1875
|
+
:database_id,
|
1876
|
+
:database_name,
|
1877
|
+
:database_ip_address,
|
1878
|
+
:database_engine)
|
1879
|
+
SENSITIVE = []
|
1880
|
+
include Aws::Structure
|
1881
|
+
end
|
1882
|
+
|
1531
1883
|
# @note When making an API call, you may pass DeleteCertificateMessage
|
1532
1884
|
# data as a hash:
|
1533
1885
|
#
|
@@ -1559,6 +1911,25 @@ module Aws::DatabaseMigrationService
|
|
1559
1911
|
include Aws::Structure
|
1560
1912
|
end
|
1561
1913
|
|
1914
|
+
# @note When making an API call, you may pass DeleteCollectorRequest
|
1915
|
+
# data as a hash:
|
1916
|
+
#
|
1917
|
+
# {
|
1918
|
+
# collector_referenced_id: "String", # required
|
1919
|
+
# }
|
1920
|
+
#
|
1921
|
+
# @!attribute [rw] collector_referenced_id
|
1922
|
+
# The reference ID of the Fleet Advisor collector to delete.
|
1923
|
+
# @return [String]
|
1924
|
+
#
|
1925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteCollectorRequest AWS API Documentation
|
1926
|
+
#
|
1927
|
+
class DeleteCollectorRequest < Struct.new(
|
1928
|
+
:collector_referenced_id)
|
1929
|
+
SENSITIVE = []
|
1930
|
+
include Aws::Structure
|
1931
|
+
end
|
1932
|
+
|
1562
1933
|
# @note When making an API call, you may pass DeleteConnectionMessage
|
1563
1934
|
# data as a hash:
|
1564
1935
|
#
|
@@ -1660,6 +2031,37 @@ module Aws::DatabaseMigrationService
|
|
1660
2031
|
include Aws::Structure
|
1661
2032
|
end
|
1662
2033
|
|
2034
|
+
# @note When making an API call, you may pass DeleteFleetAdvisorDatabasesRequest
|
2035
|
+
# data as a hash:
|
2036
|
+
#
|
2037
|
+
# {
|
2038
|
+
# database_ids: ["String"], # required
|
2039
|
+
# }
|
2040
|
+
#
|
2041
|
+
# @!attribute [rw] database_ids
|
2042
|
+
# The IDs of the Fleet Advisor collector databases to delete.
|
2043
|
+
# @return [Array<String>]
|
2044
|
+
#
|
2045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorDatabasesRequest AWS API Documentation
|
2046
|
+
#
|
2047
|
+
class DeleteFleetAdvisorDatabasesRequest < Struct.new(
|
2048
|
+
:database_ids)
|
2049
|
+
SENSITIVE = []
|
2050
|
+
include Aws::Structure
|
2051
|
+
end
|
2052
|
+
|
2053
|
+
# @!attribute [rw] database_ids
|
2054
|
+
# The IDs of the databases that the operation deleted.
|
2055
|
+
# @return [Array<String>]
|
2056
|
+
#
|
2057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteFleetAdvisorDatabasesResponse AWS API Documentation
|
2058
|
+
#
|
2059
|
+
class DeleteFleetAdvisorDatabasesResponse < Struct.new(
|
2060
|
+
:database_ids)
|
2061
|
+
SENSITIVE = []
|
2062
|
+
include Aws::Structure
|
2063
|
+
end
|
2064
|
+
|
1663
2065
|
# @note When making an API call, you may pass DeleteReplicationInstanceMessage
|
1664
2066
|
# data as a hash:
|
1665
2067
|
#
|
@@ -2307,52 +2709,412 @@ module Aws::DatabaseMigrationService
|
|
2307
2709
|
# Constraints: Minimum 20, maximum 100.
|
2308
2710
|
# @return [Integer]
|
2309
2711
|
#
|
2310
|
-
# @!attribute [rw] marker
|
2311
|
-
# An optional pagination token provided by a previous request. If this
|
2312
|
-
# parameter is specified, the response includes only records beyond
|
2313
|
-
# the marker, up to the value specified by `MaxRecords`.
|
2712
|
+
# @!attribute [rw] marker
|
2713
|
+
# An optional pagination token provided by a previous request. If this
|
2714
|
+
# parameter is specified, the response includes only records beyond
|
2715
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2716
|
+
# @return [String]
|
2717
|
+
#
|
2718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventSubscriptionsMessage AWS API Documentation
|
2719
|
+
#
|
2720
|
+
class DescribeEventSubscriptionsMessage < Struct.new(
|
2721
|
+
:subscription_name,
|
2722
|
+
:filters,
|
2723
|
+
:max_records,
|
2724
|
+
:marker)
|
2725
|
+
SENSITIVE = []
|
2726
|
+
include Aws::Structure
|
2727
|
+
end
|
2728
|
+
|
2729
|
+
# @!attribute [rw] marker
|
2730
|
+
# An optional pagination token provided by a previous request. If this
|
2731
|
+
# parameter is specified, the response includes only records beyond
|
2732
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2733
|
+
# @return [String]
|
2734
|
+
#
|
2735
|
+
# @!attribute [rw] event_subscriptions_list
|
2736
|
+
# A list of event subscriptions.
|
2737
|
+
# @return [Array<Types::EventSubscription>]
|
2738
|
+
#
|
2739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventSubscriptionsResponse AWS API Documentation
|
2740
|
+
#
|
2741
|
+
class DescribeEventSubscriptionsResponse < Struct.new(
|
2742
|
+
:marker,
|
2743
|
+
:event_subscriptions_list)
|
2744
|
+
SENSITIVE = []
|
2745
|
+
include Aws::Structure
|
2746
|
+
end
|
2747
|
+
|
2748
|
+
# @note When making an API call, you may pass DescribeEventsMessage
|
2749
|
+
# data as a hash:
|
2750
|
+
#
|
2751
|
+
# {
|
2752
|
+
# source_identifier: "String",
|
2753
|
+
# source_type: "replication-instance", # accepts replication-instance
|
2754
|
+
# start_time: Time.now,
|
2755
|
+
# end_time: Time.now,
|
2756
|
+
# duration: 1,
|
2757
|
+
# event_categories: ["String"],
|
2758
|
+
# filters: [
|
2759
|
+
# {
|
2760
|
+
# name: "String", # required
|
2761
|
+
# values: ["String"], # required
|
2762
|
+
# },
|
2763
|
+
# ],
|
2764
|
+
# max_records: 1,
|
2765
|
+
# marker: "String",
|
2766
|
+
# }
|
2767
|
+
#
|
2768
|
+
# @!attribute [rw] source_identifier
|
2769
|
+
# The identifier of an event source.
|
2770
|
+
# @return [String]
|
2771
|
+
#
|
2772
|
+
# @!attribute [rw] source_type
|
2773
|
+
# The type of DMS resource that generates events.
|
2774
|
+
#
|
2775
|
+
# Valid values: replication-instance \| replication-task
|
2776
|
+
# @return [String]
|
2777
|
+
#
|
2778
|
+
# @!attribute [rw] start_time
|
2779
|
+
# The start time for the events to be listed.
|
2780
|
+
# @return [Time]
|
2781
|
+
#
|
2782
|
+
# @!attribute [rw] end_time
|
2783
|
+
# The end time for the events to be listed.
|
2784
|
+
# @return [Time]
|
2785
|
+
#
|
2786
|
+
# @!attribute [rw] duration
|
2787
|
+
# The duration of the events to be listed.
|
2788
|
+
# @return [Integer]
|
2789
|
+
#
|
2790
|
+
# @!attribute [rw] event_categories
|
2791
|
+
# A list of event categories for the source type that you've chosen.
|
2792
|
+
# @return [Array<String>]
|
2793
|
+
#
|
2794
|
+
# @!attribute [rw] filters
|
2795
|
+
# Filters applied to events. The only valid filter is
|
2796
|
+
# `replication-instance-id`.
|
2797
|
+
# @return [Array<Types::Filter>]
|
2798
|
+
#
|
2799
|
+
# @!attribute [rw] max_records
|
2800
|
+
# The maximum number of records to include in the response. If more
|
2801
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2802
|
+
# token called a marker is included in the response so that the
|
2803
|
+
# remaining results can be retrieved.
|
2804
|
+
#
|
2805
|
+
# Default: 100
|
2806
|
+
#
|
2807
|
+
# Constraints: Minimum 20, maximum 100.
|
2808
|
+
# @return [Integer]
|
2809
|
+
#
|
2810
|
+
# @!attribute [rw] marker
|
2811
|
+
# An optional pagination token provided by a previous request. If this
|
2812
|
+
# parameter is specified, the response includes only records beyond
|
2813
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2814
|
+
# @return [String]
|
2815
|
+
#
|
2816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventsMessage AWS API Documentation
|
2817
|
+
#
|
2818
|
+
class DescribeEventsMessage < Struct.new(
|
2819
|
+
:source_identifier,
|
2820
|
+
:source_type,
|
2821
|
+
:start_time,
|
2822
|
+
:end_time,
|
2823
|
+
:duration,
|
2824
|
+
:event_categories,
|
2825
|
+
:filters,
|
2826
|
+
:max_records,
|
2827
|
+
:marker)
|
2828
|
+
SENSITIVE = []
|
2829
|
+
include Aws::Structure
|
2830
|
+
end
|
2831
|
+
|
2832
|
+
# @!attribute [rw] marker
|
2833
|
+
# An optional pagination token provided by a previous request. If this
|
2834
|
+
# parameter is specified, the response includes only records beyond
|
2835
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2836
|
+
# @return [String]
|
2837
|
+
#
|
2838
|
+
# @!attribute [rw] events
|
2839
|
+
# The events described.
|
2840
|
+
# @return [Array<Types::Event>]
|
2841
|
+
#
|
2842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventsResponse AWS API Documentation
|
2843
|
+
#
|
2844
|
+
class DescribeEventsResponse < Struct.new(
|
2845
|
+
:marker,
|
2846
|
+
:events)
|
2847
|
+
SENSITIVE = []
|
2848
|
+
include Aws::Structure
|
2849
|
+
end
|
2850
|
+
|
2851
|
+
# @note When making an API call, you may pass DescribeFleetAdvisorCollectorsRequest
|
2852
|
+
# data as a hash:
|
2853
|
+
#
|
2854
|
+
# {
|
2855
|
+
# filters: [
|
2856
|
+
# {
|
2857
|
+
# name: "String", # required
|
2858
|
+
# values: ["String"], # required
|
2859
|
+
# },
|
2860
|
+
# ],
|
2861
|
+
# max_records: 1,
|
2862
|
+
# next_token: "String",
|
2863
|
+
# }
|
2864
|
+
#
|
2865
|
+
# @!attribute [rw] filters
|
2866
|
+
# If you specify any of the following filters, the output includes
|
2867
|
+
# information for only those collectors that meet the filter criteria:
|
2868
|
+
#
|
2869
|
+
# * `collector-referenced-id` – The ID of the collector agent, for
|
2870
|
+
# example `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
|
2871
|
+
#
|
2872
|
+
# * `collector-name` – The name of the collector agent.
|
2873
|
+
#
|
2874
|
+
# An example is: `describe-fleet-advisor-collectors --filter
|
2875
|
+
# Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
|
2876
|
+
# @return [Array<Types::Filter>]
|
2877
|
+
#
|
2878
|
+
# @!attribute [rw] max_records
|
2879
|
+
# Sets the maximum number of records returned in the response.
|
2880
|
+
# @return [Integer]
|
2881
|
+
#
|
2882
|
+
# @!attribute [rw] next_token
|
2883
|
+
# If `NextToken` is returned by a previous response, there are more
|
2884
|
+
# results available. The value of `NextToken` is a unique pagination
|
2885
|
+
# token for each page. Make the call again using the returned token to
|
2886
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
2887
|
+
# @return [String]
|
2888
|
+
#
|
2889
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorCollectorsRequest AWS API Documentation
|
2890
|
+
#
|
2891
|
+
class DescribeFleetAdvisorCollectorsRequest < Struct.new(
|
2892
|
+
:filters,
|
2893
|
+
:max_records,
|
2894
|
+
:next_token)
|
2895
|
+
SENSITIVE = []
|
2896
|
+
include Aws::Structure
|
2897
|
+
end
|
2898
|
+
|
2899
|
+
# @!attribute [rw] collectors
|
2900
|
+
# Provides descriptions of the Fleet Advisor collectors, including the
|
2901
|
+
# collectors' name and ID, and the latest inventory data.
|
2902
|
+
# @return [Array<Types::CollectorResponse>]
|
2903
|
+
#
|
2904
|
+
# @!attribute [rw] next_token
|
2905
|
+
# If `NextToken` is returned, there are more results available. The
|
2906
|
+
# value of `NextToken` is a unique pagination token for each page.
|
2907
|
+
# Make the call again using the returned token to retrieve the next
|
2908
|
+
# page. Keep all other arguments unchanged.
|
2909
|
+
# @return [String]
|
2910
|
+
#
|
2911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorCollectorsResponse AWS API Documentation
|
2912
|
+
#
|
2913
|
+
class DescribeFleetAdvisorCollectorsResponse < Struct.new(
|
2914
|
+
:collectors,
|
2915
|
+
:next_token)
|
2916
|
+
SENSITIVE = []
|
2917
|
+
include Aws::Structure
|
2918
|
+
end
|
2919
|
+
|
2920
|
+
# @note When making an API call, you may pass DescribeFleetAdvisorDatabasesRequest
|
2921
|
+
# data as a hash:
|
2922
|
+
#
|
2923
|
+
# {
|
2924
|
+
# filters: [
|
2925
|
+
# {
|
2926
|
+
# name: "String", # required
|
2927
|
+
# values: ["String"], # required
|
2928
|
+
# },
|
2929
|
+
# ],
|
2930
|
+
# max_records: 1,
|
2931
|
+
# next_token: "String",
|
2932
|
+
# }
|
2933
|
+
#
|
2934
|
+
# @!attribute [rw] filters
|
2935
|
+
# If you specify any of the following filters, the output includes
|
2936
|
+
# information for only those databases that meet the filter criteria:
|
2937
|
+
#
|
2938
|
+
# * `database-id` – The ID of the database.
|
2939
|
+
#
|
2940
|
+
# * `database-name` – The name of the database.
|
2941
|
+
#
|
2942
|
+
# * `database-engine` – The name of the database engine.
|
2943
|
+
#
|
2944
|
+
# * `server-ip-address` – The IP address of the database server.
|
2945
|
+
#
|
2946
|
+
# * `database-ip-address` – The IP address of the database.
|
2947
|
+
#
|
2948
|
+
# * `collector-name` – The name of the associated Fleet Advisor
|
2949
|
+
# collector.
|
2950
|
+
#
|
2951
|
+
# An example is: `describe-fleet-advisor-databases --filter
|
2952
|
+
# Name="database-id",Values="45"`
|
2953
|
+
# @return [Array<Types::Filter>]
|
2954
|
+
#
|
2955
|
+
# @!attribute [rw] max_records
|
2956
|
+
# Sets the maximum number of records returned in the response.
|
2957
|
+
# @return [Integer]
|
2958
|
+
#
|
2959
|
+
# @!attribute [rw] next_token
|
2960
|
+
# If `NextToken` is returned by a previous response, there are more
|
2961
|
+
# results available. The value of `NextToken` is a unique pagination
|
2962
|
+
# token for each page. Make the call again using the returned token to
|
2963
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
2964
|
+
# @return [String]
|
2965
|
+
#
|
2966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorDatabasesRequest AWS API Documentation
|
2967
|
+
#
|
2968
|
+
class DescribeFleetAdvisorDatabasesRequest < Struct.new(
|
2969
|
+
:filters,
|
2970
|
+
:max_records,
|
2971
|
+
:next_token)
|
2972
|
+
SENSITIVE = []
|
2973
|
+
include Aws::Structure
|
2974
|
+
end
|
2975
|
+
|
2976
|
+
# @!attribute [rw] databases
|
2977
|
+
# Provides descriptions of the Fleet Advisor collector databases,
|
2978
|
+
# including the database's collector, ID, and name.
|
2979
|
+
# @return [Array<Types::DatabaseResponse>]
|
2980
|
+
#
|
2981
|
+
# @!attribute [rw] next_token
|
2982
|
+
# If `NextToken` is returned, there are more results available. The
|
2983
|
+
# value of `NextToken` is a unique pagination token for each page.
|
2984
|
+
# Make the call again using the returned token to retrieve the next
|
2985
|
+
# page. Keep all other arguments unchanged.
|
2986
|
+
# @return [String]
|
2987
|
+
#
|
2988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorDatabasesResponse AWS API Documentation
|
2989
|
+
#
|
2990
|
+
class DescribeFleetAdvisorDatabasesResponse < Struct.new(
|
2991
|
+
:databases,
|
2992
|
+
:next_token)
|
2993
|
+
SENSITIVE = []
|
2994
|
+
include Aws::Structure
|
2995
|
+
end
|
2996
|
+
|
2997
|
+
# @note When making an API call, you may pass DescribeFleetAdvisorLsaAnalysisRequest
|
2998
|
+
# data as a hash:
|
2999
|
+
#
|
3000
|
+
# {
|
3001
|
+
# max_records: 1,
|
3002
|
+
# next_token: "String",
|
3003
|
+
# }
|
3004
|
+
#
|
3005
|
+
# @!attribute [rw] max_records
|
3006
|
+
# Sets the maximum number of records returned in the response.
|
3007
|
+
# @return [Integer]
|
3008
|
+
#
|
3009
|
+
# @!attribute [rw] next_token
|
3010
|
+
# If `NextToken` is returned by a previous response, there are more
|
3011
|
+
# results available. The value of `NextToken` is a unique pagination
|
3012
|
+
# token for each page. Make the call again using the returned token to
|
3013
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
3014
|
+
# @return [String]
|
3015
|
+
#
|
3016
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorLsaAnalysisRequest AWS API Documentation
|
3017
|
+
#
|
3018
|
+
class DescribeFleetAdvisorLsaAnalysisRequest < Struct.new(
|
3019
|
+
:max_records,
|
3020
|
+
:next_token)
|
3021
|
+
SENSITIVE = []
|
3022
|
+
include Aws::Structure
|
3023
|
+
end
|
3024
|
+
|
3025
|
+
# @!attribute [rw] analysis
|
3026
|
+
# A list of `FleetAdvisorLsaAnalysisResponse` objects.
|
3027
|
+
# @return [Array<Types::FleetAdvisorLsaAnalysisResponse>]
|
3028
|
+
#
|
3029
|
+
# @!attribute [rw] next_token
|
3030
|
+
# If `NextToken` is returned, there are more results available. The
|
3031
|
+
# value of `NextToken` is a unique pagination token for each page.
|
3032
|
+
# Make the call again using the returned token to retrieve the next
|
3033
|
+
# page. Keep all other arguments unchanged.
|
3034
|
+
# @return [String]
|
3035
|
+
#
|
3036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorLsaAnalysisResponse AWS API Documentation
|
3037
|
+
#
|
3038
|
+
class DescribeFleetAdvisorLsaAnalysisResponse < Struct.new(
|
3039
|
+
:analysis,
|
3040
|
+
:next_token)
|
3041
|
+
SENSITIVE = []
|
3042
|
+
include Aws::Structure
|
3043
|
+
end
|
3044
|
+
|
3045
|
+
# @note When making an API call, you may pass DescribeFleetAdvisorSchemaObjectSummaryRequest
|
3046
|
+
# data as a hash:
|
3047
|
+
#
|
3048
|
+
# {
|
3049
|
+
# filters: [
|
3050
|
+
# {
|
3051
|
+
# name: "String", # required
|
3052
|
+
# values: ["String"], # required
|
3053
|
+
# },
|
3054
|
+
# ],
|
3055
|
+
# max_records: 1,
|
3056
|
+
# next_token: "String",
|
3057
|
+
# }
|
3058
|
+
#
|
3059
|
+
# @!attribute [rw] filters
|
3060
|
+
# If you specify any of the following filters, the output includes
|
3061
|
+
# information for only those schema objects that meet the filter
|
3062
|
+
# criteria:
|
3063
|
+
#
|
3064
|
+
# * `schema-id` – The ID of the schema, for example
|
3065
|
+
# `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
|
3066
|
+
#
|
3067
|
+
# ^
|
3068
|
+
#
|
3069
|
+
# Example: `describe-fleet-advisor-schema-object-summary --filter
|
3070
|
+
# Name="schema-id",Values="50"`
|
3071
|
+
# @return [Array<Types::Filter>]
|
3072
|
+
#
|
3073
|
+
# @!attribute [rw] max_records
|
3074
|
+
# Sets the maximum number of records returned in the response.
|
3075
|
+
# @return [Integer]
|
3076
|
+
#
|
3077
|
+
# @!attribute [rw] next_token
|
3078
|
+
# If `NextToken` is returned by a previous response, there are more
|
3079
|
+
# results available. The value of `NextToken` is a unique pagination
|
3080
|
+
# token for each page. Make the call again using the returned token to
|
3081
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
2314
3082
|
# @return [String]
|
2315
3083
|
#
|
2316
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
3084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemaObjectSummaryRequest AWS API Documentation
|
2317
3085
|
#
|
2318
|
-
class
|
2319
|
-
:subscription_name,
|
3086
|
+
class DescribeFleetAdvisorSchemaObjectSummaryRequest < Struct.new(
|
2320
3087
|
:filters,
|
2321
3088
|
:max_records,
|
2322
|
-
:
|
3089
|
+
:next_token)
|
2323
3090
|
SENSITIVE = []
|
2324
3091
|
include Aws::Structure
|
2325
3092
|
end
|
2326
3093
|
|
2327
|
-
# @!attribute [rw]
|
2328
|
-
#
|
2329
|
-
#
|
2330
|
-
# the marker, up to the value specified by `MaxRecords`.
|
2331
|
-
# @return [String]
|
3094
|
+
# @!attribute [rw] fleet_advisor_schema_objects
|
3095
|
+
# A collection of `FleetAdvisorSchemaObjectResponse` objects.
|
3096
|
+
# @return [Array<Types::FleetAdvisorSchemaObjectResponse>]
|
2332
3097
|
#
|
2333
|
-
# @!attribute [rw]
|
2334
|
-
#
|
2335
|
-
#
|
3098
|
+
# @!attribute [rw] next_token
|
3099
|
+
# If `NextToken` is returned, there are more results available. The
|
3100
|
+
# value of `NextToken` is a unique pagination token for each page.
|
3101
|
+
# Make the call again using the returned token to retrieve the next
|
3102
|
+
# page. Keep all other arguments unchanged.
|
3103
|
+
# @return [String]
|
2336
3104
|
#
|
2337
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
3105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemaObjectSummaryResponse AWS API Documentation
|
2338
3106
|
#
|
2339
|
-
class
|
2340
|
-
:
|
2341
|
-
:
|
3107
|
+
class DescribeFleetAdvisorSchemaObjectSummaryResponse < Struct.new(
|
3108
|
+
:fleet_advisor_schema_objects,
|
3109
|
+
:next_token)
|
2342
3110
|
SENSITIVE = []
|
2343
3111
|
include Aws::Structure
|
2344
3112
|
end
|
2345
3113
|
|
2346
|
-
# @note When making an API call, you may pass
|
3114
|
+
# @note When making an API call, you may pass DescribeFleetAdvisorSchemasRequest
|
2347
3115
|
# data as a hash:
|
2348
3116
|
#
|
2349
3117
|
# {
|
2350
|
-
# source_identifier: "String",
|
2351
|
-
# source_type: "replication-instance", # accepts replication-instance
|
2352
|
-
# start_time: Time.now,
|
2353
|
-
# end_time: Time.now,
|
2354
|
-
# duration: 1,
|
2355
|
-
# event_categories: ["String"],
|
2356
3118
|
# filters: [
|
2357
3119
|
# {
|
2358
3120
|
# name: "String", # required
|
@@ -2360,88 +3122,74 @@ module Aws::DatabaseMigrationService
|
|
2360
3122
|
# },
|
2361
3123
|
# ],
|
2362
3124
|
# max_records: 1,
|
2363
|
-
#
|
3125
|
+
# next_token: "String",
|
2364
3126
|
# }
|
2365
3127
|
#
|
2366
|
-
# @!attribute [rw]
|
2367
|
-
#
|
2368
|
-
#
|
3128
|
+
# @!attribute [rw] filters
|
3129
|
+
# If you specify any of the following filters, the output includes
|
3130
|
+
# information for only those schemas that meet the filter criteria:
|
2369
3131
|
#
|
2370
|
-
#
|
2371
|
-
# The type of DMS resource that generates events.
|
3132
|
+
# * `complexity` – The schema's complexity, for example `Simple`.
|
2372
3133
|
#
|
2373
|
-
#
|
2374
|
-
# @return [String]
|
3134
|
+
# * `database-id` – The ID of the schema's database.
|
2375
3135
|
#
|
2376
|
-
#
|
2377
|
-
# The start time for the events to be listed.
|
2378
|
-
# @return [Time]
|
3136
|
+
# * `database-ip-address` – The IP address of the schema's database.
|
2379
3137
|
#
|
2380
|
-
#
|
2381
|
-
# The end time for the events to be listed.
|
2382
|
-
# @return [Time]
|
3138
|
+
# * `database-name` – The name of the schema's database.
|
2383
3139
|
#
|
2384
|
-
#
|
2385
|
-
# The duration of the events to be listed.
|
2386
|
-
# @return [Integer]
|
3140
|
+
# * `database-engine` – The name of the schema database's engine.
|
2387
3141
|
#
|
2388
|
-
#
|
2389
|
-
#
|
2390
|
-
# @return [Array<String>]
|
3142
|
+
# * `original-schema-name` – The name of the schema's database's
|
3143
|
+
# main schema.
|
2391
3144
|
#
|
2392
|
-
#
|
2393
|
-
# Filters applied to events. The only valid filter is
|
2394
|
-
# `replication-instance-id`.
|
2395
|
-
# @return [Array<Types::Filter>]
|
3145
|
+
# * `schema-id` – The ID of the schema, for example `15`.
|
2396
3146
|
#
|
2397
|
-
#
|
2398
|
-
# The maximum number of records to include in the response. If more
|
2399
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
2400
|
-
# token called a marker is included in the response so that the
|
2401
|
-
# remaining results can be retrieved.
|
3147
|
+
# * `schema-name` – The name of the schema.
|
2402
3148
|
#
|
2403
|
-
#
|
3149
|
+
# * `server-ip-address` – The IP address of the schema database's
|
3150
|
+
# server.
|
2404
3151
|
#
|
2405
|
-
#
|
3152
|
+
# An example is: `describe-fleet-advisor-schemas --filter
|
3153
|
+
# Name="schema-id",Values="50"`
|
3154
|
+
# @return [Array<Types::Filter>]
|
3155
|
+
#
|
3156
|
+
# @!attribute [rw] max_records
|
3157
|
+
# Sets the maximum number of records returned in the response.
|
2406
3158
|
# @return [Integer]
|
2407
3159
|
#
|
2408
|
-
# @!attribute [rw]
|
2409
|
-
#
|
2410
|
-
#
|
2411
|
-
# the
|
3160
|
+
# @!attribute [rw] next_token
|
3161
|
+
# If `NextToken` is returned by a previous response, there are more
|
3162
|
+
# results available. The value of `NextToken` is a unique pagination
|
3163
|
+
# token for each page. Make the call again using the returned token to
|
3164
|
+
# retrieve the next page. Keep all other arguments unchanged.
|
2412
3165
|
# @return [String]
|
2413
3166
|
#
|
2414
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
3167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemasRequest AWS API Documentation
|
2415
3168
|
#
|
2416
|
-
class
|
2417
|
-
:source_identifier,
|
2418
|
-
:source_type,
|
2419
|
-
:start_time,
|
2420
|
-
:end_time,
|
2421
|
-
:duration,
|
2422
|
-
:event_categories,
|
3169
|
+
class DescribeFleetAdvisorSchemasRequest < Struct.new(
|
2423
3170
|
:filters,
|
2424
3171
|
:max_records,
|
2425
|
-
:
|
3172
|
+
:next_token)
|
2426
3173
|
SENSITIVE = []
|
2427
3174
|
include Aws::Structure
|
2428
3175
|
end
|
2429
3176
|
|
2430
|
-
# @!attribute [rw]
|
2431
|
-
#
|
2432
|
-
#
|
2433
|
-
# the marker, up to the value specified by `MaxRecords`.
|
2434
|
-
# @return [String]
|
3177
|
+
# @!attribute [rw] fleet_advisor_schemas
|
3178
|
+
# A collection of `SchemaResponse` objects.
|
3179
|
+
# @return [Array<Types::SchemaResponse>]
|
2435
3180
|
#
|
2436
|
-
# @!attribute [rw]
|
2437
|
-
#
|
2438
|
-
#
|
3181
|
+
# @!attribute [rw] next_token
|
3182
|
+
# If `NextToken` is returned, there are more results available. The
|
3183
|
+
# value of `NextToken` is a unique pagination token for each page.
|
3184
|
+
# Make the call again using the returned token to retrieve the next
|
3185
|
+
# page. Keep all other arguments unchanged.
|
3186
|
+
# @return [String]
|
2439
3187
|
#
|
2440
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
3188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemasResponse AWS API Documentation
|
2441
3189
|
#
|
2442
|
-
class
|
2443
|
-
:
|
2444
|
-
:
|
3190
|
+
class DescribeFleetAdvisorSchemasResponse < Struct.new(
|
3191
|
+
:fleet_advisor_schemas,
|
3192
|
+
:next_token)
|
2445
3193
|
SENSITIVE = []
|
2446
3194
|
include Aws::Structure
|
2447
3195
|
end
|
@@ -3395,6 +4143,7 @@ module Aws::DatabaseMigrationService
|
|
3395
4143
|
# endpoint_uri: "String", # required
|
3396
4144
|
# full_load_error_percentage: 1,
|
3397
4145
|
# error_retry_duration: 1,
|
4146
|
+
# use_new_mapping_type: false,
|
3398
4147
|
# }
|
3399
4148
|
#
|
3400
4149
|
# @!attribute [rw] service_access_role_arn
|
@@ -3423,13 +4172,21 @@ module Aws::DatabaseMigrationService
|
|
3423
4172
|
# requests to the OpenSearch cluster.
|
3424
4173
|
# @return [Integer]
|
3425
4174
|
#
|
4175
|
+
# @!attribute [rw] use_new_mapping_type
|
4176
|
+
# Set this option to `true` for DMS to migrate documentation using the
|
4177
|
+
# documentation type `_doc`. OpenSearch and an Elasticsearch cluster
|
4178
|
+
# only support the \_doc documentation type in versions 7. x and
|
4179
|
+
# later. The default value is `false`.
|
4180
|
+
# @return [Boolean]
|
4181
|
+
#
|
3426
4182
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ElasticsearchSettings AWS API Documentation
|
3427
4183
|
#
|
3428
4184
|
class ElasticsearchSettings < Struct.new(
|
3429
4185
|
:service_access_role_arn,
|
3430
4186
|
:endpoint_uri,
|
3431
4187
|
:full_load_error_percentage,
|
3432
|
-
:error_retry_duration
|
4188
|
+
:error_retry_duration,
|
4189
|
+
:use_new_mapping_type)
|
3433
4190
|
SENSITIVE = []
|
3434
4191
|
include Aws::Structure
|
3435
4192
|
end
|
@@ -3888,6 +4645,72 @@ module Aws::DatabaseMigrationService
|
|
3888
4645
|
include Aws::Structure
|
3889
4646
|
end
|
3890
4647
|
|
4648
|
+
# Describes a large-scale assessment (LSA) analysis run by a Fleet
|
4649
|
+
# Advisor collector.
|
4650
|
+
#
|
4651
|
+
# @!attribute [rw] lsa_analysis_id
|
4652
|
+
# The ID of an LSA analysis run by a Fleet Advisor collector.
|
4653
|
+
# @return [String]
|
4654
|
+
#
|
4655
|
+
# @!attribute [rw] status
|
4656
|
+
# The status of an LSA analysis run by a Fleet Advisor collector.
|
4657
|
+
# @return [String]
|
4658
|
+
#
|
4659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/FleetAdvisorLsaAnalysisResponse AWS API Documentation
|
4660
|
+
#
|
4661
|
+
class FleetAdvisorLsaAnalysisResponse < Struct.new(
|
4662
|
+
:lsa_analysis_id,
|
4663
|
+
:status)
|
4664
|
+
SENSITIVE = []
|
4665
|
+
include Aws::Structure
|
4666
|
+
end
|
4667
|
+
|
4668
|
+
# Describes a schema object in a Fleet Advisor collector inventory.
|
4669
|
+
#
|
4670
|
+
# @!attribute [rw] schema_id
|
4671
|
+
# The ID of a schema object in a Fleet Advisor collector inventory.
|
4672
|
+
# @return [String]
|
4673
|
+
#
|
4674
|
+
# @!attribute [rw] object_type
|
4675
|
+
# The type of the schema object, as reported by the database engine.
|
4676
|
+
# Examples include the following:
|
4677
|
+
#
|
4678
|
+
# * `function`
|
4679
|
+
#
|
4680
|
+
# * `trigger`
|
4681
|
+
#
|
4682
|
+
# * `SYSTEM_TABLE`
|
4683
|
+
#
|
4684
|
+
# * `QUEUE`
|
4685
|
+
# @return [String]
|
4686
|
+
#
|
4687
|
+
# @!attribute [rw] number_of_objects
|
4688
|
+
# The number of objects in a schema object in a Fleet Advisor
|
4689
|
+
# collector inventory.
|
4690
|
+
# @return [Integer]
|
4691
|
+
#
|
4692
|
+
# @!attribute [rw] code_line_count
|
4693
|
+
# The number of lines of code in a schema object in a Fleet Advisor
|
4694
|
+
# collector inventory.
|
4695
|
+
# @return [Integer]
|
4696
|
+
#
|
4697
|
+
# @!attribute [rw] code_size
|
4698
|
+
# The size level of the code in a schema object in a Fleet Advisor
|
4699
|
+
# collector inventory.
|
4700
|
+
# @return [Integer]
|
4701
|
+
#
|
4702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/FleetAdvisorSchemaObjectResponse AWS API Documentation
|
4703
|
+
#
|
4704
|
+
class FleetAdvisorSchemaObjectResponse < Struct.new(
|
4705
|
+
:schema_id,
|
4706
|
+
:object_type,
|
4707
|
+
:number_of_objects,
|
4708
|
+
:code_line_count,
|
4709
|
+
:code_size)
|
4710
|
+
SENSITIVE = []
|
4711
|
+
include Aws::Structure
|
4712
|
+
end
|
4713
|
+
|
3891
4714
|
# Settings in JSON format for the source GCP MySQL endpoint.
|
3892
4715
|
#
|
3893
4716
|
# @note When making an API call, you may pass GcpMySQLSettings
|
@@ -4236,6 +5059,19 @@ module Aws::DatabaseMigrationService
|
|
4236
5059
|
include Aws::Structure
|
4237
5060
|
end
|
4238
5061
|
|
5062
|
+
# The action or operation requested isn't valid.
|
5063
|
+
#
|
5064
|
+
# @!attribute [rw] message
|
5065
|
+
# @return [String]
|
5066
|
+
#
|
5067
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/InvalidOperationFault AWS API Documentation
|
5068
|
+
#
|
5069
|
+
class InvalidOperationFault < Struct.new(
|
5070
|
+
:message)
|
5071
|
+
SENSITIVE = []
|
5072
|
+
include Aws::Structure
|
5073
|
+
end
|
5074
|
+
|
4239
5075
|
# The resource is in a state that prevents it from being used for
|
4240
5076
|
# database migration.
|
4241
5077
|
#
|
@@ -4263,6 +5099,25 @@ module Aws::DatabaseMigrationService
|
|
4263
5099
|
include Aws::Structure
|
4264
5100
|
end
|
4265
5101
|
|
5102
|
+
# Describes a Fleet Advisor collector inventory.
|
5103
|
+
#
|
5104
|
+
# @!attribute [rw] number_of_databases
|
5105
|
+
# The number of databases in the Fleet Advisor collector inventory.
|
5106
|
+
# @return [Integer]
|
5107
|
+
#
|
5108
|
+
# @!attribute [rw] number_of_schemas
|
5109
|
+
# The number of schemas in the Fleet Advisor collector inventory.
|
5110
|
+
# @return [Integer]
|
5111
|
+
#
|
5112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/InventoryData AWS API Documentation
|
5113
|
+
#
|
5114
|
+
class InventoryData < Struct.new(
|
5115
|
+
:number_of_databases,
|
5116
|
+
:number_of_schemas)
|
5117
|
+
SENSITIVE = []
|
5118
|
+
include Aws::Structure
|
5119
|
+
end
|
5120
|
+
|
4266
5121
|
# The ciphertext references a key that doesn't exist or that the DMS
|
4267
5122
|
# account doesn't have access to.
|
4268
5123
|
#
|
@@ -4697,6 +5552,7 @@ module Aws::DatabaseMigrationService
|
|
4697
5552
|
# use_third_party_backup_device: false,
|
4698
5553
|
# secrets_manager_access_role_arn: "String",
|
4699
5554
|
# secrets_manager_secret_id: "String",
|
5555
|
+
# trim_space_in_char: false,
|
4700
5556
|
# }
|
4701
5557
|
#
|
4702
5558
|
# @!attribute [rw] port
|
@@ -4812,6 +5668,12 @@ module Aws::DatabaseMigrationService
|
|
4812
5668
|
# connection details.
|
4813
5669
|
# @return [String]
|
4814
5670
|
#
|
5671
|
+
# @!attribute [rw] trim_space_in_char
|
5672
|
+
# Use the `TrimSpaceInChar` source endpoint setting to trim data on
|
5673
|
+
# CHAR and NCHAR data types during migration. The default value is
|
5674
|
+
# `true`.
|
5675
|
+
# @return [Boolean]
|
5676
|
+
#
|
4815
5677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
|
4816
5678
|
#
|
4817
5679
|
class MicrosoftSQLServerSettings < Struct.new(
|
@@ -4828,7 +5690,8 @@ module Aws::DatabaseMigrationService
|
|
4828
5690
|
:use_bcp_full_load,
|
4829
5691
|
:use_third_party_backup_device,
|
4830
5692
|
:secrets_manager_access_role_arn,
|
4831
|
-
:secrets_manager_secret_id
|
5693
|
+
:secrets_manager_secret_id,
|
5694
|
+
:trim_space_in_char)
|
4832
5695
|
SENSITIVE = [:password]
|
4833
5696
|
include Aws::Structure
|
4834
5697
|
end
|
@@ -4893,6 +5756,8 @@ module Aws::DatabaseMigrationService
|
|
4893
5756
|
# max_file_size: 1,
|
4894
5757
|
# rfc_4180: false,
|
4895
5758
|
# date_partition_timezone: "String",
|
5759
|
+
# add_trailing_padding_character: false,
|
5760
|
+
# expected_bucket_owner: "String",
|
4896
5761
|
# },
|
4897
5762
|
# dms_transfer_settings: {
|
4898
5763
|
# service_access_role_arn: "String",
|
@@ -4951,6 +5816,7 @@ module Aws::DatabaseMigrationService
|
|
4951
5816
|
# endpoint_uri: "String", # required
|
4952
5817
|
# full_load_error_percentage: 1,
|
4953
5818
|
# error_retry_duration: 1,
|
5819
|
+
# use_new_mapping_type: false,
|
4954
5820
|
# },
|
4955
5821
|
# neptune_settings: {
|
4956
5822
|
# service_access_role_arn: "String",
|
@@ -5012,6 +5878,7 @@ module Aws::DatabaseMigrationService
|
|
5012
5878
|
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
5013
5879
|
# secrets_manager_access_role_arn: "String",
|
5014
5880
|
# secrets_manager_secret_id: "String",
|
5881
|
+
# trim_space_in_char: false,
|
5015
5882
|
# },
|
5016
5883
|
# my_sql_settings: {
|
5017
5884
|
# after_connect_script: "String",
|
@@ -5070,6 +5937,7 @@ module Aws::DatabaseMigrationService
|
|
5070
5937
|
# secrets_manager_secret_id: "String",
|
5071
5938
|
# secrets_manager_oracle_asm_access_role_arn: "String",
|
5072
5939
|
# secrets_manager_oracle_asm_secret_id: "String",
|
5940
|
+
# trim_space_in_char: false,
|
5073
5941
|
# },
|
5074
5942
|
# sybase_settings: {
|
5075
5943
|
# database_name: "String",
|
@@ -5095,6 +5963,7 @@ module Aws::DatabaseMigrationService
|
|
5095
5963
|
# use_third_party_backup_device: false,
|
5096
5964
|
# secrets_manager_access_role_arn: "String",
|
5097
5965
|
# secrets_manager_secret_id: "String",
|
5966
|
+
# trim_space_in_char: false,
|
5098
5967
|
# },
|
5099
5968
|
# ibm_db_2_settings: {
|
5100
5969
|
# database_name: "String",
|
@@ -6128,7 +6997,9 @@ module Aws::DatabaseMigrationService
|
|
6128
6997
|
#
|
6129
6998
|
# @!attribute [rw] target_db_type
|
6130
6999
|
# Specifies where to migrate source tables on the target, either to a
|
6131
|
-
# single database or multiple databases.
|
7000
|
+
# single database or multiple databases. If you specify
|
7001
|
+
# `SPECIFIC_DATABASE`, specify the database name using the
|
7002
|
+
# `DatabaseName` parameter of the `Endpoint` object.
|
6132
7003
|
#
|
6133
7004
|
# Example: `targetDbType=MULTIPLE_DATABASES`
|
6134
7005
|
# @return [String]
|
@@ -6353,6 +7224,7 @@ module Aws::DatabaseMigrationService
|
|
6353
7224
|
# secrets_manager_secret_id: "String",
|
6354
7225
|
# secrets_manager_oracle_asm_access_role_arn: "String",
|
6355
7226
|
# secrets_manager_oracle_asm_secret_id: "String",
|
7227
|
+
# trim_space_in_char: false,
|
6356
7228
|
# }
|
6357
7229
|
#
|
6358
7230
|
# @!attribute [rw] add_supplemental_logging
|
@@ -6749,6 +7621,12 @@ module Aws::DatabaseMigrationService
|
|
6749
7621
|
# connection details for the Oracle endpoint.
|
6750
7622
|
# @return [String]
|
6751
7623
|
#
|
7624
|
+
# @!attribute [rw] trim_space_in_char
|
7625
|
+
# Use the `TrimSpaceInChar` source endpoint setting to trim data on
|
7626
|
+
# CHAR and NCHAR data types during migration. The default value is
|
7627
|
+
# `true`.
|
7628
|
+
# @return [Boolean]
|
7629
|
+
#
|
6752
7630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
|
6753
7631
|
#
|
6754
7632
|
class OracleSettings < Struct.new(
|
@@ -6791,7 +7669,8 @@ module Aws::DatabaseMigrationService
|
|
6791
7669
|
:secrets_manager_access_role_arn,
|
6792
7670
|
:secrets_manager_secret_id,
|
6793
7671
|
:secrets_manager_oracle_asm_access_role_arn,
|
6794
|
-
:secrets_manager_oracle_asm_secret_id
|
7672
|
+
:secrets_manager_oracle_asm_secret_id,
|
7673
|
+
:trim_space_in_char)
|
6795
7674
|
SENSITIVE = [:asm_password, :password, :security_db_encryption]
|
6796
7675
|
include Aws::Structure
|
6797
7676
|
end
|
@@ -6953,6 +7832,7 @@ module Aws::DatabaseMigrationService
|
|
6953
7832
|
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
6954
7833
|
# secrets_manager_access_role_arn: "String",
|
6955
7834
|
# secrets_manager_secret_id: "String",
|
7835
|
+
# trim_space_in_char: false,
|
6956
7836
|
# }
|
6957
7837
|
#
|
6958
7838
|
# @!attribute [rw] after_connect_script
|
@@ -7098,6 +7978,12 @@ module Aws::DatabaseMigrationService
|
|
7098
7978
|
# connection details.
|
7099
7979
|
# @return [String]
|
7100
7980
|
#
|
7981
|
+
# @!attribute [rw] trim_space_in_char
|
7982
|
+
# Use the `TrimSpaceInChar` source endpoint setting to trim data on
|
7983
|
+
# CHAR and NCHAR data types during migration. The default value is
|
7984
|
+
# `true`.
|
7985
|
+
# @return [Boolean]
|
7986
|
+
#
|
7101
7987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
|
7102
7988
|
#
|
7103
7989
|
class PostgreSQLSettings < Struct.new(
|
@@ -7118,7 +8004,8 @@ module Aws::DatabaseMigrationService
|
|
7118
8004
|
:slot_name,
|
7119
8005
|
:plugin_name,
|
7120
8006
|
:secrets_manager_access_role_arn,
|
7121
|
-
:secrets_manager_secret_id
|
8007
|
+
:secrets_manager_secret_id,
|
8008
|
+
:trim_space_in_char)
|
7122
8009
|
SENSITIVE = [:password]
|
7123
8010
|
include Aws::Structure
|
7124
8011
|
end
|
@@ -8165,18 +9052,38 @@ module Aws::DatabaseMigrationService
|
|
8165
9052
|
# The reason the replication task was stopped. This response parameter
|
8166
9053
|
# can return one of the following values:
|
8167
9054
|
#
|
8168
|
-
# * `"
|
8169
|
-
#
|
9055
|
+
# * `"Stop Reason NORMAL"`
|
9056
|
+
#
|
9057
|
+
# * `"Stop Reason RECOVERABLE_ERROR"`
|
9058
|
+
#
|
9059
|
+
# * `"Stop Reason FATAL_ERROR"`
|
9060
|
+
#
|
9061
|
+
# * `"Stop Reason FULL_LOAD_ONLY_FINISHED"`
|
9062
|
+
#
|
9063
|
+
# * `"Stop Reason STOPPED_AFTER_FULL_LOAD"` – Full load completed,
|
9064
|
+
# with cached changes not applied
|
9065
|
+
#
|
9066
|
+
# * `"Stop Reason STOPPED_AFTER_CACHED_EVENTS"` – Full load completed,
|
9067
|
+
# with cached changes applied
|
8170
9068
|
#
|
8171
|
-
# * `"
|
8172
|
-
# load completed.
|
9069
|
+
# * `"Stop Reason EXPRESS_LICENSE_LIMITS_REACHED"`
|
8173
9070
|
#
|
8174
|
-
# * `"
|
8175
|
-
#
|
8176
|
-
# the CDC migration.
|
9071
|
+
# * `"Stop Reason STOPPED_AFTER_DDL_APPLY"` – User-defined stop task
|
9072
|
+
# after DDL applied
|
8177
9073
|
#
|
8178
|
-
# * `"
|
8179
|
-
#
|
9074
|
+
# * `"Stop Reason STOPPED_DUE_TO_LOW_MEMORY"`
|
9075
|
+
#
|
9076
|
+
# * `"Stop Reason STOPPED_DUE_TO_LOW_DISK"`
|
9077
|
+
#
|
9078
|
+
# * `"Stop Reason STOPPED_AT_SERVER_TIME"` – User-defined server time
|
9079
|
+
# for stopping task
|
9080
|
+
#
|
9081
|
+
# * `"Stop Reason STOPPED_AT_COMMIT_TIME"` – User-defined commit time
|
9082
|
+
# for stopping task
|
9083
|
+
#
|
9084
|
+
# * `"Stop Reason RECONFIGURATION_RESTART"`
|
9085
|
+
#
|
9086
|
+
# * `"Stop Reason RECYCLE_TASK"`
|
8180
9087
|
# @return [String]
|
8181
9088
|
#
|
8182
9089
|
# @!attribute [rw] replication_task_creation_date
|
@@ -8657,6 +9564,23 @@ module Aws::DatabaseMigrationService
|
|
8657
9564
|
include Aws::Structure
|
8658
9565
|
end
|
8659
9566
|
|
9567
|
+
# @!attribute [rw] lsa_analysis_id
|
9568
|
+
# The ID of the LSA analysis run.
|
9569
|
+
# @return [String]
|
9570
|
+
#
|
9571
|
+
# @!attribute [rw] status
|
9572
|
+
# The status of the LSA analysis, for example `COMPLETED`.
|
9573
|
+
# @return [String]
|
9574
|
+
#
|
9575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RunFleetAdvisorLsaAnalysisResponse AWS API Documentation
|
9576
|
+
#
|
9577
|
+
class RunFleetAdvisorLsaAnalysisResponse < Struct.new(
|
9578
|
+
:lsa_analysis_id,
|
9579
|
+
:status)
|
9580
|
+
SENSITIVE = []
|
9581
|
+
include Aws::Structure
|
9582
|
+
end
|
9583
|
+
|
8660
9584
|
# Insufficient privileges are preventing access to an Amazon S3 object.
|
8661
9585
|
#
|
8662
9586
|
# @!attribute [rw] message
|
@@ -8728,6 +9652,8 @@ module Aws::DatabaseMigrationService
|
|
8728
9652
|
# max_file_size: 1,
|
8729
9653
|
# rfc_4180: false,
|
8730
9654
|
# date_partition_timezone: "String",
|
9655
|
+
# add_trailing_padding_character: false,
|
9656
|
+
# expected_bucket_owner: "String",
|
8731
9657
|
# }
|
8732
9658
|
#
|
8733
9659
|
# @!attribute [rw] service_access_role_arn
|
@@ -9281,6 +10207,23 @@ module Aws::DatabaseMigrationService
|
|
9281
10207
|
# "dms-nattarat-test"\}'`
|
9282
10208
|
# @return [String]
|
9283
10209
|
#
|
10210
|
+
# @!attribute [rw] add_trailing_padding_character
|
10211
|
+
# Use the S3 target endpoint setting `AddTrailingPaddingCharacter` to
|
10212
|
+
# add padding on string data. The default value is `false`.
|
10213
|
+
# @return [Boolean]
|
10214
|
+
#
|
10215
|
+
# @!attribute [rw] expected_bucket_owner
|
10216
|
+
# To specify a bucket owner and prevent sniping, you can use the
|
10217
|
+
# `ExpectedBucketOwner` endpoint setting.
|
10218
|
+
#
|
10219
|
+
# Example: `--s3-settings='\{"ExpectedBucketOwner":
|
10220
|
+
# "AWS_Account_ID"\}'`
|
10221
|
+
#
|
10222
|
+
# When you make a request to test a connection or perform a migration,
|
10223
|
+
# S3 checks the account ID of the bucket owner against the specified
|
10224
|
+
# parameter.
|
10225
|
+
# @return [String]
|
10226
|
+
#
|
9284
10227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3Settings AWS API Documentation
|
9285
10228
|
#
|
9286
10229
|
class S3Settings < Struct.new(
|
@@ -9321,7 +10264,9 @@ module Aws::DatabaseMigrationService
|
|
9321
10264
|
:ignore_header_rows,
|
9322
10265
|
:max_file_size,
|
9323
10266
|
:rfc_4180,
|
9324
|
-
:date_partition_timezone
|
10267
|
+
:date_partition_timezone,
|
10268
|
+
:add_trailing_padding_character,
|
10269
|
+
:expected_bucket_owner)
|
9325
10270
|
SENSITIVE = []
|
9326
10271
|
include Aws::Structure
|
9327
10272
|
end
|
@@ -9352,6 +10297,124 @@ module Aws::DatabaseMigrationService
|
|
9352
10297
|
include Aws::Structure
|
9353
10298
|
end
|
9354
10299
|
|
10300
|
+
# Describes a schema in a Fleet Advisor collector inventory.
|
10301
|
+
#
|
10302
|
+
# @!attribute [rw] code_line_count
|
10303
|
+
# The number of lines of code in a schema in a Fleet Advisor collector
|
10304
|
+
# inventory.
|
10305
|
+
# @return [Integer]
|
10306
|
+
#
|
10307
|
+
# @!attribute [rw] code_size
|
10308
|
+
# The size level of the code in a schema in a Fleet Advisor collector
|
10309
|
+
# inventory.
|
10310
|
+
# @return [Integer]
|
10311
|
+
#
|
10312
|
+
# @!attribute [rw] complexity
|
10313
|
+
# The complexity level of the code in a schema in a Fleet Advisor
|
10314
|
+
# collector inventory.
|
10315
|
+
# @return [String]
|
10316
|
+
#
|
10317
|
+
# @!attribute [rw] server
|
10318
|
+
# The database server for a schema in a Fleet Advisor collector
|
10319
|
+
# inventory.
|
10320
|
+
# @return [Types::ServerShortInfoResponse]
|
10321
|
+
#
|
10322
|
+
# @!attribute [rw] database_instance
|
10323
|
+
# The database for a schema in a Fleet Advisor collector inventory.
|
10324
|
+
# @return [Types::DatabaseShortInfoResponse]
|
10325
|
+
#
|
10326
|
+
# @!attribute [rw] schema_id
|
10327
|
+
# The ID of a schema in a Fleet Advisor collector inventory.
|
10328
|
+
# @return [String]
|
10329
|
+
#
|
10330
|
+
# @!attribute [rw] schema_name
|
10331
|
+
# The name of a schema in a Fleet Advisor collector inventory.
|
10332
|
+
# @return [String]
|
10333
|
+
#
|
10334
|
+
# @!attribute [rw] original_schema
|
10335
|
+
# Describes a schema in a Fleet Advisor collector inventory.
|
10336
|
+
# @return [Types::SchemaShortInfoResponse]
|
10337
|
+
#
|
10338
|
+
# @!attribute [rw] similarity
|
10339
|
+
# The similarity value for a schema in a Fleet Advisor collector
|
10340
|
+
# inventory. A higher similarity value indicates that a schema is
|
10341
|
+
# likely to be a duplicate.
|
10342
|
+
# @return [Float]
|
10343
|
+
#
|
10344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SchemaResponse AWS API Documentation
|
10345
|
+
#
|
10346
|
+
class SchemaResponse < Struct.new(
|
10347
|
+
:code_line_count,
|
10348
|
+
:code_size,
|
10349
|
+
:complexity,
|
10350
|
+
:server,
|
10351
|
+
:database_instance,
|
10352
|
+
:schema_id,
|
10353
|
+
:schema_name,
|
10354
|
+
:original_schema,
|
10355
|
+
:similarity)
|
10356
|
+
SENSITIVE = []
|
10357
|
+
include Aws::Structure
|
10358
|
+
end
|
10359
|
+
|
10360
|
+
# Describes a schema in a Fleet Advisor collector inventory.
|
10361
|
+
#
|
10362
|
+
# @!attribute [rw] schema_id
|
10363
|
+
# The ID of a schema in a Fleet Advisor collector inventory.
|
10364
|
+
# @return [String]
|
10365
|
+
#
|
10366
|
+
# @!attribute [rw] schema_name
|
10367
|
+
# The name of a schema in a Fleet Advisor collector inventory.
|
10368
|
+
# @return [String]
|
10369
|
+
#
|
10370
|
+
# @!attribute [rw] database_id
|
10371
|
+
# The ID of a database in a Fleet Advisor collector inventory.
|
10372
|
+
# @return [String]
|
10373
|
+
#
|
10374
|
+
# @!attribute [rw] database_name
|
10375
|
+
# The name of a database in a Fleet Advisor collector inventory.
|
10376
|
+
# @return [String]
|
10377
|
+
#
|
10378
|
+
# @!attribute [rw] database_ip_address
|
10379
|
+
# The IP address of a database in a Fleet Advisor collector inventory.
|
10380
|
+
# @return [String]
|
10381
|
+
#
|
10382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SchemaShortInfoResponse AWS API Documentation
|
10383
|
+
#
|
10384
|
+
class SchemaShortInfoResponse < Struct.new(
|
10385
|
+
:schema_id,
|
10386
|
+
:schema_name,
|
10387
|
+
:database_id,
|
10388
|
+
:database_name,
|
10389
|
+
:database_ip_address)
|
10390
|
+
SENSITIVE = []
|
10391
|
+
include Aws::Structure
|
10392
|
+
end
|
10393
|
+
|
10394
|
+
# Describes a server in a Fleet Advisor collector inventory.
|
10395
|
+
#
|
10396
|
+
# @!attribute [rw] server_id
|
10397
|
+
# The ID of a server in a Fleet Advisor collector inventory.
|
10398
|
+
# @return [String]
|
10399
|
+
#
|
10400
|
+
# @!attribute [rw] ip_address
|
10401
|
+
# The IP address of a server in a Fleet Advisor collector inventory.
|
10402
|
+
# @return [String]
|
10403
|
+
#
|
10404
|
+
# @!attribute [rw] server_name
|
10405
|
+
# The name address of a server in a Fleet Advisor collector inventory.
|
10406
|
+
# @return [String]
|
10407
|
+
#
|
10408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ServerShortInfoResponse AWS API Documentation
|
10409
|
+
#
|
10410
|
+
class ServerShortInfoResponse < Struct.new(
|
10411
|
+
:server_id,
|
10412
|
+
:ip_address,
|
10413
|
+
:server_name)
|
10414
|
+
SENSITIVE = []
|
10415
|
+
include Aws::Structure
|
10416
|
+
end
|
10417
|
+
|
9355
10418
|
# @note When making an API call, you may pass StartReplicationTaskAssessmentMessage
|
9356
10419
|
# data as a hash:
|
9357
10420
|
#
|
@@ -10079,6 +11142,42 @@ module Aws::DatabaseMigrationService
|
|
10079
11142
|
include Aws::Structure
|
10080
11143
|
end
|
10081
11144
|
|
11145
|
+
# @note When making an API call, you may pass UpdateSubscriptionsToEventBridgeMessage
|
11146
|
+
# data as a hash:
|
11147
|
+
#
|
11148
|
+
# {
|
11149
|
+
# force_move: false,
|
11150
|
+
# }
|
11151
|
+
#
|
11152
|
+
# @!attribute [rw] force_move
|
11153
|
+
# When set to true, this operation migrates DMS subscriptions for
|
11154
|
+
# Amazon SNS notifications no matter what your replication instance
|
11155
|
+
# version is. If not set or set to false, this operation runs only
|
11156
|
+
# when all your replication instances are from DMS version 3.4.6 or
|
11157
|
+
# higher.
|
11158
|
+
# @return [Boolean]
|
11159
|
+
#
|
11160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/UpdateSubscriptionsToEventBridgeMessage AWS API Documentation
|
11161
|
+
#
|
11162
|
+
class UpdateSubscriptionsToEventBridgeMessage < Struct.new(
|
11163
|
+
:force_move)
|
11164
|
+
SENSITIVE = []
|
11165
|
+
include Aws::Structure
|
11166
|
+
end
|
11167
|
+
|
11168
|
+
# @!attribute [rw] result
|
11169
|
+
# A string that indicates how many event subscriptions were migrated
|
11170
|
+
# and how many remain to be migrated.
|
11171
|
+
# @return [String]
|
11172
|
+
#
|
11173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/UpdateSubscriptionsToEventBridgeResponse AWS API Documentation
|
11174
|
+
#
|
11175
|
+
class UpdateSubscriptionsToEventBridgeResponse < Struct.new(
|
11176
|
+
:result)
|
11177
|
+
SENSITIVE = []
|
11178
|
+
include Aws::Structure
|
11179
|
+
end
|
11180
|
+
|
10082
11181
|
# An upgrade dependency is preventing the database migration.
|
10083
11182
|
#
|
10084
11183
|
# @!attribute [rw] message
|