aws-sdk-databasemigrationservice 1.34.0 → 1.39.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -32,6 +34,7 @@ module Aws::DatabaseMigrationService
32
34
  # * {InvalidSubnet}
33
35
  # * {KMSAccessDeniedFault}
34
36
  # * {KMSDisabledFault}
37
+ # * {KMSFault}
35
38
  # * {KMSInvalidStateFault}
36
39
  # * {KMSKeyNotAccessibleFault}
37
40
  # * {KMSNotFoundFault}
@@ -40,6 +43,8 @@ module Aws::DatabaseMigrationService
40
43
  # * {ResourceAlreadyExistsFault}
41
44
  # * {ResourceNotFoundFault}
42
45
  # * {ResourceQuotaExceededFault}
46
+ # * {S3AccessDeniedFault}
47
+ # * {S3ResourceNotFoundFault}
43
48
  # * {SNSInvalidTopicFault}
44
49
  # * {SNSNoAuthorizationFault}
45
50
  # * {StorageQuotaExceededFault}
@@ -157,6 +162,21 @@ module Aws::DatabaseMigrationService
157
162
  end
158
163
  end
159
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
+
160
180
  class KMSInvalidStateFault < ServiceError
161
181
 
162
182
  # @param [Seahorse::Client::RequestContext] context
@@ -282,6 +302,36 @@ module Aws::DatabaseMigrationService
282
302
  end
283
303
  end
284
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
+
285
335
  class SNSInvalidTopicFault < ServiceError
286
336
 
287
337
  # @param [Seahorse::Client::RequestContext] context
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -18,6 +20,7 @@ module Aws::DatabaseMigrationService
18
20
  #
19
21
  class AccessDeniedFault < Struct.new(
20
22
  :message)
23
+ SENSITIVE = []
21
24
  include Aws::Structure
22
25
  end
23
26
 
@@ -42,6 +45,7 @@ module Aws::DatabaseMigrationService
42
45
  :account_quota_name,
43
46
  :used,
44
47
  :max)
48
+ SENSITIVE = []
45
49
  include Aws::Structure
46
50
  end
47
51
 
@@ -77,6 +81,7 @@ module Aws::DatabaseMigrationService
77
81
  class AddTagsToResourceMessage < Struct.new(
78
82
  :resource_arn,
79
83
  :tags)
84
+ SENSITIVE = []
80
85
  include Aws::Structure
81
86
  end
82
87
 
@@ -124,6 +129,7 @@ module Aws::DatabaseMigrationService
124
129
  :replication_instance_arn,
125
130
  :apply_action,
126
131
  :opt_in_type)
132
+ SENSITIVE = []
127
133
  include Aws::Structure
128
134
  end
129
135
 
@@ -136,10 +142,11 @@ module Aws::DatabaseMigrationService
136
142
  #
137
143
  class ApplyPendingMaintenanceActionResponse < Struct.new(
138
144
  :resource_pending_maintenance_actions)
145
+ SENSITIVE = []
139
146
  include Aws::Structure
140
147
  end
141
148
 
142
- # The name of the Availability Zone for use during database migration.
149
+ # The name of an Availability Zone for use during database migration.
143
150
  #
144
151
  # @!attribute [rw] name
145
152
  # The name of the Availability Zone.
@@ -149,6 +156,40 @@ module Aws::DatabaseMigrationService
149
156
  #
150
157
  class AvailabilityZone < Struct.new(
151
158
  :name)
159
+ SENSITIVE = []
160
+ include Aws::Structure
161
+ end
162
+
163
+ # @note When making an API call, you may pass CancelReplicationTaskAssessmentRunMessage
164
+ # data as a hash:
165
+ #
166
+ # {
167
+ # replication_task_assessment_run_arn: "String", # required
168
+ # }
169
+ #
170
+ # @!attribute [rw] replication_task_assessment_run_arn
171
+ # Amazon Resource Name (ARN) of the premigration assessment run to be
172
+ # canceled.
173
+ # @return [String]
174
+ #
175
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRunMessage AWS API Documentation
176
+ #
177
+ class CancelReplicationTaskAssessmentRunMessage < Struct.new(
178
+ :replication_task_assessment_run_arn)
179
+ SENSITIVE = []
180
+ include Aws::Structure
181
+ end
182
+
183
+ # @!attribute [rw] replication_task_assessment_run
184
+ # The `ReplicationTaskAssessmentRun` object for the canceled
185
+ # assessment run.
186
+ # @return [Types::ReplicationTaskAssessmentRun]
187
+ #
188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRunResponse AWS API Documentation
189
+ #
190
+ class CancelReplicationTaskAssessmentRunResponse < Struct.new(
191
+ :replication_task_assessment_run)
192
+ SENSITIVE = []
152
193
  include Aws::Structure
153
194
  end
154
195
 
@@ -212,6 +253,7 @@ module Aws::DatabaseMigrationService
212
253
  :valid_to_date,
213
254
  :signing_algorithm,
214
255
  :key_length)
256
+ SENSITIVE = []
215
257
  include Aws::Structure
216
258
  end
217
259
 
@@ -228,7 +270,16 @@ module Aws::DatabaseMigrationService
228
270
  # @return [String]
229
271
  #
230
272
  # @!attribute [rw] status
231
- # The connection status.
273
+ # The connection status. This parameter can return one of the
274
+ # following values:
275
+ #
276
+ # * `"successful"`
277
+ #
278
+ # * `"testing"`
279
+ #
280
+ # * `"failed"`
281
+ #
282
+ # * `"deleting"`
232
283
  # @return [String]
233
284
  #
234
285
  # @!attribute [rw] last_failure_message
@@ -255,6 +306,7 @@ module Aws::DatabaseMigrationService
255
306
  :last_failure_message,
256
307
  :endpoint_identifier,
257
308
  :replication_instance_identifier)
309
+ SENSITIVE = []
258
310
  include Aws::Structure
259
311
  end
260
312
 
@@ -339,6 +391,12 @@ module Aws::DatabaseMigrationService
339
391
  # kafka_settings: {
340
392
  # broker: "String",
341
393
  # topic: "String",
394
+ # message_format: "json", # accepts json, json-unformatted
395
+ # include_transaction_details: false,
396
+ # include_partition_value: false,
397
+ # partition_include_schema_table: false,
398
+ # include_table_alter_operations: false,
399
+ # include_control_details: false,
342
400
  # },
343
401
  # elasticsearch_settings: {
344
402
  # service_access_role_arn: "String", # required
@@ -382,6 +440,53 @@ module Aws::DatabaseMigrationService
382
440
  # username: "String",
383
441
  # write_buffer_size: 1,
384
442
  # },
443
+ # postgre_sql_settings: {
444
+ # database_name: "String",
445
+ # password: "SecretString",
446
+ # port: 1,
447
+ # server_name: "String",
448
+ # username: "String",
449
+ # },
450
+ # my_sql_settings: {
451
+ # database_name: "String",
452
+ # password: "SecretString",
453
+ # port: 1,
454
+ # server_name: "String",
455
+ # username: "String",
456
+ # },
457
+ # oracle_settings: {
458
+ # asm_password: "SecretString",
459
+ # asm_server: "String",
460
+ # asm_user: "String",
461
+ # database_name: "String",
462
+ # password: "SecretString",
463
+ # port: 1,
464
+ # security_db_encryption: "SecretString",
465
+ # security_db_encryption_name: "String",
466
+ # server_name: "String",
467
+ # username: "String",
468
+ # },
469
+ # sybase_settings: {
470
+ # database_name: "String",
471
+ # password: "SecretString",
472
+ # port: 1,
473
+ # server_name: "String",
474
+ # username: "String",
475
+ # },
476
+ # microsoft_sql_server_settings: {
477
+ # port: 1,
478
+ # database_name: "String",
479
+ # password: "SecretString",
480
+ # server_name: "String",
481
+ # username: "String",
482
+ # },
483
+ # ibm_db_2_settings: {
484
+ # database_name: "String",
485
+ # password: "SecretString",
486
+ # port: 1,
487
+ # server_name: "String",
488
+ # username: "String",
489
+ # },
385
490
  # }
386
491
  #
387
492
  # @!attribute [rw] endpoint_identifier
@@ -399,8 +504,8 @@ module Aws::DatabaseMigrationService
399
504
  # `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
400
505
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
401
506
  # `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
402
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
403
- # `"sqlserver"`.
507
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
508
+ # `"sqlserver"`, and `"neptune"`.
404
509
  # @return [String]
405
510
  #
406
511
  # @!attribute [rw] username
@@ -531,7 +636,8 @@ module Aws::DatabaseMigrationService
531
636
  # Settings in JSON format for the target endpoint for Amazon Kinesis
532
637
  # Data Streams. For more information about the available settings, see
533
638
  # [Using Amazon Kinesis Data Streams as a Target for AWS Database
534
- # Migration Service][1] in the *AWS Database Migration User Guide.*
639
+ # Migration Service][1] in the *AWS Database Migration Service User
640
+ # Guide.*
535
641
  #
536
642
  #
537
643
  #
@@ -542,7 +648,7 @@ module Aws::DatabaseMigrationService
542
648
  # Settings in JSON format for the target Apache Kafka endpoint. For
543
649
  # more information about the available settings, see [Using Apache
544
650
  # Kafka as a Target for AWS Database Migration Service][1] in the *AWS
545
- # Database Migration User Guide.*
651
+ # Database Migration Service User Guide.*
546
652
  #
547
653
  #
548
654
  #
@@ -553,7 +659,7 @@ module Aws::DatabaseMigrationService
553
659
  # Settings in JSON format for the target Elasticsearch endpoint. For
554
660
  # more information about the available settings, see [Extra Connection
555
661
  # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in
556
- # the *AWS Database Migration User Guide.*
662
+ # the *AWS Database Migration Service User Guide*.
557
663
  #
558
664
  #
559
665
  #
@@ -562,9 +668,9 @@ module Aws::DatabaseMigrationService
562
668
  #
563
669
  # @!attribute [rw] neptune_settings
564
670
  # Settings in JSON format for the target Amazon Neptune endpoint. For
565
- # more information about the available settings, see
566
- # [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
567
- # in the *AWS Database Migration Service User Guide.*
671
+ # more information about the available settings, see [Specifying
672
+ # Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
673
+ # Database Migration Service User Guide.*
568
674
  #
569
675
  #
570
676
  #
@@ -575,6 +681,85 @@ module Aws::DatabaseMigrationService
575
681
  # Provides information that defines an Amazon Redshift endpoint.
576
682
  # @return [Types::RedshiftSettings]
577
683
  #
684
+ # @!attribute [rw] postgre_sql_settings
685
+ # Settings in JSON format for the source and target PostgreSQL
686
+ # endpoint. For information about other available settings, see [Extra
687
+ # connection attributes when using PostgreSQL as a source for AWS
688
+ # DMS][1] and [ Extra connection attributes when using PostgreSQL as a
689
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
690
+ # Guide.*
691
+ #
692
+ #
693
+ #
694
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
695
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
696
+ # @return [Types::PostgreSQLSettings]
697
+ #
698
+ # @!attribute [rw] my_sql_settings
699
+ # Settings in JSON format for the source and target MySQL endpoint.
700
+ # For information about other available settings, see [Extra
701
+ # connection attributes when using MySQL as a source for AWS DMS][1]
702
+ # and [Extra connection attributes when using a MySQL-compatible
703
+ # database as a target for AWS DMS][2] in the *AWS Database Migration
704
+ # Service User Guide.*
705
+ #
706
+ #
707
+ #
708
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
709
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
710
+ # @return [Types::MySQLSettings]
711
+ #
712
+ # @!attribute [rw] oracle_settings
713
+ # Settings in JSON format for the source and target Oracle endpoint.
714
+ # For information about other available settings, see [Extra
715
+ # connection attributes when using Oracle as a source for AWS DMS][1]
716
+ # and [ Extra connection attributes when using Oracle as a target for
717
+ # AWS DMS][2] in the *AWS Database Migration Service User Guide.*
718
+ #
719
+ #
720
+ #
721
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
722
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
723
+ # @return [Types::OracleSettings]
724
+ #
725
+ # @!attribute [rw] sybase_settings
726
+ # Settings in JSON format for the source and target SAP ASE endpoint.
727
+ # For information about other available settings, see [Extra
728
+ # connection attributes when using SAP ASE as a source for AWS DMS][1]
729
+ # and [Extra connection attributes when using SAP ASE as a target for
730
+ # AWS DMS][2] in the *AWS Database Migration Service User Guide.*
731
+ #
732
+ #
733
+ #
734
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
735
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
736
+ # @return [Types::SybaseSettings]
737
+ #
738
+ # @!attribute [rw] microsoft_sql_server_settings
739
+ # Settings in JSON format for the source and target Microsoft SQL
740
+ # Server endpoint. For information about other available settings, see
741
+ # [Extra connection attributes when using SQL Server as a source for
742
+ # AWS DMS][1] and [ Extra connection attributes when using SQL Server
743
+ # as a target for AWS DMS][2] in the *AWS Database Migration Service
744
+ # User Guide.*
745
+ #
746
+ #
747
+ #
748
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
749
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
750
+ # @return [Types::MicrosoftSQLServerSettings]
751
+ #
752
+ # @!attribute [rw] ibm_db_2_settings
753
+ # Settings in JSON format for the source IBM Db2 LUW endpoint. For
754
+ # information about other available settings, see [Extra connection
755
+ # attributes when using Db2 LUW as a source for AWS DMS][1] in the
756
+ # *AWS Database Migration Service User Guide.*
757
+ #
758
+ #
759
+ #
760
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
761
+ # @return [Types::IBMDb2Settings]
762
+ #
578
763
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpointMessage AWS API Documentation
579
764
  #
580
765
  class CreateEndpointMessage < Struct.new(
@@ -601,7 +786,14 @@ module Aws::DatabaseMigrationService
601
786
  :kafka_settings,
602
787
  :elasticsearch_settings,
603
788
  :neptune_settings,
604
- :redshift_settings)
789
+ :redshift_settings,
790
+ :postgre_sql_settings,
791
+ :my_sql_settings,
792
+ :oracle_settings,
793
+ :sybase_settings,
794
+ :microsoft_sql_server_settings,
795
+ :ibm_db_2_settings)
796
+ SENSITIVE = [:password]
605
797
  include Aws::Structure
606
798
  end
607
799
 
@@ -613,6 +805,7 @@ module Aws::DatabaseMigrationService
613
805
  #
614
806
  class CreateEndpointResponse < Struct.new(
615
807
  :endpoint)
808
+ SENSITIVE = []
616
809
  include Aws::Structure
617
810
  end
618
811
 
@@ -696,6 +889,7 @@ module Aws::DatabaseMigrationService
696
889
  :source_ids,
697
890
  :enabled,
698
891
  :tags)
892
+ SENSITIVE = []
699
893
  include Aws::Structure
700
894
  end
701
895
 
@@ -707,6 +901,7 @@ module Aws::DatabaseMigrationService
707
901
  #
708
902
  class CreateEventSubscriptionResponse < Struct.new(
709
903
  :event_subscription)
904
+ SENSITIVE = []
710
905
  include Aws::Structure
711
906
  end
712
907
 
@@ -741,7 +936,7 @@ module Aws::DatabaseMigrationService
741
936
  #
742
937
  # Constraints:
743
938
  #
744
- # * Must contain from 1 to 63 alphanumeric characters or hyphens.
939
+ # * Must contain 1-63 alphanumeric characters or hyphens.
745
940
  #
746
941
  # * First character must be a letter.
747
942
  #
@@ -757,11 +952,17 @@ module Aws::DatabaseMigrationService
757
952
  #
758
953
  # @!attribute [rw] replication_instance_class
759
954
  # The compute and memory capacity of the replication instance as
760
- # specified by the replication instance class.
955
+ # defined for the specified replication instance class. For example to
956
+ # specify the instance class dms.c4.large, set this parameter to
957
+ # `"dms.c4.large"`.
761
958
  #
762
- # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
763
- # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
764
- # dms.c4.4xlarge `
959
+ # For more information on the settings and capacities for the
960
+ # available replication instance classes, see [ Selecting the right
961
+ # AWS DMS replication instance for your migration][1].
962
+ #
963
+ #
964
+ #
965
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
765
966
  # @return [String]
766
967
  #
767
968
  # @!attribute [rw] vpc_security_group_ids
@@ -836,7 +1037,12 @@ module Aws::DatabaseMigrationService
836
1037
  # @return [Boolean]
837
1038
  #
838
1039
  # @!attribute [rw] dns_name_servers
839
- # A list of DNS name servers supported for the replication instance.
1040
+ # A list of custom DNS name servers supported for the replication
1041
+ # instance to access your on-premise source or target database. This
1042
+ # list overrides the default name servers supported by the replication
1043
+ # instance. You can specify a comma-separated list of internet
1044
+ # addresses for up to four on-premise DNS name servers. For example:
1045
+ # `"1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4"`
840
1046
  # @return [String]
841
1047
  #
842
1048
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
@@ -856,6 +1062,7 @@ module Aws::DatabaseMigrationService
856
1062
  :kms_key_id,
857
1063
  :publicly_accessible,
858
1064
  :dns_name_servers)
1065
+ SENSITIVE = []
859
1066
  include Aws::Structure
860
1067
  end
861
1068
 
@@ -867,6 +1074,7 @@ module Aws::DatabaseMigrationService
867
1074
  #
868
1075
  class CreateReplicationInstanceResponse < Struct.new(
869
1076
  :replication_instance)
1077
+ SENSITIVE = []
870
1078
  include Aws::Structure
871
1079
  end
872
1080
 
@@ -914,6 +1122,7 @@ module Aws::DatabaseMigrationService
914
1122
  :replication_subnet_group_description,
915
1123
  :subnet_ids,
916
1124
  :tags)
1125
+ SENSITIVE = []
917
1126
  include Aws::Structure
918
1127
  end
919
1128
 
@@ -925,6 +1134,7 @@ module Aws::DatabaseMigrationService
925
1134
  #
926
1135
  class CreateReplicationSubnetGroupResponse < Struct.new(
927
1136
  :replication_subnet_group)
1137
+ SENSITIVE = []
928
1138
  include Aws::Structure
929
1139
  end
930
1140
 
@@ -956,7 +1166,7 @@ module Aws::DatabaseMigrationService
956
1166
  #
957
1167
  # Constraints:
958
1168
  #
959
- # * Must contain from 1 to 255 alphanumeric characters or hyphens.
1169
+ # * Must contain 1-255 alphanumeric characters or hyphens.
960
1170
  #
961
1171
  # * First character must be a letter.
962
1172
  #
@@ -985,7 +1195,7 @@ module Aws::DatabaseMigrationService
985
1195
  # @!attribute [rw] table_mappings
986
1196
  # The table mappings for the task, in JSON format. For more
987
1197
  # information, see [Using Table Mapping to Specify Task Settings][1]
988
- # in the *AWS Database Migration User Guide.*
1198
+ # in the *AWS Database Migration Service User Guide.*
989
1199
  #
990
1200
  #
991
1201
  #
@@ -1059,7 +1269,7 @@ module Aws::DatabaseMigrationService
1059
1269
  # Supplemental information that the task requires to migrate the data
1060
1270
  # for certain source and target endpoints. For more information, see
1061
1271
  # [Specifying Supplemental Data for Task Settings][1] in the *AWS
1062
- # Database Migration User Guide.*
1272
+ # Database Migration Service User Guide.*
1063
1273
  #
1064
1274
  #
1065
1275
  #
@@ -1081,6 +1291,7 @@ module Aws::DatabaseMigrationService
1081
1291
  :cdc_stop_position,
1082
1292
  :tags,
1083
1293
  :task_data)
1294
+ SENSITIVE = []
1084
1295
  include Aws::Structure
1085
1296
  end
1086
1297
 
@@ -1092,6 +1303,7 @@ module Aws::DatabaseMigrationService
1092
1303
  #
1093
1304
  class CreateReplicationTaskResponse < Struct.new(
1094
1305
  :replication_task)
1306
+ SENSITIVE = []
1095
1307
  include Aws::Structure
1096
1308
  end
1097
1309
 
@@ -1110,6 +1322,7 @@ module Aws::DatabaseMigrationService
1110
1322
  #
1111
1323
  class DeleteCertificateMessage < Struct.new(
1112
1324
  :certificate_arn)
1325
+ SENSITIVE = []
1113
1326
  include Aws::Structure
1114
1327
  end
1115
1328
 
@@ -1121,6 +1334,7 @@ module Aws::DatabaseMigrationService
1121
1334
  #
1122
1335
  class DeleteCertificateResponse < Struct.new(
1123
1336
  :certificate)
1337
+ SENSITIVE = []
1124
1338
  include Aws::Structure
1125
1339
  end
1126
1340
 
@@ -1146,6 +1360,7 @@ module Aws::DatabaseMigrationService
1146
1360
  class DeleteConnectionMessage < Struct.new(
1147
1361
  :endpoint_arn,
1148
1362
  :replication_instance_arn)
1363
+ SENSITIVE = []
1149
1364
  include Aws::Structure
1150
1365
  end
1151
1366
 
@@ -1157,6 +1372,7 @@ module Aws::DatabaseMigrationService
1157
1372
  #
1158
1373
  class DeleteConnectionResponse < Struct.new(
1159
1374
  :connection)
1375
+ SENSITIVE = []
1160
1376
  include Aws::Structure
1161
1377
  end
1162
1378
 
@@ -1176,6 +1392,7 @@ module Aws::DatabaseMigrationService
1176
1392
  #
1177
1393
  class DeleteEndpointMessage < Struct.new(
1178
1394
  :endpoint_arn)
1395
+ SENSITIVE = []
1179
1396
  include Aws::Structure
1180
1397
  end
1181
1398
 
@@ -1187,6 +1404,7 @@ module Aws::DatabaseMigrationService
1187
1404
  #
1188
1405
  class DeleteEndpointResponse < Struct.new(
1189
1406
  :endpoint)
1407
+ SENSITIVE = []
1190
1408
  include Aws::Structure
1191
1409
  end
1192
1410
 
@@ -1205,6 +1423,7 @@ module Aws::DatabaseMigrationService
1205
1423
  #
1206
1424
  class DeleteEventSubscriptionMessage < Struct.new(
1207
1425
  :subscription_name)
1426
+ SENSITIVE = []
1208
1427
  include Aws::Structure
1209
1428
  end
1210
1429
 
@@ -1216,6 +1435,7 @@ module Aws::DatabaseMigrationService
1216
1435
  #
1217
1436
  class DeleteEventSubscriptionResponse < Struct.new(
1218
1437
  :event_subscription)
1438
+ SENSITIVE = []
1219
1439
  include Aws::Structure
1220
1440
  end
1221
1441
 
@@ -1235,6 +1455,7 @@ module Aws::DatabaseMigrationService
1235
1455
  #
1236
1456
  class DeleteReplicationInstanceMessage < Struct.new(
1237
1457
  :replication_instance_arn)
1458
+ SENSITIVE = []
1238
1459
  include Aws::Structure
1239
1460
  end
1240
1461
 
@@ -1246,6 +1467,7 @@ module Aws::DatabaseMigrationService
1246
1467
  #
1247
1468
  class DeleteReplicationInstanceResponse < Struct.new(
1248
1469
  :replication_instance)
1470
+ SENSITIVE = []
1249
1471
  include Aws::Structure
1250
1472
  end
1251
1473
 
@@ -1264,6 +1486,7 @@ module Aws::DatabaseMigrationService
1264
1486
  #
1265
1487
  class DeleteReplicationSubnetGroupMessage < Struct.new(
1266
1488
  :replication_subnet_group_identifier)
1489
+ SENSITIVE = []
1267
1490
  include Aws::Structure
1268
1491
  end
1269
1492
 
@@ -1271,6 +1494,39 @@ module Aws::DatabaseMigrationService
1271
1494
  #
1272
1495
  class DeleteReplicationSubnetGroupResponse < Aws::EmptyStructure; end
1273
1496
 
1497
+ # @note When making an API call, you may pass DeleteReplicationTaskAssessmentRunMessage
1498
+ # data as a hash:
1499
+ #
1500
+ # {
1501
+ # replication_task_assessment_run_arn: "String", # required
1502
+ # }
1503
+ #
1504
+ # @!attribute [rw] replication_task_assessment_run_arn
1505
+ # Amazon Resource Name (ARN) of the premigration assessment run to be
1506
+ # deleted.
1507
+ # @return [String]
1508
+ #
1509
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRunMessage AWS API Documentation
1510
+ #
1511
+ class DeleteReplicationTaskAssessmentRunMessage < Struct.new(
1512
+ :replication_task_assessment_run_arn)
1513
+ SENSITIVE = []
1514
+ include Aws::Structure
1515
+ end
1516
+
1517
+ # @!attribute [rw] replication_task_assessment_run
1518
+ # The `ReplicationTaskAssessmentRun` object for the deleted assessment
1519
+ # run.
1520
+ # @return [Types::ReplicationTaskAssessmentRun]
1521
+ #
1522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRunResponse AWS API Documentation
1523
+ #
1524
+ class DeleteReplicationTaskAssessmentRunResponse < Struct.new(
1525
+ :replication_task_assessment_run)
1526
+ SENSITIVE = []
1527
+ include Aws::Structure
1528
+ end
1529
+
1274
1530
  # @note When making an API call, you may pass DeleteReplicationTaskMessage
1275
1531
  # data as a hash:
1276
1532
  #
@@ -1287,6 +1543,7 @@ module Aws::DatabaseMigrationService
1287
1543
  #
1288
1544
  class DeleteReplicationTaskMessage < Struct.new(
1289
1545
  :replication_task_arn)
1546
+ SENSITIVE = []
1290
1547
  include Aws::Structure
1291
1548
  end
1292
1549
 
@@ -1298,6 +1555,7 @@ module Aws::DatabaseMigrationService
1298
1555
  #
1299
1556
  class DeleteReplicationTaskResponse < Struct.new(
1300
1557
  :replication_task)
1558
+ SENSITIVE = []
1301
1559
  include Aws::Structure
1302
1560
  end
1303
1561
 
@@ -1332,6 +1590,101 @@ module Aws::DatabaseMigrationService
1332
1590
  class DescribeAccountAttributesResponse < Struct.new(
1333
1591
  :account_quotas,
1334
1592
  :unique_account_identifier)
1593
+ SENSITIVE = []
1594
+ include Aws::Structure
1595
+ end
1596
+
1597
+ # @note When making an API call, you may pass DescribeApplicableIndividualAssessmentsMessage
1598
+ # data as a hash:
1599
+ #
1600
+ # {
1601
+ # replication_task_arn: "String",
1602
+ # replication_instance_arn: "String",
1603
+ # source_engine_name: "String",
1604
+ # target_engine_name: "String",
1605
+ # migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
1606
+ # max_records: 1,
1607
+ # marker: "String",
1608
+ # }
1609
+ #
1610
+ # @!attribute [rw] replication_task_arn
1611
+ # Amazon Resource Name (ARN) of a migration task on which you want to
1612
+ # base the default list of individual assessments.
1613
+ # @return [String]
1614
+ #
1615
+ # @!attribute [rw] replication_instance_arn
1616
+ # ARN of a replication instance on which you want to base the default
1617
+ # list of individual assessments.
1618
+ # @return [String]
1619
+ #
1620
+ # @!attribute [rw] source_engine_name
1621
+ # Name of a database engine that the specified replication instance
1622
+ # supports as a source.
1623
+ # @return [String]
1624
+ #
1625
+ # @!attribute [rw] target_engine_name
1626
+ # Name of a database engine that the specified replication instance
1627
+ # supports as a target.
1628
+ # @return [String]
1629
+ #
1630
+ # @!attribute [rw] migration_type
1631
+ # Name of the migration type that each provided individual assessment
1632
+ # must support.
1633
+ # @return [String]
1634
+ #
1635
+ # @!attribute [rw] max_records
1636
+ # Maximum number of records to include in the response. If more
1637
+ # records exist than the specified `MaxRecords` value, a pagination
1638
+ # token called a marker is included in the response so that the
1639
+ # remaining results can be retrieved.
1640
+ # @return [Integer]
1641
+ #
1642
+ # @!attribute [rw] marker
1643
+ # Optional pagination token provided by a previous request. If this
1644
+ # parameter is specified, the response includes only records beyond
1645
+ # the marker, up to the value specified by `MaxRecords`.
1646
+ # @return [String]
1647
+ #
1648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessmentsMessage AWS API Documentation
1649
+ #
1650
+ class DescribeApplicableIndividualAssessmentsMessage < Struct.new(
1651
+ :replication_task_arn,
1652
+ :replication_instance_arn,
1653
+ :source_engine_name,
1654
+ :target_engine_name,
1655
+ :migration_type,
1656
+ :max_records,
1657
+ :marker)
1658
+ SENSITIVE = []
1659
+ include Aws::Structure
1660
+ end
1661
+
1662
+ # @!attribute [rw] individual_assessment_names
1663
+ # List of names for the individual assessments supported by the
1664
+ # premigration assessment run that you start based on the specified
1665
+ # request parameters. For more information on the available individual
1666
+ # assessments, including compatibility with different migration task
1667
+ # configurations, see [Working with premigration assessment runs][1]
1668
+ # in the *AWS Database Migration Service User Guide.*
1669
+ #
1670
+ #
1671
+ #
1672
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
1673
+ # @return [Array<String>]
1674
+ #
1675
+ # @!attribute [rw] marker
1676
+ # Pagination token returned for you to pass to a subsequent request.
1677
+ # If you pass this token as the `Marker` value in a subsequent
1678
+ # request, the response includes only records beyond the marker, up to
1679
+ # the value specified in the request by `MaxRecords`.
1680
+ # @return [String]
1681
+ #
1682
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessmentsResponse AWS API Documentation
1683
+ #
1684
+ class DescribeApplicableIndividualAssessmentsResponse < Struct.new(
1685
+ :individual_assessment_names,
1686
+ :marker)
1687
+ SENSITIVE = []
1335
1688
  include Aws::Structure
1336
1689
  end
1337
1690
 
@@ -1350,7 +1703,7 @@ module Aws::DatabaseMigrationService
1350
1703
  # }
1351
1704
  #
1352
1705
  # @!attribute [rw] filters
1353
- # Filters applied to the certificate described in the form of
1706
+ # Filters applied to the certificates described in the form of
1354
1707
  # key-value pairs.
1355
1708
  # @return [Array<Types::Filter>]
1356
1709
  #
@@ -1375,6 +1728,7 @@ module Aws::DatabaseMigrationService
1375
1728
  :filters,
1376
1729
  :max_records,
1377
1730
  :marker)
1731
+ SENSITIVE = []
1378
1732
  include Aws::Structure
1379
1733
  end
1380
1734
 
@@ -1392,6 +1746,7 @@ module Aws::DatabaseMigrationService
1392
1746
  class DescribeCertificatesResponse < Struct.new(
1393
1747
  :marker,
1394
1748
  :certificates)
1749
+ SENSITIVE = []
1395
1750
  include Aws::Structure
1396
1751
  end
1397
1752
 
@@ -1438,6 +1793,7 @@ module Aws::DatabaseMigrationService
1438
1793
  :filters,
1439
1794
  :max_records,
1440
1795
  :marker)
1796
+ SENSITIVE = []
1441
1797
  include Aws::Structure
1442
1798
  end
1443
1799
 
@@ -1456,6 +1812,7 @@ module Aws::DatabaseMigrationService
1456
1812
  class DescribeConnectionsResponse < Struct.new(
1457
1813
  :marker,
1458
1814
  :connections)
1815
+ SENSITIVE = []
1459
1816
  include Aws::Structure
1460
1817
  end
1461
1818
 
@@ -1474,7 +1831,7 @@ module Aws::DatabaseMigrationService
1474
1831
  # }
1475
1832
  #
1476
1833
  # @!attribute [rw] filters
1477
- # Filters applied to the describe action.
1834
+ # Filters applied to the endpoint types.
1478
1835
  #
1479
1836
  # Valid filter names: engine-name \| endpoint-type
1480
1837
  # @return [Array<Types::Filter>]
@@ -1502,6 +1859,7 @@ module Aws::DatabaseMigrationService
1502
1859
  :filters,
1503
1860
  :max_records,
1504
1861
  :marker)
1862
+ SENSITIVE = []
1505
1863
  include Aws::Structure
1506
1864
  end
1507
1865
 
@@ -1520,6 +1878,7 @@ module Aws::DatabaseMigrationService
1520
1878
  class DescribeEndpointTypesResponse < Struct.new(
1521
1879
  :marker,
1522
1880
  :supported_endpoint_types)
1881
+ SENSITIVE = []
1523
1882
  include Aws::Structure
1524
1883
  end
1525
1884
 
@@ -1538,7 +1897,7 @@ module Aws::DatabaseMigrationService
1538
1897
  # }
1539
1898
  #
1540
1899
  # @!attribute [rw] filters
1541
- # Filters applied to the describe action.
1900
+ # Filters applied to the endpoints.
1542
1901
  #
1543
1902
  # Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
1544
1903
  # engine-name
@@ -1567,6 +1926,7 @@ module Aws::DatabaseMigrationService
1567
1926
  :filters,
1568
1927
  :max_records,
1569
1928
  :marker)
1929
+ SENSITIVE = []
1570
1930
  include Aws::Structure
1571
1931
  end
1572
1932
 
@@ -1585,6 +1945,7 @@ module Aws::DatabaseMigrationService
1585
1945
  class DescribeEndpointsResponse < Struct.new(
1586
1946
  :marker,
1587
1947
  :endpoints)
1948
+ SENSITIVE = []
1588
1949
  include Aws::Structure
1589
1950
  end
1590
1951
 
@@ -1608,7 +1969,7 @@ module Aws::DatabaseMigrationService
1608
1969
  # @return [String]
1609
1970
  #
1610
1971
  # @!attribute [rw] filters
1611
- # Filters applied to the action.
1972
+ # Filters applied to the event categories.
1612
1973
  # @return [Array<Types::Filter>]
1613
1974
  #
1614
1975
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventCategoriesMessage AWS API Documentation
@@ -1616,6 +1977,7 @@ module Aws::DatabaseMigrationService
1616
1977
  class DescribeEventCategoriesMessage < Struct.new(
1617
1978
  :source_type,
1618
1979
  :filters)
1980
+ SENSITIVE = []
1619
1981
  include Aws::Structure
1620
1982
  end
1621
1983
 
@@ -1627,6 +1989,7 @@ module Aws::DatabaseMigrationService
1627
1989
  #
1628
1990
  class DescribeEventCategoriesResponse < Struct.new(
1629
1991
  :event_category_group_list)
1992
+ SENSITIVE = []
1630
1993
  include Aws::Structure
1631
1994
  end
1632
1995
 
@@ -1650,7 +2013,7 @@ module Aws::DatabaseMigrationService
1650
2013
  # @return [String]
1651
2014
  #
1652
2015
  # @!attribute [rw] filters
1653
- # Filters applied to the action.
2016
+ # Filters applied to event subscriptions.
1654
2017
  # @return [Array<Types::Filter>]
1655
2018
  #
1656
2019
  # @!attribute [rw] max_records
@@ -1677,6 +2040,7 @@ module Aws::DatabaseMigrationService
1677
2040
  :filters,
1678
2041
  :max_records,
1679
2042
  :marker)
2043
+ SENSITIVE = []
1680
2044
  include Aws::Structure
1681
2045
  end
1682
2046
 
@@ -1695,6 +2059,7 @@ module Aws::DatabaseMigrationService
1695
2059
  class DescribeEventSubscriptionsResponse < Struct.new(
1696
2060
  :marker,
1697
2061
  :event_subscriptions_list)
2062
+ SENSITIVE = []
1698
2063
  include Aws::Structure
1699
2064
  end
1700
2065
 
@@ -1745,7 +2110,7 @@ module Aws::DatabaseMigrationService
1745
2110
  # @return [Array<String>]
1746
2111
  #
1747
2112
  # @!attribute [rw] filters
1748
- # Filters applied to the action.
2113
+ # Filters applied to events.
1749
2114
  # @return [Array<Types::Filter>]
1750
2115
  #
1751
2116
  # @!attribute [rw] max_records
@@ -1777,6 +2142,7 @@ module Aws::DatabaseMigrationService
1777
2142
  :filters,
1778
2143
  :max_records,
1779
2144
  :marker)
2145
+ SENSITIVE = []
1780
2146
  include Aws::Structure
1781
2147
  end
1782
2148
 
@@ -1795,6 +2161,7 @@ module Aws::DatabaseMigrationService
1795
2161
  class DescribeEventsResponse < Struct.new(
1796
2162
  :marker,
1797
2163
  :events)
2164
+ SENSITIVE = []
1798
2165
  include Aws::Structure
1799
2166
  end
1800
2167
 
@@ -1828,6 +2195,7 @@ module Aws::DatabaseMigrationService
1828
2195
  class DescribeOrderableReplicationInstancesMessage < Struct.new(
1829
2196
  :max_records,
1830
2197
  :marker)
2198
+ SENSITIVE = []
1831
2199
  include Aws::Structure
1832
2200
  end
1833
2201
 
@@ -1846,6 +2214,7 @@ module Aws::DatabaseMigrationService
1846
2214
  class DescribeOrderableReplicationInstancesResponse < Struct.new(
1847
2215
  :orderable_replication_instances,
1848
2216
  :marker)
2217
+ SENSITIVE = []
1849
2218
  include Aws::Structure
1850
2219
  end
1851
2220
 
@@ -1895,6 +2264,7 @@ module Aws::DatabaseMigrationService
1895
2264
  :filters,
1896
2265
  :marker,
1897
2266
  :max_records)
2267
+ SENSITIVE = []
1898
2268
  include Aws::Structure
1899
2269
  end
1900
2270
 
@@ -1913,6 +2283,7 @@ module Aws::DatabaseMigrationService
1913
2283
  class DescribePendingMaintenanceActionsResponse < Struct.new(
1914
2284
  :pending_maintenance_actions,
1915
2285
  :marker)
2286
+ SENSITIVE = []
1916
2287
  include Aws::Structure
1917
2288
  end
1918
2289
 
@@ -1932,6 +2303,7 @@ module Aws::DatabaseMigrationService
1932
2303
  #
1933
2304
  class DescribeRefreshSchemasStatusMessage < Struct.new(
1934
2305
  :endpoint_arn)
2306
+ SENSITIVE = []
1935
2307
  include Aws::Structure
1936
2308
  end
1937
2309
 
@@ -1943,6 +2315,7 @@ module Aws::DatabaseMigrationService
1943
2315
  #
1944
2316
  class DescribeRefreshSchemasStatusResponse < Struct.new(
1945
2317
  :refresh_schemas_status)
2318
+ SENSITIVE = []
1946
2319
  include Aws::Structure
1947
2320
  end
1948
2321
 
@@ -1982,6 +2355,7 @@ module Aws::DatabaseMigrationService
1982
2355
  :replication_instance_arn,
1983
2356
  :max_records,
1984
2357
  :marker)
2358
+ SENSITIVE = []
1985
2359
  include Aws::Structure
1986
2360
  end
1987
2361
 
@@ -2007,6 +2381,7 @@ module Aws::DatabaseMigrationService
2007
2381
  :replication_instance_arn,
2008
2382
  :replication_instance_task_logs,
2009
2383
  :marker)
2384
+ SENSITIVE = []
2010
2385
  include Aws::Structure
2011
2386
  end
2012
2387
 
@@ -2025,7 +2400,7 @@ module Aws::DatabaseMigrationService
2025
2400
  # }
2026
2401
  #
2027
2402
  # @!attribute [rw] filters
2028
- # Filters applied to the describe action.
2403
+ # Filters applied to replication instances.
2029
2404
  #
2030
2405
  # Valid filter names: replication-instance-arn \|
2031
2406
  # replication-instance-id \| replication-instance-class \|
@@ -2055,6 +2430,7 @@ module Aws::DatabaseMigrationService
2055
2430
  :filters,
2056
2431
  :max_records,
2057
2432
  :marker)
2433
+ SENSITIVE = []
2058
2434
  include Aws::Structure
2059
2435
  end
2060
2436
 
@@ -2073,6 +2449,7 @@ module Aws::DatabaseMigrationService
2073
2449
  class DescribeReplicationInstancesResponse < Struct.new(
2074
2450
  :marker,
2075
2451
  :replication_instances)
2452
+ SENSITIVE = []
2076
2453
  include Aws::Structure
2077
2454
  end
2078
2455
 
@@ -2091,7 +2468,7 @@ module Aws::DatabaseMigrationService
2091
2468
  # }
2092
2469
  #
2093
2470
  # @!attribute [rw] filters
2094
- # Filters applied to the describe action.
2471
+ # Filters applied to replication subnet groups.
2095
2472
  #
2096
2473
  # Valid filter names: replication-subnet-group-id
2097
2474
  # @return [Array<Types::Filter>]
@@ -2119,6 +2496,7 @@ module Aws::DatabaseMigrationService
2119
2496
  :filters,
2120
2497
  :max_records,
2121
2498
  :marker)
2499
+ SENSITIVE = []
2122
2500
  include Aws::Structure
2123
2501
  end
2124
2502
 
@@ -2137,6 +2515,7 @@ module Aws::DatabaseMigrationService
2137
2515
  class DescribeReplicationSubnetGroupsResponse < Struct.new(
2138
2516
  :marker,
2139
2517
  :replication_subnet_groups)
2518
+ SENSITIVE = []
2140
2519
  include Aws::Structure
2141
2520
  end
2142
2521
 
@@ -2179,6 +2558,7 @@ module Aws::DatabaseMigrationService
2179
2558
  :replication_task_arn,
2180
2559
  :max_records,
2181
2560
  :marker)
2561
+ SENSITIVE = []
2182
2562
  include Aws::Structure
2183
2563
  end
2184
2564
 
@@ -2202,10 +2582,11 @@ module Aws::DatabaseMigrationService
2202
2582
  :marker,
2203
2583
  :bucket_name,
2204
2584
  :replication_task_assessment_results)
2585
+ SENSITIVE = []
2205
2586
  include Aws::Structure
2206
2587
  end
2207
2588
 
2208
- # @note When making an API call, you may pass DescribeReplicationTasksMessage
2589
+ # @note When making an API call, you may pass DescribeReplicationTaskAssessmentRunsMessage
2209
2590
  # data as a hash:
2210
2591
  #
2211
2592
  # {
@@ -2217,14 +2598,14 @@ module Aws::DatabaseMigrationService
2217
2598
  # ],
2218
2599
  # max_records: 1,
2219
2600
  # marker: "String",
2220
- # without_settings: false,
2221
2601
  # }
2222
2602
  #
2223
2603
  # @!attribute [rw] filters
2224
- # Filters applied to the describe action.
2604
+ # Filters applied to the premigration assessment runs described in the
2605
+ # form of key-value pairs.
2225
2606
  #
2226
- # Valid filter names: replication-task-arn \| replication-task-id \|
2227
- # migration-type \| endpoint-arn \| replication-instance-arn
2607
+ # Valid filter names: `replication-task-assessment-run-arn`,
2608
+ # `replication-task-arn`, `replication-instance-arn`, `status`
2228
2609
  # @return [Array<Types::Filter>]
2229
2610
  #
2230
2611
  # @!attribute [rw] max_records
@@ -2232,10 +2613,6 @@ module Aws::DatabaseMigrationService
2232
2613
  # records exist than the specified `MaxRecords` value, a pagination
2233
2614
  # token called a marker is included in the response so that the
2234
2615
  # remaining results can be retrieved.
2235
- #
2236
- # Default: 100
2237
- #
2238
- # Constraints: Minimum 20, maximum 100.
2239
2616
  # @return [Integer]
2240
2617
  #
2241
2618
  # @!attribute [rw] marker
@@ -2244,64 +2621,63 @@ module Aws::DatabaseMigrationService
2244
2621
  # the marker, up to the value specified by `MaxRecords`.
2245
2622
  # @return [String]
2246
2623
  #
2247
- # @!attribute [rw] without_settings
2248
- # An option to set to avoid returning information about settings. Use
2249
- # this to reduce overhead when setting information is too large. To
2250
- # use this option, choose `true`; otherwise, choose `false` (the
2251
- # default).
2252
- # @return [Boolean]
2253
- #
2254
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksMessage AWS API Documentation
2624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRunsMessage AWS API Documentation
2255
2625
  #
2256
- class DescribeReplicationTasksMessage < Struct.new(
2626
+ class DescribeReplicationTaskAssessmentRunsMessage < Struct.new(
2257
2627
  :filters,
2258
2628
  :max_records,
2259
- :marker,
2260
- :without_settings)
2629
+ :marker)
2630
+ SENSITIVE = []
2261
2631
  include Aws::Structure
2262
2632
  end
2263
2633
 
2264
2634
  # @!attribute [rw] marker
2265
- # An optional pagination token provided by a previous request. If this
2266
- # parameter is specified, the response includes only records beyond
2267
- # the marker, up to the value specified by `MaxRecords`.
2635
+ # A pagination token returned for you to pass to a subsequent request.
2636
+ # If you pass this token as the `Marker` value in a subsequent
2637
+ # request, the response includes only records beyond the marker, up to
2638
+ # the value specified in the request by `MaxRecords`.
2268
2639
  # @return [String]
2269
2640
  #
2270
- # @!attribute [rw] replication_tasks
2271
- # A description of the replication tasks.
2272
- # @return [Array<Types::ReplicationTask>]
2641
+ # @!attribute [rw] replication_task_assessment_runs
2642
+ # One or more premigration assessment runs as specified by `Filters`.
2643
+ # @return [Array<Types::ReplicationTaskAssessmentRun>]
2273
2644
  #
2274
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksResponse AWS API Documentation
2645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRunsResponse AWS API Documentation
2275
2646
  #
2276
- class DescribeReplicationTasksResponse < Struct.new(
2647
+ class DescribeReplicationTaskAssessmentRunsResponse < Struct.new(
2277
2648
  :marker,
2278
- :replication_tasks)
2649
+ :replication_task_assessment_runs)
2650
+ SENSITIVE = []
2279
2651
  include Aws::Structure
2280
2652
  end
2281
2653
 
2282
- # @note When making an API call, you may pass DescribeSchemasMessage
2654
+ # @note When making an API call, you may pass DescribeReplicationTaskIndividualAssessmentsMessage
2283
2655
  # data as a hash:
2284
2656
  #
2285
2657
  # {
2286
- # endpoint_arn: "String", # required
2658
+ # filters: [
2659
+ # {
2660
+ # name: "String", # required
2661
+ # values: ["String"], # required
2662
+ # },
2663
+ # ],
2287
2664
  # max_records: 1,
2288
2665
  # marker: "String",
2289
2666
  # }
2290
2667
  #
2291
- # @!attribute [rw] endpoint_arn
2292
- # The Amazon Resource Name (ARN) string that uniquely identifies the
2293
- # endpoint.
2294
- # @return [String]
2668
+ # @!attribute [rw] filters
2669
+ # Filters applied to the individual assessments described in the form
2670
+ # of key-value pairs.
2671
+ #
2672
+ # Valid filter names: `replication-task-assessment-run-arn`,
2673
+ # `replication-task-arn`, `status`
2674
+ # @return [Array<Types::Filter>]
2295
2675
  #
2296
2676
  # @!attribute [rw] max_records
2297
2677
  # The maximum number of records to include in the response. If more
2298
2678
  # records exist than the specified `MaxRecords` value, a pagination
2299
2679
  # token called a marker is included in the response so that the
2300
2680
  # remaining results can be retrieved.
2301
- #
2302
- # Default: 100
2303
- #
2304
- # Constraints: Minimum 20, maximum 100.
2305
2681
  # @return [Integer]
2306
2682
  #
2307
2683
  # @!attribute [rw] marker
@@ -2310,51 +2686,57 @@ module Aws::DatabaseMigrationService
2310
2686
  # the marker, up to the value specified by `MaxRecords`.
2311
2687
  # @return [String]
2312
2688
  #
2313
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasMessage AWS API Documentation
2689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessmentsMessage AWS API Documentation
2314
2690
  #
2315
- class DescribeSchemasMessage < Struct.new(
2316
- :endpoint_arn,
2691
+ class DescribeReplicationTaskIndividualAssessmentsMessage < Struct.new(
2692
+ :filters,
2317
2693
  :max_records,
2318
2694
  :marker)
2695
+ SENSITIVE = []
2319
2696
  include Aws::Structure
2320
2697
  end
2321
2698
 
2322
2699
  # @!attribute [rw] marker
2323
- # An optional pagination token provided by a previous request. If this
2324
- # parameter is specified, the response includes only records beyond
2325
- # the marker, up to the value specified by `MaxRecords`.
2700
+ # A pagination token returned for you to pass to a subsequent request.
2701
+ # If you pass this token as the `Marker` value in a subsequent
2702
+ # request, the response includes only records beyond the marker, up to
2703
+ # the value specified in the request by `MaxRecords`.
2326
2704
  # @return [String]
2327
2705
  #
2328
- # @!attribute [rw] schemas
2329
- # The described schema.
2330
- # @return [Array<String>]
2706
+ # @!attribute [rw] replication_task_individual_assessments
2707
+ # One or more individual assessments as specified by `Filters`.
2708
+ # @return [Array<Types::ReplicationTaskIndividualAssessment>]
2331
2709
  #
2332
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasResponse AWS API Documentation
2710
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessmentsResponse AWS API Documentation
2333
2711
  #
2334
- class DescribeSchemasResponse < Struct.new(
2712
+ class DescribeReplicationTaskIndividualAssessmentsResponse < Struct.new(
2335
2713
  :marker,
2336
- :schemas)
2714
+ :replication_task_individual_assessments)
2715
+ SENSITIVE = []
2337
2716
  include Aws::Structure
2338
2717
  end
2339
2718
 
2340
- # @note When making an API call, you may pass DescribeTableStatisticsMessage
2719
+ # @note When making an API call, you may pass DescribeReplicationTasksMessage
2341
2720
  # data as a hash:
2342
2721
  #
2343
2722
  # {
2344
- # replication_task_arn: "String", # required
2345
- # max_records: 1,
2346
- # marker: "String",
2347
2723
  # filters: [
2348
2724
  # {
2349
2725
  # name: "String", # required
2350
2726
  # values: ["String"], # required
2351
2727
  # },
2352
2728
  # ],
2729
+ # max_records: 1,
2730
+ # marker: "String",
2731
+ # without_settings: false,
2353
2732
  # }
2354
2733
  #
2355
- # @!attribute [rw] replication_task_arn
2356
- # The Amazon Resource Name (ARN) of the replication task.
2357
- # @return [String]
2734
+ # @!attribute [rw] filters
2735
+ # Filters applied to replication tasks.
2736
+ #
2737
+ # Valid filter names: replication-task-arn \| replication-task-id \|
2738
+ # migration-type \| endpoint-arn \| replication-instance-arn
2739
+ # @return [Array<Types::Filter>]
2358
2740
  #
2359
2741
  # @!attribute [rw] max_records
2360
2742
  # The maximum number of records to include in the response. If more
@@ -2364,7 +2746,7 @@ module Aws::DatabaseMigrationService
2364
2746
  #
2365
2747
  # Default: 100
2366
2748
  #
2367
- # Constraints: Minimum 20, maximum 500.
2749
+ # Constraints: Minimum 20, maximum 100.
2368
2750
  # @return [Integer]
2369
2751
  #
2370
2752
  # @!attribute [rw] marker
@@ -2373,8 +2755,141 @@ module Aws::DatabaseMigrationService
2373
2755
  # the marker, up to the value specified by `MaxRecords`.
2374
2756
  # @return [String]
2375
2757
  #
2376
- # @!attribute [rw] filters
2377
- # Filters applied to the describe table statistics action.
2758
+ # @!attribute [rw] without_settings
2759
+ # An option to set to avoid returning information about settings. Use
2760
+ # this to reduce overhead when setting information is too large. To
2761
+ # use this option, choose `true`; otherwise, choose `false` (the
2762
+ # default).
2763
+ # @return [Boolean]
2764
+ #
2765
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksMessage AWS API Documentation
2766
+ #
2767
+ class DescribeReplicationTasksMessage < Struct.new(
2768
+ :filters,
2769
+ :max_records,
2770
+ :marker,
2771
+ :without_settings)
2772
+ SENSITIVE = []
2773
+ include Aws::Structure
2774
+ end
2775
+
2776
+ # @!attribute [rw] marker
2777
+ # An optional pagination token provided by a previous request. If this
2778
+ # parameter is specified, the response includes only records beyond
2779
+ # the marker, up to the value specified by `MaxRecords`.
2780
+ # @return [String]
2781
+ #
2782
+ # @!attribute [rw] replication_tasks
2783
+ # A description of the replication tasks.
2784
+ # @return [Array<Types::ReplicationTask>]
2785
+ #
2786
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasksResponse AWS API Documentation
2787
+ #
2788
+ class DescribeReplicationTasksResponse < Struct.new(
2789
+ :marker,
2790
+ :replication_tasks)
2791
+ SENSITIVE = []
2792
+ include Aws::Structure
2793
+ end
2794
+
2795
+ # @note When making an API call, you may pass DescribeSchemasMessage
2796
+ # data as a hash:
2797
+ #
2798
+ # {
2799
+ # endpoint_arn: "String", # required
2800
+ # max_records: 1,
2801
+ # marker: "String",
2802
+ # }
2803
+ #
2804
+ # @!attribute [rw] endpoint_arn
2805
+ # The Amazon Resource Name (ARN) string that uniquely identifies the
2806
+ # endpoint.
2807
+ # @return [String]
2808
+ #
2809
+ # @!attribute [rw] max_records
2810
+ # The maximum number of records to include in the response. If more
2811
+ # records exist than the specified `MaxRecords` value, a pagination
2812
+ # token called a marker is included in the response so that the
2813
+ # remaining results can be retrieved.
2814
+ #
2815
+ # Default: 100
2816
+ #
2817
+ # Constraints: Minimum 20, maximum 100.
2818
+ # @return [Integer]
2819
+ #
2820
+ # @!attribute [rw] marker
2821
+ # An optional pagination token provided by a previous request. If this
2822
+ # parameter is specified, the response includes only records beyond
2823
+ # the marker, up to the value specified by `MaxRecords`.
2824
+ # @return [String]
2825
+ #
2826
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasMessage AWS API Documentation
2827
+ #
2828
+ class DescribeSchemasMessage < Struct.new(
2829
+ :endpoint_arn,
2830
+ :max_records,
2831
+ :marker)
2832
+ SENSITIVE = []
2833
+ include Aws::Structure
2834
+ end
2835
+
2836
+ # @!attribute [rw] marker
2837
+ # An optional pagination token provided by a previous request. If this
2838
+ # parameter is specified, the response includes only records beyond
2839
+ # the marker, up to the value specified by `MaxRecords`.
2840
+ # @return [String]
2841
+ #
2842
+ # @!attribute [rw] schemas
2843
+ # The described schema.
2844
+ # @return [Array<String>]
2845
+ #
2846
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemasResponse AWS API Documentation
2847
+ #
2848
+ class DescribeSchemasResponse < Struct.new(
2849
+ :marker,
2850
+ :schemas)
2851
+ SENSITIVE = []
2852
+ include Aws::Structure
2853
+ end
2854
+
2855
+ # @note When making an API call, you may pass DescribeTableStatisticsMessage
2856
+ # data as a hash:
2857
+ #
2858
+ # {
2859
+ # replication_task_arn: "String", # required
2860
+ # max_records: 1,
2861
+ # marker: "String",
2862
+ # filters: [
2863
+ # {
2864
+ # name: "String", # required
2865
+ # values: ["String"], # required
2866
+ # },
2867
+ # ],
2868
+ # }
2869
+ #
2870
+ # @!attribute [rw] replication_task_arn
2871
+ # The Amazon Resource Name (ARN) of the replication task.
2872
+ # @return [String]
2873
+ #
2874
+ # @!attribute [rw] max_records
2875
+ # The maximum number of records to include in the response. If more
2876
+ # records exist than the specified `MaxRecords` value, a pagination
2877
+ # token called a marker is included in the response so that the
2878
+ # remaining results can be retrieved.
2879
+ #
2880
+ # Default: 100
2881
+ #
2882
+ # Constraints: Minimum 20, maximum 500.
2883
+ # @return [Integer]
2884
+ #
2885
+ # @!attribute [rw] marker
2886
+ # An optional pagination token provided by a previous request. If this
2887
+ # parameter is specified, the response includes only records beyond
2888
+ # the marker, up to the value specified by `MaxRecords`.
2889
+ # @return [String]
2890
+ #
2891
+ # @!attribute [rw] filters
2892
+ # Filters applied to table statistics.
2378
2893
  #
2379
2894
  # Valid filter names: schema-name \| table-name \| table-state
2380
2895
  #
@@ -2389,6 +2904,7 @@ module Aws::DatabaseMigrationService
2389
2904
  :max_records,
2390
2905
  :marker,
2391
2906
  :filters)
2907
+ SENSITIVE = []
2392
2908
  include Aws::Structure
2393
2909
  end
2394
2910
 
@@ -2412,6 +2928,7 @@ module Aws::DatabaseMigrationService
2412
2928
  :replication_task_arn,
2413
2929
  :table_statistics,
2414
2930
  :marker)
2931
+ SENSITIVE = []
2415
2932
  include Aws::Structure
2416
2933
  end
2417
2934
 
@@ -2438,6 +2955,7 @@ module Aws::DatabaseMigrationService
2438
2955
  class DmsTransferSettings < Struct.new(
2439
2956
  :service_access_role_arn,
2440
2957
  :bucket_name)
2958
+ SENSITIVE = []
2441
2959
  include Aws::Structure
2442
2960
  end
2443
2961
 
@@ -2460,6 +2978,7 @@ module Aws::DatabaseMigrationService
2460
2978
  #
2461
2979
  class DynamoDbSettings < Struct.new(
2462
2980
  :service_access_role_arn)
2981
+ SENSITIVE = []
2463
2982
  include Aws::Structure
2464
2983
  end
2465
2984
 
@@ -2501,6 +3020,7 @@ module Aws::DatabaseMigrationService
2501
3020
  :endpoint_uri,
2502
3021
  :full_load_error_percentage,
2503
3022
  :error_retry_duration)
3023
+ SENSITIVE = []
2504
3024
  include Aws::Structure
2505
3025
  end
2506
3026
 
@@ -2530,8 +3050,8 @@ module Aws::DatabaseMigrationService
2530
3050
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
2531
3051
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
2532
3052
  # `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
2533
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
2534
- # `"sqlserver"`.
3053
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
3054
+ # `"sqlserver"`, and `"neptune"`.
2535
3055
  # @return [String]
2536
3056
  #
2537
3057
  # @!attribute [rw] engine_display_name
@@ -2606,7 +3126,7 @@ module Aws::DatabaseMigrationService
2606
3126
  # @return [String]
2607
3127
  #
2608
3128
  # @!attribute [rw] dynamo_db_settings
2609
- # The settings for the target DynamoDB database. For more information,
3129
+ # The settings for the DynamoDB target endpoint. For more information,
2610
3130
  # see the `DynamoDBSettings` structure.
2611
3131
  # @return [Types::DynamoDbSettings]
2612
3132
  #
@@ -2659,14 +3179,45 @@ module Aws::DatabaseMigrationService
2659
3179
  # @return [Types::ElasticsearchSettings]
2660
3180
  #
2661
3181
  # @!attribute [rw] neptune_settings
2662
- # The settings for the MongoDB source endpoint. For more information,
2663
- # see the `NeptuneSettings` structure.
3182
+ # The settings for the Amazon Neptune target endpoint. For more
3183
+ # information, see the `NeptuneSettings` structure.
2664
3184
  # @return [Types::NeptuneSettings]
2665
3185
  #
2666
3186
  # @!attribute [rw] redshift_settings
2667
3187
  # Settings for the Amazon Redshift endpoint.
2668
3188
  # @return [Types::RedshiftSettings]
2669
3189
  #
3190
+ # @!attribute [rw] postgre_sql_settings
3191
+ # The settings for the PostgreSQL source and target endpoint. For more
3192
+ # information, see the `PostgreSQLSettings` structure.
3193
+ # @return [Types::PostgreSQLSettings]
3194
+ #
3195
+ # @!attribute [rw] my_sql_settings
3196
+ # The settings for the MySQL source and target endpoint. For more
3197
+ # information, see the `MySQLSettings` structure.
3198
+ # @return [Types::MySQLSettings]
3199
+ #
3200
+ # @!attribute [rw] oracle_settings
3201
+ # The settings for the Oracle source and target endpoint. For more
3202
+ # information, see the `OracleSettings` structure.
3203
+ # @return [Types::OracleSettings]
3204
+ #
3205
+ # @!attribute [rw] sybase_settings
3206
+ # The settings for the SAP ASE source and target endpoint. For more
3207
+ # information, see the `SybaseSettings` structure.
3208
+ # @return [Types::SybaseSettings]
3209
+ #
3210
+ # @!attribute [rw] microsoft_sql_server_settings
3211
+ # The settings for the Microsoft SQL Server source and target
3212
+ # endpoint. For more information, see the `MicrosoftSQLServerSettings`
3213
+ # structure.
3214
+ # @return [Types::MicrosoftSQLServerSettings]
3215
+ #
3216
+ # @!attribute [rw] ibm_db_2_settings
3217
+ # The settings for the IBM Db2 LUW source endpoint. For more
3218
+ # information, see the `IBMDb2Settings` structure.
3219
+ # @return [Types::IBMDb2Settings]
3220
+ #
2670
3221
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Endpoint AWS API Documentation
2671
3222
  #
2672
3223
  class Endpoint < Struct.new(
@@ -2695,7 +3246,14 @@ module Aws::DatabaseMigrationService
2695
3246
  :kafka_settings,
2696
3247
  :elasticsearch_settings,
2697
3248
  :neptune_settings,
2698
- :redshift_settings)
3249
+ :redshift_settings,
3250
+ :postgre_sql_settings,
3251
+ :my_sql_settings,
3252
+ :oracle_settings,
3253
+ :sybase_settings,
3254
+ :microsoft_sql_server_settings,
3255
+ :ibm_db_2_settings)
3256
+ SENSITIVE = []
2699
3257
  include Aws::Structure
2700
3258
  end
2701
3259
 
@@ -2734,6 +3292,7 @@ module Aws::DatabaseMigrationService
2734
3292
  :message,
2735
3293
  :event_categories,
2736
3294
  :date)
3295
+ SENSITIVE = []
2737
3296
  include Aws::Structure
2738
3297
  end
2739
3298
 
@@ -2756,6 +3315,7 @@ module Aws::DatabaseMigrationService
2756
3315
  class EventCategoryGroup < Struct.new(
2757
3316
  :source_type,
2758
3317
  :event_categories)
3318
+ SENSITIVE = []
2759
3319
  include Aws::Structure
2760
3320
  end
2761
3321
 
@@ -2790,7 +3350,7 @@ module Aws::DatabaseMigrationService
2790
3350
  # @return [String]
2791
3351
  #
2792
3352
  # @!attribute [rw] subscription_creation_time
2793
- # The time the RDS event notification subscription was created.
3353
+ # The time the AWS DMS event notification subscription was created.
2794
3354
  # @return [String]
2795
3355
  #
2796
3356
  # @!attribute [rw] source_type
@@ -2824,12 +3384,13 @@ module Aws::DatabaseMigrationService
2824
3384
  :source_ids_list,
2825
3385
  :event_categories_list,
2826
3386
  :enabled)
3387
+ SENSITIVE = []
2827
3388
  include Aws::Structure
2828
3389
  end
2829
3390
 
2830
- # Identifies the name and value of a source filter object used to limit
2831
- # the number and type of records transferred from your source to your
2832
- # target.
3391
+ # Identifies the name and value of a filter object. This filter is used
3392
+ # to limit the number and type of AWS DMS objects that are returned for
3393
+ # a particular `Describe*` or similar operation.
2833
3394
  #
2834
3395
  # @note When making an API call, you may pass Filter
2835
3396
  # data as a hash:
@@ -2840,11 +3401,13 @@ module Aws::DatabaseMigrationService
2840
3401
  # }
2841
3402
  #
2842
3403
  # @!attribute [rw] name
2843
- # The name of the filter.
3404
+ # The name of the filter as specified for a `Describe*` or similar
3405
+ # operation.
2844
3406
  # @return [String]
2845
3407
  #
2846
3408
  # @!attribute [rw] values
2847
- # The filter value.
3409
+ # The filter value, which can specify one or more values used to
3410
+ # narrow the returned results.
2848
3411
  # @return [Array<String>]
2849
3412
  #
2850
3413
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/Filter AWS API Documentation
@@ -2852,6 +3415,52 @@ module Aws::DatabaseMigrationService
2852
3415
  class Filter < Struct.new(
2853
3416
  :name,
2854
3417
  :values)
3418
+ SENSITIVE = []
3419
+ include Aws::Structure
3420
+ end
3421
+
3422
+ # Provides information that defines an IBM Db2 LUW endpoint.
3423
+ #
3424
+ # @note When making an API call, you may pass IBMDb2Settings
3425
+ # data as a hash:
3426
+ #
3427
+ # {
3428
+ # database_name: "String",
3429
+ # password: "SecretString",
3430
+ # port: 1,
3431
+ # server_name: "String",
3432
+ # username: "String",
3433
+ # }
3434
+ #
3435
+ # @!attribute [rw] database_name
3436
+ # Database name for the endpoint.
3437
+ # @return [String]
3438
+ #
3439
+ # @!attribute [rw] password
3440
+ # Endpoint connection password.
3441
+ # @return [String]
3442
+ #
3443
+ # @!attribute [rw] port
3444
+ # Endpoint TCP port.
3445
+ # @return [Integer]
3446
+ #
3447
+ # @!attribute [rw] server_name
3448
+ # Fully qualified domain name of the endpoint.
3449
+ # @return [String]
3450
+ #
3451
+ # @!attribute [rw] username
3452
+ # Endpoint connection user name.
3453
+ # @return [String]
3454
+ #
3455
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/IBMDb2Settings AWS API Documentation
3456
+ #
3457
+ class IBMDb2Settings < Struct.new(
3458
+ :database_name,
3459
+ :password,
3460
+ :port,
3461
+ :server_name,
3462
+ :username)
3463
+ SENSITIVE = [:password]
2855
3464
  include Aws::Structure
2856
3465
  end
2857
3466
 
@@ -2897,6 +3506,7 @@ module Aws::DatabaseMigrationService
2897
3506
  :certificate_pem,
2898
3507
  :certificate_wallet,
2899
3508
  :tags)
3509
+ SENSITIVE = []
2900
3510
  include Aws::Structure
2901
3511
  end
2902
3512
 
@@ -2908,6 +3518,7 @@ module Aws::DatabaseMigrationService
2908
3518
  #
2909
3519
  class ImportCertificateResponse < Struct.new(
2910
3520
  :certificate)
3521
+ SENSITIVE = []
2911
3522
  include Aws::Structure
2912
3523
  end
2913
3524
 
@@ -2920,6 +3531,7 @@ module Aws::DatabaseMigrationService
2920
3531
  #
2921
3532
  class InsufficientResourceCapacityFault < Struct.new(
2922
3533
  :message)
3534
+ SENSITIVE = []
2923
3535
  include Aws::Structure
2924
3536
  end
2925
3537
 
@@ -2932,6 +3544,7 @@ module Aws::DatabaseMigrationService
2932
3544
  #
2933
3545
  class InvalidCertificateFault < Struct.new(
2934
3546
  :message)
3547
+ SENSITIVE = []
2935
3548
  include Aws::Structure
2936
3549
  end
2937
3550
 
@@ -2945,6 +3558,7 @@ module Aws::DatabaseMigrationService
2945
3558
  #
2946
3559
  class InvalidResourceStateFault < Struct.new(
2947
3560
  :message)
3561
+ SENSITIVE = []
2948
3562
  include Aws::Structure
2949
3563
  end
2950
3564
 
@@ -2957,6 +3571,7 @@ module Aws::DatabaseMigrationService
2957
3571
  #
2958
3572
  class InvalidSubnet < Struct.new(
2959
3573
  :message)
3574
+ SENSITIVE = []
2960
3575
  include Aws::Structure
2961
3576
  end
2962
3577
 
@@ -2970,6 +3585,7 @@ module Aws::DatabaseMigrationService
2970
3585
  #
2971
3586
  class KMSAccessDeniedFault < Struct.new(
2972
3587
  :message)
3588
+ SENSITIVE = []
2973
3589
  include Aws::Structure
2974
3590
  end
2975
3591
 
@@ -2982,6 +3598,21 @@ module Aws::DatabaseMigrationService
2982
3598
  #
2983
3599
  class KMSDisabledFault < Struct.new(
2984
3600
  :message)
3601
+ SENSITIVE = []
3602
+ include Aws::Structure
3603
+ end
3604
+
3605
+ # An AWS Key Management Service (AWS KMS) error is preventing access to
3606
+ # AWS KMS.
3607
+ #
3608
+ # @!attribute [rw] message
3609
+ # @return [String]
3610
+ #
3611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KMSFault AWS API Documentation
3612
+ #
3613
+ class KMSFault < Struct.new(
3614
+ :message)
3615
+ SENSITIVE = []
2985
3616
  include Aws::Structure
2986
3617
  end
2987
3618
 
@@ -2995,6 +3626,7 @@ module Aws::DatabaseMigrationService
2995
3626
  #
2996
3627
  class KMSInvalidStateFault < Struct.new(
2997
3628
  :message)
3629
+ SENSITIVE = []
2998
3630
  include Aws::Structure
2999
3631
  end
3000
3632
 
@@ -3007,6 +3639,7 @@ module Aws::DatabaseMigrationService
3007
3639
  #
3008
3640
  class KMSKeyNotAccessibleFault < Struct.new(
3009
3641
  :message)
3642
+ SENSITIVE = []
3010
3643
  include Aws::Structure
3011
3644
  end
3012
3645
 
@@ -3019,6 +3652,7 @@ module Aws::DatabaseMigrationService
3019
3652
  #
3020
3653
  class KMSNotFoundFault < Struct.new(
3021
3654
  :message)
3655
+ SENSITIVE = []
3022
3656
  include Aws::Structure
3023
3657
  end
3024
3658
 
@@ -3031,6 +3665,7 @@ module Aws::DatabaseMigrationService
3031
3665
  #
3032
3666
  class KMSThrottlingFault < Struct.new(
3033
3667
  :message)
3668
+ SENSITIVE = []
3034
3669
  include Aws::Structure
3035
3670
  end
3036
3671
 
@@ -3045,6 +3680,12 @@ module Aws::DatabaseMigrationService
3045
3680
  # {
3046
3681
  # broker: "String",
3047
3682
  # topic: "String",
3683
+ # message_format: "json", # accepts json, json-unformatted
3684
+ # include_transaction_details: false,
3685
+ # include_partition_value: false,
3686
+ # partition_include_schema_table: false,
3687
+ # include_table_alter_operations: false,
3688
+ # include_control_details: false,
3048
3689
  # }
3049
3690
  #
3050
3691
  # @!attribute [rw] broker
@@ -3060,11 +3701,60 @@ module Aws::DatabaseMigrationService
3060
3701
  # topic.
3061
3702
  # @return [String]
3062
3703
  #
3704
+ # @!attribute [rw] message_format
3705
+ # The output format for the records created on the endpoint. The
3706
+ # message format is `JSON` (default) or `JSON_UNFORMATTED` (a single
3707
+ # line with no tab).
3708
+ # @return [String]
3709
+ #
3710
+ # @!attribute [rw] include_transaction_details
3711
+ # Provides detailed transaction information from the source database.
3712
+ # This information includes a commit timestamp, a log position, and
3713
+ # values for `transaction_id`, previous `transaction_id`, and
3714
+ # `transaction_record_id` (the record offset within a transaction).
3715
+ # The default is `False`.
3716
+ # @return [Boolean]
3717
+ #
3718
+ # @!attribute [rw] include_partition_value
3719
+ # Shows the partition value within the Kafka message output, unless
3720
+ # the partition type is `schema-table-type`. The default is `False`.
3721
+ # @return [Boolean]
3722
+ #
3723
+ # @!attribute [rw] partition_include_schema_table
3724
+ # Prefixes schema and table names to partition values, when the
3725
+ # partition type is `primary-key-type`. Doing this increases data
3726
+ # distribution among Kafka partitions. For example, suppose that a
3727
+ # SysBench schema has thousands of tables and each table has only
3728
+ # limited range for a primary key. In this case, the same primary key
3729
+ # is sent from thousands of tables to the same partition, which causes
3730
+ # throttling. The default is `False`.
3731
+ # @return [Boolean]
3732
+ #
3733
+ # @!attribute [rw] include_table_alter_operations
3734
+ # Includes any data definition language (DDL) operations that change
3735
+ # the table in the control data, such as `rename-table`, `drop-table`,
3736
+ # `add-column`, `drop-column`, and `rename-column`. The default is
3737
+ # `False`.
3738
+ # @return [Boolean]
3739
+ #
3740
+ # @!attribute [rw] include_control_details
3741
+ # Shows detailed control information for table definition, column
3742
+ # definition, and table and column changes in the Kafka message
3743
+ # output. The default is `False`.
3744
+ # @return [Boolean]
3745
+ #
3063
3746
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KafkaSettings AWS API Documentation
3064
3747
  #
3065
3748
  class KafkaSettings < Struct.new(
3066
3749
  :broker,
3067
- :topic)
3750
+ :topic,
3751
+ :message_format,
3752
+ :include_transaction_details,
3753
+ :include_partition_value,
3754
+ :partition_include_schema_table,
3755
+ :include_table_alter_operations,
3756
+ :include_control_details)
3757
+ SENSITIVE = []
3068
3758
  include Aws::Structure
3069
3759
  end
3070
3760
 
@@ -3151,6 +3841,7 @@ module Aws::DatabaseMigrationService
3151
3841
  :partition_include_schema_table,
3152
3842
  :include_table_alter_operations,
3153
3843
  :include_control_details)
3844
+ SENSITIVE = []
3154
3845
  include Aws::Structure
3155
3846
  end
3156
3847
 
@@ -3170,6 +3861,7 @@ module Aws::DatabaseMigrationService
3170
3861
  #
3171
3862
  class ListTagsForResourceMessage < Struct.new(
3172
3863
  :resource_arn)
3864
+ SENSITIVE = []
3173
3865
  include Aws::Structure
3174
3866
  end
3175
3867
 
@@ -3181,6 +3873,52 @@ module Aws::DatabaseMigrationService
3181
3873
  #
3182
3874
  class ListTagsForResourceResponse < Struct.new(
3183
3875
  :tag_list)
3876
+ SENSITIVE = []
3877
+ include Aws::Structure
3878
+ end
3879
+
3880
+ # Provides information that defines a Microsoft SQL Server endpoint.
3881
+ #
3882
+ # @note When making an API call, you may pass MicrosoftSQLServerSettings
3883
+ # data as a hash:
3884
+ #
3885
+ # {
3886
+ # port: 1,
3887
+ # database_name: "String",
3888
+ # password: "SecretString",
3889
+ # server_name: "String",
3890
+ # username: "String",
3891
+ # }
3892
+ #
3893
+ # @!attribute [rw] port
3894
+ # Endpoint TCP port.
3895
+ # @return [Integer]
3896
+ #
3897
+ # @!attribute [rw] database_name
3898
+ # Database name for the endpoint.
3899
+ # @return [String]
3900
+ #
3901
+ # @!attribute [rw] password
3902
+ # Endpoint connection password.
3903
+ # @return [String]
3904
+ #
3905
+ # @!attribute [rw] server_name
3906
+ # Fully qualified domain name of the endpoint.
3907
+ # @return [String]
3908
+ #
3909
+ # @!attribute [rw] username
3910
+ # Endpoint connection user name.
3911
+ # @return [String]
3912
+ #
3913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
3914
+ #
3915
+ class MicrosoftSQLServerSettings < Struct.new(
3916
+ :port,
3917
+ :database_name,
3918
+ :password,
3919
+ :server_name,
3920
+ :username)
3921
+ SENSITIVE = [:password]
3184
3922
  include Aws::Structure
3185
3923
  end
3186
3924
 
@@ -3259,6 +3997,12 @@ module Aws::DatabaseMigrationService
3259
3997
  # kafka_settings: {
3260
3998
  # broker: "String",
3261
3999
  # topic: "String",
4000
+ # message_format: "json", # accepts json, json-unformatted
4001
+ # include_transaction_details: false,
4002
+ # include_partition_value: false,
4003
+ # partition_include_schema_table: false,
4004
+ # include_table_alter_operations: false,
4005
+ # include_control_details: false,
3262
4006
  # },
3263
4007
  # elasticsearch_settings: {
3264
4008
  # service_access_role_arn: "String", # required
@@ -3302,6 +4046,53 @@ module Aws::DatabaseMigrationService
3302
4046
  # username: "String",
3303
4047
  # write_buffer_size: 1,
3304
4048
  # },
4049
+ # postgre_sql_settings: {
4050
+ # database_name: "String",
4051
+ # password: "SecretString",
4052
+ # port: 1,
4053
+ # server_name: "String",
4054
+ # username: "String",
4055
+ # },
4056
+ # my_sql_settings: {
4057
+ # database_name: "String",
4058
+ # password: "SecretString",
4059
+ # port: 1,
4060
+ # server_name: "String",
4061
+ # username: "String",
4062
+ # },
4063
+ # oracle_settings: {
4064
+ # asm_password: "SecretString",
4065
+ # asm_server: "String",
4066
+ # asm_user: "String",
4067
+ # database_name: "String",
4068
+ # password: "SecretString",
4069
+ # port: 1,
4070
+ # security_db_encryption: "SecretString",
4071
+ # security_db_encryption_name: "String",
4072
+ # server_name: "String",
4073
+ # username: "String",
4074
+ # },
4075
+ # sybase_settings: {
4076
+ # database_name: "String",
4077
+ # password: "SecretString",
4078
+ # port: 1,
4079
+ # server_name: "String",
4080
+ # username: "String",
4081
+ # },
4082
+ # microsoft_sql_server_settings: {
4083
+ # port: 1,
4084
+ # database_name: "String",
4085
+ # password: "SecretString",
4086
+ # server_name: "String",
4087
+ # username: "String",
4088
+ # },
4089
+ # ibm_db_2_settings: {
4090
+ # database_name: "String",
4091
+ # password: "SecretString",
4092
+ # port: 1,
4093
+ # server_name: "String",
4094
+ # username: "String",
4095
+ # },
3305
4096
  # }
3306
4097
  #
3307
4098
  # @!attribute [rw] endpoint_arn
@@ -3324,8 +4115,8 @@ module Aws::DatabaseMigrationService
3324
4115
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
3325
4116
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
3326
4117
  # `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
3327
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
3328
- # `"sqlserver"`.
4118
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
4119
+ # `"sqlserver"`, and `"neptune"`.
3329
4120
  # @return [String]
3330
4121
  #
3331
4122
  # @!attribute [rw] username
@@ -3434,7 +4225,8 @@ module Aws::DatabaseMigrationService
3434
4225
  # Settings in JSON format for the target endpoint for Amazon Kinesis
3435
4226
  # Data Streams. For more information about the available settings, see
3436
4227
  # [Using Amazon Kinesis Data Streams as a Target for AWS Database
3437
- # Migration Service][1] in the *AWS Database Migration User Guide.*
4228
+ # Migration Service][1] in the *AWS Database Migration Service User
4229
+ # Guide.*
3438
4230
  #
3439
4231
  #
3440
4232
  #
@@ -3445,7 +4237,7 @@ module Aws::DatabaseMigrationService
3445
4237
  # Settings in JSON format for the target Apache Kafka endpoint. For
3446
4238
  # more information about the available settings, see [Using Apache
3447
4239
  # Kafka as a Target for AWS Database Migration Service][1] in the *AWS
3448
- # Database Migration User Guide.*
4240
+ # Database Migration Service User Guide.*
3449
4241
  #
3450
4242
  #
3451
4243
  #
@@ -3456,7 +4248,7 @@ module Aws::DatabaseMigrationService
3456
4248
  # Settings in JSON format for the target Elasticsearch endpoint. For
3457
4249
  # more information about the available settings, see [Extra Connection
3458
4250
  # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in
3459
- # the *AWS Database Migration User Guide.*
4251
+ # the *AWS Database Migration Service User Guide.*
3460
4252
  #
3461
4253
  #
3462
4254
  #
@@ -3465,9 +4257,9 @@ module Aws::DatabaseMigrationService
3465
4257
  #
3466
4258
  # @!attribute [rw] neptune_settings
3467
4259
  # Settings in JSON format for the target Amazon Neptune endpoint. For
3468
- # more information about the available settings, see
3469
- # [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
3470
- # in the *AWS Database Migration Service User Guide.*
4260
+ # more information about the available settings, see [Specifying
4261
+ # Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
4262
+ # Database Migration Service User Guide.*
3471
4263
  #
3472
4264
  #
3473
4265
  #
@@ -3478,6 +4270,85 @@ module Aws::DatabaseMigrationService
3478
4270
  # Provides information that defines an Amazon Redshift endpoint.
3479
4271
  # @return [Types::RedshiftSettings]
3480
4272
  #
4273
+ # @!attribute [rw] postgre_sql_settings
4274
+ # Settings in JSON format for the source and target PostgreSQL
4275
+ # endpoint. For information about other available settings, see [Extra
4276
+ # connection attributes when using PostgreSQL as a source for AWS
4277
+ # DMS][1] and [ Extra connection attributes when using PostgreSQL as a
4278
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
4279
+ # Guide.*
4280
+ #
4281
+ #
4282
+ #
4283
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
4284
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
4285
+ # @return [Types::PostgreSQLSettings]
4286
+ #
4287
+ # @!attribute [rw] my_sql_settings
4288
+ # Settings in JSON format for the source and target MySQL endpoint.
4289
+ # For information about other available settings, see [Extra
4290
+ # connection attributes when using MySQL as a source for AWS DMS][1]
4291
+ # and [Extra connection attributes when using a MySQL-compatible
4292
+ # database as a target for AWS DMS][2] in the *AWS Database Migration
4293
+ # Service User Guide.*
4294
+ #
4295
+ #
4296
+ #
4297
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
4298
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
4299
+ # @return [Types::MySQLSettings]
4300
+ #
4301
+ # @!attribute [rw] oracle_settings
4302
+ # Settings in JSON format for the source and target Oracle endpoint.
4303
+ # For information about other available settings, see [Extra
4304
+ # connection attributes when using Oracle as a source for AWS DMS][1]
4305
+ # and [ Extra connection attributes when using Oracle as a target for
4306
+ # AWS DMS][2] in the *AWS Database Migration Service User Guide.*
4307
+ #
4308
+ #
4309
+ #
4310
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
4311
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
4312
+ # @return [Types::OracleSettings]
4313
+ #
4314
+ # @!attribute [rw] sybase_settings
4315
+ # Settings in JSON format for the source and target SAP ASE endpoint.
4316
+ # For information about other available settings, see [Extra
4317
+ # connection attributes when using SAP ASE as a source for AWS DMS][1]
4318
+ # and [Extra connection attributes when using SAP ASE as a target for
4319
+ # AWS DMS][2] in the *AWS Database Migration Service User Guide.*
4320
+ #
4321
+ #
4322
+ #
4323
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
4324
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
4325
+ # @return [Types::SybaseSettings]
4326
+ #
4327
+ # @!attribute [rw] microsoft_sql_server_settings
4328
+ # Settings in JSON format for the source and target Microsoft SQL
4329
+ # Server endpoint. For information about other available settings, see
4330
+ # [Extra connection attributes when using SQL Server as a source for
4331
+ # AWS DMS][1] and [ Extra connection attributes when using SQL Server
4332
+ # as a target for AWS DMS][2] in the *AWS Database Migration Service
4333
+ # User Guide.*
4334
+ #
4335
+ #
4336
+ #
4337
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
4338
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
4339
+ # @return [Types::MicrosoftSQLServerSettings]
4340
+ #
4341
+ # @!attribute [rw] ibm_db_2_settings
4342
+ # Settings in JSON format for the source IBM Db2 LUW endpoint. For
4343
+ # information about other available settings, see [Extra connection
4344
+ # attributes when using Db2 LUW as a source for AWS DMS][1] in the
4345
+ # *AWS Database Migration Service User Guide.*
4346
+ #
4347
+ #
4348
+ #
4349
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
4350
+ # @return [Types::IBMDb2Settings]
4351
+ #
3481
4352
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpointMessage AWS API Documentation
3482
4353
  #
3483
4354
  class ModifyEndpointMessage < Struct.new(
@@ -3503,7 +4374,14 @@ module Aws::DatabaseMigrationService
3503
4374
  :kafka_settings,
3504
4375
  :elasticsearch_settings,
3505
4376
  :neptune_settings,
3506
- :redshift_settings)
4377
+ :redshift_settings,
4378
+ :postgre_sql_settings,
4379
+ :my_sql_settings,
4380
+ :oracle_settings,
4381
+ :sybase_settings,
4382
+ :microsoft_sql_server_settings,
4383
+ :ibm_db_2_settings)
4384
+ SENSITIVE = [:password]
3507
4385
  include Aws::Structure
3508
4386
  end
3509
4387
 
@@ -3515,6 +4393,7 @@ module Aws::DatabaseMigrationService
3515
4393
  #
3516
4394
  class ModifyEndpointResponse < Struct.new(
3517
4395
  :endpoint)
4396
+ SENSITIVE = []
3518
4397
  include Aws::Structure
3519
4398
  end
3520
4399
 
@@ -3565,6 +4444,7 @@ module Aws::DatabaseMigrationService
3565
4444
  :source_type,
3566
4445
  :event_categories,
3567
4446
  :enabled)
4447
+ SENSITIVE = []
3568
4448
  include Aws::Structure
3569
4449
  end
3570
4450
 
@@ -3576,6 +4456,7 @@ module Aws::DatabaseMigrationService
3576
4456
  #
3577
4457
  class ModifyEventSubscriptionResponse < Struct.new(
3578
4458
  :event_subscription)
4459
+ SENSITIVE = []
3579
4460
  include Aws::Structure
3580
4461
  end
3581
4462
 
@@ -3611,11 +4492,18 @@ module Aws::DatabaseMigrationService
3611
4492
  # @return [Boolean]
3612
4493
  #
3613
4494
  # @!attribute [rw] replication_instance_class
3614
- # The compute and memory capacity of the replication instance.
4495
+ # The compute and memory capacity of the replication instance as
4496
+ # defined for the specified replication instance class. For example to
4497
+ # specify the instance class dms.c4.large, set this parameter to
4498
+ # `"dms.c4.large"`.
4499
+ #
4500
+ # For more information on the settings and capacities for the
4501
+ # available replication instance classes, see [ Selecting the right
4502
+ # AWS DMS replication instance for your migration][1].
4503
+ #
3615
4504
  #
3616
- # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
3617
- # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
3618
- # dms.c4.4xlarge `
4505
+ #
4506
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
3619
4507
  # @return [String]
3620
4508
  #
3621
4509
  # @!attribute [rw] vpc_security_group_ids
@@ -3698,6 +4586,7 @@ module Aws::DatabaseMigrationService
3698
4586
  :allow_major_version_upgrade,
3699
4587
  :auto_minor_version_upgrade,
3700
4588
  :replication_instance_identifier)
4589
+ SENSITIVE = []
3701
4590
  include Aws::Structure
3702
4591
  end
3703
4592
 
@@ -3709,6 +4598,7 @@ module Aws::DatabaseMigrationService
3709
4598
  #
3710
4599
  class ModifyReplicationInstanceResponse < Struct.new(
3711
4600
  :replication_instance)
4601
+ SENSITIVE = []
3712
4602
  include Aws::Structure
3713
4603
  end
3714
4604
 
@@ -3739,6 +4629,7 @@ module Aws::DatabaseMigrationService
3739
4629
  :replication_subnet_group_identifier,
3740
4630
  :replication_subnet_group_description,
3741
4631
  :subnet_ids)
4632
+ SENSITIVE = []
3742
4633
  include Aws::Structure
3743
4634
  end
3744
4635
 
@@ -3750,6 +4641,7 @@ module Aws::DatabaseMigrationService
3750
4641
  #
3751
4642
  class ModifyReplicationSubnetGroupResponse < Struct.new(
3752
4643
  :replication_subnet_group)
4644
+ SENSITIVE = []
3753
4645
  include Aws::Structure
3754
4646
  end
3755
4647
 
@@ -3777,7 +4669,7 @@ module Aws::DatabaseMigrationService
3777
4669
  #
3778
4670
  # Constraints:
3779
4671
  #
3780
- # * Must contain from 1 to 255 alphanumeric characters or hyphens.
4672
+ # * Must contain 1-255 alphanumeric characters or hyphens.
3781
4673
  #
3782
4674
  # * First character must be a letter.
3783
4675
  #
@@ -3854,7 +4746,7 @@ module Aws::DatabaseMigrationService
3854
4746
  # Supplemental information that the task requires to migrate the data
3855
4747
  # for certain source and target endpoints. For more information, see
3856
4748
  # [Specifying Supplemental Data for Task Settings][1] in the *AWS
3857
- # Database Migration User Guide.*
4749
+ # Database Migration Service User Guide.*
3858
4750
  #
3859
4751
  #
3860
4752
  #
@@ -3873,6 +4765,7 @@ module Aws::DatabaseMigrationService
3873
4765
  :cdc_start_position,
3874
4766
  :cdc_stop_position,
3875
4767
  :task_data)
4768
+ SENSITIVE = []
3876
4769
  include Aws::Structure
3877
4770
  end
3878
4771
 
@@ -3884,6 +4777,7 @@ module Aws::DatabaseMigrationService
3884
4777
  #
3885
4778
  class ModifyReplicationTaskResponse < Struct.new(
3886
4779
  :replication_task)
4780
+ SENSITIVE = []
3887
4781
  include Aws::Structure
3888
4782
  end
3889
4783
 
@@ -3932,52 +4826,47 @@ module Aws::DatabaseMigrationService
3932
4826
  # The authentication type you use to access the MongoDB source
3933
4827
  # endpoint.
3934
4828
  #
3935
- # Valid values: NO, PASSWORD
3936
- #
3937
- # When NO is selected, user name and password parameters are not used
3938
- # and can be empty.
4829
+ # When when set to `"no"`, user name and password parameters are not
4830
+ # used and can be empty.
3939
4831
  # @return [String]
3940
4832
  #
3941
4833
  # @!attribute [rw] auth_mechanism
3942
4834
  # The authentication mechanism you use to access the MongoDB source
3943
4835
  # endpoint.
3944
4836
  #
3945
- # Valid values: DEFAULT, MONGODB\_CR, SCRAM\_SHA\_1
3946
- #
3947
- # DEFAULT For MongoDB version 2.x, use MONGODB\_CR. For MongoDB
3948
- # version 3.x, use SCRAM\_SHA\_1. This setting isn't used when
3949
- # authType=No.
4837
+ # For the default value, in MongoDB version 2.x, `"default"` is
4838
+ # `"mongodb_cr"`. For MongoDB version 3.x or later, `"default"` is
4839
+ # `"scram_sha_1"`. This setting isn't used when `AuthType` is set to
4840
+ # `"no"`.
3950
4841
  # @return [String]
3951
4842
  #
3952
4843
  # @!attribute [rw] nesting_level
3953
4844
  # Specifies either document or table mode.
3954
4845
  #
3955
- # Valid values: NONE, ONE
3956
- #
3957
- # Default value is NONE. Specify NONE to use document mode. Specify
3958
- # ONE to use table mode.
4846
+ # Default value is `"none"`. Specify `"none"` to use document mode.
4847
+ # Specify `"one"` to use table mode.
3959
4848
  # @return [String]
3960
4849
  #
3961
4850
  # @!attribute [rw] extract_doc_id
3962
4851
  # Specifies the document ID. Use this setting when `NestingLevel` is
3963
- # set to NONE.
4852
+ # set to `"none"`.
3964
4853
  #
3965
- # Default value is false.
4854
+ # Default value is `"false"`.
3966
4855
  # @return [String]
3967
4856
  #
3968
4857
  # @!attribute [rw] docs_to_investigate
3969
4858
  # Indicates the number of documents to preview to determine the
3970
4859
  # document organization. Use this setting when `NestingLevel` is set
3971
- # to ONE.
4860
+ # to `"one"`.
3972
4861
  #
3973
- # Must be a positive value greater than 0. Default value is 1000.
4862
+ # Must be a positive value greater than `0`. Default value is `1000`.
3974
4863
  # @return [String]
3975
4864
  #
3976
4865
  # @!attribute [rw] auth_source
3977
- # The MongoDB database name. This setting isn't used when
3978
- # `authType=NO`.
4866
+ # The MongoDB database name. This setting isn't used when `AuthType`
4867
+ # is set to `"no"`.
3979
4868
  #
3980
- # The default is admin.
4869
+ # The default is `"admin"`.
3981
4870
  # @return [String]
3982
4871
  #
3983
4872
  # @!attribute [rw] kms_key_id
@@ -4004,6 +4893,52 @@ module Aws::DatabaseMigrationService
4004
4893
  :docs_to_investigate,
4005
4894
  :auth_source,
4006
4895
  :kms_key_id)
4896
+ SENSITIVE = [:password]
4897
+ include Aws::Structure
4898
+ end
4899
+
4900
+ # Provides information that defines a MySQL endpoint.
4901
+ #
4902
+ # @note When making an API call, you may pass MySQLSettings
4903
+ # data as a hash:
4904
+ #
4905
+ # {
4906
+ # database_name: "String",
4907
+ # password: "SecretString",
4908
+ # port: 1,
4909
+ # server_name: "String",
4910
+ # username: "String",
4911
+ # }
4912
+ #
4913
+ # @!attribute [rw] database_name
4914
+ # Database name for the endpoint.
4915
+ # @return [String]
4916
+ #
4917
+ # @!attribute [rw] password
4918
+ # Endpoint connection password.
4919
+ # @return [String]
4920
+ #
4921
+ # @!attribute [rw] port
4922
+ # Endpoint TCP port.
4923
+ # @return [Integer]
4924
+ #
4925
+ # @!attribute [rw] server_name
4926
+ # Fully qualified domain name of the endpoint.
4927
+ # @return [String]
4928
+ #
4929
+ # @!attribute [rw] username
4930
+ # Endpoint connection user name.
4931
+ # @return [String]
4932
+ #
4933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MySQLSettings AWS API Documentation
4934
+ #
4935
+ class MySQLSettings < Struct.new(
4936
+ :database_name,
4937
+ :password,
4938
+ :port,
4939
+ :server_name,
4940
+ :username)
4941
+ SENSITIVE = [:password]
4007
4942
  include Aws::Structure
4008
4943
  end
4009
4944
 
@@ -4023,10 +4958,10 @@ module Aws::DatabaseMigrationService
4023
4958
  # }
4024
4959
  #
4025
4960
  # @!attribute [rw] service_access_role_arn
4026
- # The ARN of the service role you have created for the Neptune target
4027
- # endpoint. For more information, see
4028
- # [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.ServiceRole][1]
4029
- # in the *AWS Database Migration Service User Guide.*
4961
+ # The Amazon Resource Name (ARN) of the service role that you created
4962
+ # for the Neptune target endpoint. For more information, see [Creating
4963
+ # an IAM Service Role for Accessing Amazon Neptune as a Target][1] in
4964
+ # the <i>AWS Database Migration Service User Guide. </i>
4030
4965
  #
4031
4966
  #
4032
4967
  #
@@ -4034,15 +4969,15 @@ module Aws::DatabaseMigrationService
4034
4969
  # @return [String]
4035
4970
  #
4036
4971
  # @!attribute [rw] s3_bucket_name
4037
- # The name of the S3 bucket for AWS DMS to temporarily store migrated
4038
- # graph data in CSV files before bulk-loading it to the Neptune target
4039
- # database. AWS DMS maps the SQL source data to graph data before
4040
- # storing it in these CSV files.
4972
+ # The name of the Amazon S3 bucket where AWS DMS can temporarily store
4973
+ # migrated graph data in .csv files before bulk-loading it to the
4974
+ # Neptune target database. AWS DMS maps the SQL source data to graph
4975
+ # data before storing it in these .csv files.
4041
4976
  # @return [String]
4042
4977
  #
4043
4978
  # @!attribute [rw] s3_bucket_folder
4044
- # A folder path where you where you want AWS DMS to store migrated
4045
- # graph data in the S3 bucket specified by `S3BucketName`
4979
+ # A folder path where you want AWS DMS to store migrated graph data in
4980
+ # the S3 bucket specified by `S3BucketName`
4046
4981
  # @return [String]
4047
4982
  #
4048
4983
  # @!attribute [rw] error_retry_duration
@@ -4052,23 +4987,24 @@ module Aws::DatabaseMigrationService
4052
4987
  # @return [Integer]
4053
4988
  #
4054
4989
  # @!attribute [rw] max_file_size
4055
- # The maximum size in KB of migrated graph data stored in a CSV file
4056
- # before AWS DMS bulk-loads the data to the Neptune target database.
4057
- # The default is 1048576 KB. If successful, AWS DMS clears the bucket,
4058
- # ready to store the next batch of migrated graph data.
4990
+ # The maximum size in kilobytes of migrated graph data stored in a
4991
+ # .csv file before AWS DMS bulk-loads the data to the Neptune target
4992
+ # database. The default is 1,048,576 KB. If the bulk load is
4993
+ # successful, AWS DMS clears the bucket, ready to store the next batch
4994
+ # of migrated graph data.
4059
4995
  # @return [Integer]
4060
4996
  #
4061
4997
  # @!attribute [rw] max_retry_count
4062
- # The number of times for AWS DMS to retry a bulk-load of migrated
4998
+ # The number of times for AWS DMS to retry a bulk load of migrated
4063
4999
  # graph data to the Neptune target database before raising an error.
4064
5000
  # The default is 5.
4065
5001
  # @return [Integer]
4066
5002
  #
4067
5003
  # @!attribute [rw] iam_auth_enabled
4068
- # If you want IAM authorization enabled for this endpoint, set this
4069
- # parameter to `true` and attach the appropriate role policy document
4070
- # to your service role specified by `ServiceAccessRoleArn`. The
4071
- # default is `false`.
5004
+ # If you want AWS Identity and Access Management (IAM) authorization
5005
+ # enabled for this endpoint, set this parameter to `true`. Then attach
5006
+ # the appropriate IAM policy document to your service role specified
5007
+ # by `ServiceAccessRoleArn`. The default is `false`.
4072
5008
  # @return [Boolean]
4073
5009
  #
4074
5010
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/NeptuneSettings AWS API Documentation
@@ -4081,6 +5017,134 @@ module Aws::DatabaseMigrationService
4081
5017
  :max_file_size,
4082
5018
  :max_retry_count,
4083
5019
  :iam_auth_enabled)
5020
+ SENSITIVE = []
5021
+ include Aws::Structure
5022
+ end
5023
+
5024
+ # Provides information that defines an Oracle endpoint.
5025
+ #
5026
+ # @note When making an API call, you may pass OracleSettings
5027
+ # data as a hash:
5028
+ #
5029
+ # {
5030
+ # asm_password: "SecretString",
5031
+ # asm_server: "String",
5032
+ # asm_user: "String",
5033
+ # database_name: "String",
5034
+ # password: "SecretString",
5035
+ # port: 1,
5036
+ # security_db_encryption: "SecretString",
5037
+ # security_db_encryption_name: "String",
5038
+ # server_name: "String",
5039
+ # username: "String",
5040
+ # }
5041
+ #
5042
+ # @!attribute [rw] asm_password
5043
+ # For an Oracle source endpoint, your Oracle Automatic Storage
5044
+ # Management (ASM) password. You can set this value from the `
5045
+ # asm_user_password ` value. You set this value as part of the
5046
+ # comma-separated value that you set to the `Password` request
5047
+ # parameter when you create the endpoint to access transaction logs
5048
+ # using Binary Reader. For more information, see [Configuration for
5049
+ # change data capture (CDC) on an Oracle source database][1].
5050
+ #
5051
+ #
5052
+ #
5053
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration
5054
+ # @return [String]
5055
+ #
5056
+ # @!attribute [rw] asm_server
5057
+ # For an Oracle source endpoint, your ASM server address. You can set
5058
+ # this value from the `asm_server` value. You set `asm_server` as part
5059
+ # of the extra connection attribute string to access an Oracle server
5060
+ # with Binary Reader that uses ASM. For more information, see
5061
+ # [Configuration for change data capture (CDC) on an Oracle source
5062
+ # database][1].
5063
+ #
5064
+ #
5065
+ #
5066
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration
5067
+ # @return [String]
5068
+ #
5069
+ # @!attribute [rw] asm_user
5070
+ # For an Oracle source endpoint, your ASM user name. You can set this
5071
+ # value from the `asm_user` value. You set `asm_user` as part of the
5072
+ # extra connection attribute string to access an Oracle server with
5073
+ # Binary Reader that uses ASM. For more information, see
5074
+ # [Configuration for change data capture (CDC) on an Oracle source
5075
+ # database][1].
5076
+ #
5077
+ #
5078
+ #
5079
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration
5080
+ # @return [String]
5081
+ #
5082
+ # @!attribute [rw] database_name
5083
+ # Database name for the endpoint.
5084
+ # @return [String]
5085
+ #
5086
+ # @!attribute [rw] password
5087
+ # Endpoint connection password.
5088
+ # @return [String]
5089
+ #
5090
+ # @!attribute [rw] port
5091
+ # Endpoint TCP port.
5092
+ # @return [Integer]
5093
+ #
5094
+ # @!attribute [rw] security_db_encryption
5095
+ # For an Oracle source endpoint, the transparent data encryption (TDE)
5096
+ # password required by AWM DMS to access Oracle redo logs encrypted by
5097
+ # TDE using Binary Reader. It is also the ` TDE_Password ` part of the
5098
+ # comma-separated value you set to the `Password` request parameter
5099
+ # when you create the endpoint. The `SecurityDbEncryptian` setting is
5100
+ # related to this `SecurityDbEncryptionName` setting. For more
5101
+ # information, see [ Supported encryption methods for using Oracle as
5102
+ # a source for AWS DMS][1] in the *AWS Database Migration Service User
5103
+ # Guide*.
5104
+ #
5105
+ #
5106
+ #
5107
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.Encryption
5108
+ # @return [String]
5109
+ #
5110
+ # @!attribute [rw] security_db_encryption_name
5111
+ # For an Oracle source endpoint, the name of a key used for the
5112
+ # transparent data encryption (TDE) of the columns and tablespaces in
5113
+ # an Oracle source database that is encrypted using TDE. The key value
5114
+ # is the value of the `SecurityDbEncryption` setting. For more
5115
+ # information on setting the key name value of
5116
+ # `SecurityDbEncryptionName`, see the information and example for
5117
+ # setting the `securityDbEncryptionName` extra connection attribute in
5118
+ # [ Supported encryption methods for using Oracle as a source for AWS
5119
+ # DMS][1] in the *AWS Database Migration Service User Guide*.
5120
+ #
5121
+ #
5122
+ #
5123
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.Encryption
5124
+ # @return [String]
5125
+ #
5126
+ # @!attribute [rw] server_name
5127
+ # Fully qualified domain name of the endpoint.
5128
+ # @return [String]
5129
+ #
5130
+ # @!attribute [rw] username
5131
+ # Endpoint connection user name.
5132
+ # @return [String]
5133
+ #
5134
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
5135
+ #
5136
+ class OracleSettings < Struct.new(
5137
+ :asm_password,
5138
+ :asm_server,
5139
+ :asm_user,
5140
+ :database_name,
5141
+ :password,
5142
+ :port,
5143
+ :security_db_encryption,
5144
+ :security_db_encryption_name,
5145
+ :server_name,
5146
+ :username)
5147
+ SENSITIVE = [:asm_password, :password, :security_db_encryption]
4084
5148
  include Aws::Structure
4085
5149
  end
4086
5150
 
@@ -4094,11 +5158,18 @@ module Aws::DatabaseMigrationService
4094
5158
  # @return [String]
4095
5159
  #
4096
5160
  # @!attribute [rw] replication_instance_class
4097
- # The compute and memory capacity of the replication instance.
5161
+ # The compute and memory capacity of the replication instance as
5162
+ # defined for the specified replication instance class. For example to
5163
+ # specify the instance class dms.c4.large, set this parameter to
5164
+ # `"dms.c4.large"`.
5165
+ #
5166
+ # For more information on the settings and capacities for the
5167
+ # available replication instance classes, see [ Selecting the right
5168
+ # AWS DMS replication instance for your migration][1].
5169
+ #
5170
+ #
4098
5171
  #
4099
- # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
4100
- # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
4101
- # dms.c4.4xlarge `
5172
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
4102
5173
  # @return [String]
4103
5174
  #
4104
5175
  # @!attribute [rw] storage_type
@@ -4152,6 +5223,7 @@ module Aws::DatabaseMigrationService
4152
5223
  :included_allocated_storage,
4153
5224
  :availability_zones,
4154
5225
  :release_status)
5226
+ SENSITIVE = []
4155
5227
  include Aws::Structure
4156
5228
  end
4157
5229
 
@@ -4205,6 +5277,52 @@ module Aws::DatabaseMigrationService
4205
5277
  :opt_in_status,
4206
5278
  :current_apply_date,
4207
5279
  :description)
5280
+ SENSITIVE = []
5281
+ include Aws::Structure
5282
+ end
5283
+
5284
+ # Provides information that defines a PostgreSQL endpoint.
5285
+ #
5286
+ # @note When making an API call, you may pass PostgreSQLSettings
5287
+ # data as a hash:
5288
+ #
5289
+ # {
5290
+ # database_name: "String",
5291
+ # password: "SecretString",
5292
+ # port: 1,
5293
+ # server_name: "String",
5294
+ # username: "String",
5295
+ # }
5296
+ #
5297
+ # @!attribute [rw] database_name
5298
+ # Database name for the endpoint.
5299
+ # @return [String]
5300
+ #
5301
+ # @!attribute [rw] password
5302
+ # Endpoint connection password.
5303
+ # @return [String]
5304
+ #
5305
+ # @!attribute [rw] port
5306
+ # Endpoint TCP port.
5307
+ # @return [Integer]
5308
+ #
5309
+ # @!attribute [rw] server_name
5310
+ # Fully qualified domain name of the endpoint.
5311
+ # @return [String]
5312
+ #
5313
+ # @!attribute [rw] username
5314
+ # Endpoint connection user name.
5315
+ # @return [String]
5316
+ #
5317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
5318
+ #
5319
+ class PostgreSQLSettings < Struct.new(
5320
+ :database_name,
5321
+ :password,
5322
+ :port,
5323
+ :server_name,
5324
+ :username)
5325
+ SENSITIVE = [:password]
4208
5326
  include Aws::Structure
4209
5327
  end
4210
5328
 
@@ -4231,6 +5349,7 @@ module Aws::DatabaseMigrationService
4231
5349
  class RebootReplicationInstanceMessage < Struct.new(
4232
5350
  :replication_instance_arn,
4233
5351
  :force_failover)
5352
+ SENSITIVE = []
4234
5353
  include Aws::Structure
4235
5354
  end
4236
5355
 
@@ -4242,6 +5361,7 @@ module Aws::DatabaseMigrationService
4242
5361
  #
4243
5362
  class RebootReplicationInstanceResponse < Struct.new(
4244
5363
  :replication_instance)
5364
+ SENSITIVE = []
4245
5365
  include Aws::Structure
4246
5366
  end
4247
5367
 
@@ -4463,6 +5583,7 @@ module Aws::DatabaseMigrationService
4463
5583
  :truncate_columns,
4464
5584
  :username,
4465
5585
  :write_buffer_size)
5586
+ SENSITIVE = [:password]
4466
5587
  include Aws::Structure
4467
5588
  end
4468
5589
 
@@ -4488,6 +5609,7 @@ module Aws::DatabaseMigrationService
4488
5609
  class RefreshSchemasMessage < Struct.new(
4489
5610
  :endpoint_arn,
4490
5611
  :replication_instance_arn)
5612
+ SENSITIVE = []
4491
5613
  include Aws::Structure
4492
5614
  end
4493
5615
 
@@ -4499,6 +5621,7 @@ module Aws::DatabaseMigrationService
4499
5621
  #
4500
5622
  class RefreshSchemasResponse < Struct.new(
4501
5623
  :refresh_schemas_status)
5624
+ SENSITIVE = []
4502
5625
  include Aws::Structure
4503
5626
  end
4504
5627
 
@@ -4534,6 +5657,7 @@ module Aws::DatabaseMigrationService
4534
5657
  :status,
4535
5658
  :last_refresh_date,
4536
5659
  :last_failure_message)
5660
+ SENSITIVE = []
4537
5661
  include Aws::Structure
4538
5662
  end
4539
5663
 
@@ -4544,8 +5668,8 @@ module Aws::DatabaseMigrationService
4544
5668
  # replication_task_arn: "String", # required
4545
5669
  # tables_to_reload: [ # required
4546
5670
  # {
4547
- # schema_name: "String",
4548
- # table_name: "String",
5671
+ # schema_name: "String", # required
5672
+ # table_name: "String", # required
4549
5673
  # },
4550
5674
  # ],
4551
5675
  # reload_option: "data-reload", # accepts data-reload, validate-only
@@ -4576,6 +5700,7 @@ module Aws::DatabaseMigrationService
4576
5700
  :replication_task_arn,
4577
5701
  :tables_to_reload,
4578
5702
  :reload_option)
5703
+ SENSITIVE = []
4579
5704
  include Aws::Structure
4580
5705
  end
4581
5706
 
@@ -4587,6 +5712,7 @@ module Aws::DatabaseMigrationService
4587
5712
  #
4588
5713
  class ReloadTablesResponse < Struct.new(
4589
5714
  :replication_task_arn)
5715
+ SENSITIVE = []
4590
5716
  include Aws::Structure
4591
5717
  end
4592
5718
 
@@ -4614,6 +5740,7 @@ module Aws::DatabaseMigrationService
4614
5740
  class RemoveTagsFromResourceMessage < Struct.new(
4615
5741
  :resource_arn,
4616
5742
  :tag_keys)
5743
+ SENSITIVE = []
4617
5744
  include Aws::Structure
4618
5745
  end
4619
5746
 
@@ -4629,7 +5756,7 @@ module Aws::DatabaseMigrationService
4629
5756
  #
4630
5757
  # Constraints:
4631
5758
  #
4632
- # * Must contain from 1 to 63 alphanumeric characters or hyphens.
5759
+ # * Must contain 1-63 alphanumeric characters or hyphens.
4633
5760
  #
4634
5761
  # * First character must be a letter.
4635
5762
  #
@@ -4639,15 +5766,47 @@ module Aws::DatabaseMigrationService
4639
5766
  # @return [String]
4640
5767
  #
4641
5768
  # @!attribute [rw] replication_instance_class
4642
- # The compute and memory capacity of the replication instance.
5769
+ # The compute and memory capacity of the replication instance as
5770
+ # defined for the specified replication instance class.
5771
+ #
5772
+ # For more information on the settings and capacities for the
5773
+ # available replication instance classes, see [ Selecting the right
5774
+ # AWS DMS replication instance for your migration][1].
4643
5775
  #
4644
- # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
4645
- # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
4646
- # dms.c4.4xlarge `
5776
+ #
5777
+ #
5778
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
4647
5779
  # @return [String]
4648
5780
  #
4649
5781
  # @!attribute [rw] replication_instance_status
4650
- # The status of the replication instance.
5782
+ # The status of the replication instance. The possible return values
5783
+ # include:
5784
+ #
5785
+ # * `"available"`
5786
+ #
5787
+ # * `"creating"`
5788
+ #
5789
+ # * `"deleted"`
5790
+ #
5791
+ # * `"deleting"`
5792
+ #
5793
+ # * `"failed"`
5794
+ #
5795
+ # * `"modifying"`
5796
+ #
5797
+ # * `"upgrading"`
5798
+ #
5799
+ # * `"rebooting"`
5800
+ #
5801
+ # * `"resetting-master-credentials"`
5802
+ #
5803
+ # * `"storage-full"`
5804
+ #
5805
+ # * `"incompatible-credentials"`
5806
+ #
5807
+ # * `"incompatible-network"`
5808
+ #
5809
+ # * `"maintenance"`
4651
5810
  # @return [String]
4652
5811
  #
4653
5812
  # @!attribute [rw] allocated_storage
@@ -4744,7 +5903,8 @@ module Aws::DatabaseMigrationService
4744
5903
  # @return [Time]
4745
5904
  #
4746
5905
  # @!attribute [rw] dns_name_servers
4747
- # The DNS name servers for the replication instance.
5906
+ # The DNS name servers supported for the replication instance to
5907
+ # access your on-premise source or target database.
4748
5908
  # @return [String]
4749
5909
  #
4750
5910
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
@@ -4773,6 +5933,7 @@ module Aws::DatabaseMigrationService
4773
5933
  :secondary_availability_zone,
4774
5934
  :free_until,
4775
5935
  :dns_name_servers)
5936
+ SENSITIVE = []
4776
5937
  include Aws::Structure
4777
5938
  end
4778
5939
 
@@ -4796,6 +5957,7 @@ module Aws::DatabaseMigrationService
4796
5957
  :replication_task_name,
4797
5958
  :replication_task_arn,
4798
5959
  :replication_instance_task_log_size)
5960
+ SENSITIVE = []
4799
5961
  include Aws::Structure
4800
5962
  end
4801
5963
 
@@ -4804,11 +5966,16 @@ module Aws::DatabaseMigrationService
4804
5966
  # `ReplicationInstance` user-defined data type.
4805
5967
  #
4806
5968
  # @!attribute [rw] replication_instance_class
4807
- # The compute and memory capacity of the replication instance.
5969
+ # The compute and memory capacity of the replication instance as
5970
+ # defined for the specified replication instance class.
4808
5971
  #
4809
- # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
4810
- # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
4811
- # dms.c4.4xlarge `
5972
+ # For more information on the settings and capacities for the
5973
+ # available replication instance classes, see [ Selecting the right
5974
+ # AWS DMS replication instance for your migration][1].
5975
+ #
5976
+ #
5977
+ #
5978
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
4812
5979
  # @return [String]
4813
5980
  #
4814
5981
  # @!attribute [rw] allocated_storage
@@ -4833,6 +6000,7 @@ module Aws::DatabaseMigrationService
4833
6000
  :allocated_storage,
4834
6001
  :multi_az,
4835
6002
  :engine_version)
6003
+ SENSITIVE = []
4836
6004
  include Aws::Structure
4837
6005
  end
4838
6006
 
@@ -4867,6 +6035,7 @@ module Aws::DatabaseMigrationService
4867
6035
  :vpc_id,
4868
6036
  :subnet_group_status,
4869
6037
  :subnets)
6038
+ SENSITIVE = []
4870
6039
  include Aws::Structure
4871
6040
  end
4872
6041
 
@@ -4880,6 +6049,7 @@ module Aws::DatabaseMigrationService
4880
6049
  #
4881
6050
  class ReplicationSubnetGroupDoesNotCoverEnoughAZs < Struct.new(
4882
6051
  :message)
6052
+ SENSITIVE = []
4883
6053
  include Aws::Structure
4884
6054
  end
4885
6055
 
@@ -4891,7 +6061,7 @@ module Aws::DatabaseMigrationService
4891
6061
  #
4892
6062
  # Constraints:
4893
6063
  #
4894
- # * Must contain from 1 to 255 alphanumeric characters or hyphens.
6064
+ # * Must contain 1-255 alphanumeric characters or hyphens.
4895
6065
  #
4896
6066
  # * First character must be a letter.
4897
6067
  #
@@ -4934,7 +6104,21 @@ module Aws::DatabaseMigrationService
4934
6104
  # @return [String]
4935
6105
  #
4936
6106
  # @!attribute [rw] stop_reason
4937
- # The reason the replication task was stopped.
6107
+ # The reason the replication task was stopped. This response parameter
6108
+ # can return one of the following values:
6109
+ #
6110
+ # * `"STOP_REASON_FULL_LOAD_COMPLETED"` – Full-load migration
6111
+ # completed.
6112
+ #
6113
+ # * `"STOP_REASON_CACHED_CHANGES_APPLIED"` – Change data capture (CDC)
6114
+ # load completed.
6115
+ #
6116
+ # * `"STOP_REASON_CACHED_CHANGES_NOT_APPLIED"` – In a full-load and
6117
+ # CDC migration, the full-load stopped as specified before starting
6118
+ # the CDC migration.
6119
+ #
6120
+ # * `"STOP_REASON_SERVER_TIME"` – The migration stopped at the
6121
+ # specified server time.
4938
6122
  # @return [String]
4939
6123
  #
4940
6124
  # @!attribute [rw] replication_task_creation_date
@@ -4992,7 +6176,7 @@ module Aws::DatabaseMigrationService
4992
6176
  # Supplemental information that the task requires to migrate the data
4993
6177
  # for certain source and target endpoints. For more information, see
4994
6178
  # [Specifying Supplemental Data for Task Settings][1] in the *AWS
4995
- # Database Migration User Guide.*
6179
+ # Database Migration Service User Guide.*
4996
6180
  #
4997
6181
  #
4998
6182
  #
@@ -5020,6 +6204,7 @@ module Aws::DatabaseMigrationService
5020
6204
  :replication_task_arn,
5021
6205
  :replication_task_stats,
5022
6206
  :task_data)
6207
+ SENSITIVE = []
5023
6208
  include Aws::Structure
5024
6209
  end
5025
6210
 
@@ -5064,6 +6249,190 @@ module Aws::DatabaseMigrationService
5064
6249
  :assessment_results_file,
5065
6250
  :assessment_results,
5066
6251
  :s3_object_url)
6252
+ SENSITIVE = []
6253
+ include Aws::Structure
6254
+ end
6255
+
6256
+ # Provides information that describes a premigration assessment run that
6257
+ # you have started using the `StartReplicationTaskAssessmentRun`
6258
+ # operation.
6259
+ #
6260
+ # Some of the information appears based on other operations that can
6261
+ # return the `ReplicationTaskAssessmentRun` object.
6262
+ #
6263
+ # @!attribute [rw] replication_task_assessment_run_arn
6264
+ # Amazon Resource Name (ARN) of this assessment run.
6265
+ # @return [String]
6266
+ #
6267
+ # @!attribute [rw] replication_task_arn
6268
+ # ARN of the migration task associated with this premigration
6269
+ # assessment run.
6270
+ # @return [String]
6271
+ #
6272
+ # @!attribute [rw] status
6273
+ # Assessment run status.
6274
+ #
6275
+ # This status can have one of the following values:
6276
+ #
6277
+ # * `"cancelling"` – The assessment run was canceled by the
6278
+ # `CancelReplicationTaskAssessmentRun` operation.
6279
+ #
6280
+ # * `"deleting"` – The assessment run was deleted by the
6281
+ # `DeleteReplicationTaskAssessmentRun` operation.
6282
+ #
6283
+ # * `"failed"` – At least one individual assessment completed with a
6284
+ # `failed` status.
6285
+ #
6286
+ # * `"error-provisioning"` – An internal error occurred while
6287
+ # resources were provisioned (during `provisioning` status).
6288
+ #
6289
+ # * `"error-executing"` – An internal error occurred while individual
6290
+ # assessments ran (during `running` status).
6291
+ #
6292
+ # * `"invalid state"` – The assessment run is in an unknown state.
6293
+ #
6294
+ # * `"passed"` – All individual assessments have completed, and none
6295
+ # has a `failed` status.
6296
+ #
6297
+ # * `"provisioning"` – Resources required to run individual
6298
+ # assessments are being provisioned.
6299
+ #
6300
+ # * `"running"` – Individual assessments are being run.
6301
+ #
6302
+ # * `"starting"` – The assessment run is starting, but resources are
6303
+ # not yet being provisioned for individual assessments.
6304
+ # @return [String]
6305
+ #
6306
+ # @!attribute [rw] replication_task_assessment_run_creation_date
6307
+ # Date on which the assessment run was created using the
6308
+ # `StartReplicationTaskAssessmentRun` operation.
6309
+ # @return [Time]
6310
+ #
6311
+ # @!attribute [rw] assessment_progress
6312
+ # Indication of the completion progress for the individual assessments
6313
+ # specified to run.
6314
+ # @return [Types::ReplicationTaskAssessmentRunProgress]
6315
+ #
6316
+ # @!attribute [rw] last_failure_message
6317
+ # Last message generated by an individual assessment failure.
6318
+ # @return [String]
6319
+ #
6320
+ # @!attribute [rw] service_access_role_arn
6321
+ # ARN of the service role used to start the assessment run using the
6322
+ # `StartReplicationTaskAssessmentRun` operation.
6323
+ # @return [String]
6324
+ #
6325
+ # @!attribute [rw] result_location_bucket
6326
+ # Amazon S3 bucket where AWS DMS stores the results of this assessment
6327
+ # run.
6328
+ # @return [String]
6329
+ #
6330
+ # @!attribute [rw] result_location_folder
6331
+ # Folder in an Amazon S3 bucket where AWS DMS stores the results of
6332
+ # this assessment run.
6333
+ # @return [String]
6334
+ #
6335
+ # @!attribute [rw] result_encryption_mode
6336
+ # Encryption mode used to encrypt the assessment run results.
6337
+ # @return [String]
6338
+ #
6339
+ # @!attribute [rw] result_kms_key_arn
6340
+ # ARN of the AWS KMS encryption key used to encrypt the assessment run
6341
+ # results.
6342
+ # @return [String]
6343
+ #
6344
+ # @!attribute [rw] assessment_run_name
6345
+ # Unique name of the assessment run.
6346
+ # @return [String]
6347
+ #
6348
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRun AWS API Documentation
6349
+ #
6350
+ class ReplicationTaskAssessmentRun < Struct.new(
6351
+ :replication_task_assessment_run_arn,
6352
+ :replication_task_arn,
6353
+ :status,
6354
+ :replication_task_assessment_run_creation_date,
6355
+ :assessment_progress,
6356
+ :last_failure_message,
6357
+ :service_access_role_arn,
6358
+ :result_location_bucket,
6359
+ :result_location_folder,
6360
+ :result_encryption_mode,
6361
+ :result_kms_key_arn,
6362
+ :assessment_run_name)
6363
+ SENSITIVE = []
6364
+ include Aws::Structure
6365
+ end
6366
+
6367
+ # The progress values reported by the `AssessmentProgress` response
6368
+ # element.
6369
+ #
6370
+ # @!attribute [rw] individual_assessment_count
6371
+ # The number of individual assessments that are specified to run.
6372
+ # @return [Integer]
6373
+ #
6374
+ # @!attribute [rw] individual_assessment_completed_count
6375
+ # The number of individual assessments that have completed,
6376
+ # successfully or not.
6377
+ # @return [Integer]
6378
+ #
6379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskAssessmentRunProgress AWS API Documentation
6380
+ #
6381
+ class ReplicationTaskAssessmentRunProgress < Struct.new(
6382
+ :individual_assessment_count,
6383
+ :individual_assessment_completed_count)
6384
+ SENSITIVE = []
6385
+ include Aws::Structure
6386
+ end
6387
+
6388
+ # Provides information that describes an individual assessment from a
6389
+ # premigration assessment run.
6390
+ #
6391
+ # @!attribute [rw] replication_task_individual_assessment_arn
6392
+ # Amazon Resource Name (ARN) of this individual assessment.
6393
+ # @return [String]
6394
+ #
6395
+ # @!attribute [rw] replication_task_assessment_run_arn
6396
+ # ARN of the premigration assessment run that is created to run this
6397
+ # individual assessment.
6398
+ # @return [String]
6399
+ #
6400
+ # @!attribute [rw] individual_assessment_name
6401
+ # Name of this individual assessment.
6402
+ # @return [String]
6403
+ #
6404
+ # @!attribute [rw] status
6405
+ # Individual assessment status.
6406
+ #
6407
+ # This status can have one of the following values:
6408
+ #
6409
+ # * `"cancelled"`
6410
+ #
6411
+ # * `"error"`
6412
+ #
6413
+ # * `"failed"`
6414
+ #
6415
+ # * `"passed"`
6416
+ #
6417
+ # * `"pending"`
6418
+ #
6419
+ # * `"running"`
6420
+ # @return [String]
6421
+ #
6422
+ # @!attribute [rw] replication_task_individual_assessment_start_date
6423
+ # Date when this individual assessment was started as part of running
6424
+ # the `StartReplicationTaskAssessmentRun` operation.
6425
+ # @return [Time]
6426
+ #
6427
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationTaskIndividualAssessment AWS API Documentation
6428
+ #
6429
+ class ReplicationTaskIndividualAssessment < Struct.new(
6430
+ :replication_task_individual_assessment_arn,
6431
+ :replication_task_assessment_run_arn,
6432
+ :individual_assessment_name,
6433
+ :status,
6434
+ :replication_task_individual_assessment_start_date)
6435
+ SENSITIVE = []
5067
6436
  include Aws::Structure
5068
6437
  end
5069
6438
 
@@ -5136,6 +6505,7 @@ module Aws::DatabaseMigrationService
5136
6505
  :stop_date,
5137
6506
  :full_load_start_date,
5138
6507
  :full_load_finish_date)
6508
+ SENSITIVE = []
5139
6509
  include Aws::Structure
5140
6510
  end
5141
6511
 
@@ -5152,6 +6522,7 @@ module Aws::DatabaseMigrationService
5152
6522
  class ResourceAlreadyExistsFault < Struct.new(
5153
6523
  :message,
5154
6524
  :resource_arn)
6525
+ SENSITIVE = []
5155
6526
  include Aws::Structure
5156
6527
  end
5157
6528
 
@@ -5164,6 +6535,7 @@ module Aws::DatabaseMigrationService
5164
6535
  #
5165
6536
  class ResourceNotFoundFault < Struct.new(
5166
6537
  :message)
6538
+ SENSITIVE = []
5167
6539
  include Aws::Structure
5168
6540
  end
5169
6541
 
@@ -5189,6 +6561,7 @@ module Aws::DatabaseMigrationService
5189
6561
  class ResourcePendingMaintenanceActions < Struct.new(
5190
6562
  :resource_identifier,
5191
6563
  :pending_maintenance_action_details)
6564
+ SENSITIVE = []
5192
6565
  include Aws::Structure
5193
6566
  end
5194
6567
 
@@ -5201,6 +6574,34 @@ module Aws::DatabaseMigrationService
5201
6574
  #
5202
6575
  class ResourceQuotaExceededFault < Struct.new(
5203
6576
  :message)
6577
+ SENSITIVE = []
6578
+ include Aws::Structure
6579
+ end
6580
+
6581
+ # Insufficient privileges are preventing access to an Amazon S3 object.
6582
+ #
6583
+ # @!attribute [rw] message
6584
+ # @return [String]
6585
+ #
6586
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3AccessDeniedFault AWS API Documentation
6587
+ #
6588
+ class S3AccessDeniedFault < Struct.new(
6589
+ :message)
6590
+ SENSITIVE = []
6591
+ include Aws::Structure
6592
+ end
6593
+
6594
+ # A specified Amazon S3 bucket, bucket folder, or other object can't be
6595
+ # found.
6596
+ #
6597
+ # @!attribute [rw] message
6598
+ # @return [String]
6599
+ #
6600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/S3ResourceNotFoundFault AWS API Documentation
6601
+ #
6602
+ class S3ResourceNotFoundFault < Struct.new(
6603
+ :message)
6604
+ SENSITIVE = []
5204
6605
  include Aws::Structure
5205
6606
  end
5206
6607
 
@@ -5564,6 +6965,7 @@ module Aws::DatabaseMigrationService
5564
6965
  :timestamp_column_name,
5565
6966
  :parquet_timestamp_in_millisecond,
5566
6967
  :cdc_inserts_and_updates)
6968
+ SENSITIVE = []
5567
6969
  include Aws::Structure
5568
6970
  end
5569
6971
 
@@ -5576,6 +6978,7 @@ module Aws::DatabaseMigrationService
5576
6978
  #
5577
6979
  class SNSInvalidTopicFault < Struct.new(
5578
6980
  :message)
6981
+ SENSITIVE = []
5579
6982
  include Aws::Structure
5580
6983
  end
5581
6984
 
@@ -5588,6 +6991,7 @@ module Aws::DatabaseMigrationService
5588
6991
  #
5589
6992
  class SNSNoAuthorizationFault < Struct.new(
5590
6993
  :message)
6994
+ SENSITIVE = []
5591
6995
  include Aws::Structure
5592
6996
  end
5593
6997
 
@@ -5606,6 +7010,7 @@ module Aws::DatabaseMigrationService
5606
7010
  #
5607
7011
  class StartReplicationTaskAssessmentMessage < Struct.new(
5608
7012
  :replication_task_arn)
7013
+ SENSITIVE = []
5609
7014
  include Aws::Structure
5610
7015
  end
5611
7016
 
@@ -5617,6 +7022,126 @@ module Aws::DatabaseMigrationService
5617
7022
  #
5618
7023
  class StartReplicationTaskAssessmentResponse < Struct.new(
5619
7024
  :replication_task)
7025
+ SENSITIVE = []
7026
+ include Aws::Structure
7027
+ end
7028
+
7029
+ # @note When making an API call, you may pass StartReplicationTaskAssessmentRunMessage
7030
+ # data as a hash:
7031
+ #
7032
+ # {
7033
+ # replication_task_arn: "String", # required
7034
+ # service_access_role_arn: "String", # required
7035
+ # result_location_bucket: "String", # required
7036
+ # result_location_folder: "String",
7037
+ # result_encryption_mode: "String",
7038
+ # result_kms_key_arn: "String",
7039
+ # assessment_run_name: "String", # required
7040
+ # include_only: ["String"],
7041
+ # exclude: ["String"],
7042
+ # }
7043
+ #
7044
+ # @!attribute [rw] replication_task_arn
7045
+ # Amazon Resource Name (ARN) of the migration task associated with the
7046
+ # premigration assessment run that you want to start.
7047
+ # @return [String]
7048
+ #
7049
+ # @!attribute [rw] service_access_role_arn
7050
+ # ARN of a service role needed to start the assessment run.
7051
+ # @return [String]
7052
+ #
7053
+ # @!attribute [rw] result_location_bucket
7054
+ # Amazon S3 bucket where you want AWS DMS to store the results of this
7055
+ # assessment run.
7056
+ # @return [String]
7057
+ #
7058
+ # @!attribute [rw] result_location_folder
7059
+ # Folder within an Amazon S3 bucket where you want AWS DMS to store
7060
+ # the results of this assessment run.
7061
+ # @return [String]
7062
+ #
7063
+ # @!attribute [rw] result_encryption_mode
7064
+ # Encryption mode that you can specify to encrypt the results of this
7065
+ # assessment run. If you don't specify this request parameter, AWS
7066
+ # DMS stores the assessment run results without encryption. You can
7067
+ # specify one of the options following:
7068
+ #
7069
+ # * `"SSE_S3"` – The server-side encryption provided as a default by
7070
+ # Amazon S3.
7071
+ #
7072
+ # * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption.
7073
+ # This encryption can use either a custom KMS encryption key that
7074
+ # you specify or the default KMS encryption key that DMS provides.
7075
+ # @return [String]
7076
+ #
7077
+ # @!attribute [rw] result_kms_key_arn
7078
+ # ARN of a custom KMS encryption key that you specify when you set
7079
+ # `ResultEncryptionMode` to `"SSE_KMS`".
7080
+ # @return [String]
7081
+ #
7082
+ # @!attribute [rw] assessment_run_name
7083
+ # Unique name to identify the assessment run.
7084
+ # @return [String]
7085
+ #
7086
+ # @!attribute [rw] include_only
7087
+ # Space-separated list of names for specific individual assessments
7088
+ # that you want to include. These names come from the default list of
7089
+ # individual assessments that AWS DMS supports for the associated
7090
+ # migration task. This task is specified by `ReplicationTaskArn`.
7091
+ #
7092
+ # <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
7093
+ # `Exclude` in the API operation.
7094
+ #
7095
+ # To identify the names of the default individual assessments that AWS
7096
+ # DMS supports for the associated migration task, run the
7097
+ # `DescribeApplicableIndividualAssessments` operation using its own
7098
+ # `ReplicationTaskArn` request parameter.
7099
+ #
7100
+ # </note>
7101
+ # @return [Array<String>]
7102
+ #
7103
+ # @!attribute [rw] exclude
7104
+ # Space-separated list of names for specific individual assessments
7105
+ # that you want to exclude. These names come from the default list of
7106
+ # individual assessments that AWS DMS supports for the associated
7107
+ # migration task. This task is specified by `ReplicationTaskArn`.
7108
+ #
7109
+ # <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
7110
+ # `IncludeOnly` in the API operation.
7111
+ #
7112
+ # To identify the names of the default individual assessments that AWS
7113
+ # DMS supports for the associated migration task, run the
7114
+ # `DescribeApplicableIndividualAssessments` operation using its own
7115
+ # `ReplicationTaskArn` request parameter.
7116
+ #
7117
+ # </note>
7118
+ # @return [Array<String>]
7119
+ #
7120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRunMessage AWS API Documentation
7121
+ #
7122
+ class StartReplicationTaskAssessmentRunMessage < Struct.new(
7123
+ :replication_task_arn,
7124
+ :service_access_role_arn,
7125
+ :result_location_bucket,
7126
+ :result_location_folder,
7127
+ :result_encryption_mode,
7128
+ :result_kms_key_arn,
7129
+ :assessment_run_name,
7130
+ :include_only,
7131
+ :exclude)
7132
+ SENSITIVE = []
7133
+ include Aws::Structure
7134
+ end
7135
+
7136
+ # @!attribute [rw] replication_task_assessment_run
7137
+ # The premigration assessment run that was started.
7138
+ # @return [Types::ReplicationTaskAssessmentRun]
7139
+ #
7140
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRunResponse AWS API Documentation
7141
+ #
7142
+ class StartReplicationTaskAssessmentRunResponse < Struct.new(
7143
+ :replication_task_assessment_run)
7144
+ SENSITIVE = []
5620
7145
  include Aws::Structure
5621
7146
  end
5622
7147
 
@@ -5697,6 +7222,7 @@ module Aws::DatabaseMigrationService
5697
7222
  :cdc_start_time,
5698
7223
  :cdc_start_position,
5699
7224
  :cdc_stop_position)
7225
+ SENSITIVE = []
5700
7226
  include Aws::Structure
5701
7227
  end
5702
7228
 
@@ -5708,6 +7234,7 @@ module Aws::DatabaseMigrationService
5708
7234
  #
5709
7235
  class StartReplicationTaskResponse < Struct.new(
5710
7236
  :replication_task)
7237
+ SENSITIVE = []
5711
7238
  include Aws::Structure
5712
7239
  end
5713
7240
 
@@ -5726,6 +7253,7 @@ module Aws::DatabaseMigrationService
5726
7253
  #
5727
7254
  class StopReplicationTaskMessage < Struct.new(
5728
7255
  :replication_task_arn)
7256
+ SENSITIVE = []
5729
7257
  include Aws::Structure
5730
7258
  end
5731
7259
 
@@ -5737,6 +7265,7 @@ module Aws::DatabaseMigrationService
5737
7265
  #
5738
7266
  class StopReplicationTaskResponse < Struct.new(
5739
7267
  :replication_task)
7268
+ SENSITIVE = []
5740
7269
  include Aws::Structure
5741
7270
  end
5742
7271
 
@@ -5749,6 +7278,7 @@ module Aws::DatabaseMigrationService
5749
7278
  #
5750
7279
  class StorageQuotaExceededFault < Struct.new(
5751
7280
  :message)
7281
+ SENSITIVE = []
5752
7282
  include Aws::Structure
5753
7283
  end
5754
7284
 
@@ -5774,6 +7304,7 @@ module Aws::DatabaseMigrationService
5774
7304
  :subnet_identifier,
5775
7305
  :subnet_availability_zone,
5776
7306
  :subnet_status)
7307
+ SENSITIVE = []
5777
7308
  include Aws::Structure
5778
7309
  end
5779
7310
 
@@ -5786,6 +7317,7 @@ module Aws::DatabaseMigrationService
5786
7317
  #
5787
7318
  class SubnetAlreadyInUse < Struct.new(
5788
7319
  :message)
7320
+ SENSITIVE = []
5789
7321
  include Aws::Structure
5790
7322
  end
5791
7323
 
@@ -5799,8 +7331,8 @@ module Aws::DatabaseMigrationService
5799
7331
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
5800
7332
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`,
5801
7333
  # `"s3"`, `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
5802
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
5803
- # `"sqlserver"`.
7334
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
7335
+ # `"sqlserver"`, and `"neptune"`.
5804
7336
  # @return [String]
5805
7337
  #
5806
7338
  # @!attribute [rw] supports_cdc
@@ -5831,6 +7363,52 @@ module Aws::DatabaseMigrationService
5831
7363
  :endpoint_type,
5832
7364
  :replication_instance_engine_minimum_version,
5833
7365
  :engine_display_name)
7366
+ SENSITIVE = []
7367
+ include Aws::Structure
7368
+ end
7369
+
7370
+ # Provides information that defines a SAP ASE endpoint.
7371
+ #
7372
+ # @note When making an API call, you may pass SybaseSettings
7373
+ # data as a hash:
7374
+ #
7375
+ # {
7376
+ # database_name: "String",
7377
+ # password: "SecretString",
7378
+ # port: 1,
7379
+ # server_name: "String",
7380
+ # username: "String",
7381
+ # }
7382
+ #
7383
+ # @!attribute [rw] database_name
7384
+ # Database name for the endpoint.
7385
+ # @return [String]
7386
+ #
7387
+ # @!attribute [rw] password
7388
+ # Endpoint connection password.
7389
+ # @return [String]
7390
+ #
7391
+ # @!attribute [rw] port
7392
+ # Endpoint TCP port.
7393
+ # @return [Integer]
7394
+ #
7395
+ # @!attribute [rw] server_name
7396
+ # Fully qualified domain name of the endpoint.
7397
+ # @return [String]
7398
+ #
7399
+ # @!attribute [rw] username
7400
+ # Endpoint connection user name.
7401
+ # @return [String]
7402
+ #
7403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/SybaseSettings AWS API Documentation
7404
+ #
7405
+ class SybaseSettings < Struct.new(
7406
+ :database_name,
7407
+ :password,
7408
+ :port,
7409
+ :server_name,
7410
+ :username)
7411
+ SENSITIVE = [:password]
5834
7412
  include Aws::Structure
5835
7413
  end
5836
7414
 
@@ -5970,6 +7548,7 @@ module Aws::DatabaseMigrationService
5970
7548
  :validation_suspended_records,
5971
7549
  :validation_state,
5972
7550
  :validation_state_details)
7551
+ SENSITIVE = []
5973
7552
  include Aws::Structure
5974
7553
  end
5975
7554
 
@@ -5979,8 +7558,8 @@ module Aws::DatabaseMigrationService
5979
7558
  # data as a hash:
5980
7559
  #
5981
7560
  # {
5982
- # schema_name: "String",
5983
- # table_name: "String",
7561
+ # schema_name: "String", # required
7562
+ # table_name: "String", # required
5984
7563
  # }
5985
7564
  #
5986
7565
  # @!attribute [rw] schema_name
@@ -5996,6 +7575,7 @@ module Aws::DatabaseMigrationService
5996
7575
  class TableToReload < Struct.new(
5997
7576
  :schema_name,
5998
7577
  :table_name)
7578
+ SENSITIVE = []
5999
7579
  include Aws::Structure
6000
7580
  end
6001
7581
 
@@ -6017,20 +7597,20 @@ module Aws::DatabaseMigrationService
6017
7597
  # }
6018
7598
  #
6019
7599
  # @!attribute [rw] key
6020
- # A key is the required name of the tag. The string value can be from
6021
- # 1 to 128 Unicode characters in length and can't be prefixed with
6022
- # "aws:" or "dms:". The string can only contain only the set of
6023
- # Unicode letters, digits, white-space, '\_', '.', '/', '=',
6024
- # '+', '-' (Java regex:
7600
+ # A key is the required name of the tag. The string value can be 1-128
7601
+ # Unicode characters in length and can't be prefixed with "aws:" or
7602
+ # "dms:". The string can only contain only the set of Unicode
7603
+ # letters, digits, white-space, '\_', '.', '/', '=', '+',
7604
+ # '-' (Java regular expressions:
6025
7605
  # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
6026
7606
  # @return [String]
6027
7607
  #
6028
7608
  # @!attribute [rw] value
6029
7609
  # A value is the optional value of the tag. The string value can be
6030
- # from 1 to 256 Unicode characters in length and can't be prefixed
6031
- # with "aws:" or "dms:". The string can only contain only the set
6032
- # of Unicode letters, digits, white-space, '\_', '.', '/',
6033
- # '=', '+', '-' (Java regex:
7610
+ # 1-256 Unicode characters in length and can't be prefixed with
7611
+ # "aws:" or "dms:". The string can only contain only the set of
7612
+ # Unicode letters, digits, white-space, '\_', '.', '/', '=',
7613
+ # '+', '-' (Java regular expressions:
6034
7614
  # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
6035
7615
  # @return [String]
6036
7616
  #
@@ -6039,6 +7619,7 @@ module Aws::DatabaseMigrationService
6039
7619
  class Tag < Struct.new(
6040
7620
  :key,
6041
7621
  :value)
7622
+ SENSITIVE = []
6042
7623
  include Aws::Structure
6043
7624
  end
6044
7625
 
@@ -6064,6 +7645,7 @@ module Aws::DatabaseMigrationService
6064
7645
  class TestConnectionMessage < Struct.new(
6065
7646
  :replication_instance_arn,
6066
7647
  :endpoint_arn)
7648
+ SENSITIVE = []
6067
7649
  include Aws::Structure
6068
7650
  end
6069
7651
 
@@ -6075,6 +7657,7 @@ module Aws::DatabaseMigrationService
6075
7657
  #
6076
7658
  class TestConnectionResponse < Struct.new(
6077
7659
  :connection)
7660
+ SENSITIVE = []
6078
7661
  include Aws::Structure
6079
7662
  end
6080
7663
 
@@ -6087,14 +7670,15 @@ module Aws::DatabaseMigrationService
6087
7670
  #
6088
7671
  class UpgradeDependencyFailureFault < Struct.new(
6089
7672
  :message)
7673
+ SENSITIVE = []
6090
7674
  include Aws::Structure
6091
7675
  end
6092
7676
 
6093
- # Describes status of a security group associated with the virtual
6094
- # private cloud hosting your replication and DB instances.
7677
+ # Describes the status of a security group associated with the virtual
7678
+ # private cloud (VPC) hosting your replication and DB instances.
6095
7679
  #
6096
7680
  # @!attribute [rw] vpc_security_group_id
6097
- # The VPC security group Id.
7681
+ # The VPC security group ID.
6098
7682
  # @return [String]
6099
7683
  #
6100
7684
  # @!attribute [rw] status
@@ -6106,6 +7690,7 @@ module Aws::DatabaseMigrationService
6106
7690
  class VpcSecurityGroupMembership < Struct.new(
6107
7691
  :vpc_security_group_id,
6108
7692
  :status)
7693
+ SENSITIVE = []
6109
7694
  include Aws::Structure
6110
7695
  end
6111
7696