aws-sdk-databasemigrationservice 1.35.1 → 1.41.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff65e12847cf7080ed5ad4c651e1f3adcdb4cc194793dbb706ce863ca2379d91
4
- data.tar.gz: 24e85c0dc11e95f0a51243ffae6bb007c0019324e39c3c4877c2cc0fd8381ef5
3
+ metadata.gz: e74e0a88b2440fd5034e6af92328756ca9e99b227f1f8136ede174763e4d3fdf
4
+ data.tar.gz: c59031b6ca5cbbf548e4bf67c9fe958b3cce334117e7b534047a706aad5b943d
5
5
  SHA512:
6
- metadata.gz: df25e51f86203ec91e5b10d7f34a7ff14978b57f230af95cfe0ef001a63232af68d2e1730e844b7c2d52104e7a8152409d74eb95dc68f309a1cab6d1d17738b8
7
- data.tar.gz: 3fd62f5f4974b102a6126f28ef631218ce824be7a0e23dc6180d6f4736ff5dc3adeb88e098b33a72577b8e3881da8b3abb907e027d4c3f46d55baa498528c18c
6
+ metadata.gz: add8f5c06110f0c4664837bb5e64c67a6ca783744e263310f7415a1f72580fb75bb57e81f27ae426538d1c5fdc09aa187f0e0a7676fcb5a55c0b0909907dfcaa
7
+ data.tar.gz: 26607bc975c19ee2228dc8310a7d2da45dd66f60a82ceac3d0458b432e17ae30f626fe7423be0147bc7e701dbe3258288eb39ac02a99ff0b7e98593923ec5dd3
@@ -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:
@@ -43,9 +45,9 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
43
45
  #
44
46
  # See {Errors} for more information.
45
47
  #
46
- # @service
48
+ # @!group service
47
49
  module Aws::DatabaseMigrationService
48
50
 
49
- GEM_VERSION = '1.35.1'
51
+ GEM_VERSION = '1.41.0'
50
52
 
51
53
  end
@@ -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:
@@ -83,13 +85,28 @@ module Aws::DatabaseMigrationService
83
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
84
86
  # credentials.
85
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
86
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
87
103
  # from an EC2 IMDS on an EC2 instance.
88
104
  #
89
- # * `Aws::SharedCredentials` - Used for loading credentials from a
90
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
91
107
  #
92
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
93
110
  #
94
111
  # When `:credentials` are not configured directly, the following
95
112
  # locations will be searched for credentials:
@@ -99,10 +116,10 @@ module Aws::DatabaseMigrationService
99
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
100
117
  # * `~/.aws/credentials`
101
118
  # * `~/.aws/config`
102
- # * EC2 IMDS instance profile - When used by default, the timeouts are
103
- # very aggressive. Construct and pass an instance of
104
- # `Aws::InstanceProfileCredentails` to enable retries and extended
105
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
106
123
  #
107
124
  # @option options [required, String] :region
108
125
  # The AWS region to connect to. The configured `:region` is
@@ -324,7 +341,11 @@ module Aws::DatabaseMigrationService
324
341
  # instance, endpoint, security group, and migration task. These tags can
325
342
  # also be used with cost allocation reporting to track cost associated
326
343
  # with DMS resources, or used in a Condition statement in an IAM policy
327
- # for DMS.
344
+ # for DMS. For more information, see [ `Tag` ][1] data type description.
345
+ #
346
+ #
347
+ #
348
+ # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
328
349
  #
329
350
  # @option params [required, String] :resource_arn
330
351
  # Identifies the AWS DMS resource to which tags should be added. The
@@ -436,12 +457,57 @@ module Aws::DatabaseMigrationService
436
457
  req.send_request(options)
437
458
  end
438
459
 
460
+ # Cancels a single premigration assessment run.
461
+ #
462
+ # This operation prevents any individual assessments from running if
463
+ # they haven't started running. It also attempts to cancel any
464
+ # individual assessments that are currently running.
465
+ #
466
+ # @option params [required, String] :replication_task_assessment_run_arn
467
+ # Amazon Resource Name (ARN) of the premigration assessment run to be
468
+ # canceled.
469
+ #
470
+ # @return [Types::CancelReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
471
+ #
472
+ # * {Types::CancelReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
473
+ #
474
+ # @example Request syntax with placeholder values
475
+ #
476
+ # resp = client.cancel_replication_task_assessment_run({
477
+ # replication_task_assessment_run_arn: "String", # required
478
+ # })
479
+ #
480
+ # @example Response structure
481
+ #
482
+ # resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
483
+ # resp.replication_task_assessment_run.replication_task_arn #=> String
484
+ # resp.replication_task_assessment_run.status #=> String
485
+ # resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
486
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
487
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
488
+ # resp.replication_task_assessment_run.last_failure_message #=> String
489
+ # resp.replication_task_assessment_run.service_access_role_arn #=> String
490
+ # resp.replication_task_assessment_run.result_location_bucket #=> String
491
+ # resp.replication_task_assessment_run.result_location_folder #=> String
492
+ # resp.replication_task_assessment_run.result_encryption_mode #=> String
493
+ # resp.replication_task_assessment_run.result_kms_key_arn #=> String
494
+ # resp.replication_task_assessment_run.assessment_run_name #=> String
495
+ #
496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRun AWS API Documentation
497
+ #
498
+ # @overload cancel_replication_task_assessment_run(params = {})
499
+ # @param [Hash] params ({})
500
+ def cancel_replication_task_assessment_run(params = {}, options = {})
501
+ req = build_request(:cancel_replication_task_assessment_run, params)
502
+ req.send_request(options)
503
+ end
504
+
439
505
  # Creates an endpoint using the provided settings.
440
506
  #
441
507
  # @option params [required, String] :endpoint_identifier
442
508
  # The database endpoint identifier. Identifiers must begin with a letter
443
509
  # and must contain only ASCII letters, digits, and hyphens. They can't
444
- # end with a hyphen or contain two consecutive hyphens.
510
+ # end with a hyphen, or contain two consecutive hyphens.
445
511
  #
446
512
  # @option params [required, String] :endpoint_type
447
513
  # The type of endpoint. Valid values are `source` and `target`.
@@ -451,8 +517,8 @@ module Aws::DatabaseMigrationService
451
517
  # `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
452
518
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
453
519
  # `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
454
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
455
- # `"sqlserver"`.
520
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"docdb"`, `"sqlserver"`,
521
+ # and `"neptune"`.
456
522
  #
457
523
  # @option params [String] :username
458
524
  # The user name to be used to log in to the endpoint database.
@@ -565,7 +631,8 @@ module Aws::DatabaseMigrationService
565
631
  # Settings in JSON format for the target endpoint for Amazon Kinesis
566
632
  # Data Streams. For more information about the available settings, see
567
633
  # [Using Amazon Kinesis Data Streams as a Target for AWS Database
568
- # Migration Service][1] in the *AWS Database Migration User Guide.*
634
+ # Migration Service][1] in the *AWS Database Migration Service User
635
+ # Guide.*
569
636
  #
570
637
  #
571
638
  #
@@ -575,7 +642,7 @@ module Aws::DatabaseMigrationService
575
642
  # Settings in JSON format for the target Apache Kafka endpoint. For more
576
643
  # information about the available settings, see [Using Apache Kafka as a
577
644
  # Target for AWS Database Migration Service][1] in the *AWS Database
578
- # Migration User Guide.*
645
+ # Migration Service User Guide.*
579
646
  #
580
647
  #
581
648
  #
@@ -585,7 +652,7 @@ module Aws::DatabaseMigrationService
585
652
  # Settings in JSON format for the target Elasticsearch endpoint. For
586
653
  # more information about the available settings, see [Extra Connection
587
654
  # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
588
- # *AWS Database Migration User Guide.*
655
+ # *AWS Database Migration Service User Guide*.
589
656
  #
590
657
  #
591
658
  #
@@ -593,9 +660,9 @@ module Aws::DatabaseMigrationService
593
660
  #
594
661
  # @option params [Types::NeptuneSettings] :neptune_settings
595
662
  # Settings in JSON format for the target Amazon Neptune endpoint. For
596
- # more information about the available settings, see
597
- # [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
598
- # in the *AWS Database Migration Service User Guide.*
663
+ # more information about the available settings, see [Specifying
664
+ # Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
665
+ # Database Migration Service User Guide.*
599
666
  #
600
667
  #
601
668
  #
@@ -604,6 +671,78 @@ module Aws::DatabaseMigrationService
604
671
  # @option params [Types::RedshiftSettings] :redshift_settings
605
672
  # Provides information that defines an Amazon Redshift endpoint.
606
673
  #
674
+ # @option params [Types::PostgreSQLSettings] :postgre_sql_settings
675
+ # Settings in JSON format for the source and target PostgreSQL endpoint.
676
+ # For information about other available settings, see [Extra connection
677
+ # attributes when using PostgreSQL as a source for AWS DMS][1] and [
678
+ # Extra connection attributes when using PostgreSQL as a target for AWS
679
+ # DMS][2] in the *AWS Database Migration Service User Guide.*
680
+ #
681
+ #
682
+ #
683
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html
684
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html
685
+ #
686
+ # @option params [Types::MySQLSettings] :my_sql_settings
687
+ # Settings in JSON format for the source and target MySQL endpoint. For
688
+ # information about other available settings, see [Extra connection
689
+ # attributes when using MySQL as a source for AWS DMS][1] and [Extra
690
+ # connection attributes when using a MySQL-compatible database as a
691
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
692
+ # Guide.*
693
+ #
694
+ #
695
+ #
696
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html
697
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html
698
+ #
699
+ # @option params [Types::OracleSettings] :oracle_settings
700
+ # Settings in JSON format for the source and target Oracle endpoint. For
701
+ # information about other available settings, see [Extra connection
702
+ # attributes when using Oracle as a source for AWS DMS][1] and [ Extra
703
+ # connection attributes when using Oracle as a target for AWS DMS][2] in
704
+ # the *AWS Database Migration Service User Guide.*
705
+ #
706
+ #
707
+ #
708
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html
709
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html
710
+ #
711
+ # @option params [Types::SybaseSettings] :sybase_settings
712
+ # Settings in JSON format for the source and target SAP ASE endpoint.
713
+ # For information about other available settings, see [Extra connection
714
+ # attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
715
+ # connection attributes when using SAP ASE as a target for AWS DMS][2]
716
+ # in the *AWS Database Migration Service User Guide.*
717
+ #
718
+ #
719
+ #
720
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html
721
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html
722
+ #
723
+ # @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
724
+ # Settings in JSON format for the source and target Microsoft SQL Server
725
+ # endpoint. For information about other available settings, see [Extra
726
+ # connection attributes when using SQL Server as a source for AWS
727
+ # DMS][1] and [ Extra connection attributes when using SQL Server as a
728
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
729
+ # Guide.*
730
+ #
731
+ #
732
+ #
733
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html
734
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html
735
+ #
736
+ # @option params [Types::IBMDb2Settings] :ibm_db_2_settings
737
+ # Settings in JSON format for the source IBM Db2 LUW endpoint. For
738
+ # information about other available settings, see [Extra connection
739
+ # attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
740
+ # Database Migration Service User Guide.*
741
+ #
742
+ #
743
+ #
744
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html
745
+ #
607
746
  # @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
608
747
  #
609
748
  # * {Types::CreateEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -725,10 +864,19 @@ module Aws::DatabaseMigrationService
725
864
  # partition_include_schema_table: false,
726
865
  # include_table_alter_operations: false,
727
866
  # include_control_details: false,
867
+ # include_null_and_empty: false,
728
868
  # },
729
869
  # kafka_settings: {
730
870
  # broker: "String",
731
871
  # topic: "String",
872
+ # message_format: "json", # accepts json, json-unformatted
873
+ # include_transaction_details: false,
874
+ # include_partition_value: false,
875
+ # partition_include_schema_table: false,
876
+ # include_table_alter_operations: false,
877
+ # include_control_details: false,
878
+ # message_max_bytes: 1,
879
+ # include_null_and_empty: false,
732
880
  # },
733
881
  # elasticsearch_settings: {
734
882
  # service_access_role_arn: "String", # required
@@ -772,6 +920,53 @@ module Aws::DatabaseMigrationService
772
920
  # username: "String",
773
921
  # write_buffer_size: 1,
774
922
  # },
923
+ # postgre_sql_settings: {
924
+ # database_name: "String",
925
+ # password: "SecretString",
926
+ # port: 1,
927
+ # server_name: "String",
928
+ # username: "String",
929
+ # },
930
+ # my_sql_settings: {
931
+ # database_name: "String",
932
+ # password: "SecretString",
933
+ # port: 1,
934
+ # server_name: "String",
935
+ # username: "String",
936
+ # },
937
+ # oracle_settings: {
938
+ # asm_password: "SecretString",
939
+ # asm_server: "String",
940
+ # asm_user: "String",
941
+ # database_name: "String",
942
+ # password: "SecretString",
943
+ # port: 1,
944
+ # security_db_encryption: "SecretString",
945
+ # security_db_encryption_name: "String",
946
+ # server_name: "String",
947
+ # username: "String",
948
+ # },
949
+ # sybase_settings: {
950
+ # database_name: "String",
951
+ # password: "SecretString",
952
+ # port: 1,
953
+ # server_name: "String",
954
+ # username: "String",
955
+ # },
956
+ # microsoft_sql_server_settings: {
957
+ # port: 1,
958
+ # database_name: "String",
959
+ # password: "SecretString",
960
+ # server_name: "String",
961
+ # username: "String",
962
+ # },
963
+ # ibm_db_2_settings: {
964
+ # database_name: "String",
965
+ # password: "SecretString",
966
+ # port: 1,
967
+ # server_name: "String",
968
+ # username: "String",
969
+ # },
775
970
  # })
776
971
  #
777
972
  # @example Response structure
@@ -837,8 +1032,17 @@ module Aws::DatabaseMigrationService
837
1032
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
838
1033
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
839
1034
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
1035
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
840
1036
  # resp.endpoint.kafka_settings.broker #=> String
841
1037
  # resp.endpoint.kafka_settings.topic #=> String
1038
+ # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
1039
+ # resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
1040
+ # resp.endpoint.kafka_settings.include_partition_value #=> Boolean
1041
+ # resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
1042
+ # resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
1043
+ # resp.endpoint.kafka_settings.include_control_details #=> Boolean
1044
+ # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
1045
+ # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
842
1046
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
843
1047
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
844
1048
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -875,6 +1079,41 @@ module Aws::DatabaseMigrationService
875
1079
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
876
1080
  # resp.endpoint.redshift_settings.username #=> String
877
1081
  # resp.endpoint.redshift_settings.write_buffer_size #=> Integer
1082
+ # resp.endpoint.postgre_sql_settings.database_name #=> String
1083
+ # resp.endpoint.postgre_sql_settings.password #=> String
1084
+ # resp.endpoint.postgre_sql_settings.port #=> Integer
1085
+ # resp.endpoint.postgre_sql_settings.server_name #=> String
1086
+ # resp.endpoint.postgre_sql_settings.username #=> String
1087
+ # resp.endpoint.my_sql_settings.database_name #=> String
1088
+ # resp.endpoint.my_sql_settings.password #=> String
1089
+ # resp.endpoint.my_sql_settings.port #=> Integer
1090
+ # resp.endpoint.my_sql_settings.server_name #=> String
1091
+ # resp.endpoint.my_sql_settings.username #=> String
1092
+ # resp.endpoint.oracle_settings.asm_password #=> String
1093
+ # resp.endpoint.oracle_settings.asm_server #=> String
1094
+ # resp.endpoint.oracle_settings.asm_user #=> String
1095
+ # resp.endpoint.oracle_settings.database_name #=> String
1096
+ # resp.endpoint.oracle_settings.password #=> String
1097
+ # resp.endpoint.oracle_settings.port #=> Integer
1098
+ # resp.endpoint.oracle_settings.security_db_encryption #=> String
1099
+ # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
1100
+ # resp.endpoint.oracle_settings.server_name #=> String
1101
+ # resp.endpoint.oracle_settings.username #=> String
1102
+ # resp.endpoint.sybase_settings.database_name #=> String
1103
+ # resp.endpoint.sybase_settings.password #=> String
1104
+ # resp.endpoint.sybase_settings.port #=> Integer
1105
+ # resp.endpoint.sybase_settings.server_name #=> String
1106
+ # resp.endpoint.sybase_settings.username #=> String
1107
+ # resp.endpoint.microsoft_sql_server_settings.port #=> Integer
1108
+ # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
1109
+ # resp.endpoint.microsoft_sql_server_settings.password #=> String
1110
+ # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
1111
+ # resp.endpoint.microsoft_sql_server_settings.username #=> String
1112
+ # resp.endpoint.ibm_db_2_settings.database_name #=> String
1113
+ # resp.endpoint.ibm_db_2_settings.password #=> String
1114
+ # resp.endpoint.ibm_db_2_settings.port #=> Integer
1115
+ # resp.endpoint.ibm_db_2_settings.server_name #=> String
1116
+ # resp.endpoint.ibm_db_2_settings.username #=> String
878
1117
  #
879
1118
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
880
1119
  #
@@ -1005,8 +1244,8 @@ module Aws::DatabaseMigrationService
1005
1244
  #
1006
1245
  #
1007
1246
  #
1008
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.APIRole.html
1009
- # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.IAMPermissions.html
1247
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.APIRole
1248
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.IAMPermissions
1010
1249
  #
1011
1250
  # @option params [required, String] :replication_instance_identifier
1012
1251
  # The replication instance identifier. This parameter is stored as a
@@ -1014,7 +1253,7 @@ module Aws::DatabaseMigrationService
1014
1253
  #
1015
1254
  # Constraints:
1016
1255
  #
1017
- # * Must contain from 1 to 63 alphanumeric characters or hyphens.
1256
+ # * Must contain 1-63 alphanumeric characters or hyphens.
1018
1257
  #
1019
1258
  # * First character must be a letter.
1020
1259
  #
@@ -1027,12 +1266,18 @@ module Aws::DatabaseMigrationService
1027
1266
  # replication instance.
1028
1267
  #
1029
1268
  # @option params [required, String] :replication_instance_class
1030
- # The compute and memory capacity of the replication instance as
1031
- # specified by the replication instance class.
1269
+ # The compute and memory capacity of the replication instance as defined
1270
+ # for the specified replication instance class. For example to specify
1271
+ # the instance class dms.c4.large, set this parameter to
1272
+ # `"dms.c4.large"`.
1273
+ #
1274
+ # For more information on the settings and capacities for the available
1275
+ # replication instance classes, see [ Selecting the right AWS DMS
1276
+ # replication instance for your migration][1].
1032
1277
  #
1033
- # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
1034
- # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
1035
- # dms.c4.4xlarge `
1278
+ #
1279
+ #
1280
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
1036
1281
  #
1037
1282
  # @option params [Array<String>] :vpc_security_group_ids
1038
1283
  # Specifies the VPC security group to be used with the replication
@@ -1068,6 +1313,10 @@ module Aws::DatabaseMigrationService
1068
1313
  # @option params [String] :engine_version
1069
1314
  # The engine version number of the replication instance.
1070
1315
  #
1316
+ # If an engine version number is not specified when a replication
1317
+ # instance is created, the default is the latest engine version
1318
+ # available.
1319
+ #
1071
1320
  # @option params [Boolean] :auto_minor_version_upgrade
1072
1321
  # A value that indicates whether minor engine upgrades are applied
1073
1322
  # automatically to the replication instance during the maintenance
@@ -1096,7 +1345,12 @@ module Aws::DatabaseMigrationService
1096
1345
  # default value is `true`.
1097
1346
  #
1098
1347
  # @option params [String] :dns_name_servers
1099
- # A list of DNS name servers supported for the replication instance.
1348
+ # A list of custom DNS name servers supported for the replication
1349
+ # instance to access your on-premise source or target database. This
1350
+ # list overrides the default name servers supported by the replication
1351
+ # instance. You can specify a comma-separated list of internet addresses
1352
+ # for up to four on-premise DNS name servers. For example:
1353
+ # `"1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4"`
1100
1354
  #
1101
1355
  # @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1102
1356
  #
@@ -1348,7 +1602,7 @@ module Aws::DatabaseMigrationService
1348
1602
  #
1349
1603
  # Constraints:
1350
1604
  #
1351
- # * Must contain from 1 to 255 alphanumeric characters or hyphens.
1605
+ # * Must contain 1-255 alphanumeric characters or hyphens.
1352
1606
  #
1353
1607
  # * First character must be a letter.
1354
1608
  #
@@ -1372,7 +1626,7 @@ module Aws::DatabaseMigrationService
1372
1626
  # @option params [required, String] :table_mappings
1373
1627
  # The table mappings for the task, in JSON format. For more information,
1374
1628
  # see [Using Table Mapping to Specify Task Settings][1] in the *AWS
1375
- # Database Migration User Guide.*
1629
+ # Database Migration Service User Guide.*
1376
1630
  #
1377
1631
  #
1378
1632
  #
@@ -1427,10 +1681,10 @@ module Aws::DatabaseMigrationService
1427
1681
  # The value can be either server time or commit time.
1428
1682
  #
1429
1683
  # Server time example: --cdc-stop-position
1430
- # “server\_time:3018-02-09T12:12:12”
1684
+ # “server\_time:2018-02-09T12:12:12”
1431
1685
  #
1432
1686
  # Commit time example: --cdc-stop-position “commit\_time:
1433
- # 3018-02-09T12:12:12 “
1687
+ # 2018-02-09T12:12:12 “
1434
1688
  #
1435
1689
  # @option params [Array<Types::Tag>] :tags
1436
1690
  # One or more tags to be assigned to the replication task.
@@ -1439,7 +1693,7 @@ module Aws::DatabaseMigrationService
1439
1693
  # Supplemental information that the task requires to migrate the data
1440
1694
  # for certain source and target endpoints. For more information, see
1441
1695
  # [Specifying Supplemental Data for Task Settings][1] in the *AWS
1442
- # Database Migration User Guide.*
1696
+ # Database Migration Service User Guide.*
1443
1697
  #
1444
1698
  #
1445
1699
  #
@@ -1764,8 +2018,17 @@ module Aws::DatabaseMigrationService
1764
2018
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
1765
2019
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
1766
2020
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
2021
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
1767
2022
  # resp.endpoint.kafka_settings.broker #=> String
1768
2023
  # resp.endpoint.kafka_settings.topic #=> String
2024
+ # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
2025
+ # resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
2026
+ # resp.endpoint.kafka_settings.include_partition_value #=> Boolean
2027
+ # resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
2028
+ # resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
2029
+ # resp.endpoint.kafka_settings.include_control_details #=> Boolean
2030
+ # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
2031
+ # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
1769
2032
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1770
2033
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1771
2034
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -1802,6 +2065,41 @@ module Aws::DatabaseMigrationService
1802
2065
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
1803
2066
  # resp.endpoint.redshift_settings.username #=> String
1804
2067
  # resp.endpoint.redshift_settings.write_buffer_size #=> Integer
2068
+ # resp.endpoint.postgre_sql_settings.database_name #=> String
2069
+ # resp.endpoint.postgre_sql_settings.password #=> String
2070
+ # resp.endpoint.postgre_sql_settings.port #=> Integer
2071
+ # resp.endpoint.postgre_sql_settings.server_name #=> String
2072
+ # resp.endpoint.postgre_sql_settings.username #=> String
2073
+ # resp.endpoint.my_sql_settings.database_name #=> String
2074
+ # resp.endpoint.my_sql_settings.password #=> String
2075
+ # resp.endpoint.my_sql_settings.port #=> Integer
2076
+ # resp.endpoint.my_sql_settings.server_name #=> String
2077
+ # resp.endpoint.my_sql_settings.username #=> String
2078
+ # resp.endpoint.oracle_settings.asm_password #=> String
2079
+ # resp.endpoint.oracle_settings.asm_server #=> String
2080
+ # resp.endpoint.oracle_settings.asm_user #=> String
2081
+ # resp.endpoint.oracle_settings.database_name #=> String
2082
+ # resp.endpoint.oracle_settings.password #=> String
2083
+ # resp.endpoint.oracle_settings.port #=> Integer
2084
+ # resp.endpoint.oracle_settings.security_db_encryption #=> String
2085
+ # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
2086
+ # resp.endpoint.oracle_settings.server_name #=> String
2087
+ # resp.endpoint.oracle_settings.username #=> String
2088
+ # resp.endpoint.sybase_settings.database_name #=> String
2089
+ # resp.endpoint.sybase_settings.password #=> String
2090
+ # resp.endpoint.sybase_settings.port #=> Integer
2091
+ # resp.endpoint.sybase_settings.server_name #=> String
2092
+ # resp.endpoint.sybase_settings.username #=> String
2093
+ # resp.endpoint.microsoft_sql_server_settings.port #=> Integer
2094
+ # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
2095
+ # resp.endpoint.microsoft_sql_server_settings.password #=> String
2096
+ # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
2097
+ # resp.endpoint.microsoft_sql_server_settings.username #=> String
2098
+ # resp.endpoint.ibm_db_2_settings.database_name #=> String
2099
+ # resp.endpoint.ibm_db_2_settings.password #=> String
2100
+ # resp.endpoint.ibm_db_2_settings.port #=> Integer
2101
+ # resp.endpoint.ibm_db_2_settings.server_name #=> String
2102
+ # resp.endpoint.ibm_db_2_settings.username #=> String
1805
2103
  #
1806
2104
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
1807
2105
  #
@@ -2099,6 +2397,52 @@ module Aws::DatabaseMigrationService
2099
2397
  req.send_request(options)
2100
2398
  end
2101
2399
 
2400
+ # Deletes the record of a single premigration assessment run.
2401
+ #
2402
+ # This operation removes all metadata that AWS DMS maintains about this
2403
+ # assessment run. However, the operation leaves untouched all
2404
+ # information about this assessment run that is stored in your Amazon S3
2405
+ # bucket.
2406
+ #
2407
+ # @option params [required, String] :replication_task_assessment_run_arn
2408
+ # Amazon Resource Name (ARN) of the premigration assessment run to be
2409
+ # deleted.
2410
+ #
2411
+ # @return [Types::DeleteReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2412
+ #
2413
+ # * {Types::DeleteReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
2414
+ #
2415
+ # @example Request syntax with placeholder values
2416
+ #
2417
+ # resp = client.delete_replication_task_assessment_run({
2418
+ # replication_task_assessment_run_arn: "String", # required
2419
+ # })
2420
+ #
2421
+ # @example Response structure
2422
+ #
2423
+ # resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
2424
+ # resp.replication_task_assessment_run.replication_task_arn #=> String
2425
+ # resp.replication_task_assessment_run.status #=> String
2426
+ # resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
2427
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
2428
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
2429
+ # resp.replication_task_assessment_run.last_failure_message #=> String
2430
+ # resp.replication_task_assessment_run.service_access_role_arn #=> String
2431
+ # resp.replication_task_assessment_run.result_location_bucket #=> String
2432
+ # resp.replication_task_assessment_run.result_location_folder #=> String
2433
+ # resp.replication_task_assessment_run.result_encryption_mode #=> String
2434
+ # resp.replication_task_assessment_run.result_kms_key_arn #=> String
2435
+ # resp.replication_task_assessment_run.assessment_run_name #=> String
2436
+ #
2437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRun AWS API Documentation
2438
+ #
2439
+ # @overload delete_replication_task_assessment_run(params = {})
2440
+ # @param [Hash] params ({})
2441
+ def delete_replication_task_assessment_run(params = {}, options = {})
2442
+ req = build_request(:delete_replication_task_assessment_run, params)
2443
+ req.send_request(options)
2444
+ end
2445
+
2102
2446
  # Lists all of the AWS DMS attributes for a customer account. These
2103
2447
  # attributes include AWS DMS quotas for the account and a unique account
2104
2448
  # identifier in a particular DMS region. DMS quotas include a list of
@@ -2163,10 +2507,98 @@ module Aws::DatabaseMigrationService
2163
2507
  req.send_request(options)
2164
2508
  end
2165
2509
 
2510
+ # Provides a list of individual assessments that you can specify for a
2511
+ # new premigration assessment run, given one or more parameters.
2512
+ #
2513
+ # If you specify an existing migration task, this operation provides the
2514
+ # default individual assessments you can specify for that task.
2515
+ # Otherwise, the specified parameters model elements of a possible
2516
+ # migration task on which to base a premigration assessment run.
2517
+ #
2518
+ # To use these migration task modeling parameters, you must specify an
2519
+ # existing replication instance, a source database engine, a target
2520
+ # database engine, and a migration type. This combination of parameters
2521
+ # potentially limits the default individual assessments available for an
2522
+ # assessment run created for a corresponding migration task.
2523
+ #
2524
+ # If you specify no parameters, this operation provides a list of all
2525
+ # possible individual assessments that you can specify for an assessment
2526
+ # run. If you specify any one of the task modeling parameters, you must
2527
+ # specify all of them or the operation cannot provide a list of
2528
+ # individual assessments. The only parameter that you can specify alone
2529
+ # is for an existing migration task. The specified task definition then
2530
+ # determines the default list of individual assessments that you can
2531
+ # specify in an assessment run for the task.
2532
+ #
2533
+ # @option params [String] :replication_task_arn
2534
+ # Amazon Resource Name (ARN) of a migration task on which you want to
2535
+ # base the default list of individual assessments.
2536
+ #
2537
+ # @option params [String] :replication_instance_arn
2538
+ # ARN of a replication instance on which you want to base the default
2539
+ # list of individual assessments.
2540
+ #
2541
+ # @option params [String] :source_engine_name
2542
+ # Name of a database engine that the specified replication instance
2543
+ # supports as a source.
2544
+ #
2545
+ # @option params [String] :target_engine_name
2546
+ # Name of a database engine that the specified replication instance
2547
+ # supports as a target.
2548
+ #
2549
+ # @option params [String] :migration_type
2550
+ # Name of the migration type that each provided individual assessment
2551
+ # must support.
2552
+ #
2553
+ # @option params [Integer] :max_records
2554
+ # Maximum number of records to include in the response. If more records
2555
+ # exist than the specified `MaxRecords` value, a pagination token called
2556
+ # a marker is included in the response so that the remaining results can
2557
+ # be retrieved.
2558
+ #
2559
+ # @option params [String] :marker
2560
+ # Optional pagination token provided by a previous request. If this
2561
+ # parameter is specified, the response includes only records beyond the
2562
+ # marker, up to the value specified by `MaxRecords`.
2563
+ #
2564
+ # @return [Types::DescribeApplicableIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2565
+ #
2566
+ # * {Types::DescribeApplicableIndividualAssessmentsResponse#individual_assessment_names #individual_assessment_names} => Array&lt;String&gt;
2567
+ # * {Types::DescribeApplicableIndividualAssessmentsResponse#marker #marker} => String
2568
+ #
2569
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2570
+ #
2571
+ # @example Request syntax with placeholder values
2572
+ #
2573
+ # resp = client.describe_applicable_individual_assessments({
2574
+ # replication_task_arn: "String",
2575
+ # replication_instance_arn: "String",
2576
+ # source_engine_name: "String",
2577
+ # target_engine_name: "String",
2578
+ # migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
2579
+ # max_records: 1,
2580
+ # marker: "String",
2581
+ # })
2582
+ #
2583
+ # @example Response structure
2584
+ #
2585
+ # resp.individual_assessment_names #=> Array
2586
+ # resp.individual_assessment_names[0] #=> String
2587
+ # resp.marker #=> String
2588
+ #
2589
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessments AWS API Documentation
2590
+ #
2591
+ # @overload describe_applicable_individual_assessments(params = {})
2592
+ # @param [Hash] params ({})
2593
+ def describe_applicable_individual_assessments(params = {}, options = {})
2594
+ req = build_request(:describe_applicable_individual_assessments, params)
2595
+ req.send_request(options)
2596
+ end
2597
+
2166
2598
  # Provides a description of the certificate.
2167
2599
  #
2168
2600
  # @option params [Array<Types::Filter>] :filters
2169
- # Filters applied to the certificate described in the form of key-value
2601
+ # Filters applied to the certificates described in the form of key-value
2170
2602
  # pairs.
2171
2603
  #
2172
2604
  # @option params [Integer] :max_records
@@ -2358,7 +2790,7 @@ module Aws::DatabaseMigrationService
2358
2790
  # Returns information about the type of endpoints available.
2359
2791
  #
2360
2792
  # @option params [Array<Types::Filter>] :filters
2361
- # Filters applied to the describe action.
2793
+ # Filters applied to the endpoint types.
2362
2794
  #
2363
2795
  # Valid filter names: engine-name \| endpoint-type
2364
2796
  #
@@ -2446,7 +2878,7 @@ module Aws::DatabaseMigrationService
2446
2878
  # current region.
2447
2879
  #
2448
2880
  # @option params [Array<Types::Filter>] :filters
2449
- # Filters applied to the describe action.
2881
+ # Filters applied to the endpoints.
2450
2882
  #
2451
2883
  # Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
2452
2884
  # engine-name
@@ -2577,8 +3009,17 @@ module Aws::DatabaseMigrationService
2577
3009
  # resp.endpoints[0].kinesis_settings.partition_include_schema_table #=> Boolean
2578
3010
  # resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
2579
3011
  # resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
3012
+ # resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
2580
3013
  # resp.endpoints[0].kafka_settings.broker #=> String
2581
3014
  # resp.endpoints[0].kafka_settings.topic #=> String
3015
+ # resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
3016
+ # resp.endpoints[0].kafka_settings.include_transaction_details #=> Boolean
3017
+ # resp.endpoints[0].kafka_settings.include_partition_value #=> Boolean
3018
+ # resp.endpoints[0].kafka_settings.partition_include_schema_table #=> Boolean
3019
+ # resp.endpoints[0].kafka_settings.include_table_alter_operations #=> Boolean
3020
+ # resp.endpoints[0].kafka_settings.include_control_details #=> Boolean
3021
+ # resp.endpoints[0].kafka_settings.message_max_bytes #=> Integer
3022
+ # resp.endpoints[0].kafka_settings.include_null_and_empty #=> Boolean
2582
3023
  # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
2583
3024
  # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
2584
3025
  # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -2615,6 +3056,41 @@ module Aws::DatabaseMigrationService
2615
3056
  # resp.endpoints[0].redshift_settings.truncate_columns #=> Boolean
2616
3057
  # resp.endpoints[0].redshift_settings.username #=> String
2617
3058
  # resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
3059
+ # resp.endpoints[0].postgre_sql_settings.database_name #=> String
3060
+ # resp.endpoints[0].postgre_sql_settings.password #=> String
3061
+ # resp.endpoints[0].postgre_sql_settings.port #=> Integer
3062
+ # resp.endpoints[0].postgre_sql_settings.server_name #=> String
3063
+ # resp.endpoints[0].postgre_sql_settings.username #=> String
3064
+ # resp.endpoints[0].my_sql_settings.database_name #=> String
3065
+ # resp.endpoints[0].my_sql_settings.password #=> String
3066
+ # resp.endpoints[0].my_sql_settings.port #=> Integer
3067
+ # resp.endpoints[0].my_sql_settings.server_name #=> String
3068
+ # resp.endpoints[0].my_sql_settings.username #=> String
3069
+ # resp.endpoints[0].oracle_settings.asm_password #=> String
3070
+ # resp.endpoints[0].oracle_settings.asm_server #=> String
3071
+ # resp.endpoints[0].oracle_settings.asm_user #=> String
3072
+ # resp.endpoints[0].oracle_settings.database_name #=> String
3073
+ # resp.endpoints[0].oracle_settings.password #=> String
3074
+ # resp.endpoints[0].oracle_settings.port #=> Integer
3075
+ # resp.endpoints[0].oracle_settings.security_db_encryption #=> String
3076
+ # resp.endpoints[0].oracle_settings.security_db_encryption_name #=> String
3077
+ # resp.endpoints[0].oracle_settings.server_name #=> String
3078
+ # resp.endpoints[0].oracle_settings.username #=> String
3079
+ # resp.endpoints[0].sybase_settings.database_name #=> String
3080
+ # resp.endpoints[0].sybase_settings.password #=> String
3081
+ # resp.endpoints[0].sybase_settings.port #=> Integer
3082
+ # resp.endpoints[0].sybase_settings.server_name #=> String
3083
+ # resp.endpoints[0].sybase_settings.username #=> String
3084
+ # resp.endpoints[0].microsoft_sql_server_settings.port #=> Integer
3085
+ # resp.endpoints[0].microsoft_sql_server_settings.database_name #=> String
3086
+ # resp.endpoints[0].microsoft_sql_server_settings.password #=> String
3087
+ # resp.endpoints[0].microsoft_sql_server_settings.server_name #=> String
3088
+ # resp.endpoints[0].microsoft_sql_server_settings.username #=> String
3089
+ # resp.endpoints[0].ibm_db_2_settings.database_name #=> String
3090
+ # resp.endpoints[0].ibm_db_2_settings.password #=> String
3091
+ # resp.endpoints[0].ibm_db_2_settings.port #=> Integer
3092
+ # resp.endpoints[0].ibm_db_2_settings.server_name #=> String
3093
+ # resp.endpoints[0].ibm_db_2_settings.username #=> String
2618
3094
  #
2619
3095
  #
2620
3096
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2645,7 +3121,7 @@ module Aws::DatabaseMigrationService
2645
3121
  # Valid values: replication-instance \| replication-task
2646
3122
  #
2647
3123
  # @option params [Array<Types::Filter>] :filters
2648
- # Filters applied to the action.
3124
+ # Filters applied to the event categories.
2649
3125
  #
2650
3126
  # @return [Types::DescribeEventCategoriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2651
3127
  #
@@ -2691,7 +3167,7 @@ module Aws::DatabaseMigrationService
2691
3167
  # The name of the AWS DMS event subscription to be described.
2692
3168
  #
2693
3169
  # @option params [Array<Types::Filter>] :filters
2694
- # Filters applied to the action.
3170
+ # Filters applied to event subscriptions.
2695
3171
  #
2696
3172
  # @option params [Integer] :max_records
2697
3173
  # The maximum number of records to include in the response. If more
@@ -2784,7 +3260,7 @@ module Aws::DatabaseMigrationService
2784
3260
  # A list of event categories for the source type that you've chosen.
2785
3261
  #
2786
3262
  # @option params [Array<Types::Filter>] :filters
2787
- # Filters applied to the action.
3263
+ # Filters applied to events.
2788
3264
  #
2789
3265
  # @option params [Integer] :max_records
2790
3266
  # The maximum number of records to include in the response. If more
@@ -3091,7 +3567,7 @@ module Aws::DatabaseMigrationService
3091
3567
  # the current region.
3092
3568
  #
3093
3569
  # @option params [Array<Types::Filter>] :filters
3094
- # Filters applied to the describe action.
3570
+ # Filters applied to replication instances.
3095
3571
  #
3096
3572
  # Valid filter names: replication-instance-arn \|
3097
3573
  # replication-instance-id \| replication-instance-class \|
@@ -3218,7 +3694,7 @@ module Aws::DatabaseMigrationService
3218
3694
  # Returns information about the replication subnet groups.
3219
3695
  #
3220
3696
  # @option params [Array<Types::Filter>] :filters
3221
- # Filters applied to the describe action.
3697
+ # Filters applied to replication subnet groups.
3222
3698
  #
3223
3699
  # Valid filter names: replication-subnet-group-id
3224
3700
  #
@@ -3367,11 +3843,152 @@ module Aws::DatabaseMigrationService
3367
3843
  req.send_request(options)
3368
3844
  end
3369
3845
 
3846
+ # Returns a paginated list of premigration assessment runs based on
3847
+ # filter settings.
3848
+ #
3849
+ # These filter settings can specify a combination of premigration
3850
+ # assessment runs, migration tasks, replication instances, and
3851
+ # assessment run status values.
3852
+ #
3853
+ # <note markdown="1"> This operation doesn't return information about individual
3854
+ # assessments. For this information, see the
3855
+ # `DescribeReplicationTaskIndividualAssessments` operation.
3856
+ #
3857
+ # </note>
3858
+ #
3859
+ # @option params [Array<Types::Filter>] :filters
3860
+ # Filters applied to the premigration assessment runs described in the
3861
+ # form of key-value pairs.
3862
+ #
3863
+ # Valid filter names: `replication-task-assessment-run-arn`,
3864
+ # `replication-task-arn`, `replication-instance-arn`, `status`
3865
+ #
3866
+ # @option params [Integer] :max_records
3867
+ # The maximum number of records to include in the response. If more
3868
+ # records exist than the specified `MaxRecords` value, a pagination
3869
+ # token called a marker is included in the response so that the
3870
+ # remaining results can be retrieved.
3871
+ #
3872
+ # @option params [String] :marker
3873
+ # An optional pagination token provided by a previous request. If this
3874
+ # parameter is specified, the response includes only records beyond the
3875
+ # marker, up to the value specified by `MaxRecords`.
3876
+ #
3877
+ # @return [Types::DescribeReplicationTaskAssessmentRunsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3878
+ #
3879
+ # * {Types::DescribeReplicationTaskAssessmentRunsResponse#marker #marker} => String
3880
+ # * {Types::DescribeReplicationTaskAssessmentRunsResponse#replication_task_assessment_runs #replication_task_assessment_runs} => Array&lt;Types::ReplicationTaskAssessmentRun&gt;
3881
+ #
3882
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3883
+ #
3884
+ # @example Request syntax with placeholder values
3885
+ #
3886
+ # resp = client.describe_replication_task_assessment_runs({
3887
+ # filters: [
3888
+ # {
3889
+ # name: "String", # required
3890
+ # values: ["String"], # required
3891
+ # },
3892
+ # ],
3893
+ # max_records: 1,
3894
+ # marker: "String",
3895
+ # })
3896
+ #
3897
+ # @example Response structure
3898
+ #
3899
+ # resp.marker #=> String
3900
+ # resp.replication_task_assessment_runs #=> Array
3901
+ # resp.replication_task_assessment_runs[0].replication_task_assessment_run_arn #=> String
3902
+ # resp.replication_task_assessment_runs[0].replication_task_arn #=> String
3903
+ # resp.replication_task_assessment_runs[0].status #=> String
3904
+ # resp.replication_task_assessment_runs[0].replication_task_assessment_run_creation_date #=> Time
3905
+ # resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_count #=> Integer
3906
+ # resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_completed_count #=> Integer
3907
+ # resp.replication_task_assessment_runs[0].last_failure_message #=> String
3908
+ # resp.replication_task_assessment_runs[0].service_access_role_arn #=> String
3909
+ # resp.replication_task_assessment_runs[0].result_location_bucket #=> String
3910
+ # resp.replication_task_assessment_runs[0].result_location_folder #=> String
3911
+ # resp.replication_task_assessment_runs[0].result_encryption_mode #=> String
3912
+ # resp.replication_task_assessment_runs[0].result_kms_key_arn #=> String
3913
+ # resp.replication_task_assessment_runs[0].assessment_run_name #=> String
3914
+ #
3915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRuns AWS API Documentation
3916
+ #
3917
+ # @overload describe_replication_task_assessment_runs(params = {})
3918
+ # @param [Hash] params ({})
3919
+ def describe_replication_task_assessment_runs(params = {}, options = {})
3920
+ req = build_request(:describe_replication_task_assessment_runs, params)
3921
+ req.send_request(options)
3922
+ end
3923
+
3924
+ # Returns a paginated list of individual assessments based on filter
3925
+ # settings.
3926
+ #
3927
+ # These filter settings can specify a combination of premigration
3928
+ # assessment runs, migration tasks, and assessment status values.
3929
+ #
3930
+ # @option params [Array<Types::Filter>] :filters
3931
+ # Filters applied to the individual assessments described in the form of
3932
+ # key-value pairs.
3933
+ #
3934
+ # Valid filter names: `replication-task-assessment-run-arn`,
3935
+ # `replication-task-arn`, `status`
3936
+ #
3937
+ # @option params [Integer] :max_records
3938
+ # The maximum number of records to include in the response. If more
3939
+ # records exist than the specified `MaxRecords` value, a pagination
3940
+ # token called a marker is included in the response so that the
3941
+ # remaining results can be retrieved.
3942
+ #
3943
+ # @option params [String] :marker
3944
+ # An optional pagination token provided by a previous request. If this
3945
+ # parameter is specified, the response includes only records beyond the
3946
+ # marker, up to the value specified by `MaxRecords`.
3947
+ #
3948
+ # @return [Types::DescribeReplicationTaskIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3949
+ #
3950
+ # * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#marker #marker} => String
3951
+ # * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#replication_task_individual_assessments #replication_task_individual_assessments} => Array&lt;Types::ReplicationTaskIndividualAssessment&gt;
3952
+ #
3953
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3954
+ #
3955
+ # @example Request syntax with placeholder values
3956
+ #
3957
+ # resp = client.describe_replication_task_individual_assessments({
3958
+ # filters: [
3959
+ # {
3960
+ # name: "String", # required
3961
+ # values: ["String"], # required
3962
+ # },
3963
+ # ],
3964
+ # max_records: 1,
3965
+ # marker: "String",
3966
+ # })
3967
+ #
3968
+ # @example Response structure
3969
+ #
3970
+ # resp.marker #=> String
3971
+ # resp.replication_task_individual_assessments #=> Array
3972
+ # resp.replication_task_individual_assessments[0].replication_task_individual_assessment_arn #=> String
3973
+ # resp.replication_task_individual_assessments[0].replication_task_assessment_run_arn #=> String
3974
+ # resp.replication_task_individual_assessments[0].individual_assessment_name #=> String
3975
+ # resp.replication_task_individual_assessments[0].status #=> String
3976
+ # resp.replication_task_individual_assessments[0].replication_task_individual_assessment_start_date #=> Time
3977
+ #
3978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessments AWS API Documentation
3979
+ #
3980
+ # @overload describe_replication_task_individual_assessments(params = {})
3981
+ # @param [Hash] params ({})
3982
+ def describe_replication_task_individual_assessments(params = {}, options = {})
3983
+ req = build_request(:describe_replication_task_individual_assessments, params)
3984
+ req.send_request(options)
3985
+ end
3986
+
3370
3987
  # Returns information about replication tasks for your account in the
3371
3988
  # current region.
3372
3989
  #
3373
3990
  # @option params [Array<Types::Filter>] :filters
3374
- # Filters applied to the describe action.
3991
+ # Filters applied to replication tasks.
3375
3992
  #
3376
3993
  # Valid filter names: replication-task-arn \| replication-task-id \|
3377
3994
  # migration-type \| endpoint-arn \| replication-instance-arn
@@ -3588,7 +4205,7 @@ module Aws::DatabaseMigrationService
3588
4205
  # marker, up to the value specified by `MaxRecords`.
3589
4206
  #
3590
4207
  # @option params [Array<Types::Filter>] :filters
3591
- # Filters applied to the describe table statistics action.
4208
+ # Filters applied to table statistics.
3592
4209
  #
3593
4210
  # Valid filter names: schema-name \| table-name \| table-state
3594
4211
  #
@@ -3682,7 +4299,7 @@ module Aws::DatabaseMigrationService
3682
4299
  # @option params [String] :certificate_pem
3683
4300
  # The contents of a `.pem` file, which contains an X.509 certificate.
3684
4301
  #
3685
- # @option params [String, IO] :certificate_wallet
4302
+ # @option params [String, StringIO, File] :certificate_wallet
3686
4303
  # The location of an imported Oracle Wallet certificate for use with
3687
4304
  # SSL.
3688
4305
  #
@@ -3745,7 +4362,13 @@ module Aws::DatabaseMigrationService
3745
4362
  req.send_request(options)
3746
4363
  end
3747
4364
 
3748
- # Lists all tags for an AWS DMS resource.
4365
+ # Lists all metadata tags attached to an AWS DMS resource, including
4366
+ # replication instance, endpoint, security group, and migration task.
4367
+ # For more information, see [ `Tag` ][1] data type description.
4368
+ #
4369
+ #
4370
+ #
4371
+ # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
3749
4372
  #
3750
4373
  # @option params [required, String] :resource_arn
3751
4374
  # The Amazon Resource Name (ARN) string that uniquely identifies the AWS
@@ -3810,8 +4433,8 @@ module Aws::DatabaseMigrationService
3810
4433
  # EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
3811
4434
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
3812
4435
  # `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
3813
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`, and
3814
- # `"sqlserver"`.
4436
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
4437
+ # `"sqlserver"`, and `"neptune"`.
3815
4438
  #
3816
4439
  # @option params [String] :username
3817
4440
  # The user name to be used to login to the endpoint database.
@@ -3905,7 +4528,8 @@ module Aws::DatabaseMigrationService
3905
4528
  # Settings in JSON format for the target endpoint for Amazon Kinesis
3906
4529
  # Data Streams. For more information about the available settings, see
3907
4530
  # [Using Amazon Kinesis Data Streams as a Target for AWS Database
3908
- # Migration Service][1] in the *AWS Database Migration User Guide.*
4531
+ # Migration Service][1] in the *AWS Database Migration Service User
4532
+ # Guide.*
3909
4533
  #
3910
4534
  #
3911
4535
  #
@@ -3915,7 +4539,7 @@ module Aws::DatabaseMigrationService
3915
4539
  # Settings in JSON format for the target Apache Kafka endpoint. For more
3916
4540
  # information about the available settings, see [Using Apache Kafka as a
3917
4541
  # Target for AWS Database Migration Service][1] in the *AWS Database
3918
- # Migration User Guide.*
4542
+ # Migration Service User Guide.*
3919
4543
  #
3920
4544
  #
3921
4545
  #
@@ -3925,7 +4549,7 @@ module Aws::DatabaseMigrationService
3925
4549
  # Settings in JSON format for the target Elasticsearch endpoint. For
3926
4550
  # more information about the available settings, see [Extra Connection
3927
4551
  # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
3928
- # *AWS Database Migration User Guide.*
4552
+ # *AWS Database Migration Service User Guide.*
3929
4553
  #
3930
4554
  #
3931
4555
  #
@@ -3933,9 +4557,9 @@ module Aws::DatabaseMigrationService
3933
4557
  #
3934
4558
  # @option params [Types::NeptuneSettings] :neptune_settings
3935
4559
  # Settings in JSON format for the target Amazon Neptune endpoint. For
3936
- # more information about the available settings, see
3937
- # [https://docs.aws.amazon.com/dms/latest/userguide/CHAP\_Target.Neptune.html#CHAP\_Target.Neptune.EndpointSettings][1]
3938
- # in the *AWS Database Migration Service User Guide.*
4560
+ # more information about the available settings, see [Specifying
4561
+ # Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
4562
+ # Database Migration Service User Guide.*
3939
4563
  #
3940
4564
  #
3941
4565
  #
@@ -3944,6 +4568,78 @@ module Aws::DatabaseMigrationService
3944
4568
  # @option params [Types::RedshiftSettings] :redshift_settings
3945
4569
  # Provides information that defines an Amazon Redshift endpoint.
3946
4570
  #
4571
+ # @option params [Types::PostgreSQLSettings] :postgre_sql_settings
4572
+ # Settings in JSON format for the source and target PostgreSQL endpoint.
4573
+ # For information about other available settings, see [Extra connection
4574
+ # attributes when using PostgreSQL as a source for AWS DMS][1] and [
4575
+ # Extra connection attributes when using PostgreSQL as a target for AWS
4576
+ # DMS][2] in the *AWS Database Migration Service User Guide.*
4577
+ #
4578
+ #
4579
+ #
4580
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
4581
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
4582
+ #
4583
+ # @option params [Types::MySQLSettings] :my_sql_settings
4584
+ # Settings in JSON format for the source and target MySQL endpoint. For
4585
+ # information about other available settings, see [Extra connection
4586
+ # attributes when using MySQL as a source for AWS DMS][1] and [Extra
4587
+ # connection attributes when using a MySQL-compatible database as a
4588
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
4589
+ # Guide.*
4590
+ #
4591
+ #
4592
+ #
4593
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
4594
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
4595
+ #
4596
+ # @option params [Types::OracleSettings] :oracle_settings
4597
+ # Settings in JSON format for the source and target Oracle endpoint. For
4598
+ # information about other available settings, see [Extra connection
4599
+ # attributes when using Oracle as a source for AWS DMS][1] and [ Extra
4600
+ # connection attributes when using Oracle as a target for AWS DMS][2] in
4601
+ # the *AWS Database Migration Service User Guide.*
4602
+ #
4603
+ #
4604
+ #
4605
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
4606
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
4607
+ #
4608
+ # @option params [Types::SybaseSettings] :sybase_settings
4609
+ # Settings in JSON format for the source and target SAP ASE endpoint.
4610
+ # For information about other available settings, see [Extra connection
4611
+ # attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
4612
+ # connection attributes when using SAP ASE as a target for AWS DMS][2]
4613
+ # in the *AWS Database Migration Service User Guide.*
4614
+ #
4615
+ #
4616
+ #
4617
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
4618
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
4619
+ #
4620
+ # @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
4621
+ # Settings in JSON format for the source and target Microsoft SQL Server
4622
+ # endpoint. For information about other available settings, see [Extra
4623
+ # connection attributes when using SQL Server as a source for AWS
4624
+ # DMS][1] and [ Extra connection attributes when using SQL Server as a
4625
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
4626
+ # Guide.*
4627
+ #
4628
+ #
4629
+ #
4630
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
4631
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
4632
+ #
4633
+ # @option params [Types::IBMDb2Settings] :ibm_db_2_settings
4634
+ # Settings in JSON format for the source IBM Db2 LUW endpoint. For
4635
+ # information about other available settings, see [Extra connection
4636
+ # attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
4637
+ # Database Migration Service User Guide.*
4638
+ #
4639
+ #
4640
+ #
4641
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
4642
+ #
3947
4643
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3948
4644
  #
3949
4645
  # * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -4044,10 +4740,19 @@ module Aws::DatabaseMigrationService
4044
4740
  # partition_include_schema_table: false,
4045
4741
  # include_table_alter_operations: false,
4046
4742
  # include_control_details: false,
4743
+ # include_null_and_empty: false,
4047
4744
  # },
4048
4745
  # kafka_settings: {
4049
4746
  # broker: "String",
4050
4747
  # topic: "String",
4748
+ # message_format: "json", # accepts json, json-unformatted
4749
+ # include_transaction_details: false,
4750
+ # include_partition_value: false,
4751
+ # partition_include_schema_table: false,
4752
+ # include_table_alter_operations: false,
4753
+ # include_control_details: false,
4754
+ # message_max_bytes: 1,
4755
+ # include_null_and_empty: false,
4051
4756
  # },
4052
4757
  # elasticsearch_settings: {
4053
4758
  # service_access_role_arn: "String", # required
@@ -4091,6 +4796,53 @@ module Aws::DatabaseMigrationService
4091
4796
  # username: "String",
4092
4797
  # write_buffer_size: 1,
4093
4798
  # },
4799
+ # postgre_sql_settings: {
4800
+ # database_name: "String",
4801
+ # password: "SecretString",
4802
+ # port: 1,
4803
+ # server_name: "String",
4804
+ # username: "String",
4805
+ # },
4806
+ # my_sql_settings: {
4807
+ # database_name: "String",
4808
+ # password: "SecretString",
4809
+ # port: 1,
4810
+ # server_name: "String",
4811
+ # username: "String",
4812
+ # },
4813
+ # oracle_settings: {
4814
+ # asm_password: "SecretString",
4815
+ # asm_server: "String",
4816
+ # asm_user: "String",
4817
+ # database_name: "String",
4818
+ # password: "SecretString",
4819
+ # port: 1,
4820
+ # security_db_encryption: "SecretString",
4821
+ # security_db_encryption_name: "String",
4822
+ # server_name: "String",
4823
+ # username: "String",
4824
+ # },
4825
+ # sybase_settings: {
4826
+ # database_name: "String",
4827
+ # password: "SecretString",
4828
+ # port: 1,
4829
+ # server_name: "String",
4830
+ # username: "String",
4831
+ # },
4832
+ # microsoft_sql_server_settings: {
4833
+ # port: 1,
4834
+ # database_name: "String",
4835
+ # password: "SecretString",
4836
+ # server_name: "String",
4837
+ # username: "String",
4838
+ # },
4839
+ # ibm_db_2_settings: {
4840
+ # database_name: "String",
4841
+ # password: "SecretString",
4842
+ # port: 1,
4843
+ # server_name: "String",
4844
+ # username: "String",
4845
+ # },
4094
4846
  # })
4095
4847
  #
4096
4848
  # @example Response structure
@@ -4156,8 +4908,17 @@ module Aws::DatabaseMigrationService
4156
4908
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
4157
4909
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
4158
4910
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
4911
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
4159
4912
  # resp.endpoint.kafka_settings.broker #=> String
4160
4913
  # resp.endpoint.kafka_settings.topic #=> String
4914
+ # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
4915
+ # resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
4916
+ # resp.endpoint.kafka_settings.include_partition_value #=> Boolean
4917
+ # resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
4918
+ # resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
4919
+ # resp.endpoint.kafka_settings.include_control_details #=> Boolean
4920
+ # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
4921
+ # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
4161
4922
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
4162
4923
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
4163
4924
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -4194,6 +4955,41 @@ module Aws::DatabaseMigrationService
4194
4955
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
4195
4956
  # resp.endpoint.redshift_settings.username #=> String
4196
4957
  # resp.endpoint.redshift_settings.write_buffer_size #=> Integer
4958
+ # resp.endpoint.postgre_sql_settings.database_name #=> String
4959
+ # resp.endpoint.postgre_sql_settings.password #=> String
4960
+ # resp.endpoint.postgre_sql_settings.port #=> Integer
4961
+ # resp.endpoint.postgre_sql_settings.server_name #=> String
4962
+ # resp.endpoint.postgre_sql_settings.username #=> String
4963
+ # resp.endpoint.my_sql_settings.database_name #=> String
4964
+ # resp.endpoint.my_sql_settings.password #=> String
4965
+ # resp.endpoint.my_sql_settings.port #=> Integer
4966
+ # resp.endpoint.my_sql_settings.server_name #=> String
4967
+ # resp.endpoint.my_sql_settings.username #=> String
4968
+ # resp.endpoint.oracle_settings.asm_password #=> String
4969
+ # resp.endpoint.oracle_settings.asm_server #=> String
4970
+ # resp.endpoint.oracle_settings.asm_user #=> String
4971
+ # resp.endpoint.oracle_settings.database_name #=> String
4972
+ # resp.endpoint.oracle_settings.password #=> String
4973
+ # resp.endpoint.oracle_settings.port #=> Integer
4974
+ # resp.endpoint.oracle_settings.security_db_encryption #=> String
4975
+ # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
4976
+ # resp.endpoint.oracle_settings.server_name #=> String
4977
+ # resp.endpoint.oracle_settings.username #=> String
4978
+ # resp.endpoint.sybase_settings.database_name #=> String
4979
+ # resp.endpoint.sybase_settings.password #=> String
4980
+ # resp.endpoint.sybase_settings.port #=> Integer
4981
+ # resp.endpoint.sybase_settings.server_name #=> String
4982
+ # resp.endpoint.sybase_settings.username #=> String
4983
+ # resp.endpoint.microsoft_sql_server_settings.port #=> Integer
4984
+ # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
4985
+ # resp.endpoint.microsoft_sql_server_settings.password #=> String
4986
+ # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
4987
+ # resp.endpoint.microsoft_sql_server_settings.username #=> String
4988
+ # resp.endpoint.ibm_db_2_settings.database_name #=> String
4989
+ # resp.endpoint.ibm_db_2_settings.password #=> String
4990
+ # resp.endpoint.ibm_db_2_settings.port #=> Integer
4991
+ # resp.endpoint.ibm_db_2_settings.server_name #=> String
4992
+ # resp.endpoint.ibm_db_2_settings.username #=> String
4197
4993
  #
4198
4994
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
4199
4995
  #
@@ -4284,11 +5080,18 @@ module Aws::DatabaseMigrationService
4284
5080
  # the next maintenance window.
4285
5081
  #
4286
5082
  # @option params [String] :replication_instance_class
4287
- # The compute and memory capacity of the replication instance.
5083
+ # The compute and memory capacity of the replication instance as defined
5084
+ # for the specified replication instance class. For example to specify
5085
+ # the instance class dms.c4.large, set this parameter to
5086
+ # `"dms.c4.large"`.
5087
+ #
5088
+ # For more information on the settings and capacities for the available
5089
+ # replication instance classes, see [ Selecting the right AWS DMS
5090
+ # replication instance for your migration][1].
5091
+ #
5092
+ #
4288
5093
  #
4289
- # Valid Values: `dms.t2.micro | dms.t2.small | dms.t2.medium |
4290
- # dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
4291
- # dms.c4.4xlarge `
5094
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
4292
5095
  #
4293
5096
  # @option params [Array<String>] :vpc_security_group_ids
4294
5097
  # Specifies the VPC security group to be used with the replication
@@ -4320,6 +5123,9 @@ module Aws::DatabaseMigrationService
4320
5123
  # @option params [String] :engine_version
4321
5124
  # The engine version number of the replication instance.
4322
5125
  #
5126
+ # When modifying a major engine version of an instance, also set
5127
+ # `AllowMajorVersionUpgrade` to `true`.
5128
+ #
4323
5129
  # @option params [Boolean] :allow_major_version_upgrade
4324
5130
  # Indicates that major version upgrades are allowed. Changing this
4325
5131
  # parameter does not result in an outage, and the change is
@@ -4573,7 +5379,7 @@ module Aws::DatabaseMigrationService
4573
5379
  #
4574
5380
  # Constraints:
4575
5381
  #
4576
- # * Must contain from 1 to 255 alphanumeric characters or hyphens.
5382
+ # * Must contain 1-255 alphanumeric characters or hyphens.
4577
5383
  #
4578
5384
  # * First character must be a letter.
4579
5385
  #
@@ -4633,16 +5439,16 @@ module Aws::DatabaseMigrationService
4633
5439
  # The value can be either server time or commit time.
4634
5440
  #
4635
5441
  # Server time example: --cdc-stop-position
4636
- # “server\_time:3018-02-09T12:12:12”
5442
+ # “server\_time:2018-02-09T12:12:12”
4637
5443
  #
4638
5444
  # Commit time example: --cdc-stop-position “commit\_time:
4639
- # 3018-02-09T12:12:12 “
5445
+ # 2018-02-09T12:12:12 “
4640
5446
  #
4641
5447
  # @option params [String] :task_data
4642
5448
  # Supplemental information that the task requires to migrate the data
4643
5449
  # for certain source and target endpoints. For more information, see
4644
5450
  # [Specifying Supplemental Data for Task Settings][1] in the *AWS
4645
- # Database Migration User Guide.*
5451
+ # Database Migration Service User Guide.*
4646
5452
  #
4647
5453
  #
4648
5454
  #
@@ -4862,8 +5668,8 @@ module Aws::DatabaseMigrationService
4862
5668
  # replication_task_arn: "String", # required
4863
5669
  # tables_to_reload: [ # required
4864
5670
  # {
4865
- # schema_name: "String",
4866
- # table_name: "String",
5671
+ # schema_name: "String", # required
5672
+ # table_name: "String", # required
4867
5673
  # },
4868
5674
  # ],
4869
5675
  # reload_option: "data-reload", # accepts data-reload, validate-only
@@ -4882,7 +5688,13 @@ module Aws::DatabaseMigrationService
4882
5688
  req.send_request(options)
4883
5689
  end
4884
5690
 
4885
- # Removes metadata tags from a DMS resource.
5691
+ # Removes metadata tags from an AWS DMS resource, including replication
5692
+ # instance, endpoint, security group, and migration task. For more
5693
+ # information, see [ `Tag` ][1] data type description.
5694
+ #
5695
+ #
5696
+ #
5697
+ # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
4886
5698
  #
4887
5699
  # @option params [required, String] :resource_arn
4888
5700
  # An AWS DMS resource from which you want to remove tag(s). The value
@@ -4979,10 +5791,10 @@ module Aws::DatabaseMigrationService
4979
5791
  # The value can be either server time or commit time.
4980
5792
  #
4981
5793
  # Server time example: --cdc-stop-position
4982
- # “server\_time:3018-02-09T12:12:12”
5794
+ # “server\_time:2018-02-09T12:12:12”
4983
5795
  #
4984
5796
  # Commit time example: --cdc-stop-position “commit\_time:
4985
- # 3018-02-09T12:12:12 “
5797
+ # 2018-02-09T12:12:12 “
4986
5798
  #
4987
5799
  # @return [Types::StartReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4988
5800
  #
@@ -5121,6 +5933,126 @@ module Aws::DatabaseMigrationService
5121
5933
  req.send_request(options)
5122
5934
  end
5123
5935
 
5936
+ # Starts a new premigration assessment run for one or more individual
5937
+ # assessments of a migration task.
5938
+ #
5939
+ # The assessments that you can specify depend on the source and target
5940
+ # database engine and the migration type defined for the given task. To
5941
+ # run this operation, your migration task must already be created. After
5942
+ # you run this operation, you can review the status of each individual
5943
+ # assessment. You can also run the migration task manually after the
5944
+ # assessment run and its individual assessments complete.
5945
+ #
5946
+ # @option params [required, String] :replication_task_arn
5947
+ # Amazon Resource Name (ARN) of the migration task associated with the
5948
+ # premigration assessment run that you want to start.
5949
+ #
5950
+ # @option params [required, String] :service_access_role_arn
5951
+ # ARN of a service role needed to start the assessment run.
5952
+ #
5953
+ # @option params [required, String] :result_location_bucket
5954
+ # Amazon S3 bucket where you want AWS DMS to store the results of this
5955
+ # assessment run.
5956
+ #
5957
+ # @option params [String] :result_location_folder
5958
+ # Folder within an Amazon S3 bucket where you want AWS DMS to store the
5959
+ # results of this assessment run.
5960
+ #
5961
+ # @option params [String] :result_encryption_mode
5962
+ # Encryption mode that you can specify to encrypt the results of this
5963
+ # assessment run. If you don't specify this request parameter, AWS DMS
5964
+ # stores the assessment run results without encryption. You can specify
5965
+ # one of the options following:
5966
+ #
5967
+ # * `"SSE_S3"` – The server-side encryption provided as a default by
5968
+ # Amazon S3.
5969
+ #
5970
+ # * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption. This
5971
+ # encryption can use either a custom KMS encryption key that you
5972
+ # specify or the default KMS encryption key that DMS provides.
5973
+ #
5974
+ # @option params [String] :result_kms_key_arn
5975
+ # ARN of a custom KMS encryption key that you specify when you set
5976
+ # `ResultEncryptionMode` to `"SSE_KMS`".
5977
+ #
5978
+ # @option params [required, String] :assessment_run_name
5979
+ # Unique name to identify the assessment run.
5980
+ #
5981
+ # @option params [Array<String>] :include_only
5982
+ # Space-separated list of names for specific individual assessments that
5983
+ # you want to include. These names come from the default list of
5984
+ # individual assessments that AWS DMS supports for the associated
5985
+ # migration task. This task is specified by `ReplicationTaskArn`.
5986
+ #
5987
+ # <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
5988
+ # `Exclude` in the API operation.
5989
+ #
5990
+ # To identify the names of the default individual assessments that AWS
5991
+ # DMS supports for the associated migration task, run the
5992
+ # `DescribeApplicableIndividualAssessments` operation using its own
5993
+ # `ReplicationTaskArn` request parameter.
5994
+ #
5995
+ # </note>
5996
+ #
5997
+ # @option params [Array<String>] :exclude
5998
+ # Space-separated list of names for specific individual assessments that
5999
+ # you want to exclude. These names come from the default list of
6000
+ # individual assessments that AWS DMS supports for the associated
6001
+ # migration task. This task is specified by `ReplicationTaskArn`.
6002
+ #
6003
+ # <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
6004
+ # `IncludeOnly` in the API operation.
6005
+ #
6006
+ # To identify the names of the default individual assessments that AWS
6007
+ # DMS supports for the associated migration task, run the
6008
+ # `DescribeApplicableIndividualAssessments` operation using its own
6009
+ # `ReplicationTaskArn` request parameter.
6010
+ #
6011
+ # </note>
6012
+ #
6013
+ # @return [Types::StartReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6014
+ #
6015
+ # * {Types::StartReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
6016
+ #
6017
+ # @example Request syntax with placeholder values
6018
+ #
6019
+ # resp = client.start_replication_task_assessment_run({
6020
+ # replication_task_arn: "String", # required
6021
+ # service_access_role_arn: "String", # required
6022
+ # result_location_bucket: "String", # required
6023
+ # result_location_folder: "String",
6024
+ # result_encryption_mode: "String",
6025
+ # result_kms_key_arn: "String",
6026
+ # assessment_run_name: "String", # required
6027
+ # include_only: ["String"],
6028
+ # exclude: ["String"],
6029
+ # })
6030
+ #
6031
+ # @example Response structure
6032
+ #
6033
+ # resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
6034
+ # resp.replication_task_assessment_run.replication_task_arn #=> String
6035
+ # resp.replication_task_assessment_run.status #=> String
6036
+ # resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
6037
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
6038
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
6039
+ # resp.replication_task_assessment_run.last_failure_message #=> String
6040
+ # resp.replication_task_assessment_run.service_access_role_arn #=> String
6041
+ # resp.replication_task_assessment_run.result_location_bucket #=> String
6042
+ # resp.replication_task_assessment_run.result_location_folder #=> String
6043
+ # resp.replication_task_assessment_run.result_encryption_mode #=> String
6044
+ # resp.replication_task_assessment_run.result_kms_key_arn #=> String
6045
+ # resp.replication_task_assessment_run.assessment_run_name #=> String
6046
+ #
6047
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRun AWS API Documentation
6048
+ #
6049
+ # @overload start_replication_task_assessment_run(params = {})
6050
+ # @param [Hash] params ({})
6051
+ def start_replication_task_assessment_run(params = {}, options = {})
6052
+ req = build_request(:start_replication_task_assessment_run, params)
6053
+ req.send_request(options)
6054
+ end
6055
+
5124
6056
  # Stops the replication task.
5125
6057
  #
5126
6058
  # @option params [required, String] :replication_task_arn
@@ -5269,7 +6201,7 @@ module Aws::DatabaseMigrationService
5269
6201
  params: params,
5270
6202
  config: config)
5271
6203
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
5272
- context[:gem_version] = '1.35.1'
6204
+ context[:gem_version] = '1.41.0'
5273
6205
  Seahorse::Client::Request.new(handlers, context)
5274
6206
  end
5275
6207