aws-sdk-databasemigrationservice 1.37.0 → 1.43.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 +3 -2
- data/lib/aws-sdk-databasemigrationservice/client.rb +945 -35
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +295 -2
- data/lib/aws-sdk-databasemigrationservice/errors.rb +48 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +1579 -137
- metadata +4 -4
@@ -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
|
@@ -147,6 +147,15 @@ module Aws::DatabaseMigrationService
|
|
147
147
|
end
|
148
148
|
|
149
149
|
# The name of an Availability Zone for use during database migration.
|
150
|
+
# `AvailabilityZone` is an optional parameter to the [
|
151
|
+
# `CreateReplicationInstance` ][1] operation, and it’s value relates to
|
152
|
+
# the AWS Region of an endpoint. For example, the availability zone of
|
153
|
+
# an endpoint in the us-east-1 region might be us-east-1a, us-east-1b,
|
154
|
+
# us-east-1c, or us-east-1d.
|
155
|
+
#
|
156
|
+
#
|
157
|
+
#
|
158
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_CreateReplicationInstance.html
|
150
159
|
#
|
151
160
|
# @!attribute [rw] name
|
152
161
|
# The name of the Availability Zone.
|
@@ -160,6 +169,39 @@ module Aws::DatabaseMigrationService
|
|
160
169
|
include Aws::Structure
|
161
170
|
end
|
162
171
|
|
172
|
+
# @note When making an API call, you may pass CancelReplicationTaskAssessmentRunMessage
|
173
|
+
# data as a hash:
|
174
|
+
#
|
175
|
+
# {
|
176
|
+
# replication_task_assessment_run_arn: "String", # required
|
177
|
+
# }
|
178
|
+
#
|
179
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
180
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
181
|
+
# canceled.
|
182
|
+
# @return [String]
|
183
|
+
#
|
184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRunMessage AWS API Documentation
|
185
|
+
#
|
186
|
+
class CancelReplicationTaskAssessmentRunMessage < Struct.new(
|
187
|
+
:replication_task_assessment_run_arn)
|
188
|
+
SENSITIVE = []
|
189
|
+
include Aws::Structure
|
190
|
+
end
|
191
|
+
|
192
|
+
# @!attribute [rw] replication_task_assessment_run
|
193
|
+
# The `ReplicationTaskAssessmentRun` object for the canceled
|
194
|
+
# assessment run.
|
195
|
+
# @return [Types::ReplicationTaskAssessmentRun]
|
196
|
+
#
|
197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRunResponse AWS API Documentation
|
198
|
+
#
|
199
|
+
class CancelReplicationTaskAssessmentRunResponse < Struct.new(
|
200
|
+
:replication_task_assessment_run)
|
201
|
+
SENSITIVE = []
|
202
|
+
include Aws::Structure
|
203
|
+
end
|
204
|
+
|
163
205
|
# The SSL certificate that can be used to encrypt connections between
|
164
206
|
# the endpoints and the replication instance.
|
165
207
|
#
|
@@ -354,10 +396,19 @@ module Aws::DatabaseMigrationService
|
|
354
396
|
# partition_include_schema_table: false,
|
355
397
|
# include_table_alter_operations: false,
|
356
398
|
# include_control_details: false,
|
399
|
+
# include_null_and_empty: false,
|
357
400
|
# },
|
358
401
|
# kafka_settings: {
|
359
402
|
# broker: "String",
|
360
403
|
# topic: "String",
|
404
|
+
# message_format: "json", # accepts json, json-unformatted
|
405
|
+
# include_transaction_details: false,
|
406
|
+
# include_partition_value: false,
|
407
|
+
# partition_include_schema_table: false,
|
408
|
+
# include_table_alter_operations: false,
|
409
|
+
# include_control_details: false,
|
410
|
+
# message_max_bytes: 1,
|
411
|
+
# include_null_and_empty: false,
|
361
412
|
# },
|
362
413
|
# elasticsearch_settings: {
|
363
414
|
# service_access_role_arn: "String", # required
|
@@ -401,12 +452,59 @@ module Aws::DatabaseMigrationService
|
|
401
452
|
# username: "String",
|
402
453
|
# write_buffer_size: 1,
|
403
454
|
# },
|
455
|
+
# postgre_sql_settings: {
|
456
|
+
# database_name: "String",
|
457
|
+
# password: "SecretString",
|
458
|
+
# port: 1,
|
459
|
+
# server_name: "String",
|
460
|
+
# username: "String",
|
461
|
+
# },
|
462
|
+
# my_sql_settings: {
|
463
|
+
# database_name: "String",
|
464
|
+
# password: "SecretString",
|
465
|
+
# port: 1,
|
466
|
+
# server_name: "String",
|
467
|
+
# username: "String",
|
468
|
+
# },
|
469
|
+
# oracle_settings: {
|
470
|
+
# asm_password: "SecretString",
|
471
|
+
# asm_server: "String",
|
472
|
+
# asm_user: "String",
|
473
|
+
# database_name: "String",
|
474
|
+
# password: "SecretString",
|
475
|
+
# port: 1,
|
476
|
+
# security_db_encryption: "SecretString",
|
477
|
+
# security_db_encryption_name: "String",
|
478
|
+
# server_name: "String",
|
479
|
+
# username: "String",
|
480
|
+
# },
|
481
|
+
# sybase_settings: {
|
482
|
+
# database_name: "String",
|
483
|
+
# password: "SecretString",
|
484
|
+
# port: 1,
|
485
|
+
# server_name: "String",
|
486
|
+
# username: "String",
|
487
|
+
# },
|
488
|
+
# microsoft_sql_server_settings: {
|
489
|
+
# port: 1,
|
490
|
+
# database_name: "String",
|
491
|
+
# password: "SecretString",
|
492
|
+
# server_name: "String",
|
493
|
+
# username: "String",
|
494
|
+
# },
|
495
|
+
# ibm_db_2_settings: {
|
496
|
+
# database_name: "String",
|
497
|
+
# password: "SecretString",
|
498
|
+
# port: 1,
|
499
|
+
# server_name: "String",
|
500
|
+
# username: "String",
|
501
|
+
# },
|
404
502
|
# }
|
405
503
|
#
|
406
504
|
# @!attribute [rw] endpoint_identifier
|
407
505
|
# The database endpoint identifier. Identifiers must begin with a
|
408
506
|
# letter and must contain only ASCII letters, digits, and hyphens.
|
409
|
-
# They can't end with a hyphen or contain two consecutive hyphens.
|
507
|
+
# They can't end with a hyphen, or contain two consecutive hyphens.
|
410
508
|
# @return [String]
|
411
509
|
#
|
412
510
|
# @!attribute [rw] endpoint_type
|
@@ -418,8 +516,8 @@ module Aws::DatabaseMigrationService
|
|
418
516
|
# `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
|
419
517
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
|
420
518
|
# `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
|
421
|
-
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"
|
422
|
-
#
|
519
|
+
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"docdb"`, `"sqlserver"`,
|
520
|
+
# and `"neptune"`.
|
423
521
|
# @return [String]
|
424
522
|
#
|
425
523
|
# @!attribute [rw] username
|
@@ -595,6 +693,85 @@ module Aws::DatabaseMigrationService
|
|
595
693
|
# Provides information that defines an Amazon Redshift endpoint.
|
596
694
|
# @return [Types::RedshiftSettings]
|
597
695
|
#
|
696
|
+
# @!attribute [rw] postgre_sql_settings
|
697
|
+
# Settings in JSON format for the source and target PostgreSQL
|
698
|
+
# endpoint. For information about other available settings, see [Extra
|
699
|
+
# connection attributes when using PostgreSQL as a source for AWS
|
700
|
+
# DMS][1] and [ Extra connection attributes when using PostgreSQL as a
|
701
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
702
|
+
# Guide.*
|
703
|
+
#
|
704
|
+
#
|
705
|
+
#
|
706
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html
|
707
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html
|
708
|
+
# @return [Types::PostgreSQLSettings]
|
709
|
+
#
|
710
|
+
# @!attribute [rw] my_sql_settings
|
711
|
+
# Settings in JSON format for the source and target MySQL endpoint.
|
712
|
+
# For information about other available settings, see [Extra
|
713
|
+
# connection attributes when using MySQL as a source for AWS DMS][1]
|
714
|
+
# and [Extra connection attributes when using a MySQL-compatible
|
715
|
+
# database as a target for AWS DMS][2] in the *AWS Database Migration
|
716
|
+
# Service User Guide.*
|
717
|
+
#
|
718
|
+
#
|
719
|
+
#
|
720
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html
|
721
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html
|
722
|
+
# @return [Types::MySQLSettings]
|
723
|
+
#
|
724
|
+
# @!attribute [rw] oracle_settings
|
725
|
+
# Settings in JSON format for the source and target Oracle endpoint.
|
726
|
+
# For information about other available settings, see [Extra
|
727
|
+
# connection attributes when using Oracle as a source for AWS DMS][1]
|
728
|
+
# and [ Extra connection attributes when using Oracle as a target for
|
729
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
730
|
+
#
|
731
|
+
#
|
732
|
+
#
|
733
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html
|
734
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html
|
735
|
+
# @return [Types::OracleSettings]
|
736
|
+
#
|
737
|
+
# @!attribute [rw] sybase_settings
|
738
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
739
|
+
# For information about other available settings, see [Extra
|
740
|
+
# connection attributes when using SAP ASE as a source for AWS DMS][1]
|
741
|
+
# and [Extra connection attributes when using SAP ASE as a target for
|
742
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
743
|
+
#
|
744
|
+
#
|
745
|
+
#
|
746
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html
|
747
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html
|
748
|
+
# @return [Types::SybaseSettings]
|
749
|
+
#
|
750
|
+
# @!attribute [rw] microsoft_sql_server_settings
|
751
|
+
# Settings in JSON format for the source and target Microsoft SQL
|
752
|
+
# Server endpoint. For information about other available settings, see
|
753
|
+
# [Extra connection attributes when using SQL Server as a source for
|
754
|
+
# AWS DMS][1] and [ Extra connection attributes when using SQL Server
|
755
|
+
# as a target for AWS DMS][2] in the *AWS Database Migration Service
|
756
|
+
# User Guide.*
|
757
|
+
#
|
758
|
+
#
|
759
|
+
#
|
760
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html
|
761
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html
|
762
|
+
# @return [Types::MicrosoftSQLServerSettings]
|
763
|
+
#
|
764
|
+
# @!attribute [rw] ibm_db_2_settings
|
765
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
766
|
+
# information about other available settings, see [Extra connection
|
767
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the
|
768
|
+
# *AWS Database Migration Service User Guide.*
|
769
|
+
#
|
770
|
+
#
|
771
|
+
#
|
772
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html
|
773
|
+
# @return [Types::IBMDb2Settings]
|
774
|
+
#
|
598
775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpointMessage AWS API Documentation
|
599
776
|
#
|
600
777
|
class CreateEndpointMessage < Struct.new(
|
@@ -621,7 +798,13 @@ module Aws::DatabaseMigrationService
|
|
621
798
|
:kafka_settings,
|
622
799
|
:elasticsearch_settings,
|
623
800
|
:neptune_settings,
|
624
|
-
:redshift_settings
|
801
|
+
:redshift_settings,
|
802
|
+
:postgre_sql_settings,
|
803
|
+
:my_sql_settings,
|
804
|
+
:oracle_settings,
|
805
|
+
:sybase_settings,
|
806
|
+
:microsoft_sql_server_settings,
|
807
|
+
:ibm_db_2_settings)
|
625
808
|
SENSITIVE = [:password]
|
626
809
|
include Aws::Structure
|
627
810
|
end
|
@@ -832,6 +1015,10 @@ module Aws::DatabaseMigrationService
|
|
832
1015
|
#
|
833
1016
|
# @!attribute [rw] engine_version
|
834
1017
|
# The engine version number of the replication instance.
|
1018
|
+
#
|
1019
|
+
# If an engine version number is not specified when a replication
|
1020
|
+
# instance is created, the default is the latest engine version
|
1021
|
+
# available.
|
835
1022
|
# @return [String]
|
836
1023
|
#
|
837
1024
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -1084,10 +1271,10 @@ module Aws::DatabaseMigrationService
|
|
1084
1271
|
# stop. The value can be either server time or commit time.
|
1085
1272
|
#
|
1086
1273
|
# Server time example: --cdc-stop-position
|
1087
|
-
# “server\_time:
|
1274
|
+
# “server\_time:2018-02-09T12:12:12”
|
1088
1275
|
#
|
1089
1276
|
# Commit time example: --cdc-stop-position “commit\_time:
|
1090
|
-
#
|
1277
|
+
# 2018-02-09T12:12:12 “
|
1091
1278
|
# @return [String]
|
1092
1279
|
#
|
1093
1280
|
# @!attribute [rw] tags
|
@@ -1323,6 +1510,39 @@ module Aws::DatabaseMigrationService
|
|
1323
1510
|
#
|
1324
1511
|
class DeleteReplicationSubnetGroupResponse < Aws::EmptyStructure; end
|
1325
1512
|
|
1513
|
+
# @note When making an API call, you may pass DeleteReplicationTaskAssessmentRunMessage
|
1514
|
+
# data as a hash:
|
1515
|
+
#
|
1516
|
+
# {
|
1517
|
+
# replication_task_assessment_run_arn: "String", # required
|
1518
|
+
# }
|
1519
|
+
#
|
1520
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
1521
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
1522
|
+
# deleted.
|
1523
|
+
# @return [String]
|
1524
|
+
#
|
1525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRunMessage AWS API Documentation
|
1526
|
+
#
|
1527
|
+
class DeleteReplicationTaskAssessmentRunMessage < Struct.new(
|
1528
|
+
:replication_task_assessment_run_arn)
|
1529
|
+
SENSITIVE = []
|
1530
|
+
include Aws::Structure
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
# @!attribute [rw] replication_task_assessment_run
|
1534
|
+
# The `ReplicationTaskAssessmentRun` object for the deleted assessment
|
1535
|
+
# run.
|
1536
|
+
# @return [Types::ReplicationTaskAssessmentRun]
|
1537
|
+
#
|
1538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRunResponse AWS API Documentation
|
1539
|
+
#
|
1540
|
+
class DeleteReplicationTaskAssessmentRunResponse < Struct.new(
|
1541
|
+
:replication_task_assessment_run)
|
1542
|
+
SENSITIVE = []
|
1543
|
+
include Aws::Structure
|
1544
|
+
end
|
1545
|
+
|
1326
1546
|
# @note When making an API call, you may pass DeleteReplicationTaskMessage
|
1327
1547
|
# data as a hash:
|
1328
1548
|
#
|
@@ -1390,6 +1610,100 @@ module Aws::DatabaseMigrationService
|
|
1390
1610
|
include Aws::Structure
|
1391
1611
|
end
|
1392
1612
|
|
1613
|
+
# @note When making an API call, you may pass DescribeApplicableIndividualAssessmentsMessage
|
1614
|
+
# data as a hash:
|
1615
|
+
#
|
1616
|
+
# {
|
1617
|
+
# replication_task_arn: "String",
|
1618
|
+
# replication_instance_arn: "String",
|
1619
|
+
# source_engine_name: "String",
|
1620
|
+
# target_engine_name: "String",
|
1621
|
+
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
1622
|
+
# max_records: 1,
|
1623
|
+
# marker: "String",
|
1624
|
+
# }
|
1625
|
+
#
|
1626
|
+
# @!attribute [rw] replication_task_arn
|
1627
|
+
# Amazon Resource Name (ARN) of a migration task on which you want to
|
1628
|
+
# base the default list of individual assessments.
|
1629
|
+
# @return [String]
|
1630
|
+
#
|
1631
|
+
# @!attribute [rw] replication_instance_arn
|
1632
|
+
# ARN of a replication instance on which you want to base the default
|
1633
|
+
# list of individual assessments.
|
1634
|
+
# @return [String]
|
1635
|
+
#
|
1636
|
+
# @!attribute [rw] source_engine_name
|
1637
|
+
# Name of a database engine that the specified replication instance
|
1638
|
+
# supports as a source.
|
1639
|
+
# @return [String]
|
1640
|
+
#
|
1641
|
+
# @!attribute [rw] target_engine_name
|
1642
|
+
# Name of a database engine that the specified replication instance
|
1643
|
+
# supports as a target.
|
1644
|
+
# @return [String]
|
1645
|
+
#
|
1646
|
+
# @!attribute [rw] migration_type
|
1647
|
+
# Name of the migration type that each provided individual assessment
|
1648
|
+
# must support.
|
1649
|
+
# @return [String]
|
1650
|
+
#
|
1651
|
+
# @!attribute [rw] max_records
|
1652
|
+
# Maximum number of records to include in the response. If more
|
1653
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
1654
|
+
# token called a marker is included in the response so that the
|
1655
|
+
# remaining results can be retrieved.
|
1656
|
+
# @return [Integer]
|
1657
|
+
#
|
1658
|
+
# @!attribute [rw] marker
|
1659
|
+
# Optional pagination token provided by a previous request. If this
|
1660
|
+
# parameter is specified, the response includes only records beyond
|
1661
|
+
# the marker, up to the value specified by `MaxRecords`.
|
1662
|
+
# @return [String]
|
1663
|
+
#
|
1664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessmentsMessage AWS API Documentation
|
1665
|
+
#
|
1666
|
+
class DescribeApplicableIndividualAssessmentsMessage < Struct.new(
|
1667
|
+
:replication_task_arn,
|
1668
|
+
:replication_instance_arn,
|
1669
|
+
:source_engine_name,
|
1670
|
+
:target_engine_name,
|
1671
|
+
:migration_type,
|
1672
|
+
:max_records,
|
1673
|
+
:marker)
|
1674
|
+
SENSITIVE = []
|
1675
|
+
include Aws::Structure
|
1676
|
+
end
|
1677
|
+
|
1678
|
+
# @!attribute [rw] individual_assessment_names
|
1679
|
+
# List of names for the individual assessments supported by the
|
1680
|
+
# premigration assessment run that you start based on the specified
|
1681
|
+
# request parameters. For more information on the available individual
|
1682
|
+
# assessments, including compatibility with different migration task
|
1683
|
+
# configurations, see [Working with premigration assessment runs][1]
|
1684
|
+
# in the *AWS Database Migration Service User Guide.*
|
1685
|
+
#
|
1686
|
+
#
|
1687
|
+
#
|
1688
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
|
1689
|
+
# @return [Array<String>]
|
1690
|
+
#
|
1691
|
+
# @!attribute [rw] marker
|
1692
|
+
# Pagination token returned for you to pass to a subsequent request.
|
1693
|
+
# If you pass this token as the `Marker` value in a subsequent
|
1694
|
+
# request, the response includes only records beyond the marker, up to
|
1695
|
+
# the value specified in the request by `MaxRecords`.
|
1696
|
+
# @return [String]
|
1697
|
+
#
|
1698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessmentsResponse AWS API Documentation
|
1699
|
+
#
|
1700
|
+
class DescribeApplicableIndividualAssessmentsResponse < Struct.new(
|
1701
|
+
:individual_assessment_names,
|
1702
|
+
:marker)
|
1703
|
+
SENSITIVE = []
|
1704
|
+
include Aws::Structure
|
1705
|
+
end
|
1706
|
+
|
1393
1707
|
# @note When making an API call, you may pass DescribeCertificatesMessage
|
1394
1708
|
# data as a hash:
|
1395
1709
|
#
|
@@ -1405,7 +1719,7 @@ module Aws::DatabaseMigrationService
|
|
1405
1719
|
# }
|
1406
1720
|
#
|
1407
1721
|
# @!attribute [rw] filters
|
1408
|
-
# Filters applied to the
|
1722
|
+
# Filters applied to the certificates described in the form of
|
1409
1723
|
# key-value pairs.
|
1410
1724
|
# @return [Array<Types::Filter>]
|
1411
1725
|
#
|
@@ -1533,7 +1847,7 @@ module Aws::DatabaseMigrationService
|
|
1533
1847
|
# }
|
1534
1848
|
#
|
1535
1849
|
# @!attribute [rw] filters
|
1536
|
-
# Filters applied to the
|
1850
|
+
# Filters applied to the endpoint types.
|
1537
1851
|
#
|
1538
1852
|
# Valid filter names: engine-name \| endpoint-type
|
1539
1853
|
# @return [Array<Types::Filter>]
|
@@ -1599,7 +1913,7 @@ module Aws::DatabaseMigrationService
|
|
1599
1913
|
# }
|
1600
1914
|
#
|
1601
1915
|
# @!attribute [rw] filters
|
1602
|
-
# Filters applied to the
|
1916
|
+
# Filters applied to the endpoints.
|
1603
1917
|
#
|
1604
1918
|
# Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
|
1605
1919
|
# engine-name
|
@@ -1671,7 +1985,7 @@ module Aws::DatabaseMigrationService
|
|
1671
1985
|
# @return [String]
|
1672
1986
|
#
|
1673
1987
|
# @!attribute [rw] filters
|
1674
|
-
# Filters applied to the
|
1988
|
+
# Filters applied to the event categories.
|
1675
1989
|
# @return [Array<Types::Filter>]
|
1676
1990
|
#
|
1677
1991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventCategoriesMessage AWS API Documentation
|
@@ -1715,7 +2029,7 @@ module Aws::DatabaseMigrationService
|
|
1715
2029
|
# @return [String]
|
1716
2030
|
#
|
1717
2031
|
# @!attribute [rw] filters
|
1718
|
-
# Filters applied to
|
2032
|
+
# Filters applied to event subscriptions.
|
1719
2033
|
# @return [Array<Types::Filter>]
|
1720
2034
|
#
|
1721
2035
|
# @!attribute [rw] max_records
|
@@ -1812,7 +2126,7 @@ module Aws::DatabaseMigrationService
|
|
1812
2126
|
# @return [Array<String>]
|
1813
2127
|
#
|
1814
2128
|
# @!attribute [rw] filters
|
1815
|
-
# Filters applied to
|
2129
|
+
# Filters applied to events.
|
1816
2130
|
# @return [Array<Types::Filter>]
|
1817
2131
|
#
|
1818
2132
|
# @!attribute [rw] max_records
|
@@ -2102,7 +2416,7 @@ module Aws::DatabaseMigrationService
|
|
2102
2416
|
# }
|
2103
2417
|
#
|
2104
2418
|
# @!attribute [rw] filters
|
2105
|
-
# Filters applied to
|
2419
|
+
# Filters applied to replication instances.
|
2106
2420
|
#
|
2107
2421
|
# Valid filter names: replication-instance-arn \|
|
2108
2422
|
# replication-instance-id \| replication-instance-class \|
|
@@ -2170,7 +2484,7 @@ module Aws::DatabaseMigrationService
|
|
2170
2484
|
# }
|
2171
2485
|
#
|
2172
2486
|
# @!attribute [rw] filters
|
2173
|
-
# Filters applied to
|
2487
|
+
# Filters applied to replication subnet groups.
|
2174
2488
|
#
|
2175
2489
|
# Valid filter names: replication-subnet-group-id
|
2176
2490
|
# @return [Array<Types::Filter>]
|
@@ -2288,7 +2602,7 @@ module Aws::DatabaseMigrationService
|
|
2288
2602
|
include Aws::Structure
|
2289
2603
|
end
|
2290
2604
|
|
2291
|
-
# @note When making an API call, you may pass
|
2605
|
+
# @note When making an API call, you may pass DescribeReplicationTaskAssessmentRunsMessage
|
2292
2606
|
# data as a hash:
|
2293
2607
|
#
|
2294
2608
|
# {
|
@@ -2300,14 +2614,14 @@ module Aws::DatabaseMigrationService
|
|
2300
2614
|
# ],
|
2301
2615
|
# max_records: 1,
|
2302
2616
|
# marker: "String",
|
2303
|
-
# without_settings: false,
|
2304
2617
|
# }
|
2305
2618
|
#
|
2306
2619
|
# @!attribute [rw] filters
|
2307
|
-
# Filters applied to the
|
2620
|
+
# Filters applied to the premigration assessment runs described in the
|
2621
|
+
# form of key-value pairs.
|
2308
2622
|
#
|
2309
|
-
# Valid filter names: replication-task-
|
2310
|
-
#
|
2623
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
2624
|
+
# `replication-task-arn`, `replication-instance-arn`, `status`
|
2311
2625
|
# @return [Array<Types::Filter>]
|
2312
2626
|
#
|
2313
2627
|
# @!attribute [rw] max_records
|
@@ -2315,10 +2629,6 @@ module Aws::DatabaseMigrationService
|
|
2315
2629
|
# records exist than the specified `MaxRecords` value, a pagination
|
2316
2630
|
# token called a marker is included in the response so that the
|
2317
2631
|
# remaining results can be retrieved.
|
2318
|
-
#
|
2319
|
-
# Default: 100
|
2320
|
-
#
|
2321
|
-
# Constraints: Minimum 20, maximum 100.
|
2322
2632
|
# @return [Integer]
|
2323
2633
|
#
|
2324
2634
|
# @!attribute [rw] marker
|
@@ -2327,66 +2637,63 @@ module Aws::DatabaseMigrationService
|
|
2327
2637
|
# the marker, up to the value specified by `MaxRecords`.
|
2328
2638
|
# @return [String]
|
2329
2639
|
#
|
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
|
2640
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRunsMessage AWS API Documentation
|
2338
2641
|
#
|
2339
|
-
class
|
2642
|
+
class DescribeReplicationTaskAssessmentRunsMessage < Struct.new(
|
2340
2643
|
:filters,
|
2341
2644
|
:max_records,
|
2342
|
-
:marker
|
2343
|
-
:without_settings)
|
2645
|
+
:marker)
|
2344
2646
|
SENSITIVE = []
|
2345
2647
|
include Aws::Structure
|
2346
2648
|
end
|
2347
2649
|
|
2348
2650
|
# @!attribute [rw] marker
|
2349
|
-
#
|
2350
|
-
#
|
2351
|
-
# the
|
2651
|
+
# A pagination token returned for you to pass to a subsequent request.
|
2652
|
+
# If you pass this token as the `Marker` value in a subsequent
|
2653
|
+
# request, the response includes only records beyond the marker, up to
|
2654
|
+
# the value specified in the request by `MaxRecords`.
|
2352
2655
|
# @return [String]
|
2353
2656
|
#
|
2354
|
-
# @!attribute [rw]
|
2355
|
-
#
|
2356
|
-
# @return [Array<Types::
|
2657
|
+
# @!attribute [rw] replication_task_assessment_runs
|
2658
|
+
# One or more premigration assessment runs as specified by `Filters`.
|
2659
|
+
# @return [Array<Types::ReplicationTaskAssessmentRun>]
|
2357
2660
|
#
|
2358
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
2661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRunsResponse AWS API Documentation
|
2359
2662
|
#
|
2360
|
-
class
|
2663
|
+
class DescribeReplicationTaskAssessmentRunsResponse < Struct.new(
|
2361
2664
|
:marker,
|
2362
|
-
:
|
2665
|
+
:replication_task_assessment_runs)
|
2363
2666
|
SENSITIVE = []
|
2364
2667
|
include Aws::Structure
|
2365
2668
|
end
|
2366
2669
|
|
2367
|
-
# @note When making an API call, you may pass
|
2670
|
+
# @note When making an API call, you may pass DescribeReplicationTaskIndividualAssessmentsMessage
|
2368
2671
|
# data as a hash:
|
2369
2672
|
#
|
2370
2673
|
# {
|
2371
|
-
#
|
2674
|
+
# filters: [
|
2675
|
+
# {
|
2676
|
+
# name: "String", # required
|
2677
|
+
# values: ["String"], # required
|
2678
|
+
# },
|
2679
|
+
# ],
|
2372
2680
|
# max_records: 1,
|
2373
2681
|
# marker: "String",
|
2374
2682
|
# }
|
2375
2683
|
#
|
2376
|
-
# @!attribute [rw]
|
2377
|
-
#
|
2378
|
-
#
|
2379
|
-
#
|
2684
|
+
# @!attribute [rw] filters
|
2685
|
+
# Filters applied to the individual assessments described in the form
|
2686
|
+
# of key-value pairs.
|
2687
|
+
#
|
2688
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
2689
|
+
# `replication-task-arn`, `status`
|
2690
|
+
# @return [Array<Types::Filter>]
|
2380
2691
|
#
|
2381
2692
|
# @!attribute [rw] max_records
|
2382
2693
|
# The maximum number of records to include in the response. If more
|
2383
2694
|
# records exist than the specified `MaxRecords` value, a pagination
|
2384
2695
|
# token called a marker is included in the response so that the
|
2385
2696
|
# remaining results can be retrieved.
|
2386
|
-
#
|
2387
|
-
# Default: 100
|
2388
|
-
#
|
2389
|
-
# Constraints: Minimum 20, maximum 100.
|
2390
2697
|
# @return [Integer]
|
2391
2698
|
#
|
2392
2699
|
# @!attribute [rw] marker
|
@@ -2395,10 +2702,10 @@ module Aws::DatabaseMigrationService
|
|
2395
2702
|
# the marker, up to the value specified by `MaxRecords`.
|
2396
2703
|
# @return [String]
|
2397
2704
|
#
|
2398
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
2705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessmentsMessage AWS API Documentation
|
2399
2706
|
#
|
2400
|
-
class
|
2401
|
-
:
|
2707
|
+
class DescribeReplicationTaskIndividualAssessmentsMessage < Struct.new(
|
2708
|
+
:filters,
|
2402
2709
|
:max_records,
|
2403
2710
|
:marker)
|
2404
2711
|
SENSITIVE = []
|
@@ -2406,42 +2713,46 @@ module Aws::DatabaseMigrationService
|
|
2406
2713
|
end
|
2407
2714
|
|
2408
2715
|
# @!attribute [rw] marker
|
2409
|
-
#
|
2410
|
-
#
|
2411
|
-
# the
|
2716
|
+
# A pagination token returned for you to pass to a subsequent request.
|
2717
|
+
# If you pass this token as the `Marker` value in a subsequent
|
2718
|
+
# request, the response includes only records beyond the marker, up to
|
2719
|
+
# the value specified in the request by `MaxRecords`.
|
2412
2720
|
# @return [String]
|
2413
2721
|
#
|
2414
|
-
# @!attribute [rw]
|
2415
|
-
#
|
2416
|
-
# @return [Array<
|
2722
|
+
# @!attribute [rw] replication_task_individual_assessments
|
2723
|
+
# One or more individual assessments as specified by `Filters`.
|
2724
|
+
# @return [Array<Types::ReplicationTaskIndividualAssessment>]
|
2417
2725
|
#
|
2418
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/
|
2726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessmentsResponse AWS API Documentation
|
2419
2727
|
#
|
2420
|
-
class
|
2728
|
+
class DescribeReplicationTaskIndividualAssessmentsResponse < Struct.new(
|
2421
2729
|
:marker,
|
2422
|
-
:
|
2730
|
+
:replication_task_individual_assessments)
|
2423
2731
|
SENSITIVE = []
|
2424
2732
|
include Aws::Structure
|
2425
2733
|
end
|
2426
2734
|
|
2427
|
-
# @note When making an API call, you may pass
|
2735
|
+
# @note When making an API call, you may pass DescribeReplicationTasksMessage
|
2428
2736
|
# data as a hash:
|
2429
2737
|
#
|
2430
2738
|
# {
|
2431
|
-
# replication_task_arn: "String", # required
|
2432
|
-
# max_records: 1,
|
2433
|
-
# marker: "String",
|
2434
2739
|
# filters: [
|
2435
2740
|
# {
|
2436
2741
|
# name: "String", # required
|
2437
2742
|
# values: ["String"], # required
|
2438
2743
|
# },
|
2439
2744
|
# ],
|
2745
|
+
# max_records: 1,
|
2746
|
+
# marker: "String",
|
2747
|
+
# without_settings: false,
|
2440
2748
|
# }
|
2441
2749
|
#
|
2442
|
-
# @!attribute [rw]
|
2443
|
-
#
|
2444
|
-
#
|
2750
|
+
# @!attribute [rw] filters
|
2751
|
+
# Filters applied to replication tasks.
|
2752
|
+
#
|
2753
|
+
# Valid filter names: replication-task-arn \| replication-task-id \|
|
2754
|
+
# migration-type \| endpoint-arn \| replication-instance-arn
|
2755
|
+
# @return [Array<Types::Filter>]
|
2445
2756
|
#
|
2446
2757
|
# @!attribute [rw] max_records
|
2447
2758
|
# The maximum number of records to include in the response. If more
|
@@ -2451,7 +2762,7 @@ module Aws::DatabaseMigrationService
|
|
2451
2762
|
#
|
2452
2763
|
# Default: 100
|
2453
2764
|
#
|
2454
|
-
# Constraints: Minimum 20, maximum
|
2765
|
+
# Constraints: Minimum 20, maximum 100.
|
2455
2766
|
# @return [Integer]
|
2456
2767
|
#
|
2457
2768
|
# @!attribute [rw] marker
|
@@ -2460,13 +2771,146 @@ module Aws::DatabaseMigrationService
|
|
2460
2771
|
# the marker, up to the value specified by `MaxRecords`.
|
2461
2772
|
# @return [String]
|
2462
2773
|
#
|
2463
|
-
# @!attribute [rw]
|
2464
|
-
#
|
2465
|
-
#
|
2466
|
-
#
|
2467
|
-
#
|
2468
|
-
#
|
2469
|
-
#
|
2774
|
+
# @!attribute [rw] without_settings
|
2775
|
+
# An option to set to avoid returning information about settings. Use
|
2776
|
+
# this to reduce overhead when setting information is too large. To
|
2777
|
+
# use this option, choose `true`; otherwise, choose `false` (the
|
2778
|
+
# default).
|
2779
|
+
# @return [Boolean]
|
2780
|
+
#
|
2781
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksMessage AWS API Documentation
|
2782
|
+
#
|
2783
|
+
class DescribeReplicationTasksMessage < Struct.new(
|
2784
|
+
:filters,
|
2785
|
+
:max_records,
|
2786
|
+
:marker,
|
2787
|
+
:without_settings)
|
2788
|
+
SENSITIVE = []
|
2789
|
+
include Aws::Structure
|
2790
|
+
end
|
2791
|
+
|
2792
|
+
# @!attribute [rw] marker
|
2793
|
+
# An optional pagination token provided by a previous request. If this
|
2794
|
+
# parameter is specified, the response includes only records beyond
|
2795
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2796
|
+
# @return [String]
|
2797
|
+
#
|
2798
|
+
# @!attribute [rw] replication_tasks
|
2799
|
+
# A description of the replication tasks.
|
2800
|
+
# @return [Array<Types::ReplicationTask>]
|
2801
|
+
#
|
2802
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksResponse AWS API Documentation
|
2803
|
+
#
|
2804
|
+
class DescribeReplicationTasksResponse < Struct.new(
|
2805
|
+
:marker,
|
2806
|
+
:replication_tasks)
|
2807
|
+
SENSITIVE = []
|
2808
|
+
include Aws::Structure
|
2809
|
+
end
|
2810
|
+
|
2811
|
+
# @note When making an API call, you may pass DescribeSchemasMessage
|
2812
|
+
# data as a hash:
|
2813
|
+
#
|
2814
|
+
# {
|
2815
|
+
# endpoint_arn: "String", # required
|
2816
|
+
# max_records: 1,
|
2817
|
+
# marker: "String",
|
2818
|
+
# }
|
2819
|
+
#
|
2820
|
+
# @!attribute [rw] endpoint_arn
|
2821
|
+
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
2822
|
+
# endpoint.
|
2823
|
+
# @return [String]
|
2824
|
+
#
|
2825
|
+
# @!attribute [rw] max_records
|
2826
|
+
# The maximum number of records to include in the response. If more
|
2827
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2828
|
+
# token called a marker is included in the response so that the
|
2829
|
+
# remaining results can be retrieved.
|
2830
|
+
#
|
2831
|
+
# Default: 100
|
2832
|
+
#
|
2833
|
+
# Constraints: Minimum 20, maximum 100.
|
2834
|
+
# @return [Integer]
|
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
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasMessage AWS API Documentation
|
2843
|
+
#
|
2844
|
+
class DescribeSchemasMessage < Struct.new(
|
2845
|
+
:endpoint_arn,
|
2846
|
+
:max_records,
|
2847
|
+
:marker)
|
2848
|
+
SENSITIVE = []
|
2849
|
+
include Aws::Structure
|
2850
|
+
end
|
2851
|
+
|
2852
|
+
# @!attribute [rw] marker
|
2853
|
+
# An optional pagination token provided by a previous request. If this
|
2854
|
+
# parameter is specified, the response includes only records beyond
|
2855
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2856
|
+
# @return [String]
|
2857
|
+
#
|
2858
|
+
# @!attribute [rw] schemas
|
2859
|
+
# The described schema.
|
2860
|
+
# @return [Array<String>]
|
2861
|
+
#
|
2862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasResponse AWS API Documentation
|
2863
|
+
#
|
2864
|
+
class DescribeSchemasResponse < Struct.new(
|
2865
|
+
:marker,
|
2866
|
+
:schemas)
|
2867
|
+
SENSITIVE = []
|
2868
|
+
include Aws::Structure
|
2869
|
+
end
|
2870
|
+
|
2871
|
+
# @note When making an API call, you may pass DescribeTableStatisticsMessage
|
2872
|
+
# data as a hash:
|
2873
|
+
#
|
2874
|
+
# {
|
2875
|
+
# replication_task_arn: "String", # required
|
2876
|
+
# max_records: 1,
|
2877
|
+
# marker: "String",
|
2878
|
+
# filters: [
|
2879
|
+
# {
|
2880
|
+
# name: "String", # required
|
2881
|
+
# values: ["String"], # required
|
2882
|
+
# },
|
2883
|
+
# ],
|
2884
|
+
# }
|
2885
|
+
#
|
2886
|
+
# @!attribute [rw] replication_task_arn
|
2887
|
+
# The Amazon Resource Name (ARN) of the replication task.
|
2888
|
+
# @return [String]
|
2889
|
+
#
|
2890
|
+
# @!attribute [rw] max_records
|
2891
|
+
# The maximum number of records to include in the response. If more
|
2892
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
2893
|
+
# token called a marker is included in the response so that the
|
2894
|
+
# remaining results can be retrieved.
|
2895
|
+
#
|
2896
|
+
# Default: 100
|
2897
|
+
#
|
2898
|
+
# Constraints: Minimum 20, maximum 500.
|
2899
|
+
# @return [Integer]
|
2900
|
+
#
|
2901
|
+
# @!attribute [rw] marker
|
2902
|
+
# An optional pagination token provided by a previous request. If this
|
2903
|
+
# parameter is specified, the response includes only records beyond
|
2904
|
+
# the marker, up to the value specified by `MaxRecords`.
|
2905
|
+
# @return [String]
|
2906
|
+
#
|
2907
|
+
# @!attribute [rw] filters
|
2908
|
+
# Filters applied to table statistics.
|
2909
|
+
#
|
2910
|
+
# Valid filter names: schema-name \| table-name \| table-state
|
2911
|
+
#
|
2912
|
+
# A combination of filters creates an AND condition where each record
|
2913
|
+
# matches all specified filters.
|
2470
2914
|
# @return [Array<Types::Filter>]
|
2471
2915
|
#
|
2472
2916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeTableStatisticsMessage AWS API Documentation
|
@@ -2698,7 +3142,7 @@ module Aws::DatabaseMigrationService
|
|
2698
3142
|
# @return [String]
|
2699
3143
|
#
|
2700
3144
|
# @!attribute [rw] dynamo_db_settings
|
2701
|
-
# The settings for the target
|
3145
|
+
# The settings for the DynamoDB target endpoint. For more information,
|
2702
3146
|
# see the `DynamoDBSettings` structure.
|
2703
3147
|
# @return [Types::DynamoDbSettings]
|
2704
3148
|
#
|
@@ -2759,6 +3203,37 @@ module Aws::DatabaseMigrationService
|
|
2759
3203
|
# Settings for the Amazon Redshift endpoint.
|
2760
3204
|
# @return [Types::RedshiftSettings]
|
2761
3205
|
#
|
3206
|
+
# @!attribute [rw] postgre_sql_settings
|
3207
|
+
# The settings for the PostgreSQL source and target endpoint. For more
|
3208
|
+
# information, see the `PostgreSQLSettings` structure.
|
3209
|
+
# @return [Types::PostgreSQLSettings]
|
3210
|
+
#
|
3211
|
+
# @!attribute [rw] my_sql_settings
|
3212
|
+
# The settings for the MySQL source and target endpoint. For more
|
3213
|
+
# information, see the `MySQLSettings` structure.
|
3214
|
+
# @return [Types::MySQLSettings]
|
3215
|
+
#
|
3216
|
+
# @!attribute [rw] oracle_settings
|
3217
|
+
# The settings for the Oracle source and target endpoint. For more
|
3218
|
+
# information, see the `OracleSettings` structure.
|
3219
|
+
# @return [Types::OracleSettings]
|
3220
|
+
#
|
3221
|
+
# @!attribute [rw] sybase_settings
|
3222
|
+
# The settings for the SAP ASE source and target endpoint. For more
|
3223
|
+
# information, see the `SybaseSettings` structure.
|
3224
|
+
# @return [Types::SybaseSettings]
|
3225
|
+
#
|
3226
|
+
# @!attribute [rw] microsoft_sql_server_settings
|
3227
|
+
# The settings for the Microsoft SQL Server source and target
|
3228
|
+
# endpoint. For more information, see the `MicrosoftSQLServerSettings`
|
3229
|
+
# structure.
|
3230
|
+
# @return [Types::MicrosoftSQLServerSettings]
|
3231
|
+
#
|
3232
|
+
# @!attribute [rw] ibm_db_2_settings
|
3233
|
+
# The settings for the IBM Db2 LUW source endpoint. For more
|
3234
|
+
# information, see the `IBMDb2Settings` structure.
|
3235
|
+
# @return [Types::IBMDb2Settings]
|
3236
|
+
#
|
2762
3237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Endpoint AWS API Documentation
|
2763
3238
|
#
|
2764
3239
|
class Endpoint < Struct.new(
|
@@ -2787,7 +3262,13 @@ module Aws::DatabaseMigrationService
|
|
2787
3262
|
:kafka_settings,
|
2788
3263
|
:elasticsearch_settings,
|
2789
3264
|
:neptune_settings,
|
2790
|
-
:redshift_settings
|
3265
|
+
:redshift_settings,
|
3266
|
+
:postgre_sql_settings,
|
3267
|
+
:my_sql_settings,
|
3268
|
+
:oracle_settings,
|
3269
|
+
:sybase_settings,
|
3270
|
+
:microsoft_sql_server_settings,
|
3271
|
+
:ibm_db_2_settings)
|
2791
3272
|
SENSITIVE = []
|
2792
3273
|
include Aws::Structure
|
2793
3274
|
end
|
@@ -2832,7 +3313,12 @@ module Aws::DatabaseMigrationService
|
|
2832
3313
|
end
|
2833
3314
|
|
2834
3315
|
# Lists categories of events subscribed to, and generated by, the
|
2835
|
-
# applicable AWS DMS resource type.
|
3316
|
+
# applicable AWS DMS resource type. This data type appears in response
|
3317
|
+
# to the [ `DescribeEventCategories` ][1] action.
|
3318
|
+
#
|
3319
|
+
#
|
3320
|
+
#
|
3321
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_EventCategoryGroup.html
|
2836
3322
|
#
|
2837
3323
|
# @!attribute [rw] source_type
|
2838
3324
|
# The type of AWS DMS resource that generates events.
|
@@ -2923,9 +3409,9 @@ module Aws::DatabaseMigrationService
|
|
2923
3409
|
include Aws::Structure
|
2924
3410
|
end
|
2925
3411
|
|
2926
|
-
# Identifies the name and value of a
|
2927
|
-
# the number and type of
|
2928
|
-
#
|
3412
|
+
# Identifies the name and value of a filter object. This filter is used
|
3413
|
+
# to limit the number and type of AWS DMS objects that are returned for
|
3414
|
+
# a particular `Describe*` or similar operation.
|
2929
3415
|
#
|
2930
3416
|
# @note When making an API call, you may pass Filter
|
2931
3417
|
# data as a hash:
|
@@ -2936,11 +3422,13 @@ module Aws::DatabaseMigrationService
|
|
2936
3422
|
# }
|
2937
3423
|
#
|
2938
3424
|
# @!attribute [rw] name
|
2939
|
-
# The name of the filter
|
3425
|
+
# The name of the filter as specified for a `Describe*` or similar
|
3426
|
+
# operation.
|
2940
3427
|
# @return [String]
|
2941
3428
|
#
|
2942
3429
|
# @!attribute [rw] values
|
2943
|
-
# The filter value
|
3430
|
+
# The filter value, which can specify one or more values used to
|
3431
|
+
# narrow the returned results.
|
2944
3432
|
# @return [Array<String>]
|
2945
3433
|
#
|
2946
3434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Filter AWS API Documentation
|
@@ -2952,6 +3440,51 @@ module Aws::DatabaseMigrationService
|
|
2952
3440
|
include Aws::Structure
|
2953
3441
|
end
|
2954
3442
|
|
3443
|
+
# Provides information that defines an IBM Db2 LUW endpoint.
|
3444
|
+
#
|
3445
|
+
# @note When making an API call, you may pass IBMDb2Settings
|
3446
|
+
# data as a hash:
|
3447
|
+
#
|
3448
|
+
# {
|
3449
|
+
# database_name: "String",
|
3450
|
+
# password: "SecretString",
|
3451
|
+
# port: 1,
|
3452
|
+
# server_name: "String",
|
3453
|
+
# username: "String",
|
3454
|
+
# }
|
3455
|
+
#
|
3456
|
+
# @!attribute [rw] database_name
|
3457
|
+
# Database name for the endpoint.
|
3458
|
+
# @return [String]
|
3459
|
+
#
|
3460
|
+
# @!attribute [rw] password
|
3461
|
+
# Endpoint connection password.
|
3462
|
+
# @return [String]
|
3463
|
+
#
|
3464
|
+
# @!attribute [rw] port
|
3465
|
+
# Endpoint TCP port.
|
3466
|
+
# @return [Integer]
|
3467
|
+
#
|
3468
|
+
# @!attribute [rw] server_name
|
3469
|
+
# Fully qualified domain name of the endpoint.
|
3470
|
+
# @return [String]
|
3471
|
+
#
|
3472
|
+
# @!attribute [rw] username
|
3473
|
+
# Endpoint connection user name.
|
3474
|
+
# @return [String]
|
3475
|
+
#
|
3476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/IBMDb2Settings AWS API Documentation
|
3477
|
+
#
|
3478
|
+
class IBMDb2Settings < Struct.new(
|
3479
|
+
:database_name,
|
3480
|
+
:password,
|
3481
|
+
:port,
|
3482
|
+
:server_name,
|
3483
|
+
:username)
|
3484
|
+
SENSITIVE = [:password]
|
3485
|
+
include Aws::Structure
|
3486
|
+
end
|
3487
|
+
|
2955
3488
|
# @note When making an API call, you may pass ImportCertificateMessage
|
2956
3489
|
# data as a hash:
|
2957
3490
|
#
|
@@ -3090,6 +3623,20 @@ module Aws::DatabaseMigrationService
|
|
3090
3623
|
include Aws::Structure
|
3091
3624
|
end
|
3092
3625
|
|
3626
|
+
# An AWS Key Management Service (AWS KMS) error is preventing access to
|
3627
|
+
# AWS KMS.
|
3628
|
+
#
|
3629
|
+
# @!attribute [rw] message
|
3630
|
+
# @return [String]
|
3631
|
+
#
|
3632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KMSFault AWS API Documentation
|
3633
|
+
#
|
3634
|
+
class KMSFault < Struct.new(
|
3635
|
+
:message)
|
3636
|
+
SENSITIVE = []
|
3637
|
+
include Aws::Structure
|
3638
|
+
end
|
3639
|
+
|
3093
3640
|
# The state of the specified AWS KMS resource isn't valid for this
|
3094
3641
|
# request.
|
3095
3642
|
#
|
@@ -3154,6 +3701,14 @@ module Aws::DatabaseMigrationService
|
|
3154
3701
|
# {
|
3155
3702
|
# broker: "String",
|
3156
3703
|
# topic: "String",
|
3704
|
+
# message_format: "json", # accepts json, json-unformatted
|
3705
|
+
# include_transaction_details: false,
|
3706
|
+
# include_partition_value: false,
|
3707
|
+
# partition_include_schema_table: false,
|
3708
|
+
# include_table_alter_operations: false,
|
3709
|
+
# include_control_details: false,
|
3710
|
+
# message_max_bytes: 1,
|
3711
|
+
# include_null_and_empty: false,
|
3157
3712
|
# }
|
3158
3713
|
#
|
3159
3714
|
# @!attribute [rw] broker
|
@@ -3169,11 +3724,71 @@ module Aws::DatabaseMigrationService
|
|
3169
3724
|
# topic.
|
3170
3725
|
# @return [String]
|
3171
3726
|
#
|
3727
|
+
# @!attribute [rw] message_format
|
3728
|
+
# The output format for the records created on the endpoint. The
|
3729
|
+
# message format is `JSON` (default) or `JSON_UNFORMATTED` (a single
|
3730
|
+
# line with no tab).
|
3731
|
+
# @return [String]
|
3732
|
+
#
|
3733
|
+
# @!attribute [rw] include_transaction_details
|
3734
|
+
# Provides detailed transaction information from the source database.
|
3735
|
+
# This information includes a commit timestamp, a log position, and
|
3736
|
+
# values for `transaction_id`, previous `transaction_id`, and
|
3737
|
+
# `transaction_record_id` (the record offset within a transaction).
|
3738
|
+
# The default is `false`.
|
3739
|
+
# @return [Boolean]
|
3740
|
+
#
|
3741
|
+
# @!attribute [rw] include_partition_value
|
3742
|
+
# Shows the partition value within the Kafka message output, unless
|
3743
|
+
# the partition type is `schema-table-type`. The default is `false`.
|
3744
|
+
# @return [Boolean]
|
3745
|
+
#
|
3746
|
+
# @!attribute [rw] partition_include_schema_table
|
3747
|
+
# Prefixes schema and table names to partition values, when the
|
3748
|
+
# partition type is `primary-key-type`. Doing this increases data
|
3749
|
+
# distribution among Kafka partitions. For example, suppose that a
|
3750
|
+
# SysBench schema has thousands of tables and each table has only
|
3751
|
+
# limited range for a primary key. In this case, the same primary key
|
3752
|
+
# is sent from thousands of tables to the same partition, which causes
|
3753
|
+
# throttling. The default is `false`.
|
3754
|
+
# @return [Boolean]
|
3755
|
+
#
|
3756
|
+
# @!attribute [rw] include_table_alter_operations
|
3757
|
+
# Includes any data definition language (DDL) operations that change
|
3758
|
+
# the table in the control data, such as `rename-table`, `drop-table`,
|
3759
|
+
# `add-column`, `drop-column`, and `rename-column`. The default is
|
3760
|
+
# `false`.
|
3761
|
+
# @return [Boolean]
|
3762
|
+
#
|
3763
|
+
# @!attribute [rw] include_control_details
|
3764
|
+
# Shows detailed control information for table definition, column
|
3765
|
+
# definition, and table and column changes in the Kafka message
|
3766
|
+
# output. The default is `false`.
|
3767
|
+
# @return [Boolean]
|
3768
|
+
#
|
3769
|
+
# @!attribute [rw] message_max_bytes
|
3770
|
+
# The maximum size in bytes for records created on the endpoint The
|
3771
|
+
# default is 1,000,000.
|
3772
|
+
# @return [Integer]
|
3773
|
+
#
|
3774
|
+
# @!attribute [rw] include_null_and_empty
|
3775
|
+
# Include NULL and empty columns for records migrated to the endpoint.
|
3776
|
+
# The default is `false`.
|
3777
|
+
# @return [Boolean]
|
3778
|
+
#
|
3172
3779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KafkaSettings AWS API Documentation
|
3173
3780
|
#
|
3174
3781
|
class KafkaSettings < Struct.new(
|
3175
3782
|
:broker,
|
3176
|
-
:topic
|
3783
|
+
:topic,
|
3784
|
+
:message_format,
|
3785
|
+
:include_transaction_details,
|
3786
|
+
:include_partition_value,
|
3787
|
+
:partition_include_schema_table,
|
3788
|
+
:include_table_alter_operations,
|
3789
|
+
:include_control_details,
|
3790
|
+
:message_max_bytes,
|
3791
|
+
:include_null_and_empty)
|
3177
3792
|
SENSITIVE = []
|
3178
3793
|
include Aws::Structure
|
3179
3794
|
end
|
@@ -3195,6 +3810,7 @@ module Aws::DatabaseMigrationService
|
|
3195
3810
|
# partition_include_schema_table: false,
|
3196
3811
|
# include_table_alter_operations: false,
|
3197
3812
|
# include_control_details: false,
|
3813
|
+
# include_null_and_empty: false,
|
3198
3814
|
# }
|
3199
3815
|
#
|
3200
3816
|
# @!attribute [rw] stream_arn
|
@@ -3219,12 +3835,12 @@ module Aws::DatabaseMigrationService
|
|
3219
3835
|
# This information includes a commit timestamp, a log position, and
|
3220
3836
|
# values for `transaction_id`, previous `transaction_id`, and
|
3221
3837
|
# `transaction_record_id` (the record offset within a transaction).
|
3222
|
-
# The default is `
|
3838
|
+
# The default is `false`.
|
3223
3839
|
# @return [Boolean]
|
3224
3840
|
#
|
3225
3841
|
# @!attribute [rw] include_partition_value
|
3226
3842
|
# Shows the partition value within the Kinesis message output, unless
|
3227
|
-
# the partition type is `schema-table-type`. The default is `
|
3843
|
+
# the partition type is `schema-table-type`. The default is `false`.
|
3228
3844
|
# @return [Boolean]
|
3229
3845
|
#
|
3230
3846
|
# @!attribute [rw] partition_include_schema_table
|
@@ -3234,20 +3850,25 @@ module Aws::DatabaseMigrationService
|
|
3234
3850
|
# SysBench schema has thousands of tables and each table has only
|
3235
3851
|
# limited range for a primary key. In this case, the same primary key
|
3236
3852
|
# is sent from thousands of tables to the same shard, which causes
|
3237
|
-
# throttling. The default is `
|
3853
|
+
# throttling. The default is `false`.
|
3238
3854
|
# @return [Boolean]
|
3239
3855
|
#
|
3240
3856
|
# @!attribute [rw] include_table_alter_operations
|
3241
3857
|
# Includes any data definition language (DDL) operations that change
|
3242
3858
|
# the table in the control data, such as `rename-table`, `drop-table`,
|
3243
3859
|
# `add-column`, `drop-column`, and `rename-column`. The default is
|
3244
|
-
# `
|
3860
|
+
# `false`.
|
3245
3861
|
# @return [Boolean]
|
3246
3862
|
#
|
3247
3863
|
# @!attribute [rw] include_control_details
|
3248
3864
|
# Shows detailed control information for table definition, column
|
3249
3865
|
# definition, and table and column changes in the Kinesis message
|
3250
|
-
# output. The default is `
|
3866
|
+
# output. The default is `false`.
|
3867
|
+
# @return [Boolean]
|
3868
|
+
#
|
3869
|
+
# @!attribute [rw] include_null_and_empty
|
3870
|
+
# Include NULL and empty columns for records migrated to the endpoint.
|
3871
|
+
# The default is `false`.
|
3251
3872
|
# @return [Boolean]
|
3252
3873
|
#
|
3253
3874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KinesisSettings AWS API Documentation
|
@@ -3260,7 +3881,8 @@ module Aws::DatabaseMigrationService
|
|
3260
3881
|
:include_partition_value,
|
3261
3882
|
:partition_include_schema_table,
|
3262
3883
|
:include_table_alter_operations,
|
3263
|
-
:include_control_details
|
3884
|
+
:include_control_details,
|
3885
|
+
:include_null_and_empty)
|
3264
3886
|
SENSITIVE = []
|
3265
3887
|
include Aws::Structure
|
3266
3888
|
end
|
@@ -3297,6 +3919,51 @@ module Aws::DatabaseMigrationService
|
|
3297
3919
|
include Aws::Structure
|
3298
3920
|
end
|
3299
3921
|
|
3922
|
+
# Provides information that defines a Microsoft SQL Server endpoint.
|
3923
|
+
#
|
3924
|
+
# @note When making an API call, you may pass MicrosoftSQLServerSettings
|
3925
|
+
# data as a hash:
|
3926
|
+
#
|
3927
|
+
# {
|
3928
|
+
# port: 1,
|
3929
|
+
# database_name: "String",
|
3930
|
+
# password: "SecretString",
|
3931
|
+
# server_name: "String",
|
3932
|
+
# username: "String",
|
3933
|
+
# }
|
3934
|
+
#
|
3935
|
+
# @!attribute [rw] port
|
3936
|
+
# Endpoint TCP port.
|
3937
|
+
# @return [Integer]
|
3938
|
+
#
|
3939
|
+
# @!attribute [rw] database_name
|
3940
|
+
# Database name for the endpoint.
|
3941
|
+
# @return [String]
|
3942
|
+
#
|
3943
|
+
# @!attribute [rw] password
|
3944
|
+
# Endpoint connection password.
|
3945
|
+
# @return [String]
|
3946
|
+
#
|
3947
|
+
# @!attribute [rw] server_name
|
3948
|
+
# Fully qualified domain name of the endpoint.
|
3949
|
+
# @return [String]
|
3950
|
+
#
|
3951
|
+
# @!attribute [rw] username
|
3952
|
+
# Endpoint connection user name.
|
3953
|
+
# @return [String]
|
3954
|
+
#
|
3955
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
|
3956
|
+
#
|
3957
|
+
class MicrosoftSQLServerSettings < Struct.new(
|
3958
|
+
:port,
|
3959
|
+
:database_name,
|
3960
|
+
:password,
|
3961
|
+
:server_name,
|
3962
|
+
:username)
|
3963
|
+
SENSITIVE = [:password]
|
3964
|
+
include Aws::Structure
|
3965
|
+
end
|
3966
|
+
|
3300
3967
|
# @note When making an API call, you may pass ModifyEndpointMessage
|
3301
3968
|
# data as a hash:
|
3302
3969
|
#
|
@@ -3368,10 +4035,19 @@ module Aws::DatabaseMigrationService
|
|
3368
4035
|
# partition_include_schema_table: false,
|
3369
4036
|
# include_table_alter_operations: false,
|
3370
4037
|
# include_control_details: false,
|
4038
|
+
# include_null_and_empty: false,
|
3371
4039
|
# },
|
3372
4040
|
# kafka_settings: {
|
3373
4041
|
# broker: "String",
|
3374
4042
|
# topic: "String",
|
4043
|
+
# message_format: "json", # accepts json, json-unformatted
|
4044
|
+
# include_transaction_details: false,
|
4045
|
+
# include_partition_value: false,
|
4046
|
+
# partition_include_schema_table: false,
|
4047
|
+
# include_table_alter_operations: false,
|
4048
|
+
# include_control_details: false,
|
4049
|
+
# message_max_bytes: 1,
|
4050
|
+
# include_null_and_empty: false,
|
3375
4051
|
# },
|
3376
4052
|
# elasticsearch_settings: {
|
3377
4053
|
# service_access_role_arn: "String", # required
|
@@ -3415,6 +4091,53 @@ module Aws::DatabaseMigrationService
|
|
3415
4091
|
# username: "String",
|
3416
4092
|
# write_buffer_size: 1,
|
3417
4093
|
# },
|
4094
|
+
# postgre_sql_settings: {
|
4095
|
+
# database_name: "String",
|
4096
|
+
# password: "SecretString",
|
4097
|
+
# port: 1,
|
4098
|
+
# server_name: "String",
|
4099
|
+
# username: "String",
|
4100
|
+
# },
|
4101
|
+
# my_sql_settings: {
|
4102
|
+
# database_name: "String",
|
4103
|
+
# password: "SecretString",
|
4104
|
+
# port: 1,
|
4105
|
+
# server_name: "String",
|
4106
|
+
# username: "String",
|
4107
|
+
# },
|
4108
|
+
# oracle_settings: {
|
4109
|
+
# asm_password: "SecretString",
|
4110
|
+
# asm_server: "String",
|
4111
|
+
# asm_user: "String",
|
4112
|
+
# database_name: "String",
|
4113
|
+
# password: "SecretString",
|
4114
|
+
# port: 1,
|
4115
|
+
# security_db_encryption: "SecretString",
|
4116
|
+
# security_db_encryption_name: "String",
|
4117
|
+
# server_name: "String",
|
4118
|
+
# username: "String",
|
4119
|
+
# },
|
4120
|
+
# sybase_settings: {
|
4121
|
+
# database_name: "String",
|
4122
|
+
# password: "SecretString",
|
4123
|
+
# port: 1,
|
4124
|
+
# server_name: "String",
|
4125
|
+
# username: "String",
|
4126
|
+
# },
|
4127
|
+
# microsoft_sql_server_settings: {
|
4128
|
+
# port: 1,
|
4129
|
+
# database_name: "String",
|
4130
|
+
# password: "SecretString",
|
4131
|
+
# server_name: "String",
|
4132
|
+
# username: "String",
|
4133
|
+
# },
|
4134
|
+
# ibm_db_2_settings: {
|
4135
|
+
# database_name: "String",
|
4136
|
+
# password: "SecretString",
|
4137
|
+
# port: 1,
|
4138
|
+
# server_name: "String",
|
4139
|
+
# username: "String",
|
4140
|
+
# },
|
3418
4141
|
# }
|
3419
4142
|
#
|
3420
4143
|
# @!attribute [rw] endpoint_arn
|
@@ -3592,6 +4315,85 @@ module Aws::DatabaseMigrationService
|
|
3592
4315
|
# Provides information that defines an Amazon Redshift endpoint.
|
3593
4316
|
# @return [Types::RedshiftSettings]
|
3594
4317
|
#
|
4318
|
+
# @!attribute [rw] postgre_sql_settings
|
4319
|
+
# Settings in JSON format for the source and target PostgreSQL
|
4320
|
+
# endpoint. For information about other available settings, see [Extra
|
4321
|
+
# connection attributes when using PostgreSQL as a source for AWS
|
4322
|
+
# DMS][1] and [ Extra connection attributes when using PostgreSQL as a
|
4323
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
4324
|
+
# Guide.*
|
4325
|
+
#
|
4326
|
+
#
|
4327
|
+
#
|
4328
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
4329
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
4330
|
+
# @return [Types::PostgreSQLSettings]
|
4331
|
+
#
|
4332
|
+
# @!attribute [rw] my_sql_settings
|
4333
|
+
# Settings in JSON format for the source and target MySQL endpoint.
|
4334
|
+
# For information about other available settings, see [Extra
|
4335
|
+
# connection attributes when using MySQL as a source for AWS DMS][1]
|
4336
|
+
# and [Extra connection attributes when using a MySQL-compatible
|
4337
|
+
# database as a target for AWS DMS][2] in the *AWS Database Migration
|
4338
|
+
# Service User Guide.*
|
4339
|
+
#
|
4340
|
+
#
|
4341
|
+
#
|
4342
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
4343
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
4344
|
+
# @return [Types::MySQLSettings]
|
4345
|
+
#
|
4346
|
+
# @!attribute [rw] oracle_settings
|
4347
|
+
# Settings in JSON format for the source and target Oracle endpoint.
|
4348
|
+
# For information about other available settings, see [Extra
|
4349
|
+
# connection attributes when using Oracle as a source for AWS DMS][1]
|
4350
|
+
# and [ Extra connection attributes when using Oracle as a target for
|
4351
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
4352
|
+
#
|
4353
|
+
#
|
4354
|
+
#
|
4355
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
4356
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
4357
|
+
# @return [Types::OracleSettings]
|
4358
|
+
#
|
4359
|
+
# @!attribute [rw] sybase_settings
|
4360
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
4361
|
+
# For information about other available settings, see [Extra
|
4362
|
+
# connection attributes when using SAP ASE as a source for AWS DMS][1]
|
4363
|
+
# and [Extra connection attributes when using SAP ASE as a target for
|
4364
|
+
# AWS DMS][2] in the *AWS Database Migration Service User Guide.*
|
4365
|
+
#
|
4366
|
+
#
|
4367
|
+
#
|
4368
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
4369
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
4370
|
+
# @return [Types::SybaseSettings]
|
4371
|
+
#
|
4372
|
+
# @!attribute [rw] microsoft_sql_server_settings
|
4373
|
+
# Settings in JSON format for the source and target Microsoft SQL
|
4374
|
+
# Server endpoint. For information about other available settings, see
|
4375
|
+
# [Extra connection attributes when using SQL Server as a source for
|
4376
|
+
# AWS DMS][1] and [ Extra connection attributes when using SQL Server
|
4377
|
+
# as a target for AWS DMS][2] in the *AWS Database Migration Service
|
4378
|
+
# User Guide.*
|
4379
|
+
#
|
4380
|
+
#
|
4381
|
+
#
|
4382
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
4383
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
4384
|
+
# @return [Types::MicrosoftSQLServerSettings]
|
4385
|
+
#
|
4386
|
+
# @!attribute [rw] ibm_db_2_settings
|
4387
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
4388
|
+
# information about other available settings, see [Extra connection
|
4389
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the
|
4390
|
+
# *AWS Database Migration Service User Guide.*
|
4391
|
+
#
|
4392
|
+
#
|
4393
|
+
#
|
4394
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
4395
|
+
# @return [Types::IBMDb2Settings]
|
4396
|
+
#
|
3595
4397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpointMessage AWS API Documentation
|
3596
4398
|
#
|
3597
4399
|
class ModifyEndpointMessage < Struct.new(
|
@@ -3617,7 +4419,13 @@ module Aws::DatabaseMigrationService
|
|
3617
4419
|
:kafka_settings,
|
3618
4420
|
:elasticsearch_settings,
|
3619
4421
|
:neptune_settings,
|
3620
|
-
:redshift_settings
|
4422
|
+
:redshift_settings,
|
4423
|
+
:postgre_sql_settings,
|
4424
|
+
:my_sql_settings,
|
4425
|
+
:oracle_settings,
|
4426
|
+
:sybase_settings,
|
4427
|
+
:microsoft_sql_server_settings,
|
4428
|
+
:ibm_db_2_settings)
|
3621
4429
|
SENSITIVE = [:password]
|
3622
4430
|
include Aws::Structure
|
3623
4431
|
end
|
@@ -3775,6 +4583,9 @@ module Aws::DatabaseMigrationService
|
|
3775
4583
|
#
|
3776
4584
|
# @!attribute [rw] engine_version
|
3777
4585
|
# The engine version number of the replication instance.
|
4586
|
+
#
|
4587
|
+
# When modifying a major engine version of an instance, also set
|
4588
|
+
# `AllowMajorVersionUpgrade` to `true`.
|
3778
4589
|
# @return [String]
|
3779
4590
|
#
|
3780
4591
|
# @!attribute [rw] allow_major_version_upgrade
|
@@ -3973,10 +4784,10 @@ module Aws::DatabaseMigrationService
|
|
3973
4784
|
# stop. The value can be either server time or commit time.
|
3974
4785
|
#
|
3975
4786
|
# Server time example: --cdc-stop-position
|
3976
|
-
# “server\_time:
|
4787
|
+
# “server\_time:2018-02-09T12:12:12”
|
3977
4788
|
#
|
3978
4789
|
# Commit time example: --cdc-stop-position “commit\_time:
|
3979
|
-
#
|
4790
|
+
# 2018-02-09T12:12:12 “
|
3980
4791
|
# @return [String]
|
3981
4792
|
#
|
3982
4793
|
# @!attribute [rw] task_data
|
@@ -4134,6 +4945,51 @@ module Aws::DatabaseMigrationService
|
|
4134
4945
|
include Aws::Structure
|
4135
4946
|
end
|
4136
4947
|
|
4948
|
+
# Provides information that defines a MySQL endpoint.
|
4949
|
+
#
|
4950
|
+
# @note When making an API call, you may pass MySQLSettings
|
4951
|
+
# data as a hash:
|
4952
|
+
#
|
4953
|
+
# {
|
4954
|
+
# database_name: "String",
|
4955
|
+
# password: "SecretString",
|
4956
|
+
# port: 1,
|
4957
|
+
# server_name: "String",
|
4958
|
+
# username: "String",
|
4959
|
+
# }
|
4960
|
+
#
|
4961
|
+
# @!attribute [rw] database_name
|
4962
|
+
# Database name for the endpoint.
|
4963
|
+
# @return [String]
|
4964
|
+
#
|
4965
|
+
# @!attribute [rw] password
|
4966
|
+
# Endpoint connection password.
|
4967
|
+
# @return [String]
|
4968
|
+
#
|
4969
|
+
# @!attribute [rw] port
|
4970
|
+
# Endpoint TCP port.
|
4971
|
+
# @return [Integer]
|
4972
|
+
#
|
4973
|
+
# @!attribute [rw] server_name
|
4974
|
+
# Fully qualified domain name of the endpoint.
|
4975
|
+
# @return [String]
|
4976
|
+
#
|
4977
|
+
# @!attribute [rw] username
|
4978
|
+
# Endpoint connection user name.
|
4979
|
+
# @return [String]
|
4980
|
+
#
|
4981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MySQLSettings AWS API Documentation
|
4982
|
+
#
|
4983
|
+
class MySQLSettings < Struct.new(
|
4984
|
+
:database_name,
|
4985
|
+
:password,
|
4986
|
+
:port,
|
4987
|
+
:server_name,
|
4988
|
+
:username)
|
4989
|
+
SENSITIVE = [:password]
|
4990
|
+
include Aws::Structure
|
4991
|
+
end
|
4992
|
+
|
4137
4993
|
# Provides information that defines an Amazon Neptune endpoint.
|
4138
4994
|
#
|
4139
4995
|
# @note When making an API call, you may pass NeptuneSettings
|
@@ -4213,6 +5069,133 @@ module Aws::DatabaseMigrationService
|
|
4213
5069
|
include Aws::Structure
|
4214
5070
|
end
|
4215
5071
|
|
5072
|
+
# Provides information that defines an Oracle endpoint.
|
5073
|
+
#
|
5074
|
+
# @note When making an API call, you may pass OracleSettings
|
5075
|
+
# data as a hash:
|
5076
|
+
#
|
5077
|
+
# {
|
5078
|
+
# asm_password: "SecretString",
|
5079
|
+
# asm_server: "String",
|
5080
|
+
# asm_user: "String",
|
5081
|
+
# database_name: "String",
|
5082
|
+
# password: "SecretString",
|
5083
|
+
# port: 1,
|
5084
|
+
# security_db_encryption: "SecretString",
|
5085
|
+
# security_db_encryption_name: "String",
|
5086
|
+
# server_name: "String",
|
5087
|
+
# username: "String",
|
5088
|
+
# }
|
5089
|
+
#
|
5090
|
+
# @!attribute [rw] asm_password
|
5091
|
+
# For an Oracle source endpoint, your Oracle Automatic Storage
|
5092
|
+
# Management (ASM) password. You can set this value from the `
|
5093
|
+
# asm_user_password ` value. You set this value as part of the
|
5094
|
+
# comma-separated value that you set to the `Password` request
|
5095
|
+
# parameter when you create the endpoint to access transaction logs
|
5096
|
+
# using Binary Reader. For more information, see [Configuration for
|
5097
|
+
# change data capture (CDC) on an Oracle source database][1].
|
5098
|
+
#
|
5099
|
+
#
|
5100
|
+
#
|
5101
|
+
# [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
|
5102
|
+
# @return [String]
|
5103
|
+
#
|
5104
|
+
# @!attribute [rw] asm_server
|
5105
|
+
# For an Oracle source endpoint, your ASM server address. You can set
|
5106
|
+
# this value from the `asm_server` value. You set `asm_server` as part
|
5107
|
+
# of the extra connection attribute string to access an Oracle server
|
5108
|
+
# with Binary Reader that uses ASM. For more information, see
|
5109
|
+
# [Configuration for change data capture (CDC) on an Oracle source
|
5110
|
+
# database][1].
|
5111
|
+
#
|
5112
|
+
#
|
5113
|
+
#
|
5114
|
+
# [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
|
5115
|
+
# @return [String]
|
5116
|
+
#
|
5117
|
+
# @!attribute [rw] asm_user
|
5118
|
+
# For an Oracle source endpoint, your ASM user name. You can set this
|
5119
|
+
# value from the `asm_user` value. You set `asm_user` as part of the
|
5120
|
+
# extra connection attribute string to access an Oracle server with
|
5121
|
+
# Binary Reader that uses ASM. For more information, see
|
5122
|
+
# [Configuration for change data capture (CDC) on an Oracle source
|
5123
|
+
# database][1].
|
5124
|
+
#
|
5125
|
+
#
|
5126
|
+
#
|
5127
|
+
# [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
|
5128
|
+
# @return [String]
|
5129
|
+
#
|
5130
|
+
# @!attribute [rw] database_name
|
5131
|
+
# Database name for the endpoint.
|
5132
|
+
# @return [String]
|
5133
|
+
#
|
5134
|
+
# @!attribute [rw] password
|
5135
|
+
# Endpoint connection password.
|
5136
|
+
# @return [String]
|
5137
|
+
#
|
5138
|
+
# @!attribute [rw] port
|
5139
|
+
# Endpoint TCP port.
|
5140
|
+
# @return [Integer]
|
5141
|
+
#
|
5142
|
+
# @!attribute [rw] security_db_encryption
|
5143
|
+
# For an Oracle source endpoint, the transparent data encryption (TDE)
|
5144
|
+
# password required by AWM DMS to access Oracle redo logs encrypted by
|
5145
|
+
# TDE using Binary Reader. It is also the ` TDE_Password ` part of the
|
5146
|
+
# comma-separated value you set to the `Password` request parameter
|
5147
|
+
# when you create the endpoint. The `SecurityDbEncryptian` setting is
|
5148
|
+
# related to this `SecurityDbEncryptionName` setting. For more
|
5149
|
+
# information, see [ Supported encryption methods for using Oracle as
|
5150
|
+
# a source for AWS DMS][1] in the *AWS Database Migration Service User
|
5151
|
+
# Guide*.
|
5152
|
+
#
|
5153
|
+
#
|
5154
|
+
#
|
5155
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.Encryption
|
5156
|
+
# @return [String]
|
5157
|
+
#
|
5158
|
+
# @!attribute [rw] security_db_encryption_name
|
5159
|
+
# For an Oracle source endpoint, the name of a key used for the
|
5160
|
+
# transparent data encryption (TDE) of the columns and tablespaces in
|
5161
|
+
# an Oracle source database that is encrypted using TDE. The key value
|
5162
|
+
# is the value of the `SecurityDbEncryption` setting. For more
|
5163
|
+
# information on setting the key name value of
|
5164
|
+
# `SecurityDbEncryptionName`, see the information and example for
|
5165
|
+
# setting the `securityDbEncryptionName` extra connection attribute in
|
5166
|
+
# [ Supported encryption methods for using Oracle as a source for AWS
|
5167
|
+
# DMS][1] in the *AWS Database Migration Service User Guide*.
|
5168
|
+
#
|
5169
|
+
#
|
5170
|
+
#
|
5171
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.Encryption
|
5172
|
+
# @return [String]
|
5173
|
+
#
|
5174
|
+
# @!attribute [rw] server_name
|
5175
|
+
# Fully qualified domain name of the endpoint.
|
5176
|
+
# @return [String]
|
5177
|
+
#
|
5178
|
+
# @!attribute [rw] username
|
5179
|
+
# Endpoint connection user name.
|
5180
|
+
# @return [String]
|
5181
|
+
#
|
5182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
|
5183
|
+
#
|
5184
|
+
class OracleSettings < Struct.new(
|
5185
|
+
:asm_password,
|
5186
|
+
:asm_server,
|
5187
|
+
:asm_user,
|
5188
|
+
:database_name,
|
5189
|
+
:password,
|
5190
|
+
:port,
|
5191
|
+
:security_db_encryption,
|
5192
|
+
:security_db_encryption_name,
|
5193
|
+
:server_name,
|
5194
|
+
:username)
|
5195
|
+
SENSITIVE = [:asm_password, :password, :security_db_encryption]
|
5196
|
+
include Aws::Structure
|
5197
|
+
end
|
5198
|
+
|
4216
5199
|
# In response to the `DescribeOrderableReplicationInstances` operation,
|
4217
5200
|
# this object describes an available replication instance. This
|
4218
5201
|
# description includes the replication instance's type, engine version,
|
@@ -4346,6 +5329,51 @@ module Aws::DatabaseMigrationService
|
|
4346
5329
|
include Aws::Structure
|
4347
5330
|
end
|
4348
5331
|
|
5332
|
+
# Provides information that defines a PostgreSQL endpoint.
|
5333
|
+
#
|
5334
|
+
# @note When making an API call, you may pass PostgreSQLSettings
|
5335
|
+
# data as a hash:
|
5336
|
+
#
|
5337
|
+
# {
|
5338
|
+
# database_name: "String",
|
5339
|
+
# password: "SecretString",
|
5340
|
+
# port: 1,
|
5341
|
+
# server_name: "String",
|
5342
|
+
# username: "String",
|
5343
|
+
# }
|
5344
|
+
#
|
5345
|
+
# @!attribute [rw] database_name
|
5346
|
+
# Database name for the endpoint.
|
5347
|
+
# @return [String]
|
5348
|
+
#
|
5349
|
+
# @!attribute [rw] password
|
5350
|
+
# Endpoint connection password.
|
5351
|
+
# @return [String]
|
5352
|
+
#
|
5353
|
+
# @!attribute [rw] port
|
5354
|
+
# Endpoint TCP port.
|
5355
|
+
# @return [Integer]
|
5356
|
+
#
|
5357
|
+
# @!attribute [rw] server_name
|
5358
|
+
# Fully qualified domain name of the endpoint.
|
5359
|
+
# @return [String]
|
5360
|
+
#
|
5361
|
+
# @!attribute [rw] username
|
5362
|
+
# Endpoint connection user name.
|
5363
|
+
# @return [String]
|
5364
|
+
#
|
5365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
|
5366
|
+
#
|
5367
|
+
class PostgreSQLSettings < Struct.new(
|
5368
|
+
:database_name,
|
5369
|
+
:password,
|
5370
|
+
:port,
|
5371
|
+
:server_name,
|
5372
|
+
:username)
|
5373
|
+
SENSITIVE = [:password]
|
5374
|
+
include Aws::Structure
|
5375
|
+
end
|
5376
|
+
|
4349
5377
|
# @note When making an API call, you may pass RebootReplicationInstanceMessage
|
4350
5378
|
# data as a hash:
|
4351
5379
|
#
|
@@ -4475,10 +5503,17 @@ module Aws::DatabaseMigrationService
|
|
4475
5503
|
# The type of server-side encryption that you want to use for your
|
4476
5504
|
# data. This encryption type is part of the endpoint settings or the
|
4477
5505
|
# extra connections attributes for Amazon S3. You can choose either
|
4478
|
-
# `SSE_S3` (the default) or `SSE_KMS`.
|
4479
|
-
#
|
4480
|
-
#
|
4481
|
-
#
|
5506
|
+
# `SSE_S3` (the default) or `SSE_KMS`.
|
5507
|
+
#
|
5508
|
+
# <note markdown="1"> For the `ModifyEndpoint` operation, you can change the existing
|
5509
|
+
# value of the `EncryptionMode` parameter from `SSE_KMS` to `SSE_S3`.
|
5510
|
+
# But you can’t change the existing value from `SSE_S3` to `SSE_KMS`.
|
5511
|
+
#
|
5512
|
+
# </note>
|
5513
|
+
#
|
5514
|
+
# To use `SSE_S3`, create an AWS Identity and Access Management (IAM)
|
5515
|
+
# role with a policy that allows `"arn:aws:s3:::*"` to use the
|
5516
|
+
# following actions: `"s3:PutObject", "s3:ListBucket"`
|
4482
5517
|
# @return [String]
|
4483
5518
|
#
|
4484
5519
|
# @!attribute [rw] file_transfer_upload_streams
|
@@ -4688,8 +5723,8 @@ module Aws::DatabaseMigrationService
|
|
4688
5723
|
# replication_task_arn: "String", # required
|
4689
5724
|
# tables_to_reload: [ # required
|
4690
5725
|
# {
|
4691
|
-
# schema_name: "String",
|
4692
|
-
# table_name: "String",
|
5726
|
+
# schema_name: "String", # required
|
5727
|
+
# table_name: "String", # required
|
4693
5728
|
# },
|
4694
5729
|
# ],
|
4695
5730
|
# reload_option: "data-reload", # accepts data-reload, validate-only
|
@@ -4771,8 +5806,8 @@ module Aws::DatabaseMigrationService
|
|
4771
5806
|
# Provides information that defines a replication instance.
|
4772
5807
|
#
|
4773
5808
|
# @!attribute [rw] replication_instance_identifier
|
4774
|
-
# The replication instance identifier
|
4775
|
-
# lowercase string.
|
5809
|
+
# The replication instance identifier is a required parameter. This
|
5810
|
+
# parameter is stored as a lowercase string.
|
4776
5811
|
#
|
4777
5812
|
# Constraints:
|
4778
5813
|
#
|
@@ -4787,7 +5822,9 @@ module Aws::DatabaseMigrationService
|
|
4787
5822
|
#
|
4788
5823
|
# @!attribute [rw] replication_instance_class
|
4789
5824
|
# The compute and memory capacity of the replication instance as
|
4790
|
-
# defined for the specified replication instance class.
|
5825
|
+
# defined for the specified replication instance class. It is a
|
5826
|
+
# required parameter, although a defualt value is pre-selected in the
|
5827
|
+
# DMS console.
|
4791
5828
|
#
|
4792
5829
|
# For more information on the settings and capacities for the
|
4793
5830
|
# available replication instance classes, see [ Selecting the right
|
@@ -4851,7 +5888,9 @@ module Aws::DatabaseMigrationService
|
|
4851
5888
|
# @return [Types::ReplicationSubnetGroup]
|
4852
5889
|
#
|
4853
5890
|
# @!attribute [rw] preferred_maintenance_window
|
4854
|
-
# The maintenance window times for the replication instance.
|
5891
|
+
# The maintenance window times for the replication instance. Any
|
5892
|
+
# pending upgrades to the replication instance are performed during
|
5893
|
+
# this time.
|
4855
5894
|
# @return [String]
|
4856
5895
|
#
|
4857
5896
|
# @!attribute [rw] pending_modified_values
|
@@ -4866,6 +5905,13 @@ module Aws::DatabaseMigrationService
|
|
4866
5905
|
#
|
4867
5906
|
# @!attribute [rw] engine_version
|
4868
5907
|
# The engine version number of the replication instance.
|
5908
|
+
#
|
5909
|
+
# If an engine version number is not specified when a replication
|
5910
|
+
# instance is created, the default is the latest engine version
|
5911
|
+
# available.
|
5912
|
+
#
|
5913
|
+
# When modifying a major engine version of an instance, also set
|
5914
|
+
# `AllowMajorVersionUpgrade` to `true`.
|
4869
5915
|
# @return [String]
|
4870
5916
|
#
|
4871
5917
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -4982,8 +6028,12 @@ module Aws::DatabaseMigrationService
|
|
4982
6028
|
end
|
4983
6029
|
|
4984
6030
|
# Provides information about the values of pending modifications to a
|
4985
|
-
# replication instance. This data type is an object of the
|
4986
|
-
# `ReplicationInstance` user-defined data type.
|
6031
|
+
# replication instance. This data type is an object of the [
|
6032
|
+
# `ReplicationInstance` ][1] user-defined data type.
|
6033
|
+
#
|
6034
|
+
#
|
6035
|
+
#
|
6036
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_ReplicationInstance.html
|
4987
6037
|
#
|
4988
6038
|
# @!attribute [rw] replication_instance_class
|
4989
6039
|
# The compute and memory capacity of the replication instance as
|
@@ -5119,8 +6169,7 @@ module Aws::DatabaseMigrationService
|
|
5119
6169
|
# @return [String]
|
5120
6170
|
#
|
5121
6171
|
# @!attribute [rw] last_failure_message
|
5122
|
-
# The last error (failure) message generated for the replication
|
5123
|
-
# instance.
|
6172
|
+
# The last error (failure) message generated for the replication task.
|
5124
6173
|
# @return [String]
|
5125
6174
|
#
|
5126
6175
|
# @!attribute [rw] stop_reason
|
@@ -5170,10 +6219,10 @@ module Aws::DatabaseMigrationService
|
|
5170
6219
|
# stop. The value can be either server time or commit time.
|
5171
6220
|
#
|
5172
6221
|
# Server time example: --cdc-stop-position
|
5173
|
-
# “server\_time:
|
6222
|
+
# “server\_time:2018-02-09T12:12:12”
|
5174
6223
|
#
|
5175
6224
|
# Commit time example: --cdc-stop-position “commit\_time:
|
5176
|
-
#
|
6225
|
+
# 2018-02-09T12:12:12 “
|
5177
6226
|
# @return [String]
|
5178
6227
|
#
|
5179
6228
|
# @!attribute [rw] recovery_checkpoint
|
@@ -5273,6 +6322,189 @@ module Aws::DatabaseMigrationService
|
|
5273
6322
|
include Aws::Structure
|
5274
6323
|
end
|
5275
6324
|
|
6325
|
+
# Provides information that describes a premigration assessment run that
|
6326
|
+
# you have started using the `StartReplicationTaskAssessmentRun`
|
6327
|
+
# operation.
|
6328
|
+
#
|
6329
|
+
# Some of the information appears based on other operations that can
|
6330
|
+
# return the `ReplicationTaskAssessmentRun` object.
|
6331
|
+
#
|
6332
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
6333
|
+
# Amazon Resource Name (ARN) of this assessment run.
|
6334
|
+
# @return [String]
|
6335
|
+
#
|
6336
|
+
# @!attribute [rw] replication_task_arn
|
6337
|
+
# ARN of the migration task associated with this premigration
|
6338
|
+
# assessment run.
|
6339
|
+
# @return [String]
|
6340
|
+
#
|
6341
|
+
# @!attribute [rw] status
|
6342
|
+
# Assessment run status.
|
6343
|
+
#
|
6344
|
+
# This status can have one of the following values:
|
6345
|
+
#
|
6346
|
+
# * `"cancelling"` – The assessment run was canceled by the
|
6347
|
+
# `CancelReplicationTaskAssessmentRun` operation.
|
6348
|
+
#
|
6349
|
+
# * `"deleting"` – The assessment run was deleted by the
|
6350
|
+
# `DeleteReplicationTaskAssessmentRun` operation.
|
6351
|
+
#
|
6352
|
+
# * `"failed"` – At least one individual assessment completed with a
|
6353
|
+
# `failed` status.
|
6354
|
+
#
|
6355
|
+
# * `"error-provisioning"` – An internal error occurred while
|
6356
|
+
# resources were provisioned (during `provisioning` status).
|
6357
|
+
#
|
6358
|
+
# * `"error-executing"` – An internal error occurred while individual
|
6359
|
+
# assessments ran (during `running` status).
|
6360
|
+
#
|
6361
|
+
# * `"invalid state"` – The assessment run is in an unknown state.
|
6362
|
+
#
|
6363
|
+
# * `"passed"` – All individual assessments have completed, and none
|
6364
|
+
# has a `failed` status.
|
6365
|
+
#
|
6366
|
+
# * `"provisioning"` – Resources required to run individual
|
6367
|
+
# assessments are being provisioned.
|
6368
|
+
#
|
6369
|
+
# * `"running"` – Individual assessments are being run.
|
6370
|
+
#
|
6371
|
+
# * `"starting"` – The assessment run is starting, but resources are
|
6372
|
+
# not yet being provisioned for individual assessments.
|
6373
|
+
# @return [String]
|
6374
|
+
#
|
6375
|
+
# @!attribute [rw] replication_task_assessment_run_creation_date
|
6376
|
+
# Date on which the assessment run was created using the
|
6377
|
+
# `StartReplicationTaskAssessmentRun` operation.
|
6378
|
+
# @return [Time]
|
6379
|
+
#
|
6380
|
+
# @!attribute [rw] assessment_progress
|
6381
|
+
# Indication of the completion progress for the individual assessments
|
6382
|
+
# specified to run.
|
6383
|
+
# @return [Types::ReplicationTaskAssessmentRunProgress]
|
6384
|
+
#
|
6385
|
+
# @!attribute [rw] last_failure_message
|
6386
|
+
# Last message generated by an individual assessment failure.
|
6387
|
+
# @return [String]
|
6388
|
+
#
|
6389
|
+
# @!attribute [rw] service_access_role_arn
|
6390
|
+
# ARN of the service role used to start the assessment run using the
|
6391
|
+
# `StartReplicationTaskAssessmentRun` operation.
|
6392
|
+
# @return [String]
|
6393
|
+
#
|
6394
|
+
# @!attribute [rw] result_location_bucket
|
6395
|
+
# Amazon S3 bucket where AWS DMS stores the results of this assessment
|
6396
|
+
# run.
|
6397
|
+
# @return [String]
|
6398
|
+
#
|
6399
|
+
# @!attribute [rw] result_location_folder
|
6400
|
+
# Folder in an Amazon S3 bucket where AWS DMS stores the results of
|
6401
|
+
# this assessment run.
|
6402
|
+
# @return [String]
|
6403
|
+
#
|
6404
|
+
# @!attribute [rw] result_encryption_mode
|
6405
|
+
# Encryption mode used to encrypt the assessment run results.
|
6406
|
+
# @return [String]
|
6407
|
+
#
|
6408
|
+
# @!attribute [rw] result_kms_key_arn
|
6409
|
+
# ARN of the AWS KMS encryption key used to encrypt the assessment run
|
6410
|
+
# results.
|
6411
|
+
# @return [String]
|
6412
|
+
#
|
6413
|
+
# @!attribute [rw] assessment_run_name
|
6414
|
+
# Unique name of the assessment run.
|
6415
|
+
# @return [String]
|
6416
|
+
#
|
6417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRun AWS API Documentation
|
6418
|
+
#
|
6419
|
+
class ReplicationTaskAssessmentRun < Struct.new(
|
6420
|
+
:replication_task_assessment_run_arn,
|
6421
|
+
:replication_task_arn,
|
6422
|
+
:status,
|
6423
|
+
:replication_task_assessment_run_creation_date,
|
6424
|
+
:assessment_progress,
|
6425
|
+
:last_failure_message,
|
6426
|
+
:service_access_role_arn,
|
6427
|
+
:result_location_bucket,
|
6428
|
+
:result_location_folder,
|
6429
|
+
:result_encryption_mode,
|
6430
|
+
:result_kms_key_arn,
|
6431
|
+
:assessment_run_name)
|
6432
|
+
SENSITIVE = []
|
6433
|
+
include Aws::Structure
|
6434
|
+
end
|
6435
|
+
|
6436
|
+
# The progress values reported by the `AssessmentProgress` response
|
6437
|
+
# element.
|
6438
|
+
#
|
6439
|
+
# @!attribute [rw] individual_assessment_count
|
6440
|
+
# The number of individual assessments that are specified to run.
|
6441
|
+
# @return [Integer]
|
6442
|
+
#
|
6443
|
+
# @!attribute [rw] individual_assessment_completed_count
|
6444
|
+
# The number of individual assessments that have completed,
|
6445
|
+
# successfully or not.
|
6446
|
+
# @return [Integer]
|
6447
|
+
#
|
6448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRunProgress AWS API Documentation
|
6449
|
+
#
|
6450
|
+
class ReplicationTaskAssessmentRunProgress < Struct.new(
|
6451
|
+
:individual_assessment_count,
|
6452
|
+
:individual_assessment_completed_count)
|
6453
|
+
SENSITIVE = []
|
6454
|
+
include Aws::Structure
|
6455
|
+
end
|
6456
|
+
|
6457
|
+
# Provides information that describes an individual assessment from a
|
6458
|
+
# premigration assessment run.
|
6459
|
+
#
|
6460
|
+
# @!attribute [rw] replication_task_individual_assessment_arn
|
6461
|
+
# Amazon Resource Name (ARN) of this individual assessment.
|
6462
|
+
# @return [String]
|
6463
|
+
#
|
6464
|
+
# @!attribute [rw] replication_task_assessment_run_arn
|
6465
|
+
# ARN of the premigration assessment run that is created to run this
|
6466
|
+
# individual assessment.
|
6467
|
+
# @return [String]
|
6468
|
+
#
|
6469
|
+
# @!attribute [rw] individual_assessment_name
|
6470
|
+
# Name of this individual assessment.
|
6471
|
+
# @return [String]
|
6472
|
+
#
|
6473
|
+
# @!attribute [rw] status
|
6474
|
+
# Individual assessment status.
|
6475
|
+
#
|
6476
|
+
# This status can have one of the following values:
|
6477
|
+
#
|
6478
|
+
# * `"cancelled"`
|
6479
|
+
#
|
6480
|
+
# * `"error"`
|
6481
|
+
#
|
6482
|
+
# * `"failed"`
|
6483
|
+
#
|
6484
|
+
# * `"passed"`
|
6485
|
+
#
|
6486
|
+
# * `"pending"`
|
6487
|
+
#
|
6488
|
+
# * `"running"`
|
6489
|
+
# @return [String]
|
6490
|
+
#
|
6491
|
+
# @!attribute [rw] replication_task_individual_assessment_start_date
|
6492
|
+
# Date when this individual assessment was started as part of running
|
6493
|
+
# the `StartReplicationTaskAssessmentRun` operation.
|
6494
|
+
# @return [Time]
|
6495
|
+
#
|
6496
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskIndividualAssessment AWS API Documentation
|
6497
|
+
#
|
6498
|
+
class ReplicationTaskIndividualAssessment < Struct.new(
|
6499
|
+
:replication_task_individual_assessment_arn,
|
6500
|
+
:replication_task_assessment_run_arn,
|
6501
|
+
:individual_assessment_name,
|
6502
|
+
:status,
|
6503
|
+
:replication_task_individual_assessment_start_date)
|
6504
|
+
SENSITIVE = []
|
6505
|
+
include Aws::Structure
|
6506
|
+
end
|
6507
|
+
|
5276
6508
|
# In response to a request by the `DescribeReplicationTasks` operation,
|
5277
6509
|
# this object provides a collection of statistics about a replication
|
5278
6510
|
# task.
|
@@ -5415,6 +6647,33 @@ module Aws::DatabaseMigrationService
|
|
5415
6647
|
include Aws::Structure
|
5416
6648
|
end
|
5417
6649
|
|
6650
|
+
# Insufficient privileges are preventing access to an Amazon S3 object.
|
6651
|
+
#
|
6652
|
+
# @!attribute [rw] message
|
6653
|
+
# @return [String]
|
6654
|
+
#
|
6655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3AccessDeniedFault AWS API Documentation
|
6656
|
+
#
|
6657
|
+
class S3AccessDeniedFault < Struct.new(
|
6658
|
+
:message)
|
6659
|
+
SENSITIVE = []
|
6660
|
+
include Aws::Structure
|
6661
|
+
end
|
6662
|
+
|
6663
|
+
# A specified Amazon S3 bucket, bucket folder, or other object can't be
|
6664
|
+
# found.
|
6665
|
+
#
|
6666
|
+
# @!attribute [rw] message
|
6667
|
+
# @return [String]
|
6668
|
+
#
|
6669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3ResourceNotFoundFault AWS API Documentation
|
6670
|
+
#
|
6671
|
+
class S3ResourceNotFoundFault < Struct.new(
|
6672
|
+
:message)
|
6673
|
+
SENSITIVE = []
|
6674
|
+
include Aws::Structure
|
6675
|
+
end
|
6676
|
+
|
5418
6677
|
# Settings for exporting data to Amazon S3.
|
5419
6678
|
#
|
5420
6679
|
# @note When making an API call, you may pass S3Settings
|
@@ -5446,20 +6705,22 @@ module Aws::DatabaseMigrationService
|
|
5446
6705
|
#
|
5447
6706
|
# @!attribute [rw] service_access_role_arn
|
5448
6707
|
# The Amazon Resource Name (ARN) used by the service access IAM role.
|
6708
|
+
# It is a required parameter that enables DMS to write and read
|
6709
|
+
# objects from an 3S bucket.
|
5449
6710
|
# @return [String]
|
5450
6711
|
#
|
5451
6712
|
# @!attribute [rw] external_table_definition
|
5452
|
-
#
|
6713
|
+
# Specifies how tables are defined in the S3 source files only.
|
5453
6714
|
# @return [String]
|
5454
6715
|
#
|
5455
6716
|
# @!attribute [rw] csv_row_delimiter
|
5456
|
-
# The delimiter used to separate rows in the
|
5457
|
-
# is a carriage return (`\n`).
|
6717
|
+
# The delimiter used to separate rows in the .csv file for both source
|
6718
|
+
# and target. The default is a carriage return (`\n`).
|
5458
6719
|
# @return [String]
|
5459
6720
|
#
|
5460
6721
|
# @!attribute [rw] csv_delimiter
|
5461
|
-
# The delimiter used to separate columns in the
|
5462
|
-
# default is a comma.
|
6722
|
+
# The delimiter used to separate columns in the .csv file for both
|
6723
|
+
# source and target. The default is a comma.
|
5463
6724
|
# @return [String]
|
5464
6725
|
#
|
5465
6726
|
# @!attribute [rw] bucket_folder
|
@@ -5484,9 +6745,17 @@ module Aws::DatabaseMigrationService
|
|
5484
6745
|
# The type of server-side encryption that you want to use for your
|
5485
6746
|
# data. This encryption type is part of the endpoint settings or the
|
5486
6747
|
# extra connections attributes for Amazon S3. You can choose either
|
5487
|
-
# `SSE_S3` (the default) or `SSE_KMS`.
|
5488
|
-
#
|
5489
|
-
#
|
6748
|
+
# `SSE_S3` (the default) or `SSE_KMS`.
|
6749
|
+
#
|
6750
|
+
# <note markdown="1"> For the `ModifyEndpoint` operation, you can change the existing
|
6751
|
+
# value of the `EncryptionMode` parameter from `SSE_KMS` to `SSE_S3`.
|
6752
|
+
# But you can’t change the existing value from `SSE_S3` to `SSE_KMS`.
|
6753
|
+
#
|
6754
|
+
# </note>
|
6755
|
+
#
|
6756
|
+
# To use `SSE_S3`, you need an AWS Identity and Access Management
|
6757
|
+
# (IAM) role with permission to allow `"arn:aws:s3:::dms-*"` to use
|
6758
|
+
# the following actions:
|
5490
6759
|
#
|
5491
6760
|
# * `s3:CreateBucket`
|
5492
6761
|
#
|
@@ -5722,8 +6991,9 @@ module Aws::DatabaseMigrationService
|
|
5722
6991
|
# A value that enables a change data capture (CDC) load to write
|
5723
6992
|
# INSERT and UPDATE operations to .csv or .parquet (columnar storage)
|
5724
6993
|
# output files. The default setting is `false`, but when
|
5725
|
-
# `CdcInsertsAndUpdates` is set to `true`or `y`, INSERTs and
|
5726
|
-
# from the source database are migrated to the .csv or
|
6994
|
+
# `CdcInsertsAndUpdates` is set to `true` or `y`, only INSERTs and
|
6995
|
+
# UPDATEs from the source database are migrated to the .csv or
|
6996
|
+
# .parquet file.
|
5727
6997
|
#
|
5728
6998
|
# For .csv file format only, how these INSERTs and UPDATEs are
|
5729
6999
|
# recorded depends on the value of the `IncludeOpForFullLoad`
|
@@ -5836,6 +7106,125 @@ module Aws::DatabaseMigrationService
|
|
5836
7106
|
include Aws::Structure
|
5837
7107
|
end
|
5838
7108
|
|
7109
|
+
# @note When making an API call, you may pass StartReplicationTaskAssessmentRunMessage
|
7110
|
+
# data as a hash:
|
7111
|
+
#
|
7112
|
+
# {
|
7113
|
+
# replication_task_arn: "String", # required
|
7114
|
+
# service_access_role_arn: "String", # required
|
7115
|
+
# result_location_bucket: "String", # required
|
7116
|
+
# result_location_folder: "String",
|
7117
|
+
# result_encryption_mode: "String",
|
7118
|
+
# result_kms_key_arn: "String",
|
7119
|
+
# assessment_run_name: "String", # required
|
7120
|
+
# include_only: ["String"],
|
7121
|
+
# exclude: ["String"],
|
7122
|
+
# }
|
7123
|
+
#
|
7124
|
+
# @!attribute [rw] replication_task_arn
|
7125
|
+
# Amazon Resource Name (ARN) of the migration task associated with the
|
7126
|
+
# premigration assessment run that you want to start.
|
7127
|
+
# @return [String]
|
7128
|
+
#
|
7129
|
+
# @!attribute [rw] service_access_role_arn
|
7130
|
+
# ARN of a service role needed to start the assessment run.
|
7131
|
+
# @return [String]
|
7132
|
+
#
|
7133
|
+
# @!attribute [rw] result_location_bucket
|
7134
|
+
# Amazon S3 bucket where you want AWS DMS to store the results of this
|
7135
|
+
# assessment run.
|
7136
|
+
# @return [String]
|
7137
|
+
#
|
7138
|
+
# @!attribute [rw] result_location_folder
|
7139
|
+
# Folder within an Amazon S3 bucket where you want AWS DMS to store
|
7140
|
+
# the results of this assessment run.
|
7141
|
+
# @return [String]
|
7142
|
+
#
|
7143
|
+
# @!attribute [rw] result_encryption_mode
|
7144
|
+
# Encryption mode that you can specify to encrypt the results of this
|
7145
|
+
# assessment run. If you don't specify this request parameter, AWS
|
7146
|
+
# DMS stores the assessment run results without encryption. You can
|
7147
|
+
# specify one of the options following:
|
7148
|
+
#
|
7149
|
+
# * `"SSE_S3"` – The server-side encryption provided as a default by
|
7150
|
+
# Amazon S3.
|
7151
|
+
#
|
7152
|
+
# * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption.
|
7153
|
+
# This encryption can use either a custom KMS encryption key that
|
7154
|
+
# you specify or the default KMS encryption key that DMS provides.
|
7155
|
+
# @return [String]
|
7156
|
+
#
|
7157
|
+
# @!attribute [rw] result_kms_key_arn
|
7158
|
+
# ARN of a custom KMS encryption key that you specify when you set
|
7159
|
+
# `ResultEncryptionMode` to `"SSE_KMS`".
|
7160
|
+
# @return [String]
|
7161
|
+
#
|
7162
|
+
# @!attribute [rw] assessment_run_name
|
7163
|
+
# Unique name to identify the assessment run.
|
7164
|
+
# @return [String]
|
7165
|
+
#
|
7166
|
+
# @!attribute [rw] include_only
|
7167
|
+
# Space-separated list of names for specific individual assessments
|
7168
|
+
# that you want to include. These names come from the default list of
|
7169
|
+
# individual assessments that AWS DMS supports for the associated
|
7170
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
7171
|
+
#
|
7172
|
+
# <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
|
7173
|
+
# `Exclude` in the API operation.
|
7174
|
+
#
|
7175
|
+
# To identify the names of the default individual assessments that AWS
|
7176
|
+
# DMS supports for the associated migration task, run the
|
7177
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
7178
|
+
# `ReplicationTaskArn` request parameter.
|
7179
|
+
#
|
7180
|
+
# </note>
|
7181
|
+
# @return [Array<String>]
|
7182
|
+
#
|
7183
|
+
# @!attribute [rw] exclude
|
7184
|
+
# Space-separated list of names for specific individual assessments
|
7185
|
+
# that you want to exclude. These names come from the default list of
|
7186
|
+
# individual assessments that AWS DMS supports for the associated
|
7187
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
7188
|
+
#
|
7189
|
+
# <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
|
7190
|
+
# `IncludeOnly` in the API operation.
|
7191
|
+
#
|
7192
|
+
# To identify the names of the default individual assessments that AWS
|
7193
|
+
# DMS supports for the associated migration task, run the
|
7194
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
7195
|
+
# `ReplicationTaskArn` request parameter.
|
7196
|
+
#
|
7197
|
+
# </note>
|
7198
|
+
# @return [Array<String>]
|
7199
|
+
#
|
7200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRunMessage AWS API Documentation
|
7201
|
+
#
|
7202
|
+
class StartReplicationTaskAssessmentRunMessage < Struct.new(
|
7203
|
+
:replication_task_arn,
|
7204
|
+
:service_access_role_arn,
|
7205
|
+
:result_location_bucket,
|
7206
|
+
:result_location_folder,
|
7207
|
+
:result_encryption_mode,
|
7208
|
+
:result_kms_key_arn,
|
7209
|
+
:assessment_run_name,
|
7210
|
+
:include_only,
|
7211
|
+
:exclude)
|
7212
|
+
SENSITIVE = []
|
7213
|
+
include Aws::Structure
|
7214
|
+
end
|
7215
|
+
|
7216
|
+
# @!attribute [rw] replication_task_assessment_run
|
7217
|
+
# The premigration assessment run that was started.
|
7218
|
+
# @return [Types::ReplicationTaskAssessmentRun]
|
7219
|
+
#
|
7220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRunResponse AWS API Documentation
|
7221
|
+
#
|
7222
|
+
class StartReplicationTaskAssessmentRunResponse < Struct.new(
|
7223
|
+
:replication_task_assessment_run)
|
7224
|
+
SENSITIVE = []
|
7225
|
+
include Aws::Structure
|
7226
|
+
end
|
7227
|
+
|
5839
7228
|
# @note When making an API call, you may pass StartReplicationTaskMessage
|
5840
7229
|
# data as a hash:
|
5841
7230
|
#
|
@@ -5899,10 +7288,10 @@ module Aws::DatabaseMigrationService
|
|
5899
7288
|
# stop. The value can be either server time or commit time.
|
5900
7289
|
#
|
5901
7290
|
# Server time example: --cdc-stop-position
|
5902
|
-
# “server\_time:
|
7291
|
+
# “server\_time:2018-02-09T12:12:12”
|
5903
7292
|
#
|
5904
7293
|
# Commit time example: --cdc-stop-position “commit\_time:
|
5905
|
-
#
|
7294
|
+
# 2018-02-09T12:12:12 “
|
5906
7295
|
# @return [String]
|
5907
7296
|
#
|
5908
7297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskMessage AWS API Documentation
|
@@ -6058,6 +7447,51 @@ module Aws::DatabaseMigrationService
|
|
6058
7447
|
include Aws::Structure
|
6059
7448
|
end
|
6060
7449
|
|
7450
|
+
# Provides information that defines a SAP ASE endpoint.
|
7451
|
+
#
|
7452
|
+
# @note When making an API call, you may pass SybaseSettings
|
7453
|
+
# data as a hash:
|
7454
|
+
#
|
7455
|
+
# {
|
7456
|
+
# database_name: "String",
|
7457
|
+
# password: "SecretString",
|
7458
|
+
# port: 1,
|
7459
|
+
# server_name: "String",
|
7460
|
+
# username: "String",
|
7461
|
+
# }
|
7462
|
+
#
|
7463
|
+
# @!attribute [rw] database_name
|
7464
|
+
# Database name for the endpoint.
|
7465
|
+
# @return [String]
|
7466
|
+
#
|
7467
|
+
# @!attribute [rw] password
|
7468
|
+
# Endpoint connection password.
|
7469
|
+
# @return [String]
|
7470
|
+
#
|
7471
|
+
# @!attribute [rw] port
|
7472
|
+
# Endpoint TCP port.
|
7473
|
+
# @return [Integer]
|
7474
|
+
#
|
7475
|
+
# @!attribute [rw] server_name
|
7476
|
+
# Fully qualified domain name of the endpoint.
|
7477
|
+
# @return [String]
|
7478
|
+
#
|
7479
|
+
# @!attribute [rw] username
|
7480
|
+
# Endpoint connection user name.
|
7481
|
+
# @return [String]
|
7482
|
+
#
|
7483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SybaseSettings AWS API Documentation
|
7484
|
+
#
|
7485
|
+
class SybaseSettings < Struct.new(
|
7486
|
+
:database_name,
|
7487
|
+
:password,
|
7488
|
+
:port,
|
7489
|
+
:server_name,
|
7490
|
+
:username)
|
7491
|
+
SENSITIVE = [:password]
|
7492
|
+
include Aws::Structure
|
7493
|
+
end
|
7494
|
+
|
6061
7495
|
# Provides a collection of table statistics in response to a request by
|
6062
7496
|
# the `DescribeTableStatistics` operation.
|
6063
7497
|
#
|
@@ -6143,29 +7577,37 @@ module Aws::DatabaseMigrationService
|
|
6143
7577
|
#
|
6144
7578
|
# This parameter can have the following values:
|
6145
7579
|
#
|
6146
|
-
# * Not enabled
|
7580
|
+
# * Not enabled – Validation isn't enabled for the table in the
|
6147
7581
|
# migration task.
|
6148
7582
|
#
|
6149
|
-
# * Pending records
|
7583
|
+
# * Pending records – Some records in the table are waiting for
|
6150
7584
|
# validation.
|
6151
7585
|
#
|
6152
|
-
# * Mismatched records
|
7586
|
+
# * Mismatched records – Some records in the table don't match
|
6153
7587
|
# between the source and target.
|
6154
7588
|
#
|
6155
|
-
# * Suspended records
|
7589
|
+
# * Suspended records – Some records in the table couldn't be
|
6156
7590
|
# validated.
|
6157
7591
|
#
|
6158
|
-
# * No primary key
|
6159
|
-
#
|
7592
|
+
# * No primary key –The table couldn't be validated because it has no
|
7593
|
+
# primary key.
|
6160
7594
|
#
|
6161
|
-
# * Table error
|
7595
|
+
# * Table error – The table wasn't validated because it's in an
|
6162
7596
|
# error state and some data wasn't migrated.
|
6163
7597
|
#
|
6164
|
-
# * Validated
|
7598
|
+
# * Validated – All rows in the table are validated. If the table is
|
6165
7599
|
# updated, the status can change from Validated.
|
6166
7600
|
#
|
6167
|
-
# * Error
|
7601
|
+
# * Error – The table couldn't be validated because of an unexpected
|
6168
7602
|
# error.
|
7603
|
+
#
|
7604
|
+
# * Pending validation – The table is waiting validation.
|
7605
|
+
#
|
7606
|
+
# * Preparing table – Preparing the table enabled in the migration
|
7607
|
+
# task for validation.
|
7608
|
+
#
|
7609
|
+
# * Pending revalidation – All rows in the table are pending
|
7610
|
+
# validation after the table was updated.
|
6169
7611
|
# @return [String]
|
6170
7612
|
#
|
6171
7613
|
# @!attribute [rw] validation_state_details
|
@@ -6204,8 +7646,8 @@ module Aws::DatabaseMigrationService
|
|
6204
7646
|
# data as a hash:
|
6205
7647
|
#
|
6206
7648
|
# {
|
6207
|
-
# schema_name: "String",
|
6208
|
-
# table_name: "String",
|
7649
|
+
# schema_name: "String", # required
|
7650
|
+
# table_name: "String", # required
|
6209
7651
|
# }
|
6210
7652
|
#
|
6211
7653
|
# @!attribute [rw] schema_name
|