aws-sdk-databasemigrationservice 1.37.0 → 1.43.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: 11637ed12366ede0b084a95bf015f3679021e5f3186993100f4a6ee328539d52
4
- data.tar.gz: 56086b4ad65a614d65bae633afe3efbf708300303dfa79aeaf9ed3e82bac8aca
3
+ metadata.gz: 9f095eb16f0dab8e6c063b073ffbd5a63fc3334c9e704fbea83fd4b1f2898151
4
+ data.tar.gz: 1b8f0ef749d2c1c9e6b6f2927abb29c420683298b517556634e291268cb8a155
5
5
  SHA512:
6
- metadata.gz: df8681d3d4f1b027bcc9285b9b4f504093c7316119a02025802306327c8198b4cadee85715bdf1fc1a2333eba92b60b325be92c7aeaaa4d96f82d2fd773b7a30
7
- data.tar.gz: 5f5515db0cd42572aa52e1f2afa8d1a39747506617fb5ac70a3064ad1339f9dcdb2e4f95edc4bd151af8a38bf02dd02a5b8fd878c1dd6ca5145258dc1ee5e941
6
+ metadata.gz: 8dfe820471836d15cfd2358a47f2a33203816d41a975cb1bef5833f1e28d3d30578648362c55c9a4aef037fb0c39342df3e9ec30e4fcc9f6bb53f6ac56398efd
7
+ data.tar.gz: ad27d3502a5005258ec8b9aff233520f5b4e38fe88a8c86da82db7b1d787a2789baef640c38a5c506dd1eb48131e77087da32e7e7b2c475e4e967649a9bfe319
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
45
46
  #
46
47
  # See {Errors} for more information.
47
48
  #
48
- # @service
49
+ # @!group service
49
50
  module Aws::DatabaseMigrationService
50
51
 
51
- GEM_VERSION = '1.37.0'
52
+ GEM_VERSION = '1.43.0'
52
53
 
53
54
  end
@@ -85,13 +85,28 @@ module Aws::DatabaseMigrationService
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
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
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::DatabaseMigrationService
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # 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.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -326,7 +341,11 @@ module Aws::DatabaseMigrationService
326
341
  # instance, endpoint, security group, and migration task. These tags can
327
342
  # also be used with cost allocation reporting to track cost associated
328
343
  # with DMS resources, or used in a Condition statement in an IAM policy
329
- # 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
330
349
  #
331
350
  # @option params [required, String] :resource_arn
332
351
  # Identifies the AWS DMS resource to which tags should be added. The
@@ -438,12 +457,57 @@ module Aws::DatabaseMigrationService
438
457
  req.send_request(options)
439
458
  end
440
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
+
441
505
  # Creates an endpoint using the provided settings.
442
506
  #
443
507
  # @option params [required, String] :endpoint_identifier
444
508
  # The database endpoint identifier. Identifiers must begin with a letter
445
509
  # and must contain only ASCII letters, digits, and hyphens. They can't
446
- # end with a hyphen or contain two consecutive hyphens.
510
+ # end with a hyphen, or contain two consecutive hyphens.
447
511
  #
448
512
  # @option params [required, String] :endpoint_type
449
513
  # The type of endpoint. Valid values are `source` and `target`.
@@ -453,8 +517,8 @@ module Aws::DatabaseMigrationService
453
517
  # `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
454
518
  # `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
455
519
  # `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
456
- # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
457
- # `"sqlserver"`, and `"neptune"`.
520
+ # `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"docdb"`, `"sqlserver"`,
521
+ # and `"neptune"`.
458
522
  #
459
523
  # @option params [String] :username
460
524
  # The user name to be used to log in to the endpoint database.
@@ -607,6 +671,78 @@ module Aws::DatabaseMigrationService
607
671
  # @option params [Types::RedshiftSettings] :redshift_settings
608
672
  # Provides information that defines an Amazon Redshift endpoint.
609
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
+ #
610
746
  # @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
611
747
  #
612
748
  # * {Types::CreateEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -728,10 +864,19 @@ module Aws::DatabaseMigrationService
728
864
  # partition_include_schema_table: false,
729
865
  # include_table_alter_operations: false,
730
866
  # include_control_details: false,
867
+ # include_null_and_empty: false,
731
868
  # },
732
869
  # kafka_settings: {
733
870
  # broker: "String",
734
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,
735
880
  # },
736
881
  # elasticsearch_settings: {
737
882
  # service_access_role_arn: "String", # required
@@ -775,6 +920,53 @@ module Aws::DatabaseMigrationService
775
920
  # username: "String",
776
921
  # write_buffer_size: 1,
777
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
+ # },
778
970
  # })
779
971
  #
780
972
  # @example Response structure
@@ -840,8 +1032,17 @@ module Aws::DatabaseMigrationService
840
1032
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
841
1033
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
842
1034
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
1035
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
843
1036
  # resp.endpoint.kafka_settings.broker #=> String
844
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
845
1046
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
846
1047
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
847
1048
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -878,6 +1079,41 @@ module Aws::DatabaseMigrationService
878
1079
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
879
1080
  # resp.endpoint.redshift_settings.username #=> String
880
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
881
1117
  #
882
1118
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
883
1119
  #
@@ -1008,8 +1244,8 @@ module Aws::DatabaseMigrationService
1008
1244
  #
1009
1245
  #
1010
1246
  #
1011
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.APIRole.html
1012
- # [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
1013
1249
  #
1014
1250
  # @option params [required, String] :replication_instance_identifier
1015
1251
  # The replication instance identifier. This parameter is stored as a
@@ -1077,6 +1313,10 @@ module Aws::DatabaseMigrationService
1077
1313
  # @option params [String] :engine_version
1078
1314
  # The engine version number of the replication instance.
1079
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
+ #
1080
1320
  # @option params [Boolean] :auto_minor_version_upgrade
1081
1321
  # A value that indicates whether minor engine upgrades are applied
1082
1322
  # automatically to the replication instance during the maintenance
@@ -1441,10 +1681,10 @@ module Aws::DatabaseMigrationService
1441
1681
  # The value can be either server time or commit time.
1442
1682
  #
1443
1683
  # Server time example: --cdc-stop-position
1444
- # “server\_time:3018-02-09T12:12:12”
1684
+ # “server\_time:2018-02-09T12:12:12”
1445
1685
  #
1446
1686
  # Commit time example: --cdc-stop-position “commit\_time:
1447
- # 3018-02-09T12:12:12 “
1687
+ # 2018-02-09T12:12:12 “
1448
1688
  #
1449
1689
  # @option params [Array<Types::Tag>] :tags
1450
1690
  # One or more tags to be assigned to the replication task.
@@ -1778,8 +2018,17 @@ module Aws::DatabaseMigrationService
1778
2018
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
1779
2019
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
1780
2020
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
2021
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
1781
2022
  # resp.endpoint.kafka_settings.broker #=> String
1782
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
1783
2032
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1784
2033
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1785
2034
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -1816,6 +2065,41 @@ module Aws::DatabaseMigrationService
1816
2065
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
1817
2066
  # resp.endpoint.redshift_settings.username #=> String
1818
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
1819
2103
  #
1820
2104
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
1821
2105
  #
@@ -2113,6 +2397,52 @@ module Aws::DatabaseMigrationService
2113
2397
  req.send_request(options)
2114
2398
  end
2115
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
+
2116
2446
  # Lists all of the AWS DMS attributes for a customer account. These
2117
2447
  # attributes include AWS DMS quotas for the account and a unique account
2118
2448
  # identifier in a particular DMS region. DMS quotas include a list of
@@ -2177,10 +2507,98 @@ module Aws::DatabaseMigrationService
2177
2507
  req.send_request(options)
2178
2508
  end
2179
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
+
2180
2598
  # Provides a description of the certificate.
2181
2599
  #
2182
2600
  # @option params [Array<Types::Filter>] :filters
2183
- # 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
2184
2602
  # pairs.
2185
2603
  #
2186
2604
  # @option params [Integer] :max_records
@@ -2372,7 +2790,7 @@ module Aws::DatabaseMigrationService
2372
2790
  # Returns information about the type of endpoints available.
2373
2791
  #
2374
2792
  # @option params [Array<Types::Filter>] :filters
2375
- # Filters applied to the describe action.
2793
+ # Filters applied to the endpoint types.
2376
2794
  #
2377
2795
  # Valid filter names: engine-name \| endpoint-type
2378
2796
  #
@@ -2460,7 +2878,7 @@ module Aws::DatabaseMigrationService
2460
2878
  # current region.
2461
2879
  #
2462
2880
  # @option params [Array<Types::Filter>] :filters
2463
- # Filters applied to the describe action.
2881
+ # Filters applied to the endpoints.
2464
2882
  #
2465
2883
  # Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
2466
2884
  # engine-name
@@ -2591,8 +3009,17 @@ module Aws::DatabaseMigrationService
2591
3009
  # resp.endpoints[0].kinesis_settings.partition_include_schema_table #=> Boolean
2592
3010
  # resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
2593
3011
  # resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
3012
+ # resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
2594
3013
  # resp.endpoints[0].kafka_settings.broker #=> String
2595
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
2596
3023
  # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
2597
3024
  # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
2598
3025
  # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -2629,6 +3056,41 @@ module Aws::DatabaseMigrationService
2629
3056
  # resp.endpoints[0].redshift_settings.truncate_columns #=> Boolean
2630
3057
  # resp.endpoints[0].redshift_settings.username #=> String
2631
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
2632
3094
  #
2633
3095
  #
2634
3096
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2659,7 +3121,7 @@ module Aws::DatabaseMigrationService
2659
3121
  # Valid values: replication-instance \| replication-task
2660
3122
  #
2661
3123
  # @option params [Array<Types::Filter>] :filters
2662
- # Filters applied to the action.
3124
+ # Filters applied to the event categories.
2663
3125
  #
2664
3126
  # @return [Types::DescribeEventCategoriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2665
3127
  #
@@ -2705,7 +3167,7 @@ module Aws::DatabaseMigrationService
2705
3167
  # The name of the AWS DMS event subscription to be described.
2706
3168
  #
2707
3169
  # @option params [Array<Types::Filter>] :filters
2708
- # Filters applied to the action.
3170
+ # Filters applied to event subscriptions.
2709
3171
  #
2710
3172
  # @option params [Integer] :max_records
2711
3173
  # The maximum number of records to include in the response. If more
@@ -2798,7 +3260,7 @@ module Aws::DatabaseMigrationService
2798
3260
  # A list of event categories for the source type that you've chosen.
2799
3261
  #
2800
3262
  # @option params [Array<Types::Filter>] :filters
2801
- # Filters applied to the action.
3263
+ # Filters applied to events.
2802
3264
  #
2803
3265
  # @option params [Integer] :max_records
2804
3266
  # The maximum number of records to include in the response. If more
@@ -3105,7 +3567,7 @@ module Aws::DatabaseMigrationService
3105
3567
  # the current region.
3106
3568
  #
3107
3569
  # @option params [Array<Types::Filter>] :filters
3108
- # Filters applied to the describe action.
3570
+ # Filters applied to replication instances.
3109
3571
  #
3110
3572
  # Valid filter names: replication-instance-arn \|
3111
3573
  # replication-instance-id \| replication-instance-class \|
@@ -3232,7 +3694,7 @@ module Aws::DatabaseMigrationService
3232
3694
  # Returns information about the replication subnet groups.
3233
3695
  #
3234
3696
  # @option params [Array<Types::Filter>] :filters
3235
- # Filters applied to the describe action.
3697
+ # Filters applied to replication subnet groups.
3236
3698
  #
3237
3699
  # Valid filter names: replication-subnet-group-id
3238
3700
  #
@@ -3381,11 +3843,152 @@ module Aws::DatabaseMigrationService
3381
3843
  req.send_request(options)
3382
3844
  end
3383
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
+
3384
3987
  # Returns information about replication tasks for your account in the
3385
3988
  # current region.
3386
3989
  #
3387
3990
  # @option params [Array<Types::Filter>] :filters
3388
- # Filters applied to the describe action.
3991
+ # Filters applied to replication tasks.
3389
3992
  #
3390
3993
  # Valid filter names: replication-task-arn \| replication-task-id \|
3391
3994
  # migration-type \| endpoint-arn \| replication-instance-arn
@@ -3602,7 +4205,7 @@ module Aws::DatabaseMigrationService
3602
4205
  # marker, up to the value specified by `MaxRecords`.
3603
4206
  #
3604
4207
  # @option params [Array<Types::Filter>] :filters
3605
- # Filters applied to the describe table statistics action.
4208
+ # Filters applied to table statistics.
3606
4209
  #
3607
4210
  # Valid filter names: schema-name \| table-name \| table-state
3608
4211
  #
@@ -3696,7 +4299,7 @@ module Aws::DatabaseMigrationService
3696
4299
  # @option params [String] :certificate_pem
3697
4300
  # The contents of a `.pem` file, which contains an X.509 certificate.
3698
4301
  #
3699
- # @option params [String, IO] :certificate_wallet
4302
+ # @option params [String, StringIO, File] :certificate_wallet
3700
4303
  # The location of an imported Oracle Wallet certificate for use with
3701
4304
  # SSL.
3702
4305
  #
@@ -3759,7 +4362,13 @@ module Aws::DatabaseMigrationService
3759
4362
  req.send_request(options)
3760
4363
  end
3761
4364
 
3762
- # 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
3763
4372
  #
3764
4373
  # @option params [required, String] :resource_arn
3765
4374
  # The Amazon Resource Name (ARN) string that uniquely identifies the AWS
@@ -3959,6 +4568,78 @@ module Aws::DatabaseMigrationService
3959
4568
  # @option params [Types::RedshiftSettings] :redshift_settings
3960
4569
  # Provides information that defines an Amazon Redshift endpoint.
3961
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
+ #
3962
4643
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3963
4644
  #
3964
4645
  # * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -4059,10 +4740,19 @@ module Aws::DatabaseMigrationService
4059
4740
  # partition_include_schema_table: false,
4060
4741
  # include_table_alter_operations: false,
4061
4742
  # include_control_details: false,
4743
+ # include_null_and_empty: false,
4062
4744
  # },
4063
4745
  # kafka_settings: {
4064
4746
  # broker: "String",
4065
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,
4066
4756
  # },
4067
4757
  # elasticsearch_settings: {
4068
4758
  # service_access_role_arn: "String", # required
@@ -4106,6 +4796,53 @@ module Aws::DatabaseMigrationService
4106
4796
  # username: "String",
4107
4797
  # write_buffer_size: 1,
4108
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
+ # },
4109
4846
  # })
4110
4847
  #
4111
4848
  # @example Response structure
@@ -4171,8 +4908,17 @@ module Aws::DatabaseMigrationService
4171
4908
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
4172
4909
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
4173
4910
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
4911
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
4174
4912
  # resp.endpoint.kafka_settings.broker #=> String
4175
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
4176
4922
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
4177
4923
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
4178
4924
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -4209,6 +4955,41 @@ module Aws::DatabaseMigrationService
4209
4955
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
4210
4956
  # resp.endpoint.redshift_settings.username #=> String
4211
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
4212
4993
  #
4213
4994
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
4214
4995
  #
@@ -4342,6 +5123,9 @@ module Aws::DatabaseMigrationService
4342
5123
  # @option params [String] :engine_version
4343
5124
  # The engine version number of the replication instance.
4344
5125
  #
5126
+ # When modifying a major engine version of an instance, also set
5127
+ # `AllowMajorVersionUpgrade` to `true`.
5128
+ #
4345
5129
  # @option params [Boolean] :allow_major_version_upgrade
4346
5130
  # Indicates that major version upgrades are allowed. Changing this
4347
5131
  # parameter does not result in an outage, and the change is
@@ -4655,10 +5439,10 @@ module Aws::DatabaseMigrationService
4655
5439
  # The value can be either server time or commit time.
4656
5440
  #
4657
5441
  # Server time example: --cdc-stop-position
4658
- # “server\_time:3018-02-09T12:12:12”
5442
+ # “server\_time:2018-02-09T12:12:12”
4659
5443
  #
4660
5444
  # Commit time example: --cdc-stop-position “commit\_time:
4661
- # 3018-02-09T12:12:12 “
5445
+ # 2018-02-09T12:12:12 “
4662
5446
  #
4663
5447
  # @option params [String] :task_data
4664
5448
  # Supplemental information that the task requires to migrate the data
@@ -4884,8 +5668,8 @@ module Aws::DatabaseMigrationService
4884
5668
  # replication_task_arn: "String", # required
4885
5669
  # tables_to_reload: [ # required
4886
5670
  # {
4887
- # schema_name: "String",
4888
- # table_name: "String",
5671
+ # schema_name: "String", # required
5672
+ # table_name: "String", # required
4889
5673
  # },
4890
5674
  # ],
4891
5675
  # reload_option: "data-reload", # accepts data-reload, validate-only
@@ -4904,7 +5688,13 @@ module Aws::DatabaseMigrationService
4904
5688
  req.send_request(options)
4905
5689
  end
4906
5690
 
4907
- # 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
4908
5698
  #
4909
5699
  # @option params [required, String] :resource_arn
4910
5700
  # An AWS DMS resource from which you want to remove tag(s). The value
@@ -5001,10 +5791,10 @@ module Aws::DatabaseMigrationService
5001
5791
  # The value can be either server time or commit time.
5002
5792
  #
5003
5793
  # Server time example: --cdc-stop-position
5004
- # “server\_time:3018-02-09T12:12:12”
5794
+ # “server\_time:2018-02-09T12:12:12”
5005
5795
  #
5006
5796
  # Commit time example: --cdc-stop-position “commit\_time:
5007
- # 3018-02-09T12:12:12 “
5797
+ # 2018-02-09T12:12:12 “
5008
5798
  #
5009
5799
  # @return [Types::StartReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5010
5800
  #
@@ -5143,6 +5933,126 @@ module Aws::DatabaseMigrationService
5143
5933
  req.send_request(options)
5144
5934
  end
5145
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
+
5146
6056
  # Stops the replication task.
5147
6057
  #
5148
6058
  # @option params [required, String] :replication_task_arn
@@ -5291,7 +6201,7 @@ module Aws::DatabaseMigrationService
5291
6201
  params: params,
5292
6202
  config: config)
5293
6203
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
5294
- context[:gem_version] = '1.37.0'
6204
+ context[:gem_version] = '1.43.0'
5295
6205
  Seahorse::Client::Request.new(handlers, context)
5296
6206
  end
5297
6207