aws-sdk-databasemigrationservice 1.38.0 → 1.39.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/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +868 -14
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +292 -2
- data/lib/aws-sdk-databasemigrationservice/errors.rb +48 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +1463 -109
- metadata +2 -2
@@ -34,6 +34,7 @@ module Aws::DatabaseMigrationService
|
|
34
34
|
# * {InvalidSubnet}
|
35
35
|
# * {KMSAccessDeniedFault}
|
36
36
|
# * {KMSDisabledFault}
|
37
|
+
# * {KMSFault}
|
37
38
|
# * {KMSInvalidStateFault}
|
38
39
|
# * {KMSKeyNotAccessibleFault}
|
39
40
|
# * {KMSNotFoundFault}
|
@@ -42,6 +43,8 @@ module Aws::DatabaseMigrationService
|
|
42
43
|
# * {ResourceAlreadyExistsFault}
|
43
44
|
# * {ResourceNotFoundFault}
|
44
45
|
# * {ResourceQuotaExceededFault}
|
46
|
+
# * {S3AccessDeniedFault}
|
47
|
+
# * {S3ResourceNotFoundFault}
|
45
48
|
# * {SNSInvalidTopicFault}
|
46
49
|
# * {SNSNoAuthorizationFault}
|
47
50
|
# * {StorageQuotaExceededFault}
|
@@ -159,6 +162,21 @@ module Aws::DatabaseMigrationService
|
|
159
162
|
end
|
160
163
|
end
|
161
164
|
|
165
|
+
class KMSFault < ServiceError
|
166
|
+
|
167
|
+
# @param [Seahorse::Client::RequestContext] context
|
168
|
+
# @param [String] message
|
169
|
+
# @param [Aws::DatabaseMigrationService::Types::KMSFault] data
|
170
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
171
|
+
super(context, message, data)
|
172
|
+
end
|
173
|
+
|
174
|
+
# @return [String]
|
175
|
+
def message
|
176
|
+
@message || @data[:message]
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
162
180
|
class KMSInvalidStateFault < ServiceError
|
163
181
|
|
164
182
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -284,6 +302,36 @@ module Aws::DatabaseMigrationService
|
|
284
302
|
end
|
285
303
|
end
|
286
304
|
|
305
|
+
class S3AccessDeniedFault < ServiceError
|
306
|
+
|
307
|
+
# @param [Seahorse::Client::RequestContext] context
|
308
|
+
# @param [String] message
|
309
|
+
# @param [Aws::DatabaseMigrationService::Types::S3AccessDeniedFault] data
|
310
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
311
|
+
super(context, message, data)
|
312
|
+
end
|
313
|
+
|
314
|
+
# @return [String]
|
315
|
+
def message
|
316
|
+
@message || @data[:message]
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
class S3ResourceNotFoundFault < ServiceError
|
321
|
+
|
322
|
+
# @param [Seahorse::Client::RequestContext] context
|
323
|
+
# @param [String] message
|
324
|
+
# @param [Aws::DatabaseMigrationService::Types::S3ResourceNotFoundFault] data
|
325
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
326
|
+
super(context, message, data)
|
327
|
+
end
|
328
|
+
|
329
|
+
# @return [String]
|
330
|
+
def message
|
331
|
+
@message || @data[:message]
|
332
|
+
end
|
333
|
+
end
|
334
|
+
|
287
335
|
class SNSInvalidTopicFault < ServiceError
|
288
336
|
|
289
337
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -160,6 +160,39 @@ module Aws::DatabaseMigrationService
|
|
160
160
|
include Aws::Structure
|
161
161
|
end
|
162
162
|
|
163
|
+
# @note When making an API call, you may pass CancelReplicationTaskAssessmentRunMessage
|
164
|
+
# data as a hash:
|
165
|
+
#
|
166
|
+
# {
|
167
|
+
# replication_task_assessment_run_arn: "String", # required
|
168
|
+
# }
|
169
|
+
#
|
170
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
171
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
172
|
+
# canceled.
|
173
|
+
# @return [String]
|
174
|
+
#
|
175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRunMessage AWS API Documentation
|
176
|
+
#
|
177
|
+
class CancelReplicationTaskAssessmentRunMessage < Struct.new(
|
178
|
+
:replication_task_assessment_run_arn)
|
179
|
+
SENSITIVE = []
|
180
|
+
include Aws::Structure
|
181
|
+
end
|
182
|
+
|
183
|
+
# @!attribute [rw] replication_task_assessment_run
|
184
|
+
# The `ReplicationTaskAssessmentRun` object for the canceled
|
185
|
+
# assessment run.
|
186
|
+
# @return [Types::ReplicationTaskAssessmentRun]
|
187
|
+
#
|
188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRunResponse AWS API Documentation
|
189
|
+
#
|
190
|
+
class CancelReplicationTaskAssessmentRunResponse < Struct.new(
|
191
|
+
:replication_task_assessment_run)
|
192
|
+
SENSITIVE = []
|
193
|
+
include Aws::Structure
|
194
|
+
end
|
195
|
+
|
163
196
|
# The SSL certificate that can be used to encrypt connections between
|
164
197
|
# the endpoints and the replication instance.
|
165
198
|
#
|
@@ -358,6 +391,12 @@ module Aws::DatabaseMigrationService
|
|
358
391
|
# kafka_settings: {
|
359
392
|
# broker: "String",
|
360
393
|
# topic: "String",
|
394
|
+
# message_format: "json", # accepts json, json-unformatted
|
395
|
+
# include_transaction_details: false,
|
396
|
+
# include_partition_value: false,
|
397
|
+
# partition_include_schema_table: false,
|
398
|
+
# include_table_alter_operations: false,
|
399
|
+
# include_control_details: false,
|
361
400
|
# },
|
362
401
|
# elasticsearch_settings: {
|
363
402
|
# service_access_role_arn: "String", # required
|
@@ -401,6 +440,53 @@ module Aws::DatabaseMigrationService
|
|
401
440
|
# username: "String",
|
402
441
|
# write_buffer_size: 1,
|
403
442
|
# },
|
443
|
+
# postgre_sql_settings: {
|
444
|
+
# database_name: "String",
|
445
|
+
# password: "SecretString",
|
446
|
+
# port: 1,
|
447
|
+
# server_name: "String",
|
448
|
+
# username: "String",
|
449
|
+
# },
|
450
|
+
# my_sql_settings: {
|
451
|
+
# database_name: "String",
|
452
|
+
# password: "SecretString",
|
453
|
+
# port: 1,
|
454
|
+
# server_name: "String",
|
455
|
+
# username: "String",
|
456
|
+
# },
|
457
|
+
# oracle_settings: {
|
458
|
+
# asm_password: "SecretString",
|
459
|
+
# asm_server: "String",
|
460
|
+
# asm_user: "String",
|
461
|
+
# database_name: "String",
|
462
|
+
# password: "SecretString",
|
463
|
+
# port: 1,
|
464
|
+
# security_db_encryption: "SecretString",
|
465
|
+
# security_db_encryption_name: "String",
|
466
|
+
# server_name: "String",
|
467
|
+
# username: "String",
|
468
|
+
# },
|
469
|
+
# sybase_settings: {
|
470
|
+
# database_name: "String",
|
471
|
+
# password: "SecretString",
|
472
|
+
# port: 1,
|
473
|
+
# server_name: "String",
|
474
|
+
# username: "String",
|
475
|
+
# },
|
476
|
+
# microsoft_sql_server_settings: {
|
477
|
+
# port: 1,
|
478
|
+
# database_name: "String",
|
479
|
+
# password: "SecretString",
|
480
|
+
# server_name: "String",
|
481
|
+
# username: "String",
|
482
|
+
# },
|
483
|
+
# ibm_db_2_settings: {
|
484
|
+
# database_name: "String",
|
485
|
+
# password: "SecretString",
|
486
|
+
# port: 1,
|
487
|
+
# server_name: "String",
|
488
|
+
# username: "String",
|
489
|
+
# },
|
404
490
|
# }
|
405
491
|
#
|
406
492
|
# @!attribute [rw] endpoint_identifier
|
@@ -595,6 +681,85 @@ module Aws::DatabaseMigrationService
|
|
595
681
|
# Provides information that defines an Amazon Redshift endpoint.
|
596
682
|
# @return [Types::RedshiftSettings]
|
597
683
|
#
|
684
|
+
# @!attribute [rw] postgre_sql_settings
|
685
|
+
# Settings in JSON format for the source and target PostgreSQL
|
686
|
+
# endpoint. For information about other available settings, see [Extra
|
687
|
+
# connection attributes when using PostgreSQL as a source for AWS
|
688
|
+
# DMS][1] and [ Extra connection attributes when using PostgreSQL as a
|
689
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
690
|
+
# Guide.*
|
691
|
+
#
|
692
|
+
#
|
693
|
+
#
|
694
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
695
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
696
|
+
# @return [Types::PostgreSQLSettings]
|
697
|
+
#
|
698
|
+
# @!attribute [rw] my_sql_settings
|
699
|
+
# Settings in JSON format for the source and target MySQL endpoint.
|
700
|
+
# For information about other available settings, see [Extra
|
701
|
+
# connection attributes when using MySQL as a source for AWS DMS][1]
|
702
|
+
# and [Extra connection attributes when using a MySQL-compatible
|
703
|
+
# database as a target for AWS DMS][2] in the *AWS Database Migration
|
704
|
+
# Service User Guide.*
|
705
|
+
#
|
706
|
+
#
|
707
|
+
#
|
708
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
709
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
710
|
+
# @return [Types::MySQLSettings]
|
711
|
+
#
|
712
|
+
# @!attribute [rw] oracle_settings
|
713
|
+
# Settings in JSON format for the source and target Oracle endpoint.
|
714
|
+
# For information about other available settings, see [Extra
|
715
|
+
# connection attributes when using Oracle as a source for AWS DMS][1]
|
716
|
+
# and [ Extra connection attributes when using Oracle as a target for
|
717
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
718
|
+
#
|
719
|
+
#
|
720
|
+
#
|
721
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
722
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
723
|
+
# @return [Types::OracleSettings]
|
724
|
+
#
|
725
|
+
# @!attribute [rw] sybase_settings
|
726
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
727
|
+
# For information about other available settings, see [Extra
|
728
|
+
# connection attributes when using SAP ASE as a source for AWS DMS][1]
|
729
|
+
# and [Extra connection attributes when using SAP ASE as a target for
|
730
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
731
|
+
#
|
732
|
+
#
|
733
|
+
#
|
734
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
735
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
736
|
+
# @return [Types::SybaseSettings]
|
737
|
+
#
|
738
|
+
# @!attribute [rw] microsoft_sql_server_settings
|
739
|
+
# Settings in JSON format for the source and target Microsoft SQL
|
740
|
+
# Server endpoint. For information about other available settings, see
|
741
|
+
# [Extra connection attributes when using SQL Server as a source for
|
742
|
+
# AWS DMS][1] and [ Extra connection attributes when using SQL Server
|
743
|
+
# as a target for AWS DMS][2] in the *AWS Database Migration Service
|
744
|
+
# User Guide.*
|
745
|
+
#
|
746
|
+
#
|
747
|
+
#
|
748
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
749
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
750
|
+
# @return [Types::MicrosoftSQLServerSettings]
|
751
|
+
#
|
752
|
+
# @!attribute [rw] ibm_db_2_settings
|
753
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
754
|
+
# information about other available settings, see [Extra connection
|
755
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the
|
756
|
+
# *AWS Database Migration Service User Guide.*
|
757
|
+
#
|
758
|
+
#
|
759
|
+
#
|
760
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
761
|
+
# @return [Types::IBMDb2Settings]
|
762
|
+
#
|
598
763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpointMessage AWS API Documentation
|
599
764
|
#
|
600
765
|
class CreateEndpointMessage < Struct.new(
|
@@ -621,7 +786,13 @@ module Aws::DatabaseMigrationService
|
|
621
786
|
:kafka_settings,
|
622
787
|
:elasticsearch_settings,
|
623
788
|
:neptune_settings,
|
624
|
-
:redshift_settings
|
789
|
+
:redshift_settings,
|
790
|
+
:postgre_sql_settings,
|
791
|
+
:my_sql_settings,
|
792
|
+
:oracle_settings,
|
793
|
+
:sybase_settings,
|
794
|
+
:microsoft_sql_server_settings,
|
795
|
+
:ibm_db_2_settings)
|
625
796
|
SENSITIVE = [:password]
|
626
797
|
include Aws::Structure
|
627
798
|
end
|
@@ -1323,6 +1494,39 @@ module Aws::DatabaseMigrationService
|
|
1323
1494
|
#
|
1324
1495
|
class DeleteReplicationSubnetGroupResponse < Aws::EmptyStructure; end
|
1325
1496
|
|
1497
|
+
# @note When making an API call, you may pass DeleteReplicationTaskAssessmentRunMessage
|
1498
|
+
# data as a hash:
|
1499
|
+
#
|
1500
|
+
# {
|
1501
|
+
# replication_task_assessment_run_arn: "String", # required
|
1502
|
+
# }
|
1503
|
+
#
|
1504
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
1505
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
1506
|
+
# deleted.
|
1507
|
+
# @return [String]
|
1508
|
+
#
|
1509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRunMessage AWS API Documentation
|
1510
|
+
#
|
1511
|
+
class DeleteReplicationTaskAssessmentRunMessage < Struct.new(
|
1512
|
+
:replication_task_assessment_run_arn)
|
1513
|
+
SENSITIVE = []
|
1514
|
+
include Aws::Structure
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
# @!attribute [rw] replication_task_assessment_run
|
1518
|
+
# The `ReplicationTaskAssessmentRun` object for the deleted assessment
|
1519
|
+
# run.
|
1520
|
+
# @return [Types::ReplicationTaskAssessmentRun]
|
1521
|
+
#
|
1522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRunResponse AWS API Documentation
|
1523
|
+
#
|
1524
|
+
class DeleteReplicationTaskAssessmentRunResponse < Struct.new(
|
1525
|
+
:replication_task_assessment_run)
|
1526
|
+
SENSITIVE = []
|
1527
|
+
include Aws::Structure
|
1528
|
+
end
|
1529
|
+
|
1326
1530
|
# @note When making an API call, you may pass DeleteReplicationTaskMessage
|
1327
1531
|
# data as a hash:
|
1328
1532
|
#
|
@@ -1390,6 +1594,100 @@ module Aws::DatabaseMigrationService
|
|
1390
1594
|
include Aws::Structure
|
1391
1595
|
end
|
1392
1596
|
|
1597
|
+
# @note When making an API call, you may pass DescribeApplicableIndividualAssessmentsMessage
|
1598
|
+
# data as a hash:
|
1599
|
+
#
|
1600
|
+
# {
|
1601
|
+
# replication_task_arn: "String",
|
1602
|
+
# replication_instance_arn: "String",
|
1603
|
+
# source_engine_name: "String",
|
1604
|
+
# target_engine_name: "String",
|
1605
|
+
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
1606
|
+
# max_records: 1,
|
1607
|
+
# marker: "String",
|
1608
|
+
# }
|
1609
|
+
#
|
1610
|
+
# @!attribute [rw] replication_task_arn
|
1611
|
+
# Amazon Resource Name (ARN) of a migration task on which you want to
|
1612
|
+
# base the default list of individual assessments.
|
1613
|
+
# @return [String]
|
1614
|
+
#
|
1615
|
+
# @!attribute [rw] replication_instance_arn
|
1616
|
+
# ARN of a replication instance on which you want to base the default
|
1617
|
+
# list of individual assessments.
|
1618
|
+
# @return [String]
|
1619
|
+
#
|
1620
|
+
# @!attribute [rw] source_engine_name
|
1621
|
+
# Name of a database engine that the specified replication instance
|
1622
|
+
# supports as a source.
|
1623
|
+
# @return [String]
|
1624
|
+
#
|
1625
|
+
# @!attribute [rw] target_engine_name
|
1626
|
+
# Name of a database engine that the specified replication instance
|
1627
|
+
# supports as a target.
|
1628
|
+
# @return [String]
|
1629
|
+
#
|
1630
|
+
# @!attribute [rw] migration_type
|
1631
|
+
# Name of the migration type that each provided individual assessment
|
1632
|
+
# must support.
|
1633
|
+
# @return [String]
|
1634
|
+
#
|
1635
|
+
# @!attribute [rw] max_records
|
1636
|
+
# Maximum number of records to include in the response. If more
|
1637
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
1638
|
+
# token called a marker is included in the response so that the
|
1639
|
+
# remaining results can be retrieved.
|
1640
|
+
# @return [Integer]
|
1641
|
+
#
|
1642
|
+
# @!attribute [rw] marker
|
1643
|
+
# Optional pagination token provided by a previous request. If this
|
1644
|
+
# parameter is specified, the response includes only records beyond
|
1645
|
+
# the marker, up to the value specified by `MaxRecords`.
|
1646
|
+
# @return [String]
|
1647
|
+
#
|
1648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessmentsMessage AWS API Documentation
|
1649
|
+
#
|
1650
|
+
class DescribeApplicableIndividualAssessmentsMessage < Struct.new(
|
1651
|
+
:replication_task_arn,
|
1652
|
+
:replication_instance_arn,
|
1653
|
+
:source_engine_name,
|
1654
|
+
:target_engine_name,
|
1655
|
+
:migration_type,
|
1656
|
+
:max_records,
|
1657
|
+
:marker)
|
1658
|
+
SENSITIVE = []
|
1659
|
+
include Aws::Structure
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
# @!attribute [rw] individual_assessment_names
|
1663
|
+
# List of names for the individual assessments supported by the
|
1664
|
+
# premigration assessment run that you start based on the specified
|
1665
|
+
# request parameters. For more information on the available individual
|
1666
|
+
# assessments, including compatibility with different migration task
|
1667
|
+
# configurations, see [Working with premigration assessment runs][1]
|
1668
|
+
# in the *AWS Database Migration Service User Guide.*
|
1669
|
+
#
|
1670
|
+
#
|
1671
|
+
#
|
1672
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
|
1673
|
+
# @return [Array<String>]
|
1674
|
+
#
|
1675
|
+
# @!attribute [rw] marker
|
1676
|
+
# Pagination token returned for you to pass to a subsequent request.
|
1677
|
+
# If you pass this token as the `Marker` value in a subsequent
|
1678
|
+
# request, the response includes only records beyond the marker, up to
|
1679
|
+
# the value specified in the request by `MaxRecords`.
|
1680
|
+
# @return [String]
|
1681
|
+
#
|
1682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessmentsResponse AWS API Documentation
|
1683
|
+
#
|
1684
|
+
class DescribeApplicableIndividualAssessmentsResponse < Struct.new(
|
1685
|
+
:individual_assessment_names,
|
1686
|
+
:marker)
|
1687
|
+
SENSITIVE = []
|
1688
|
+
include Aws::Structure
|
1689
|
+
end
|
1690
|
+
|
1393
1691
|
# @note When making an API call, you may pass DescribeCertificatesMessage
|
1394
1692
|
# data as a hash:
|
1395
1693
|
#
|
@@ -1405,7 +1703,7 @@ module Aws::DatabaseMigrationService
|
|
1405
1703
|
# }
|
1406
1704
|
#
|
1407
1705
|
# @!attribute [rw] filters
|
1408
|
-
# Filters applied to the
|
1706
|
+
# Filters applied to the certificates described in the form of
|
1409
1707
|
# key-value pairs.
|
1410
1708
|
# @return [Array<Types::Filter>]
|
1411
1709
|
#
|
@@ -1533,7 +1831,7 @@ module Aws::DatabaseMigrationService
|
|
1533
1831
|
# }
|
1534
1832
|
#
|
1535
1833
|
# @!attribute [rw] filters
|
1536
|
-
# Filters applied to the
|
1834
|
+
# Filters applied to the endpoint types.
|
1537
1835
|
#
|
1538
1836
|
# Valid filter names: engine-name \| endpoint-type
|
1539
1837
|
# @return [Array<Types::Filter>]
|
@@ -1599,7 +1897,7 @@ module Aws::DatabaseMigrationService
|
|
1599
1897
|
# }
|
1600
1898
|
#
|
1601
1899
|
# @!attribute [rw] filters
|
1602
|
-
# Filters applied to the
|
1900
|
+
# Filters applied to the endpoints.
|
1603
1901
|
#
|
1604
1902
|
# Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
|
1605
1903
|
# engine-name
|
@@ -1671,7 +1969,7 @@ module Aws::DatabaseMigrationService
|
|
1671
1969
|
# @return [String]
|
1672
1970
|
#
|
1673
1971
|
# @!attribute [rw] filters
|
1674
|
-
# Filters applied to the
|
1972
|
+
# Filters applied to the event categories.
|
1675
1973
|
# @return [Array<Types::Filter>]
|
1676
1974
|
#
|
1677
1975
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventCategoriesMessage AWS API Documentation
|
@@ -1715,7 +2013,7 @@ module Aws::DatabaseMigrationService
|
|
1715
2013
|
# @return [String]
|
1716
2014
|
#
|
1717
2015
|
# @!attribute [rw] filters
|
1718
|
-
# Filters applied to
|
2016
|
+
# Filters applied to event subscriptions.
|
1719
2017
|
# @return [Array<Types::Filter>]
|
1720
2018
|
#
|
1721
2019
|
# @!attribute [rw] max_records
|
@@ -1812,7 +2110,7 @@ module Aws::DatabaseMigrationService
|
|
1812
2110
|
# @return [Array<String>]
|
1813
2111
|
#
|
1814
2112
|
# @!attribute [rw] filters
|
1815
|
-
# Filters applied to
|
2113
|
+
# Filters applied to events.
|
1816
2114
|
# @return [Array<Types::Filter>]
|
1817
2115
|
#
|
1818
2116
|
# @!attribute [rw] max_records
|
@@ -2102,7 +2400,7 @@ module Aws::DatabaseMigrationService
|
|
2102
2400
|
# }
|
2103
2401
|
#
|
2104
2402
|
# @!attribute [rw] filters
|
2105
|
-
# Filters applied to
|
2403
|
+
# Filters applied to replication instances.
|
2106
2404
|
#
|
2107
2405
|
# Valid filter names: replication-instance-arn \|
|
2108
2406
|
# replication-instance-id \| replication-instance-class \|
|
@@ -2170,7 +2468,7 @@ module Aws::DatabaseMigrationService
|
|
2170
2468
|
# }
|
2171
2469
|
#
|
2172
2470
|
# @!attribute [rw] filters
|
2173
|
-
# Filters applied to
|
2471
|
+
# Filters applied to replication subnet groups.
|
2174
2472
|
#
|
2175
2473
|
# Valid filter names: replication-subnet-group-id
|
2176
2474
|
# @return [Array<Types::Filter>]
|
@@ -2288,7 +2586,7 @@ module Aws::DatabaseMigrationService
|
|
2288
2586
|
include Aws::Structure
|
2289
2587
|
end
|
2290
2588
|
|
2291
|
-
# @note When making an API call, you may pass
|
2589
|
+
# @note When making an API call, you may pass DescribeReplicationTaskAssessmentRunsMessage
|
2292
2590
|
# data as a hash:
|
2293
2591
|
#
|
2294
2592
|
# {
|
@@ -2300,14 +2598,14 @@ module Aws::DatabaseMigrationService
|
|
2300
2598
|
# ],
|
2301
2599
|
# max_records: 1,
|
2302
2600
|
# marker: "String",
|
2303
|
-
# without_settings: false,
|
2304
2601
|
# }
|
2305
2602
|
#
|
2306
2603
|
# @!attribute [rw] filters
|
2307
|
-
# Filters applied to the
|
2604
|
+
# Filters applied to the premigration assessment runs described in the
|
2605
|
+
# form of key-value pairs.
|
2308
2606
|
#
|
2309
|
-
# Valid filter names: replication-task-
|
2310
|
-
#
|
2607
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
2608
|
+
# `replication-task-arn`, `replication-instance-arn`, `status`
|
2311
2609
|
# @return [Array<Types::Filter>]
|
2312
2610
|
#
|
2313
2611
|
# @!attribute [rw] max_records
|
@@ -2315,10 +2613,6 @@ module Aws::DatabaseMigrationService
|
|
2315
2613
|
# records exist than the specified `MaxRecords` value, a pagination
|
2316
2614
|
# token called a marker is included in the response so that the
|
2317
2615
|
# remaining results can be retrieved.
|
2318
|
-
#
|
2319
|
-
# Default: 100
|
2320
|
-
#
|
2321
|
-
# Constraints: Minimum 20, maximum 100.
|
2322
2616
|
# @return [Integer]
|
2323
2617
|
#
|
2324
2618
|
# @!attribute [rw] marker
|
@@ -2327,66 +2621,63 @@ module Aws::DatabaseMigrationService
|
|
2327
2621
|
# the marker, up to the value specified by `MaxRecords`.
|
2328
2622
|
# @return [String]
|
2329
2623
|
#
|
2330
|
-
#
|
2331
|
-
# An option to set to avoid returning information about settings. Use
|
2332
|
-
# this to reduce overhead when setting information is too large. To
|
2333
|
-
# use this option, choose `true`; otherwise, choose `false` (the
|
2334
|
-
# default).
|
2335
|
-
# @return [Boolean]
|
2336
|
-
#
|
2337
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksMessage AWS API Documentation
|
2624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRunsMessage AWS API Documentation
|
2338
2625
|
#
|
2339
|
-
class
|
2626
|
+
class DescribeReplicationTaskAssessmentRunsMessage < Struct.new(
|
2340
2627
|
:filters,
|
2341
2628
|
:max_records,
|
2342
|
-
:marker
|
2343
|
-
:without_settings)
|
2629
|
+
:marker)
|
2344
2630
|
SENSITIVE = []
|
2345
2631
|
include Aws::Structure
|
2346
2632
|
end
|
2347
2633
|
|
2348
2634
|
# @!attribute [rw] marker
|
2349
|
-
#
|
2350
|
-
#
|
2351
|
-
# the
|
2635
|
+
# A pagination token returned for you to pass to a subsequent request.
|
2636
|
+
# If you pass this token as the `Marker` value in a subsequent
|
2637
|
+
# request, the response includes only records beyond the marker, up to
|
2638
|
+
# the value specified in the request by `MaxRecords`.
|
2352
2639
|
# @return [String]
|
2353
2640
|
#
|
2354
|
-
# @!attribute [rw]
|
2355
|
-
#
|
2356
|
-
# @return [Array<Types::
|
2641
|
+
# @!attribute [rw] replication_task_assessment_runs
|
2642
|
+
# One or more premigration assessment runs as specified by `Filters`.
|
2643
|
+
# @return [Array<Types::ReplicationTaskAssessmentRun>]
|
2357
2644
|
#
|
2358
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
2645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRunsResponse AWS API Documentation
|
2359
2646
|
#
|
2360
|
-
class
|
2647
|
+
class DescribeReplicationTaskAssessmentRunsResponse < Struct.new(
|
2361
2648
|
:marker,
|
2362
|
-
:
|
2649
|
+
:replication_task_assessment_runs)
|
2363
2650
|
SENSITIVE = []
|
2364
2651
|
include Aws::Structure
|
2365
2652
|
end
|
2366
2653
|
|
2367
|
-
# @note When making an API call, you may pass
|
2654
|
+
# @note When making an API call, you may pass DescribeReplicationTaskIndividualAssessmentsMessage
|
2368
2655
|
# data as a hash:
|
2369
2656
|
#
|
2370
2657
|
# {
|
2371
|
-
#
|
2658
|
+
# filters: [
|
2659
|
+
# {
|
2660
|
+
# name: "String", # required
|
2661
|
+
# values: ["String"], # required
|
2662
|
+
# },
|
2663
|
+
# ],
|
2372
2664
|
# max_records: 1,
|
2373
2665
|
# marker: "String",
|
2374
2666
|
# }
|
2375
2667
|
#
|
2376
|
-
# @!attribute [rw]
|
2377
|
-
#
|
2378
|
-
#
|
2379
|
-
#
|
2668
|
+
# @!attribute [rw] filters
|
2669
|
+
# Filters applied to the individual assessments described in the form
|
2670
|
+
# of key-value pairs.
|
2671
|
+
#
|
2672
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
2673
|
+
# `replication-task-arn`, `status`
|
2674
|
+
# @return [Array<Types::Filter>]
|
2380
2675
|
#
|
2381
2676
|
# @!attribute [rw] max_records
|
2382
2677
|
# The maximum number of records to include in the response. If more
|
2383
2678
|
# records exist than the specified `MaxRecords` value, a pagination
|
2384
2679
|
# token called a marker is included in the response so that the
|
2385
2680
|
# remaining results can be retrieved.
|
2386
|
-
#
|
2387
|
-
# Default: 100
|
2388
|
-
#
|
2389
|
-
# Constraints: Minimum 20, maximum 100.
|
2390
2681
|
# @return [Integer]
|
2391
2682
|
#
|
2392
2683
|
# @!attribute [rw] marker
|
@@ -2395,10 +2686,10 @@ module Aws::DatabaseMigrationService
|
|
2395
2686
|
# the marker, up to the value specified by `MaxRecords`.
|
2396
2687
|
# @return [String]
|
2397
2688
|
#
|
2398
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
2689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessmentsMessage AWS API Documentation
|
2399
2690
|
#
|
2400
|
-
class
|
2401
|
-
:
|
2691
|
+
class DescribeReplicationTaskIndividualAssessmentsMessage < Struct.new(
|
2692
|
+
:filters,
|
2402
2693
|
:max_records,
|
2403
2694
|
:marker)
|
2404
2695
|
SENSITIVE = []
|
@@ -2406,42 +2697,46 @@ module Aws::DatabaseMigrationService
|
|
2406
2697
|
end
|
2407
2698
|
|
2408
2699
|
# @!attribute [rw] marker
|
2409
|
-
#
|
2410
|
-
#
|
2411
|
-
# the
|
2700
|
+
# A pagination token returned for you to pass to a subsequent request.
|
2701
|
+
# If you pass this token as the `Marker` value in a subsequent
|
2702
|
+
# request, the response includes only records beyond the marker, up to
|
2703
|
+
# the value specified in the request by `MaxRecords`.
|
2412
2704
|
# @return [String]
|
2413
2705
|
#
|
2414
|
-
# @!attribute [rw]
|
2415
|
-
#
|
2416
|
-
# @return [Array<
|
2706
|
+
# @!attribute [rw] replication_task_individual_assessments
|
2707
|
+
# One or more individual assessments as specified by `Filters`.
|
2708
|
+
# @return [Array<Types::ReplicationTaskIndividualAssessment>]
|
2417
2709
|
#
|
2418
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
2710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessmentsResponse AWS API Documentation
|
2419
2711
|
#
|
2420
|
-
class
|
2712
|
+
class DescribeReplicationTaskIndividualAssessmentsResponse < Struct.new(
|
2421
2713
|
:marker,
|
2422
|
-
:
|
2714
|
+
:replication_task_individual_assessments)
|
2423
2715
|
SENSITIVE = []
|
2424
2716
|
include Aws::Structure
|
2425
2717
|
end
|
2426
2718
|
|
2427
|
-
# @note When making an API call, you may pass
|
2719
|
+
# @note When making an API call, you may pass DescribeReplicationTasksMessage
|
2428
2720
|
# data as a hash:
|
2429
2721
|
#
|
2430
2722
|
# {
|
2431
|
-
# replication_task_arn: "String", # required
|
2432
|
-
# max_records: 1,
|
2433
|
-
# marker: "String",
|
2434
2723
|
# filters: [
|
2435
2724
|
# {
|
2436
2725
|
# name: "String", # required
|
2437
2726
|
# values: ["String"], # required
|
2438
2727
|
# },
|
2439
2728
|
# ],
|
2729
|
+
# max_records: 1,
|
2730
|
+
# marker: "String",
|
2731
|
+
# without_settings: false,
|
2440
2732
|
# }
|
2441
2733
|
#
|
2442
|
-
# @!attribute [rw]
|
2443
|
-
#
|
2444
|
-
#
|
2734
|
+
# @!attribute [rw] filters
|
2735
|
+
# Filters applied to replication tasks.
|
2736
|
+
#
|
2737
|
+
# Valid filter names: replication-task-arn \| replication-task-id \|
|
2738
|
+
# migration-type \| endpoint-arn \| replication-instance-arn
|
2739
|
+
# @return [Array<Types::Filter>]
|
2445
2740
|
#
|
2446
2741
|
# @!attribute [rw] max_records
|
2447
2742
|
# The maximum number of records to include in the response. If more
|
@@ -2451,7 +2746,7 @@ module Aws::DatabaseMigrationService
|
|
2451
2746
|
#
|
2452
2747
|
# Default: 100
|
2453
2748
|
#
|
2454
|
-
# Constraints: Minimum 20, maximum
|
2749
|
+
# Constraints: Minimum 20, maximum 100.
|
2455
2750
|
# @return [Integer]
|
2456
2751
|
#
|
2457
2752
|
# @!attribute [rw] marker
|
@@ -2460,14 +2755,147 @@ module Aws::DatabaseMigrationService
|
|
2460
2755
|
# the marker, up to the value specified by `MaxRecords`.
|
2461
2756
|
# @return [String]
|
2462
2757
|
#
|
2463
|
-
# @!attribute [rw]
|
2464
|
-
#
|
2465
|
-
#
|
2466
|
-
#
|
2758
|
+
# @!attribute [rw] without_settings
|
2759
|
+
# An option to set to avoid returning information about settings. Use
|
2760
|
+
# this to reduce overhead when setting information is too large. To
|
2761
|
+
# use this option, choose `true`; otherwise, choose `false` (the
|
2762
|
+
# default).
|
2763
|
+
# @return [Boolean]
|
2467
2764
|
#
|
2468
|
-
#
|
2469
|
-
#
|
2470
|
-
|
2765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksMessage AWS API Documentation
|
2766
|
+
#
|
2767
|
+
class DescribeReplicationTasksMessage < Struct.new(
|
2768
|
+
:filters,
|
2769
|
+
:max_records,
|
2770
|
+
:marker,
|
2771
|
+
:without_settings)
|
2772
|
+
SENSITIVE = []
|
2773
|
+
include Aws::Structure
|
2774
|
+
end
|
2775
|
+
|
2776
|
+
# @!attribute [rw] marker
|
2777
|
+
# An optional pagination token provided by a previous request. If this
|
2778
|
+
# parameter is specified, the response includes only records beyond
|
2779
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2780
|
+
# @return [String]
|
2781
|
+
#
|
2782
|
+
# @!attribute [rw] replication_tasks
|
2783
|
+
# A description of the replication tasks.
|
2784
|
+
# @return [Array<Types::ReplicationTask>]
|
2785
|
+
#
|
2786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksResponse AWS API Documentation
|
2787
|
+
#
|
2788
|
+
class DescribeReplicationTasksResponse < Struct.new(
|
2789
|
+
:marker,
|
2790
|
+
:replication_tasks)
|
2791
|
+
SENSITIVE = []
|
2792
|
+
include Aws::Structure
|
2793
|
+
end
|
2794
|
+
|
2795
|
+
# @note When making an API call, you may pass DescribeSchemasMessage
|
2796
|
+
# data as a hash:
|
2797
|
+
#
|
2798
|
+
# {
|
2799
|
+
# endpoint_arn: "String", # required
|
2800
|
+
# max_records: 1,
|
2801
|
+
# marker: "String",
|
2802
|
+
# }
|
2803
|
+
#
|
2804
|
+
# @!attribute [rw] endpoint_arn
|
2805
|
+
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
2806
|
+
# endpoint.
|
2807
|
+
# @return [String]
|
2808
|
+
#
|
2809
|
+
# @!attribute [rw] max_records
|
2810
|
+
# The maximum number of records to include in the response. If more
|
2811
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2812
|
+
# token called a marker is included in the response so that the
|
2813
|
+
# remaining results can be retrieved.
|
2814
|
+
#
|
2815
|
+
# Default: 100
|
2816
|
+
#
|
2817
|
+
# Constraints: Minimum 20, maximum 100.
|
2818
|
+
# @return [Integer]
|
2819
|
+
#
|
2820
|
+
# @!attribute [rw] marker
|
2821
|
+
# An optional pagination token provided by a previous request. If this
|
2822
|
+
# parameter is specified, the response includes only records beyond
|
2823
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2824
|
+
# @return [String]
|
2825
|
+
#
|
2826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasMessage AWS API Documentation
|
2827
|
+
#
|
2828
|
+
class DescribeSchemasMessage < Struct.new(
|
2829
|
+
:endpoint_arn,
|
2830
|
+
:max_records,
|
2831
|
+
:marker)
|
2832
|
+
SENSITIVE = []
|
2833
|
+
include Aws::Structure
|
2834
|
+
end
|
2835
|
+
|
2836
|
+
# @!attribute [rw] marker
|
2837
|
+
# An optional pagination token provided by a previous request. If this
|
2838
|
+
# parameter is specified, the response includes only records beyond
|
2839
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2840
|
+
# @return [String]
|
2841
|
+
#
|
2842
|
+
# @!attribute [rw] schemas
|
2843
|
+
# The described schema.
|
2844
|
+
# @return [Array<String>]
|
2845
|
+
#
|
2846
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasResponse AWS API Documentation
|
2847
|
+
#
|
2848
|
+
class DescribeSchemasResponse < Struct.new(
|
2849
|
+
:marker,
|
2850
|
+
:schemas)
|
2851
|
+
SENSITIVE = []
|
2852
|
+
include Aws::Structure
|
2853
|
+
end
|
2854
|
+
|
2855
|
+
# @note When making an API call, you may pass DescribeTableStatisticsMessage
|
2856
|
+
# data as a hash:
|
2857
|
+
#
|
2858
|
+
# {
|
2859
|
+
# replication_task_arn: "String", # required
|
2860
|
+
# max_records: 1,
|
2861
|
+
# marker: "String",
|
2862
|
+
# filters: [
|
2863
|
+
# {
|
2864
|
+
# name: "String", # required
|
2865
|
+
# values: ["String"], # required
|
2866
|
+
# },
|
2867
|
+
# ],
|
2868
|
+
# }
|
2869
|
+
#
|
2870
|
+
# @!attribute [rw] replication_task_arn
|
2871
|
+
# The Amazon Resource Name (ARN) of the replication task.
|
2872
|
+
# @return [String]
|
2873
|
+
#
|
2874
|
+
# @!attribute [rw] max_records
|
2875
|
+
# The maximum number of records to include in the response. If more
|
2876
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2877
|
+
# token called a marker is included in the response so that the
|
2878
|
+
# remaining results can be retrieved.
|
2879
|
+
#
|
2880
|
+
# Default: 100
|
2881
|
+
#
|
2882
|
+
# Constraints: Minimum 20, maximum 500.
|
2883
|
+
# @return [Integer]
|
2884
|
+
#
|
2885
|
+
# @!attribute [rw] marker
|
2886
|
+
# An optional pagination token provided by a previous request. If this
|
2887
|
+
# parameter is specified, the response includes only records beyond
|
2888
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2889
|
+
# @return [String]
|
2890
|
+
#
|
2891
|
+
# @!attribute [rw] filters
|
2892
|
+
# Filters applied to table statistics.
|
2893
|
+
#
|
2894
|
+
# Valid filter names: schema-name \| table-name \| table-state
|
2895
|
+
#
|
2896
|
+
# A combination of filters creates an AND condition where each record
|
2897
|
+
# matches all specified filters.
|
2898
|
+
# @return [Array<Types::Filter>]
|
2471
2899
|
#
|
2472
2900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeTableStatisticsMessage AWS API Documentation
|
2473
2901
|
#
|
@@ -2698,7 +3126,7 @@ module Aws::DatabaseMigrationService
|
|
2698
3126
|
# @return [String]
|
2699
3127
|
#
|
2700
3128
|
# @!attribute [rw] dynamo_db_settings
|
2701
|
-
# The settings for the target
|
3129
|
+
# The settings for the DynamoDB target endpoint. For more information,
|
2702
3130
|
# see the `DynamoDBSettings` structure.
|
2703
3131
|
# @return [Types::DynamoDbSettings]
|
2704
3132
|
#
|
@@ -2759,6 +3187,37 @@ module Aws::DatabaseMigrationService
|
|
2759
3187
|
# Settings for the Amazon Redshift endpoint.
|
2760
3188
|
# @return [Types::RedshiftSettings]
|
2761
3189
|
#
|
3190
|
+
# @!attribute [rw] postgre_sql_settings
|
3191
|
+
# The settings for the PostgreSQL source and target endpoint. For more
|
3192
|
+
# information, see the `PostgreSQLSettings` structure.
|
3193
|
+
# @return [Types::PostgreSQLSettings]
|
3194
|
+
#
|
3195
|
+
# @!attribute [rw] my_sql_settings
|
3196
|
+
# The settings for the MySQL source and target endpoint. For more
|
3197
|
+
# information, see the `MySQLSettings` structure.
|
3198
|
+
# @return [Types::MySQLSettings]
|
3199
|
+
#
|
3200
|
+
# @!attribute [rw] oracle_settings
|
3201
|
+
# The settings for the Oracle source and target endpoint. For more
|
3202
|
+
# information, see the `OracleSettings` structure.
|
3203
|
+
# @return [Types::OracleSettings]
|
3204
|
+
#
|
3205
|
+
# @!attribute [rw] sybase_settings
|
3206
|
+
# The settings for the SAP ASE source and target endpoint. For more
|
3207
|
+
# information, see the `SybaseSettings` structure.
|
3208
|
+
# @return [Types::SybaseSettings]
|
3209
|
+
#
|
3210
|
+
# @!attribute [rw] microsoft_sql_server_settings
|
3211
|
+
# The settings for the Microsoft SQL Server source and target
|
3212
|
+
# endpoint. For more information, see the `MicrosoftSQLServerSettings`
|
3213
|
+
# structure.
|
3214
|
+
# @return [Types::MicrosoftSQLServerSettings]
|
3215
|
+
#
|
3216
|
+
# @!attribute [rw] ibm_db_2_settings
|
3217
|
+
# The settings for the IBM Db2 LUW source endpoint. For more
|
3218
|
+
# information, see the `IBMDb2Settings` structure.
|
3219
|
+
# @return [Types::IBMDb2Settings]
|
3220
|
+
#
|
2762
3221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Endpoint AWS API Documentation
|
2763
3222
|
#
|
2764
3223
|
class Endpoint < Struct.new(
|
@@ -2787,7 +3246,13 @@ module Aws::DatabaseMigrationService
|
|
2787
3246
|
:kafka_settings,
|
2788
3247
|
:elasticsearch_settings,
|
2789
3248
|
:neptune_settings,
|
2790
|
-
:redshift_settings
|
3249
|
+
:redshift_settings,
|
3250
|
+
:postgre_sql_settings,
|
3251
|
+
:my_sql_settings,
|
3252
|
+
:oracle_settings,
|
3253
|
+
:sybase_settings,
|
3254
|
+
:microsoft_sql_server_settings,
|
3255
|
+
:ibm_db_2_settings)
|
2791
3256
|
SENSITIVE = []
|
2792
3257
|
include Aws::Structure
|
2793
3258
|
end
|
@@ -2923,9 +3388,9 @@ module Aws::DatabaseMigrationService
|
|
2923
3388
|
include Aws::Structure
|
2924
3389
|
end
|
2925
3390
|
|
2926
|
-
# Identifies the name and value of a
|
2927
|
-
# the number and type of
|
2928
|
-
#
|
3391
|
+
# Identifies the name and value of a filter object. This filter is used
|
3392
|
+
# to limit the number and type of AWS DMS objects that are returned for
|
3393
|
+
# a particular `Describe*` or similar operation.
|
2929
3394
|
#
|
2930
3395
|
# @note When making an API call, you may pass Filter
|
2931
3396
|
# data as a hash:
|
@@ -2936,11 +3401,13 @@ module Aws::DatabaseMigrationService
|
|
2936
3401
|
# }
|
2937
3402
|
#
|
2938
3403
|
# @!attribute [rw] name
|
2939
|
-
# The name of the filter
|
3404
|
+
# The name of the filter as specified for a `Describe*` or similar
|
3405
|
+
# operation.
|
2940
3406
|
# @return [String]
|
2941
3407
|
#
|
2942
3408
|
# @!attribute [rw] values
|
2943
|
-
# The filter value
|
3409
|
+
# The filter value, which can specify one or more values used to
|
3410
|
+
# narrow the returned results.
|
2944
3411
|
# @return [Array<String>]
|
2945
3412
|
#
|
2946
3413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Filter AWS API Documentation
|
@@ -2952,6 +3419,51 @@ module Aws::DatabaseMigrationService
|
|
2952
3419
|
include Aws::Structure
|
2953
3420
|
end
|
2954
3421
|
|
3422
|
+
# Provides information that defines an IBM Db2 LUW endpoint.
|
3423
|
+
#
|
3424
|
+
# @note When making an API call, you may pass IBMDb2Settings
|
3425
|
+
# data as a hash:
|
3426
|
+
#
|
3427
|
+
# {
|
3428
|
+
# database_name: "String",
|
3429
|
+
# password: "SecretString",
|
3430
|
+
# port: 1,
|
3431
|
+
# server_name: "String",
|
3432
|
+
# username: "String",
|
3433
|
+
# }
|
3434
|
+
#
|
3435
|
+
# @!attribute [rw] database_name
|
3436
|
+
# Database name for the endpoint.
|
3437
|
+
# @return [String]
|
3438
|
+
#
|
3439
|
+
# @!attribute [rw] password
|
3440
|
+
# Endpoint connection password.
|
3441
|
+
# @return [String]
|
3442
|
+
#
|
3443
|
+
# @!attribute [rw] port
|
3444
|
+
# Endpoint TCP port.
|
3445
|
+
# @return [Integer]
|
3446
|
+
#
|
3447
|
+
# @!attribute [rw] server_name
|
3448
|
+
# Fully qualified domain name of the endpoint.
|
3449
|
+
# @return [String]
|
3450
|
+
#
|
3451
|
+
# @!attribute [rw] username
|
3452
|
+
# Endpoint connection user name.
|
3453
|
+
# @return [String]
|
3454
|
+
#
|
3455
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/IBMDb2Settings AWS API Documentation
|
3456
|
+
#
|
3457
|
+
class IBMDb2Settings < Struct.new(
|
3458
|
+
:database_name,
|
3459
|
+
:password,
|
3460
|
+
:port,
|
3461
|
+
:server_name,
|
3462
|
+
:username)
|
3463
|
+
SENSITIVE = [:password]
|
3464
|
+
include Aws::Structure
|
3465
|
+
end
|
3466
|
+
|
2955
3467
|
# @note When making an API call, you may pass ImportCertificateMessage
|
2956
3468
|
# data as a hash:
|
2957
3469
|
#
|
@@ -3090,6 +3602,20 @@ module Aws::DatabaseMigrationService
|
|
3090
3602
|
include Aws::Structure
|
3091
3603
|
end
|
3092
3604
|
|
3605
|
+
# An AWS Key Management Service (AWS KMS) error is preventing access to
|
3606
|
+
# AWS KMS.
|
3607
|
+
#
|
3608
|
+
# @!attribute [rw] message
|
3609
|
+
# @return [String]
|
3610
|
+
#
|
3611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KMSFault AWS API Documentation
|
3612
|
+
#
|
3613
|
+
class KMSFault < Struct.new(
|
3614
|
+
:message)
|
3615
|
+
SENSITIVE = []
|
3616
|
+
include Aws::Structure
|
3617
|
+
end
|
3618
|
+
|
3093
3619
|
# The state of the specified AWS KMS resource isn't valid for this
|
3094
3620
|
# request.
|
3095
3621
|
#
|
@@ -3154,6 +3680,12 @@ module Aws::DatabaseMigrationService
|
|
3154
3680
|
# {
|
3155
3681
|
# broker: "String",
|
3156
3682
|
# topic: "String",
|
3683
|
+
# message_format: "json", # accepts json, json-unformatted
|
3684
|
+
# include_transaction_details: false,
|
3685
|
+
# include_partition_value: false,
|
3686
|
+
# partition_include_schema_table: false,
|
3687
|
+
# include_table_alter_operations: false,
|
3688
|
+
# include_control_details: false,
|
3157
3689
|
# }
|
3158
3690
|
#
|
3159
3691
|
# @!attribute [rw] broker
|
@@ -3169,11 +3701,59 @@ module Aws::DatabaseMigrationService
|
|
3169
3701
|
# topic.
|
3170
3702
|
# @return [String]
|
3171
3703
|
#
|
3704
|
+
# @!attribute [rw] message_format
|
3705
|
+
# The output format for the records created on the endpoint. The
|
3706
|
+
# message format is `JSON` (default) or `JSON_UNFORMATTED` (a single
|
3707
|
+
# line with no tab).
|
3708
|
+
# @return [String]
|
3709
|
+
#
|
3710
|
+
# @!attribute [rw] include_transaction_details
|
3711
|
+
# Provides detailed transaction information from the source database.
|
3712
|
+
# This information includes a commit timestamp, a log position, and
|
3713
|
+
# values for `transaction_id`, previous `transaction_id`, and
|
3714
|
+
# `transaction_record_id` (the record offset within a transaction).
|
3715
|
+
# The default is `False`.
|
3716
|
+
# @return [Boolean]
|
3717
|
+
#
|
3718
|
+
# @!attribute [rw] include_partition_value
|
3719
|
+
# Shows the partition value within the Kafka message output, unless
|
3720
|
+
# the partition type is `schema-table-type`. The default is `False`.
|
3721
|
+
# @return [Boolean]
|
3722
|
+
#
|
3723
|
+
# @!attribute [rw] partition_include_schema_table
|
3724
|
+
# Prefixes schema and table names to partition values, when the
|
3725
|
+
# partition type is `primary-key-type`. Doing this increases data
|
3726
|
+
# distribution among Kafka partitions. For example, suppose that a
|
3727
|
+
# SysBench schema has thousands of tables and each table has only
|
3728
|
+
# limited range for a primary key. In this case, the same primary key
|
3729
|
+
# is sent from thousands of tables to the same partition, which causes
|
3730
|
+
# throttling. The default is `False`.
|
3731
|
+
# @return [Boolean]
|
3732
|
+
#
|
3733
|
+
# @!attribute [rw] include_table_alter_operations
|
3734
|
+
# Includes any data definition language (DDL) operations that change
|
3735
|
+
# the table in the control data, such as `rename-table`, `drop-table`,
|
3736
|
+
# `add-column`, `drop-column`, and `rename-column`. The default is
|
3737
|
+
# `False`.
|
3738
|
+
# @return [Boolean]
|
3739
|
+
#
|
3740
|
+
# @!attribute [rw] include_control_details
|
3741
|
+
# Shows detailed control information for table definition, column
|
3742
|
+
# definition, and table and column changes in the Kafka message
|
3743
|
+
# output. The default is `False`.
|
3744
|
+
# @return [Boolean]
|
3745
|
+
#
|
3172
3746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KafkaSettings AWS API Documentation
|
3173
3747
|
#
|
3174
3748
|
class KafkaSettings < Struct.new(
|
3175
3749
|
:broker,
|
3176
|
-
:topic
|
3750
|
+
:topic,
|
3751
|
+
:message_format,
|
3752
|
+
:include_transaction_details,
|
3753
|
+
:include_partition_value,
|
3754
|
+
:partition_include_schema_table,
|
3755
|
+
:include_table_alter_operations,
|
3756
|
+
:include_control_details)
|
3177
3757
|
SENSITIVE = []
|
3178
3758
|
include Aws::Structure
|
3179
3759
|
end
|
@@ -3297,6 +3877,51 @@ module Aws::DatabaseMigrationService
|
|
3297
3877
|
include Aws::Structure
|
3298
3878
|
end
|
3299
3879
|
|
3880
|
+
# Provides information that defines a Microsoft SQL Server endpoint.
|
3881
|
+
#
|
3882
|
+
# @note When making an API call, you may pass MicrosoftSQLServerSettings
|
3883
|
+
# data as a hash:
|
3884
|
+
#
|
3885
|
+
# {
|
3886
|
+
# port: 1,
|
3887
|
+
# database_name: "String",
|
3888
|
+
# password: "SecretString",
|
3889
|
+
# server_name: "String",
|
3890
|
+
# username: "String",
|
3891
|
+
# }
|
3892
|
+
#
|
3893
|
+
# @!attribute [rw] port
|
3894
|
+
# Endpoint TCP port.
|
3895
|
+
# @return [Integer]
|
3896
|
+
#
|
3897
|
+
# @!attribute [rw] database_name
|
3898
|
+
# Database name for the endpoint.
|
3899
|
+
# @return [String]
|
3900
|
+
#
|
3901
|
+
# @!attribute [rw] password
|
3902
|
+
# Endpoint connection password.
|
3903
|
+
# @return [String]
|
3904
|
+
#
|
3905
|
+
# @!attribute [rw] server_name
|
3906
|
+
# Fully qualified domain name of the endpoint.
|
3907
|
+
# @return [String]
|
3908
|
+
#
|
3909
|
+
# @!attribute [rw] username
|
3910
|
+
# Endpoint connection user name.
|
3911
|
+
# @return [String]
|
3912
|
+
#
|
3913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
|
3914
|
+
#
|
3915
|
+
class MicrosoftSQLServerSettings < Struct.new(
|
3916
|
+
:port,
|
3917
|
+
:database_name,
|
3918
|
+
:password,
|
3919
|
+
:server_name,
|
3920
|
+
:username)
|
3921
|
+
SENSITIVE = [:password]
|
3922
|
+
include Aws::Structure
|
3923
|
+
end
|
3924
|
+
|
3300
3925
|
# @note When making an API call, you may pass ModifyEndpointMessage
|
3301
3926
|
# data as a hash:
|
3302
3927
|
#
|
@@ -3372,6 +3997,12 @@ module Aws::DatabaseMigrationService
|
|
3372
3997
|
# kafka_settings: {
|
3373
3998
|
# broker: "String",
|
3374
3999
|
# topic: "String",
|
4000
|
+
# message_format: "json", # accepts json, json-unformatted
|
4001
|
+
# include_transaction_details: false,
|
4002
|
+
# include_partition_value: false,
|
4003
|
+
# partition_include_schema_table: false,
|
4004
|
+
# include_table_alter_operations: false,
|
4005
|
+
# include_control_details: false,
|
3375
4006
|
# },
|
3376
4007
|
# elasticsearch_settings: {
|
3377
4008
|
# service_access_role_arn: "String", # required
|
@@ -3415,6 +4046,53 @@ module Aws::DatabaseMigrationService
|
|
3415
4046
|
# username: "String",
|
3416
4047
|
# write_buffer_size: 1,
|
3417
4048
|
# },
|
4049
|
+
# postgre_sql_settings: {
|
4050
|
+
# database_name: "String",
|
4051
|
+
# password: "SecretString",
|
4052
|
+
# port: 1,
|
4053
|
+
# server_name: "String",
|
4054
|
+
# username: "String",
|
4055
|
+
# },
|
4056
|
+
# my_sql_settings: {
|
4057
|
+
# database_name: "String",
|
4058
|
+
# password: "SecretString",
|
4059
|
+
# port: 1,
|
4060
|
+
# server_name: "String",
|
4061
|
+
# username: "String",
|
4062
|
+
# },
|
4063
|
+
# oracle_settings: {
|
4064
|
+
# asm_password: "SecretString",
|
4065
|
+
# asm_server: "String",
|
4066
|
+
# asm_user: "String",
|
4067
|
+
# database_name: "String",
|
4068
|
+
# password: "SecretString",
|
4069
|
+
# port: 1,
|
4070
|
+
# security_db_encryption: "SecretString",
|
4071
|
+
# security_db_encryption_name: "String",
|
4072
|
+
# server_name: "String",
|
4073
|
+
# username: "String",
|
4074
|
+
# },
|
4075
|
+
# sybase_settings: {
|
4076
|
+
# database_name: "String",
|
4077
|
+
# password: "SecretString",
|
4078
|
+
# port: 1,
|
4079
|
+
# server_name: "String",
|
4080
|
+
# username: "String",
|
4081
|
+
# },
|
4082
|
+
# microsoft_sql_server_settings: {
|
4083
|
+
# port: 1,
|
4084
|
+
# database_name: "String",
|
4085
|
+
# password: "SecretString",
|
4086
|
+
# server_name: "String",
|
4087
|
+
# username: "String",
|
4088
|
+
# },
|
4089
|
+
# ibm_db_2_settings: {
|
4090
|
+
# database_name: "String",
|
4091
|
+
# password: "SecretString",
|
4092
|
+
# port: 1,
|
4093
|
+
# server_name: "String",
|
4094
|
+
# username: "String",
|
4095
|
+
# },
|
3418
4096
|
# }
|
3419
4097
|
#
|
3420
4098
|
# @!attribute [rw] endpoint_arn
|
@@ -3592,6 +4270,85 @@ module Aws::DatabaseMigrationService
|
|
3592
4270
|
# Provides information that defines an Amazon Redshift endpoint.
|
3593
4271
|
# @return [Types::RedshiftSettings]
|
3594
4272
|
#
|
4273
|
+
# @!attribute [rw] postgre_sql_settings
|
4274
|
+
# Settings in JSON format for the source and target PostgreSQL
|
4275
|
+
# endpoint. For information about other available settings, see [Extra
|
4276
|
+
# connection attributes when using PostgreSQL as a source for AWS
|
4277
|
+
# DMS][1] and [ Extra connection attributes when using PostgreSQL as a
|
4278
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
4279
|
+
# Guide.*
|
4280
|
+
#
|
4281
|
+
#
|
4282
|
+
#
|
4283
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
4284
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
4285
|
+
# @return [Types::PostgreSQLSettings]
|
4286
|
+
#
|
4287
|
+
# @!attribute [rw] my_sql_settings
|
4288
|
+
# Settings in JSON format for the source and target MySQL endpoint.
|
4289
|
+
# For information about other available settings, see [Extra
|
4290
|
+
# connection attributes when using MySQL as a source for AWS DMS][1]
|
4291
|
+
# and [Extra connection attributes when using a MySQL-compatible
|
4292
|
+
# database as a target for AWS DMS][2] in the *AWS Database Migration
|
4293
|
+
# Service User Guide.*
|
4294
|
+
#
|
4295
|
+
#
|
4296
|
+
#
|
4297
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
4298
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
4299
|
+
# @return [Types::MySQLSettings]
|
4300
|
+
#
|
4301
|
+
# @!attribute [rw] oracle_settings
|
4302
|
+
# Settings in JSON format for the source and target Oracle endpoint.
|
4303
|
+
# For information about other available settings, see [Extra
|
4304
|
+
# connection attributes when using Oracle as a source for AWS DMS][1]
|
4305
|
+
# and [ Extra connection attributes when using Oracle as a target for
|
4306
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
4307
|
+
#
|
4308
|
+
#
|
4309
|
+
#
|
4310
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
4311
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
4312
|
+
# @return [Types::OracleSettings]
|
4313
|
+
#
|
4314
|
+
# @!attribute [rw] sybase_settings
|
4315
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
4316
|
+
# For information about other available settings, see [Extra
|
4317
|
+
# connection attributes when using SAP ASE as a source for AWS DMS][1]
|
4318
|
+
# and [Extra connection attributes when using SAP ASE as a target for
|
4319
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
4320
|
+
#
|
4321
|
+
#
|
4322
|
+
#
|
4323
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
4324
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
4325
|
+
# @return [Types::SybaseSettings]
|
4326
|
+
#
|
4327
|
+
# @!attribute [rw] microsoft_sql_server_settings
|
4328
|
+
# Settings in JSON format for the source and target Microsoft SQL
|
4329
|
+
# Server endpoint. For information about other available settings, see
|
4330
|
+
# [Extra connection attributes when using SQL Server as a source for
|
4331
|
+
# AWS DMS][1] and [ Extra connection attributes when using SQL Server
|
4332
|
+
# as a target for AWS DMS][2] in the *AWS Database Migration Service
|
4333
|
+
# User Guide.*
|
4334
|
+
#
|
4335
|
+
#
|
4336
|
+
#
|
4337
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
4338
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
4339
|
+
# @return [Types::MicrosoftSQLServerSettings]
|
4340
|
+
#
|
4341
|
+
# @!attribute [rw] ibm_db_2_settings
|
4342
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
4343
|
+
# information about other available settings, see [Extra connection
|
4344
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the
|
4345
|
+
# *AWS Database Migration Service User Guide.*
|
4346
|
+
#
|
4347
|
+
#
|
4348
|
+
#
|
4349
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
4350
|
+
# @return [Types::IBMDb2Settings]
|
4351
|
+
#
|
3595
4352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpointMessage AWS API Documentation
|
3596
4353
|
#
|
3597
4354
|
class ModifyEndpointMessage < Struct.new(
|
@@ -3617,7 +4374,13 @@ module Aws::DatabaseMigrationService
|
|
3617
4374
|
:kafka_settings,
|
3618
4375
|
:elasticsearch_settings,
|
3619
4376
|
:neptune_settings,
|
3620
|
-
:redshift_settings
|
4377
|
+
:redshift_settings,
|
4378
|
+
:postgre_sql_settings,
|
4379
|
+
:my_sql_settings,
|
4380
|
+
:oracle_settings,
|
4381
|
+
:sybase_settings,
|
4382
|
+
:microsoft_sql_server_settings,
|
4383
|
+
:ibm_db_2_settings)
|
3621
4384
|
SENSITIVE = [:password]
|
3622
4385
|
include Aws::Structure
|
3623
4386
|
end
|
@@ -4134,6 +4897,51 @@ module Aws::DatabaseMigrationService
|
|
4134
4897
|
include Aws::Structure
|
4135
4898
|
end
|
4136
4899
|
|
4900
|
+
# Provides information that defines a MySQL endpoint.
|
4901
|
+
#
|
4902
|
+
# @note When making an API call, you may pass MySQLSettings
|
4903
|
+
# data as a hash:
|
4904
|
+
#
|
4905
|
+
# {
|
4906
|
+
# database_name: "String",
|
4907
|
+
# password: "SecretString",
|
4908
|
+
# port: 1,
|
4909
|
+
# server_name: "String",
|
4910
|
+
# username: "String",
|
4911
|
+
# }
|
4912
|
+
#
|
4913
|
+
# @!attribute [rw] database_name
|
4914
|
+
# Database name for the endpoint.
|
4915
|
+
# @return [String]
|
4916
|
+
#
|
4917
|
+
# @!attribute [rw] password
|
4918
|
+
# Endpoint connection password.
|
4919
|
+
# @return [String]
|
4920
|
+
#
|
4921
|
+
# @!attribute [rw] port
|
4922
|
+
# Endpoint TCP port.
|
4923
|
+
# @return [Integer]
|
4924
|
+
#
|
4925
|
+
# @!attribute [rw] server_name
|
4926
|
+
# Fully qualified domain name of the endpoint.
|
4927
|
+
# @return [String]
|
4928
|
+
#
|
4929
|
+
# @!attribute [rw] username
|
4930
|
+
# Endpoint connection user name.
|
4931
|
+
# @return [String]
|
4932
|
+
#
|
4933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MySQLSettings AWS API Documentation
|
4934
|
+
#
|
4935
|
+
class MySQLSettings < Struct.new(
|
4936
|
+
:database_name,
|
4937
|
+
:password,
|
4938
|
+
:port,
|
4939
|
+
:server_name,
|
4940
|
+
:username)
|
4941
|
+
SENSITIVE = [:password]
|
4942
|
+
include Aws::Structure
|
4943
|
+
end
|
4944
|
+
|
4137
4945
|
# Provides information that defines an Amazon Neptune endpoint.
|
4138
4946
|
#
|
4139
4947
|
# @note When making an API call, you may pass NeptuneSettings
|
@@ -4186,30 +4994,157 @@ module Aws::DatabaseMigrationService
|
|
4186
4994
|
# of migrated graph data.
|
4187
4995
|
# @return [Integer]
|
4188
4996
|
#
|
4189
|
-
# @!attribute [rw] max_retry_count
|
4190
|
-
# The number of times for AWS DMS to retry a bulk load of migrated
|
4191
|
-
# graph data to the Neptune target database before raising an error.
|
4192
|
-
# The default is 5.
|
4193
|
-
# @return [Integer]
|
4997
|
+
# @!attribute [rw] max_retry_count
|
4998
|
+
# The number of times for AWS DMS to retry a bulk load of migrated
|
4999
|
+
# graph data to the Neptune target database before raising an error.
|
5000
|
+
# The default is 5.
|
5001
|
+
# @return [Integer]
|
5002
|
+
#
|
5003
|
+
# @!attribute [rw] iam_auth_enabled
|
5004
|
+
# If you want AWS Identity and Access Management (IAM) authorization
|
5005
|
+
# enabled for this endpoint, set this parameter to `true`. Then attach
|
5006
|
+
# the appropriate IAM policy document to your service role specified
|
5007
|
+
# by `ServiceAccessRoleArn`. The default is `false`.
|
5008
|
+
# @return [Boolean]
|
5009
|
+
#
|
5010
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/NeptuneSettings AWS API Documentation
|
5011
|
+
#
|
5012
|
+
class NeptuneSettings < Struct.new(
|
5013
|
+
:service_access_role_arn,
|
5014
|
+
:s3_bucket_name,
|
5015
|
+
:s3_bucket_folder,
|
5016
|
+
:error_retry_duration,
|
5017
|
+
:max_file_size,
|
5018
|
+
:max_retry_count,
|
5019
|
+
:iam_auth_enabled)
|
5020
|
+
SENSITIVE = []
|
5021
|
+
include Aws::Structure
|
5022
|
+
end
|
5023
|
+
|
5024
|
+
# Provides information that defines an Oracle endpoint.
|
5025
|
+
#
|
5026
|
+
# @note When making an API call, you may pass OracleSettings
|
5027
|
+
# data as a hash:
|
5028
|
+
#
|
5029
|
+
# {
|
5030
|
+
# asm_password: "SecretString",
|
5031
|
+
# asm_server: "String",
|
5032
|
+
# asm_user: "String",
|
5033
|
+
# database_name: "String",
|
5034
|
+
# password: "SecretString",
|
5035
|
+
# port: 1,
|
5036
|
+
# security_db_encryption: "SecretString",
|
5037
|
+
# security_db_encryption_name: "String",
|
5038
|
+
# server_name: "String",
|
5039
|
+
# username: "String",
|
5040
|
+
# }
|
5041
|
+
#
|
5042
|
+
# @!attribute [rw] asm_password
|
5043
|
+
# For an Oracle source endpoint, your Oracle Automatic Storage
|
5044
|
+
# Management (ASM) password. You can set this value from the `
|
5045
|
+
# asm_user_password ` value. You set this value as part of the
|
5046
|
+
# comma-separated value that you set to the `Password` request
|
5047
|
+
# parameter when you create the endpoint to access transaction logs
|
5048
|
+
# using Binary Reader. For more information, see [Configuration for
|
5049
|
+
# change data capture (CDC) on an Oracle source database][1].
|
5050
|
+
#
|
5051
|
+
#
|
5052
|
+
#
|
5053
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration
|
5054
|
+
# @return [String]
|
5055
|
+
#
|
5056
|
+
# @!attribute [rw] asm_server
|
5057
|
+
# For an Oracle source endpoint, your ASM server address. You can set
|
5058
|
+
# this value from the `asm_server` value. You set `asm_server` as part
|
5059
|
+
# of the extra connection attribute string to access an Oracle server
|
5060
|
+
# with Binary Reader that uses ASM. For more information, see
|
5061
|
+
# [Configuration for change data capture (CDC) on an Oracle source
|
5062
|
+
# database][1].
|
5063
|
+
#
|
5064
|
+
#
|
5065
|
+
#
|
5066
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration
|
5067
|
+
# @return [String]
|
5068
|
+
#
|
5069
|
+
# @!attribute [rw] asm_user
|
5070
|
+
# For an Oracle source endpoint, your ASM user name. You can set this
|
5071
|
+
# value from the `asm_user` value. You set `asm_user` as part of the
|
5072
|
+
# extra connection attribute string to access an Oracle server with
|
5073
|
+
# Binary Reader that uses ASM. For more information, see
|
5074
|
+
# [Configuration for change data capture (CDC) on an Oracle source
|
5075
|
+
# database][1].
|
5076
|
+
#
|
5077
|
+
#
|
5078
|
+
#
|
5079
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration
|
5080
|
+
# @return [String]
|
5081
|
+
#
|
5082
|
+
# @!attribute [rw] database_name
|
5083
|
+
# Database name for the endpoint.
|
5084
|
+
# @return [String]
|
5085
|
+
#
|
5086
|
+
# @!attribute [rw] password
|
5087
|
+
# Endpoint connection password.
|
5088
|
+
# @return [String]
|
5089
|
+
#
|
5090
|
+
# @!attribute [rw] port
|
5091
|
+
# Endpoint TCP port.
|
5092
|
+
# @return [Integer]
|
5093
|
+
#
|
5094
|
+
# @!attribute [rw] security_db_encryption
|
5095
|
+
# For an Oracle source endpoint, the transparent data encryption (TDE)
|
5096
|
+
# password required by AWM DMS to access Oracle redo logs encrypted by
|
5097
|
+
# TDE using Binary Reader. It is also the ` TDE_Password ` part of the
|
5098
|
+
# comma-separated value you set to the `Password` request parameter
|
5099
|
+
# when you create the endpoint. The `SecurityDbEncryptian` setting is
|
5100
|
+
# related to this `SecurityDbEncryptionName` setting. For more
|
5101
|
+
# information, see [ Supported encryption methods for using Oracle as
|
5102
|
+
# a source for AWS DMS][1] in the *AWS Database Migration Service User
|
5103
|
+
# Guide*.
|
5104
|
+
#
|
5105
|
+
#
|
5106
|
+
#
|
5107
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.Encryption
|
5108
|
+
# @return [String]
|
5109
|
+
#
|
5110
|
+
# @!attribute [rw] security_db_encryption_name
|
5111
|
+
# For an Oracle source endpoint, the name of a key used for the
|
5112
|
+
# transparent data encryption (TDE) of the columns and tablespaces in
|
5113
|
+
# an Oracle source database that is encrypted using TDE. The key value
|
5114
|
+
# is the value of the `SecurityDbEncryption` setting. For more
|
5115
|
+
# information on setting the key name value of
|
5116
|
+
# `SecurityDbEncryptionName`, see the information and example for
|
5117
|
+
# setting the `securityDbEncryptionName` extra connection attribute in
|
5118
|
+
# [ Supported encryption methods for using Oracle as a source for AWS
|
5119
|
+
# DMS][1] in the *AWS Database Migration Service User Guide*.
|
5120
|
+
#
|
5121
|
+
#
|
5122
|
+
#
|
5123
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.Encryption
|
5124
|
+
# @return [String]
|
4194
5125
|
#
|
4195
|
-
# @!attribute [rw]
|
4196
|
-
#
|
4197
|
-
#
|
4198
|
-
# the appropriate IAM policy document to your service role specified
|
4199
|
-
# by `ServiceAccessRoleArn`. The default is `false`.
|
4200
|
-
# @return [Boolean]
|
5126
|
+
# @!attribute [rw] server_name
|
5127
|
+
# Fully qualified domain name of the endpoint.
|
5128
|
+
# @return [String]
|
4201
5129
|
#
|
4202
|
-
#
|
5130
|
+
# @!attribute [rw] username
|
5131
|
+
# Endpoint connection user name.
|
5132
|
+
# @return [String]
|
4203
5133
|
#
|
4204
|
-
|
4205
|
-
|
4206
|
-
|
4207
|
-
:
|
4208
|
-
:
|
4209
|
-
:
|
4210
|
-
:
|
4211
|
-
:
|
4212
|
-
|
5134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
|
5135
|
+
#
|
5136
|
+
class OracleSettings < Struct.new(
|
5137
|
+
:asm_password,
|
5138
|
+
:asm_server,
|
5139
|
+
:asm_user,
|
5140
|
+
:database_name,
|
5141
|
+
:password,
|
5142
|
+
:port,
|
5143
|
+
:security_db_encryption,
|
5144
|
+
:security_db_encryption_name,
|
5145
|
+
:server_name,
|
5146
|
+
:username)
|
5147
|
+
SENSITIVE = [:asm_password, :password, :security_db_encryption]
|
4213
5148
|
include Aws::Structure
|
4214
5149
|
end
|
4215
5150
|
|
@@ -4346,6 +5281,51 @@ module Aws::DatabaseMigrationService
|
|
4346
5281
|
include Aws::Structure
|
4347
5282
|
end
|
4348
5283
|
|
5284
|
+
# Provides information that defines a PostgreSQL endpoint.
|
5285
|
+
#
|
5286
|
+
# @note When making an API call, you may pass PostgreSQLSettings
|
5287
|
+
# data as a hash:
|
5288
|
+
#
|
5289
|
+
# {
|
5290
|
+
# database_name: "String",
|
5291
|
+
# password: "SecretString",
|
5292
|
+
# port: 1,
|
5293
|
+
# server_name: "String",
|
5294
|
+
# username: "String",
|
5295
|
+
# }
|
5296
|
+
#
|
5297
|
+
# @!attribute [rw] database_name
|
5298
|
+
# Database name for the endpoint.
|
5299
|
+
# @return [String]
|
5300
|
+
#
|
5301
|
+
# @!attribute [rw] password
|
5302
|
+
# Endpoint connection password.
|
5303
|
+
# @return [String]
|
5304
|
+
#
|
5305
|
+
# @!attribute [rw] port
|
5306
|
+
# Endpoint TCP port.
|
5307
|
+
# @return [Integer]
|
5308
|
+
#
|
5309
|
+
# @!attribute [rw] server_name
|
5310
|
+
# Fully qualified domain name of the endpoint.
|
5311
|
+
# @return [String]
|
5312
|
+
#
|
5313
|
+
# @!attribute [rw] username
|
5314
|
+
# Endpoint connection user name.
|
5315
|
+
# @return [String]
|
5316
|
+
#
|
5317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
|
5318
|
+
#
|
5319
|
+
class PostgreSQLSettings < Struct.new(
|
5320
|
+
:database_name,
|
5321
|
+
:password,
|
5322
|
+
:port,
|
5323
|
+
:server_name,
|
5324
|
+
:username)
|
5325
|
+
SENSITIVE = [:password]
|
5326
|
+
include Aws::Structure
|
5327
|
+
end
|
5328
|
+
|
4349
5329
|
# @note When making an API call, you may pass RebootReplicationInstanceMessage
|
4350
5330
|
# data as a hash:
|
4351
5331
|
#
|
@@ -4688,8 +5668,8 @@ module Aws::DatabaseMigrationService
|
|
4688
5668
|
# replication_task_arn: "String", # required
|
4689
5669
|
# tables_to_reload: [ # required
|
4690
5670
|
# {
|
4691
|
-
# schema_name: "String",
|
4692
|
-
# table_name: "String",
|
5671
|
+
# schema_name: "String", # required
|
5672
|
+
# table_name: "String", # required
|
4693
5673
|
# },
|
4694
5674
|
# ],
|
4695
5675
|
# reload_option: "data-reload", # accepts data-reload, validate-only
|
@@ -5273,6 +6253,189 @@ module Aws::DatabaseMigrationService
|
|
5273
6253
|
include Aws::Structure
|
5274
6254
|
end
|
5275
6255
|
|
6256
|
+
# Provides information that describes a premigration assessment run that
|
6257
|
+
# you have started using the `StartReplicationTaskAssessmentRun`
|
6258
|
+
# operation.
|
6259
|
+
#
|
6260
|
+
# Some of the information appears based on other operations that can
|
6261
|
+
# return the `ReplicationTaskAssessmentRun` object.
|
6262
|
+
#
|
6263
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
6264
|
+
# Amazon Resource Name (ARN) of this assessment run.
|
6265
|
+
# @return [String]
|
6266
|
+
#
|
6267
|
+
# @!attribute [rw] replication_task_arn
|
6268
|
+
# ARN of the migration task associated with this premigration
|
6269
|
+
# assessment run.
|
6270
|
+
# @return [String]
|
6271
|
+
#
|
6272
|
+
# @!attribute [rw] status
|
6273
|
+
# Assessment run status.
|
6274
|
+
#
|
6275
|
+
# This status can have one of the following values:
|
6276
|
+
#
|
6277
|
+
# * `"cancelling"` – The assessment run was canceled by the
|
6278
|
+
# `CancelReplicationTaskAssessmentRun` operation.
|
6279
|
+
#
|
6280
|
+
# * `"deleting"` – The assessment run was deleted by the
|
6281
|
+
# `DeleteReplicationTaskAssessmentRun` operation.
|
6282
|
+
#
|
6283
|
+
# * `"failed"` – At least one individual assessment completed with a
|
6284
|
+
# `failed` status.
|
6285
|
+
#
|
6286
|
+
# * `"error-provisioning"` – An internal error occurred while
|
6287
|
+
# resources were provisioned (during `provisioning` status).
|
6288
|
+
#
|
6289
|
+
# * `"error-executing"` – An internal error occurred while individual
|
6290
|
+
# assessments ran (during `running` status).
|
6291
|
+
#
|
6292
|
+
# * `"invalid state"` – The assessment run is in an unknown state.
|
6293
|
+
#
|
6294
|
+
# * `"passed"` – All individual assessments have completed, and none
|
6295
|
+
# has a `failed` status.
|
6296
|
+
#
|
6297
|
+
# * `"provisioning"` – Resources required to run individual
|
6298
|
+
# assessments are being provisioned.
|
6299
|
+
#
|
6300
|
+
# * `"running"` – Individual assessments are being run.
|
6301
|
+
#
|
6302
|
+
# * `"starting"` – The assessment run is starting, but resources are
|
6303
|
+
# not yet being provisioned for individual assessments.
|
6304
|
+
# @return [String]
|
6305
|
+
#
|
6306
|
+
# @!attribute [rw] replication_task_assessment_run_creation_date
|
6307
|
+
# Date on which the assessment run was created using the
|
6308
|
+
# `StartReplicationTaskAssessmentRun` operation.
|
6309
|
+
# @return [Time]
|
6310
|
+
#
|
6311
|
+
# @!attribute [rw] assessment_progress
|
6312
|
+
# Indication of the completion progress for the individual assessments
|
6313
|
+
# specified to run.
|
6314
|
+
# @return [Types::ReplicationTaskAssessmentRunProgress]
|
6315
|
+
#
|
6316
|
+
# @!attribute [rw] last_failure_message
|
6317
|
+
# Last message generated by an individual assessment failure.
|
6318
|
+
# @return [String]
|
6319
|
+
#
|
6320
|
+
# @!attribute [rw] service_access_role_arn
|
6321
|
+
# ARN of the service role used to start the assessment run using the
|
6322
|
+
# `StartReplicationTaskAssessmentRun` operation.
|
6323
|
+
# @return [String]
|
6324
|
+
#
|
6325
|
+
# @!attribute [rw] result_location_bucket
|
6326
|
+
# Amazon S3 bucket where AWS DMS stores the results of this assessment
|
6327
|
+
# run.
|
6328
|
+
# @return [String]
|
6329
|
+
#
|
6330
|
+
# @!attribute [rw] result_location_folder
|
6331
|
+
# Folder in an Amazon S3 bucket where AWS DMS stores the results of
|
6332
|
+
# this assessment run.
|
6333
|
+
# @return [String]
|
6334
|
+
#
|
6335
|
+
# @!attribute [rw] result_encryption_mode
|
6336
|
+
# Encryption mode used to encrypt the assessment run results.
|
6337
|
+
# @return [String]
|
6338
|
+
#
|
6339
|
+
# @!attribute [rw] result_kms_key_arn
|
6340
|
+
# ARN of the AWS KMS encryption key used to encrypt the assessment run
|
6341
|
+
# results.
|
6342
|
+
# @return [String]
|
6343
|
+
#
|
6344
|
+
# @!attribute [rw] assessment_run_name
|
6345
|
+
# Unique name of the assessment run.
|
6346
|
+
# @return [String]
|
6347
|
+
#
|
6348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRun AWS API Documentation
|
6349
|
+
#
|
6350
|
+
class ReplicationTaskAssessmentRun < Struct.new(
|
6351
|
+
:replication_task_assessment_run_arn,
|
6352
|
+
:replication_task_arn,
|
6353
|
+
:status,
|
6354
|
+
:replication_task_assessment_run_creation_date,
|
6355
|
+
:assessment_progress,
|
6356
|
+
:last_failure_message,
|
6357
|
+
:service_access_role_arn,
|
6358
|
+
:result_location_bucket,
|
6359
|
+
:result_location_folder,
|
6360
|
+
:result_encryption_mode,
|
6361
|
+
:result_kms_key_arn,
|
6362
|
+
:assessment_run_name)
|
6363
|
+
SENSITIVE = []
|
6364
|
+
include Aws::Structure
|
6365
|
+
end
|
6366
|
+
|
6367
|
+
# The progress values reported by the `AssessmentProgress` response
|
6368
|
+
# element.
|
6369
|
+
#
|
6370
|
+
# @!attribute [rw] individual_assessment_count
|
6371
|
+
# The number of individual assessments that are specified to run.
|
6372
|
+
# @return [Integer]
|
6373
|
+
#
|
6374
|
+
# @!attribute [rw] individual_assessment_completed_count
|
6375
|
+
# The number of individual assessments that have completed,
|
6376
|
+
# successfully or not.
|
6377
|
+
# @return [Integer]
|
6378
|
+
#
|
6379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRunProgress AWS API Documentation
|
6380
|
+
#
|
6381
|
+
class ReplicationTaskAssessmentRunProgress < Struct.new(
|
6382
|
+
:individual_assessment_count,
|
6383
|
+
:individual_assessment_completed_count)
|
6384
|
+
SENSITIVE = []
|
6385
|
+
include Aws::Structure
|
6386
|
+
end
|
6387
|
+
|
6388
|
+
# Provides information that describes an individual assessment from a
|
6389
|
+
# premigration assessment run.
|
6390
|
+
#
|
6391
|
+
# @!attribute [rw] replication_task_individual_assessment_arn
|
6392
|
+
# Amazon Resource Name (ARN) of this individual assessment.
|
6393
|
+
# @return [String]
|
6394
|
+
#
|
6395
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
6396
|
+
# ARN of the premigration assessment run that is created to run this
|
6397
|
+
# individual assessment.
|
6398
|
+
# @return [String]
|
6399
|
+
#
|
6400
|
+
# @!attribute [rw] individual_assessment_name
|
6401
|
+
# Name of this individual assessment.
|
6402
|
+
# @return [String]
|
6403
|
+
#
|
6404
|
+
# @!attribute [rw] status
|
6405
|
+
# Individual assessment status.
|
6406
|
+
#
|
6407
|
+
# This status can have one of the following values:
|
6408
|
+
#
|
6409
|
+
# * `"cancelled"`
|
6410
|
+
#
|
6411
|
+
# * `"error"`
|
6412
|
+
#
|
6413
|
+
# * `"failed"`
|
6414
|
+
#
|
6415
|
+
# * `"passed"`
|
6416
|
+
#
|
6417
|
+
# * `"pending"`
|
6418
|
+
#
|
6419
|
+
# * `"running"`
|
6420
|
+
# @return [String]
|
6421
|
+
#
|
6422
|
+
# @!attribute [rw] replication_task_individual_assessment_start_date
|
6423
|
+
# Date when this individual assessment was started as part of running
|
6424
|
+
# the `StartReplicationTaskAssessmentRun` operation.
|
6425
|
+
# @return [Time]
|
6426
|
+
#
|
6427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskIndividualAssessment AWS API Documentation
|
6428
|
+
#
|
6429
|
+
class ReplicationTaskIndividualAssessment < Struct.new(
|
6430
|
+
:replication_task_individual_assessment_arn,
|
6431
|
+
:replication_task_assessment_run_arn,
|
6432
|
+
:individual_assessment_name,
|
6433
|
+
:status,
|
6434
|
+
:replication_task_individual_assessment_start_date)
|
6435
|
+
SENSITIVE = []
|
6436
|
+
include Aws::Structure
|
6437
|
+
end
|
6438
|
+
|
5276
6439
|
# In response to a request by the `DescribeReplicationTasks` operation,
|
5277
6440
|
# this object provides a collection of statistics about a replication
|
5278
6441
|
# task.
|
@@ -5415,6 +6578,33 @@ module Aws::DatabaseMigrationService
|
|
5415
6578
|
include Aws::Structure
|
5416
6579
|
end
|
5417
6580
|
|
6581
|
+
# Insufficient privileges are preventing access to an Amazon S3 object.
|
6582
|
+
#
|
6583
|
+
# @!attribute [rw] message
|
6584
|
+
# @return [String]
|
6585
|
+
#
|
6586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3AccessDeniedFault AWS API Documentation
|
6587
|
+
#
|
6588
|
+
class S3AccessDeniedFault < Struct.new(
|
6589
|
+
:message)
|
6590
|
+
SENSITIVE = []
|
6591
|
+
include Aws::Structure
|
6592
|
+
end
|
6593
|
+
|
6594
|
+
# A specified Amazon S3 bucket, bucket folder, or other object can't be
|
6595
|
+
# found.
|
6596
|
+
#
|
6597
|
+
# @!attribute [rw] message
|
6598
|
+
# @return [String]
|
6599
|
+
#
|
6600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3ResourceNotFoundFault AWS API Documentation
|
6601
|
+
#
|
6602
|
+
class S3ResourceNotFoundFault < Struct.new(
|
6603
|
+
:message)
|
6604
|
+
SENSITIVE = []
|
6605
|
+
include Aws::Structure
|
6606
|
+
end
|
6607
|
+
|
5418
6608
|
# Settings for exporting data to Amazon S3.
|
5419
6609
|
#
|
5420
6610
|
# @note When making an API call, you may pass S3Settings
|
@@ -5836,6 +7026,125 @@ module Aws::DatabaseMigrationService
|
|
5836
7026
|
include Aws::Structure
|
5837
7027
|
end
|
5838
7028
|
|
7029
|
+
# @note When making an API call, you may pass StartReplicationTaskAssessmentRunMessage
|
7030
|
+
# data as a hash:
|
7031
|
+
#
|
7032
|
+
# {
|
7033
|
+
# replication_task_arn: "String", # required
|
7034
|
+
# service_access_role_arn: "String", # required
|
7035
|
+
# result_location_bucket: "String", # required
|
7036
|
+
# result_location_folder: "String",
|
7037
|
+
# result_encryption_mode: "String",
|
7038
|
+
# result_kms_key_arn: "String",
|
7039
|
+
# assessment_run_name: "String", # required
|
7040
|
+
# include_only: ["String"],
|
7041
|
+
# exclude: ["String"],
|
7042
|
+
# }
|
7043
|
+
#
|
7044
|
+
# @!attribute [rw] replication_task_arn
|
7045
|
+
# Amazon Resource Name (ARN) of the migration task associated with the
|
7046
|
+
# premigration assessment run that you want to start.
|
7047
|
+
# @return [String]
|
7048
|
+
#
|
7049
|
+
# @!attribute [rw] service_access_role_arn
|
7050
|
+
# ARN of a service role needed to start the assessment run.
|
7051
|
+
# @return [String]
|
7052
|
+
#
|
7053
|
+
# @!attribute [rw] result_location_bucket
|
7054
|
+
# Amazon S3 bucket where you want AWS DMS to store the results of this
|
7055
|
+
# assessment run.
|
7056
|
+
# @return [String]
|
7057
|
+
#
|
7058
|
+
# @!attribute [rw] result_location_folder
|
7059
|
+
# Folder within an Amazon S3 bucket where you want AWS DMS to store
|
7060
|
+
# the results of this assessment run.
|
7061
|
+
# @return [String]
|
7062
|
+
#
|
7063
|
+
# @!attribute [rw] result_encryption_mode
|
7064
|
+
# Encryption mode that you can specify to encrypt the results of this
|
7065
|
+
# assessment run. If you don't specify this request parameter, AWS
|
7066
|
+
# DMS stores the assessment run results without encryption. You can
|
7067
|
+
# specify one of the options following:
|
7068
|
+
#
|
7069
|
+
# * `"SSE_S3"` – The server-side encryption provided as a default by
|
7070
|
+
# Amazon S3.
|
7071
|
+
#
|
7072
|
+
# * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption.
|
7073
|
+
# This encryption can use either a custom KMS encryption key that
|
7074
|
+
# you specify or the default KMS encryption key that DMS provides.
|
7075
|
+
# @return [String]
|
7076
|
+
#
|
7077
|
+
# @!attribute [rw] result_kms_key_arn
|
7078
|
+
# ARN of a custom KMS encryption key that you specify when you set
|
7079
|
+
# `ResultEncryptionMode` to `"SSE_KMS`".
|
7080
|
+
# @return [String]
|
7081
|
+
#
|
7082
|
+
# @!attribute [rw] assessment_run_name
|
7083
|
+
# Unique name to identify the assessment run.
|
7084
|
+
# @return [String]
|
7085
|
+
#
|
7086
|
+
# @!attribute [rw] include_only
|
7087
|
+
# Space-separated list of names for specific individual assessments
|
7088
|
+
# that you want to include. These names come from the default list of
|
7089
|
+
# individual assessments that AWS DMS supports for the associated
|
7090
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
7091
|
+
#
|
7092
|
+
# <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
|
7093
|
+
# `Exclude` in the API operation.
|
7094
|
+
#
|
7095
|
+
# To identify the names of the default individual assessments that AWS
|
7096
|
+
# DMS supports for the associated migration task, run the
|
7097
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
7098
|
+
# `ReplicationTaskArn` request parameter.
|
7099
|
+
#
|
7100
|
+
# </note>
|
7101
|
+
# @return [Array<String>]
|
7102
|
+
#
|
7103
|
+
# @!attribute [rw] exclude
|
7104
|
+
# Space-separated list of names for specific individual assessments
|
7105
|
+
# that you want to exclude. These names come from the default list of
|
7106
|
+
# individual assessments that AWS DMS supports for the associated
|
7107
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
7108
|
+
#
|
7109
|
+
# <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
|
7110
|
+
# `IncludeOnly` in the API operation.
|
7111
|
+
#
|
7112
|
+
# To identify the names of the default individual assessments that AWS
|
7113
|
+
# DMS supports for the associated migration task, run the
|
7114
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
7115
|
+
# `ReplicationTaskArn` request parameter.
|
7116
|
+
#
|
7117
|
+
# </note>
|
7118
|
+
# @return [Array<String>]
|
7119
|
+
#
|
7120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRunMessage AWS API Documentation
|
7121
|
+
#
|
7122
|
+
class StartReplicationTaskAssessmentRunMessage < Struct.new(
|
7123
|
+
:replication_task_arn,
|
7124
|
+
:service_access_role_arn,
|
7125
|
+
:result_location_bucket,
|
7126
|
+
:result_location_folder,
|
7127
|
+
:result_encryption_mode,
|
7128
|
+
:result_kms_key_arn,
|
7129
|
+
:assessment_run_name,
|
7130
|
+
:include_only,
|
7131
|
+
:exclude)
|
7132
|
+
SENSITIVE = []
|
7133
|
+
include Aws::Structure
|
7134
|
+
end
|
7135
|
+
|
7136
|
+
# @!attribute [rw] replication_task_assessment_run
|
7137
|
+
# The premigration assessment run that was started.
|
7138
|
+
# @return [Types::ReplicationTaskAssessmentRun]
|
7139
|
+
#
|
7140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRunResponse AWS API Documentation
|
7141
|
+
#
|
7142
|
+
class StartReplicationTaskAssessmentRunResponse < Struct.new(
|
7143
|
+
:replication_task_assessment_run)
|
7144
|
+
SENSITIVE = []
|
7145
|
+
include Aws::Structure
|
7146
|
+
end
|
7147
|
+
|
5839
7148
|
# @note When making an API call, you may pass StartReplicationTaskMessage
|
5840
7149
|
# data as a hash:
|
5841
7150
|
#
|
@@ -6058,6 +7367,51 @@ module Aws::DatabaseMigrationService
|
|
6058
7367
|
include Aws::Structure
|
6059
7368
|
end
|
6060
7369
|
|
7370
|
+
# Provides information that defines a SAP ASE endpoint.
|
7371
|
+
#
|
7372
|
+
# @note When making an API call, you may pass SybaseSettings
|
7373
|
+
# data as a hash:
|
7374
|
+
#
|
7375
|
+
# {
|
7376
|
+
# database_name: "String",
|
7377
|
+
# password: "SecretString",
|
7378
|
+
# port: 1,
|
7379
|
+
# server_name: "String",
|
7380
|
+
# username: "String",
|
7381
|
+
# }
|
7382
|
+
#
|
7383
|
+
# @!attribute [rw] database_name
|
7384
|
+
# Database name for the endpoint.
|
7385
|
+
# @return [String]
|
7386
|
+
#
|
7387
|
+
# @!attribute [rw] password
|
7388
|
+
# Endpoint connection password.
|
7389
|
+
# @return [String]
|
7390
|
+
#
|
7391
|
+
# @!attribute [rw] port
|
7392
|
+
# Endpoint TCP port.
|
7393
|
+
# @return [Integer]
|
7394
|
+
#
|
7395
|
+
# @!attribute [rw] server_name
|
7396
|
+
# Fully qualified domain name of the endpoint.
|
7397
|
+
# @return [String]
|
7398
|
+
#
|
7399
|
+
# @!attribute [rw] username
|
7400
|
+
# Endpoint connection user name.
|
7401
|
+
# @return [String]
|
7402
|
+
#
|
7403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SybaseSettings AWS API Documentation
|
7404
|
+
#
|
7405
|
+
class SybaseSettings < Struct.new(
|
7406
|
+
:database_name,
|
7407
|
+
:password,
|
7408
|
+
:port,
|
7409
|
+
:server_name,
|
7410
|
+
:username)
|
7411
|
+
SENSITIVE = [:password]
|
7412
|
+
include Aws::Structure
|
7413
|
+
end
|
7414
|
+
|
6061
7415
|
# Provides a collection of table statistics in response to a request by
|
6062
7416
|
# the `DescribeTableStatistics` operation.
|
6063
7417
|
#
|
@@ -6204,8 +7558,8 @@ module Aws::DatabaseMigrationService
|
|
6204
7558
|
# data as a hash:
|
6205
7559
|
#
|
6206
7560
|
# {
|
6207
|
-
# schema_name: "String",
|
6208
|
-
# table_name: "String",
|
7561
|
+
# schema_name: "String", # required
|
7562
|
+
# table_name: "String", # required
|
6209
7563
|
# }
|
6210
7564
|
#
|
6211
7565
|
# @!attribute [rw] schema_name
|