aws-sdk-databasemigrationservice 1.38.0 → 1.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a2dcef41e9cc25e8774f106b78fc80b595e515dc8d9923631837af0e146a188
4
- data.tar.gz: 5f11813080d3f79723a4be790fca4e6c5dd52f0d0b60503e04f0f2225f21c169
3
+ metadata.gz: d4d1391012c233305b0e690872e545a36babe8a84c600b3308b69042e3b65ff6
4
+ data.tar.gz: cddf30de17e4d3ee0029b6cd012f923d638e03bb7909acbe82e9e8d892f81b62
5
5
  SHA512:
6
- metadata.gz: 249c067a8112e6e60aec10ff29ebfb0c80d738c70396508bba472062a9a59c106e6d7bea9f0754e2da6dfb65f114d0009ad64ed0732469201800d7c95fd537a2
7
- data.tar.gz: ba979042cdd008f20e465e71a4f3f5a10de3896f11e1640dfd1b4fdba83992e539ad2ce2d03af7402e4682d9d12d9933a8f25a0b8bedf0e0e05f2d91edbc7253
6
+ metadata.gz: 49ffcd091733a3c299abd88aa1b2ba668de0708f4f839544bf603e26f1ab213bba35c4e61f6addea852be111bb531ceaaf1284add47c026db65dbbf2cd43df13
7
+ data.tar.gz: 2fd0244c3771f7c0bfd7bfea90642996b8c5736d8241562cfb09d8498656ac844ea49d8a67772b49b2ca9acb14f99d8c2dcc2ec4a690ece818909b72953af8c5
@@ -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.38.0'
52
+ GEM_VERSION = '1.44.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
@@ -700,6 +836,9 @@ module Aws::DatabaseMigrationService
700
836
  # timestamp_column_name: "String",
701
837
  # parquet_timestamp_in_millisecond: false,
702
838
  # cdc_inserts_and_updates: false,
839
+ # date_partition_enabled: false,
840
+ # date_partition_sequence: "YYYYMMDD", # accepts YYYYMMDD, YYYYMMDDHH, YYYYMM, MMYYYYDD, DDMMYYYY
841
+ # date_partition_delimiter: "SLASH", # accepts SLASH, UNDERSCORE, DASH, NONE
703
842
  # },
704
843
  # dms_transfer_settings: {
705
844
  # service_access_role_arn: "String",
@@ -728,10 +867,19 @@ module Aws::DatabaseMigrationService
728
867
  # partition_include_schema_table: false,
729
868
  # include_table_alter_operations: false,
730
869
  # include_control_details: false,
870
+ # include_null_and_empty: false,
731
871
  # },
732
872
  # kafka_settings: {
733
873
  # broker: "String",
734
874
  # topic: "String",
875
+ # message_format: "json", # accepts json, json-unformatted
876
+ # include_transaction_details: false,
877
+ # include_partition_value: false,
878
+ # partition_include_schema_table: false,
879
+ # include_table_alter_operations: false,
880
+ # include_control_details: false,
881
+ # message_max_bytes: 1,
882
+ # include_null_and_empty: false,
735
883
  # },
736
884
  # elasticsearch_settings: {
737
885
  # service_access_role_arn: "String", # required
@@ -775,6 +923,94 @@ module Aws::DatabaseMigrationService
775
923
  # username: "String",
776
924
  # write_buffer_size: 1,
777
925
  # },
926
+ # postgre_sql_settings: {
927
+ # after_connect_script: "String",
928
+ # capture_ddls: false,
929
+ # max_file_size: 1,
930
+ # database_name: "String",
931
+ # ddl_artifacts_schema: "String",
932
+ # execute_timeout: 1,
933
+ # fail_tasks_on_lob_truncation: false,
934
+ # password: "SecretString",
935
+ # port: 1,
936
+ # server_name: "String",
937
+ # username: "String",
938
+ # slot_name: "String",
939
+ # },
940
+ # my_sql_settings: {
941
+ # after_connect_script: "String",
942
+ # database_name: "String",
943
+ # events_poll_interval: 1,
944
+ # target_db_type: "specific-database", # accepts specific-database, multiple-databases
945
+ # max_file_size: 1,
946
+ # parallel_load_threads: 1,
947
+ # password: "SecretString",
948
+ # port: 1,
949
+ # server_name: "String",
950
+ # server_timezone: "String",
951
+ # username: "String",
952
+ # },
953
+ # oracle_settings: {
954
+ # add_supplemental_logging: false,
955
+ # archived_log_dest_id: 1,
956
+ # additional_archived_log_dest_id: 1,
957
+ # allow_select_nested_tables: false,
958
+ # parallel_asm_read_threads: 1,
959
+ # read_ahead_blocks: 1,
960
+ # access_alternate_directly: false,
961
+ # use_alternate_folder_for_online: false,
962
+ # oracle_path_prefix: "String",
963
+ # use_path_prefix: "String",
964
+ # replace_path_prefix: false,
965
+ # enable_homogenous_tablespace: false,
966
+ # direct_path_no_log: false,
967
+ # archived_logs_only: false,
968
+ # asm_password: "SecretString",
969
+ # asm_server: "String",
970
+ # asm_user: "String",
971
+ # char_length_semantics: "default", # accepts default, char, byte
972
+ # database_name: "String",
973
+ # direct_path_parallel_load: false,
974
+ # fail_tasks_on_lob_truncation: false,
975
+ # number_datatype_scale: 1,
976
+ # password: "SecretString",
977
+ # port: 1,
978
+ # read_table_space_name: false,
979
+ # retry_interval: 1,
980
+ # security_db_encryption: "SecretString",
981
+ # security_db_encryption_name: "String",
982
+ # server_name: "String",
983
+ # username: "String",
984
+ # },
985
+ # sybase_settings: {
986
+ # database_name: "String",
987
+ # password: "SecretString",
988
+ # port: 1,
989
+ # server_name: "String",
990
+ # username: "String",
991
+ # },
992
+ # microsoft_sql_server_settings: {
993
+ # port: 1,
994
+ # bcp_packet_size: 1,
995
+ # database_name: "String",
996
+ # control_tables_file_group: "String",
997
+ # password: "SecretString",
998
+ # read_backup_only: false,
999
+ # safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
1000
+ # server_name: "String",
1001
+ # username: "String",
1002
+ # use_bcp_full_load: false,
1003
+ # },
1004
+ # ibm_db_2_settings: {
1005
+ # database_name: "String",
1006
+ # password: "SecretString",
1007
+ # port: 1,
1008
+ # server_name: "String",
1009
+ # set_data_capture_changes: false,
1010
+ # current_lsn: "String",
1011
+ # max_k_bytes_per_read: 1,
1012
+ # username: "String",
1013
+ # },
778
1014
  # })
779
1015
  #
780
1016
  # @example Response structure
@@ -818,6 +1054,9 @@ module Aws::DatabaseMigrationService
818
1054
  # resp.endpoint.s3_settings.timestamp_column_name #=> String
819
1055
  # resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
820
1056
  # resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
1057
+ # resp.endpoint.s3_settings.date_partition_enabled #=> Boolean
1058
+ # resp.endpoint.s3_settings.date_partition_sequence #=> String, one of "YYYYMMDD", "YYYYMMDDHH", "YYYYMM", "MMYYYYDD", "DDMMYYYY"
1059
+ # resp.endpoint.s3_settings.date_partition_delimiter #=> String, one of "SLASH", "UNDERSCORE", "DASH", "NONE"
821
1060
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
822
1061
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
823
1062
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -840,8 +1079,17 @@ module Aws::DatabaseMigrationService
840
1079
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
841
1080
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
842
1081
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
1082
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
843
1083
  # resp.endpoint.kafka_settings.broker #=> String
844
1084
  # resp.endpoint.kafka_settings.topic #=> String
1085
+ # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
1086
+ # resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
1087
+ # resp.endpoint.kafka_settings.include_partition_value #=> Boolean
1088
+ # resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
1089
+ # resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
1090
+ # resp.endpoint.kafka_settings.include_control_details #=> Boolean
1091
+ # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
1092
+ # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
845
1093
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
846
1094
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
847
1095
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -878,6 +1126,82 @@ module Aws::DatabaseMigrationService
878
1126
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
879
1127
  # resp.endpoint.redshift_settings.username #=> String
880
1128
  # resp.endpoint.redshift_settings.write_buffer_size #=> Integer
1129
+ # resp.endpoint.postgre_sql_settings.after_connect_script #=> String
1130
+ # resp.endpoint.postgre_sql_settings.capture_ddls #=> Boolean
1131
+ # resp.endpoint.postgre_sql_settings.max_file_size #=> Integer
1132
+ # resp.endpoint.postgre_sql_settings.database_name #=> String
1133
+ # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
1134
+ # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
1135
+ # resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
1136
+ # resp.endpoint.postgre_sql_settings.password #=> String
1137
+ # resp.endpoint.postgre_sql_settings.port #=> Integer
1138
+ # resp.endpoint.postgre_sql_settings.server_name #=> String
1139
+ # resp.endpoint.postgre_sql_settings.username #=> String
1140
+ # resp.endpoint.postgre_sql_settings.slot_name #=> String
1141
+ # resp.endpoint.my_sql_settings.after_connect_script #=> String
1142
+ # resp.endpoint.my_sql_settings.database_name #=> String
1143
+ # resp.endpoint.my_sql_settings.events_poll_interval #=> Integer
1144
+ # resp.endpoint.my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
1145
+ # resp.endpoint.my_sql_settings.max_file_size #=> Integer
1146
+ # resp.endpoint.my_sql_settings.parallel_load_threads #=> Integer
1147
+ # resp.endpoint.my_sql_settings.password #=> String
1148
+ # resp.endpoint.my_sql_settings.port #=> Integer
1149
+ # resp.endpoint.my_sql_settings.server_name #=> String
1150
+ # resp.endpoint.my_sql_settings.server_timezone #=> String
1151
+ # resp.endpoint.my_sql_settings.username #=> String
1152
+ # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
1153
+ # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
1154
+ # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
1155
+ # resp.endpoint.oracle_settings.allow_select_nested_tables #=> Boolean
1156
+ # resp.endpoint.oracle_settings.parallel_asm_read_threads #=> Integer
1157
+ # resp.endpoint.oracle_settings.read_ahead_blocks #=> Integer
1158
+ # resp.endpoint.oracle_settings.access_alternate_directly #=> Boolean
1159
+ # resp.endpoint.oracle_settings.use_alternate_folder_for_online #=> Boolean
1160
+ # resp.endpoint.oracle_settings.oracle_path_prefix #=> String
1161
+ # resp.endpoint.oracle_settings.use_path_prefix #=> String
1162
+ # resp.endpoint.oracle_settings.replace_path_prefix #=> Boolean
1163
+ # resp.endpoint.oracle_settings.enable_homogenous_tablespace #=> Boolean
1164
+ # resp.endpoint.oracle_settings.direct_path_no_log #=> Boolean
1165
+ # resp.endpoint.oracle_settings.archived_logs_only #=> Boolean
1166
+ # resp.endpoint.oracle_settings.asm_password #=> String
1167
+ # resp.endpoint.oracle_settings.asm_server #=> String
1168
+ # resp.endpoint.oracle_settings.asm_user #=> String
1169
+ # resp.endpoint.oracle_settings.char_length_semantics #=> String, one of "default", "char", "byte"
1170
+ # resp.endpoint.oracle_settings.database_name #=> String
1171
+ # resp.endpoint.oracle_settings.direct_path_parallel_load #=> Boolean
1172
+ # resp.endpoint.oracle_settings.fail_tasks_on_lob_truncation #=> Boolean
1173
+ # resp.endpoint.oracle_settings.number_datatype_scale #=> Integer
1174
+ # resp.endpoint.oracle_settings.password #=> String
1175
+ # resp.endpoint.oracle_settings.port #=> Integer
1176
+ # resp.endpoint.oracle_settings.read_table_space_name #=> Boolean
1177
+ # resp.endpoint.oracle_settings.retry_interval #=> Integer
1178
+ # resp.endpoint.oracle_settings.security_db_encryption #=> String
1179
+ # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
1180
+ # resp.endpoint.oracle_settings.server_name #=> String
1181
+ # resp.endpoint.oracle_settings.username #=> String
1182
+ # resp.endpoint.sybase_settings.database_name #=> String
1183
+ # resp.endpoint.sybase_settings.password #=> String
1184
+ # resp.endpoint.sybase_settings.port #=> Integer
1185
+ # resp.endpoint.sybase_settings.server_name #=> String
1186
+ # resp.endpoint.sybase_settings.username #=> String
1187
+ # resp.endpoint.microsoft_sql_server_settings.port #=> Integer
1188
+ # resp.endpoint.microsoft_sql_server_settings.bcp_packet_size #=> Integer
1189
+ # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
1190
+ # resp.endpoint.microsoft_sql_server_settings.control_tables_file_group #=> String
1191
+ # resp.endpoint.microsoft_sql_server_settings.password #=> String
1192
+ # resp.endpoint.microsoft_sql_server_settings.read_backup_only #=> Boolean
1193
+ # resp.endpoint.microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
1194
+ # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
1195
+ # resp.endpoint.microsoft_sql_server_settings.username #=> String
1196
+ # resp.endpoint.microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
1197
+ # resp.endpoint.ibm_db_2_settings.database_name #=> String
1198
+ # resp.endpoint.ibm_db_2_settings.password #=> String
1199
+ # resp.endpoint.ibm_db_2_settings.port #=> Integer
1200
+ # resp.endpoint.ibm_db_2_settings.server_name #=> String
1201
+ # resp.endpoint.ibm_db_2_settings.set_data_capture_changes #=> Boolean
1202
+ # resp.endpoint.ibm_db_2_settings.current_lsn #=> String
1203
+ # resp.endpoint.ibm_db_2_settings.max_k_bytes_per_read #=> Integer
1204
+ # resp.endpoint.ibm_db_2_settings.username #=> String
881
1205
  #
882
1206
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
883
1207
  #
@@ -1008,8 +1332,8 @@ module Aws::DatabaseMigrationService
1008
1332
  #
1009
1333
  #
1010
1334
  #
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
1335
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.APIRole
1336
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.IAMPermissions
1013
1337
  #
1014
1338
  # @option params [required, String] :replication_instance_identifier
1015
1339
  # The replication instance identifier. This parameter is stored as a
@@ -1077,6 +1401,10 @@ module Aws::DatabaseMigrationService
1077
1401
  # @option params [String] :engine_version
1078
1402
  # The engine version number of the replication instance.
1079
1403
  #
1404
+ # If an engine version number is not specified when a replication
1405
+ # instance is created, the default is the latest engine version
1406
+ # available.
1407
+ #
1080
1408
  # @option params [Boolean] :auto_minor_version_upgrade
1081
1409
  # A value that indicates whether minor engine upgrades are applied
1082
1410
  # automatically to the replication instance during the maintenance
@@ -1441,10 +1769,10 @@ module Aws::DatabaseMigrationService
1441
1769
  # The value can be either server time or commit time.
1442
1770
  #
1443
1771
  # Server time example: --cdc-stop-position
1444
- # “server\_time:3018-02-09T12:12:12”
1772
+ # “server\_time:2018-02-09T12:12:12”
1445
1773
  #
1446
1774
  # Commit time example: --cdc-stop-position “commit\_time:
1447
- # 3018-02-09T12:12:12 “
1775
+ # 2018-02-09T12:12:12 “
1448
1776
  #
1449
1777
  # @option params [Array<Types::Tag>] :tags
1450
1778
  # One or more tags to be assigned to the replication task.
@@ -1756,6 +2084,9 @@ module Aws::DatabaseMigrationService
1756
2084
  # resp.endpoint.s3_settings.timestamp_column_name #=> String
1757
2085
  # resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
1758
2086
  # resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
2087
+ # resp.endpoint.s3_settings.date_partition_enabled #=> Boolean
2088
+ # resp.endpoint.s3_settings.date_partition_sequence #=> String, one of "YYYYMMDD", "YYYYMMDDHH", "YYYYMM", "MMYYYYDD", "DDMMYYYY"
2089
+ # resp.endpoint.s3_settings.date_partition_delimiter #=> String, one of "SLASH", "UNDERSCORE", "DASH", "NONE"
1759
2090
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
1760
2091
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
1761
2092
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -1778,8 +2109,17 @@ module Aws::DatabaseMigrationService
1778
2109
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
1779
2110
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
1780
2111
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
2112
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
1781
2113
  # resp.endpoint.kafka_settings.broker #=> String
1782
2114
  # resp.endpoint.kafka_settings.topic #=> String
2115
+ # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
2116
+ # resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
2117
+ # resp.endpoint.kafka_settings.include_partition_value #=> Boolean
2118
+ # resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
2119
+ # resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
2120
+ # resp.endpoint.kafka_settings.include_control_details #=> Boolean
2121
+ # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
2122
+ # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
1783
2123
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1784
2124
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1785
2125
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -1816,6 +2156,82 @@ module Aws::DatabaseMigrationService
1816
2156
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
1817
2157
  # resp.endpoint.redshift_settings.username #=> String
1818
2158
  # resp.endpoint.redshift_settings.write_buffer_size #=> Integer
2159
+ # resp.endpoint.postgre_sql_settings.after_connect_script #=> String
2160
+ # resp.endpoint.postgre_sql_settings.capture_ddls #=> Boolean
2161
+ # resp.endpoint.postgre_sql_settings.max_file_size #=> Integer
2162
+ # resp.endpoint.postgre_sql_settings.database_name #=> String
2163
+ # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
2164
+ # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
2165
+ # resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
2166
+ # resp.endpoint.postgre_sql_settings.password #=> String
2167
+ # resp.endpoint.postgre_sql_settings.port #=> Integer
2168
+ # resp.endpoint.postgre_sql_settings.server_name #=> String
2169
+ # resp.endpoint.postgre_sql_settings.username #=> String
2170
+ # resp.endpoint.postgre_sql_settings.slot_name #=> String
2171
+ # resp.endpoint.my_sql_settings.after_connect_script #=> String
2172
+ # resp.endpoint.my_sql_settings.database_name #=> String
2173
+ # resp.endpoint.my_sql_settings.events_poll_interval #=> Integer
2174
+ # resp.endpoint.my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
2175
+ # resp.endpoint.my_sql_settings.max_file_size #=> Integer
2176
+ # resp.endpoint.my_sql_settings.parallel_load_threads #=> Integer
2177
+ # resp.endpoint.my_sql_settings.password #=> String
2178
+ # resp.endpoint.my_sql_settings.port #=> Integer
2179
+ # resp.endpoint.my_sql_settings.server_name #=> String
2180
+ # resp.endpoint.my_sql_settings.server_timezone #=> String
2181
+ # resp.endpoint.my_sql_settings.username #=> String
2182
+ # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
2183
+ # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
2184
+ # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
2185
+ # resp.endpoint.oracle_settings.allow_select_nested_tables #=> Boolean
2186
+ # resp.endpoint.oracle_settings.parallel_asm_read_threads #=> Integer
2187
+ # resp.endpoint.oracle_settings.read_ahead_blocks #=> Integer
2188
+ # resp.endpoint.oracle_settings.access_alternate_directly #=> Boolean
2189
+ # resp.endpoint.oracle_settings.use_alternate_folder_for_online #=> Boolean
2190
+ # resp.endpoint.oracle_settings.oracle_path_prefix #=> String
2191
+ # resp.endpoint.oracle_settings.use_path_prefix #=> String
2192
+ # resp.endpoint.oracle_settings.replace_path_prefix #=> Boolean
2193
+ # resp.endpoint.oracle_settings.enable_homogenous_tablespace #=> Boolean
2194
+ # resp.endpoint.oracle_settings.direct_path_no_log #=> Boolean
2195
+ # resp.endpoint.oracle_settings.archived_logs_only #=> Boolean
2196
+ # resp.endpoint.oracle_settings.asm_password #=> String
2197
+ # resp.endpoint.oracle_settings.asm_server #=> String
2198
+ # resp.endpoint.oracle_settings.asm_user #=> String
2199
+ # resp.endpoint.oracle_settings.char_length_semantics #=> String, one of "default", "char", "byte"
2200
+ # resp.endpoint.oracle_settings.database_name #=> String
2201
+ # resp.endpoint.oracle_settings.direct_path_parallel_load #=> Boolean
2202
+ # resp.endpoint.oracle_settings.fail_tasks_on_lob_truncation #=> Boolean
2203
+ # resp.endpoint.oracle_settings.number_datatype_scale #=> Integer
2204
+ # resp.endpoint.oracle_settings.password #=> String
2205
+ # resp.endpoint.oracle_settings.port #=> Integer
2206
+ # resp.endpoint.oracle_settings.read_table_space_name #=> Boolean
2207
+ # resp.endpoint.oracle_settings.retry_interval #=> Integer
2208
+ # resp.endpoint.oracle_settings.security_db_encryption #=> String
2209
+ # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
2210
+ # resp.endpoint.oracle_settings.server_name #=> String
2211
+ # resp.endpoint.oracle_settings.username #=> String
2212
+ # resp.endpoint.sybase_settings.database_name #=> String
2213
+ # resp.endpoint.sybase_settings.password #=> String
2214
+ # resp.endpoint.sybase_settings.port #=> Integer
2215
+ # resp.endpoint.sybase_settings.server_name #=> String
2216
+ # resp.endpoint.sybase_settings.username #=> String
2217
+ # resp.endpoint.microsoft_sql_server_settings.port #=> Integer
2218
+ # resp.endpoint.microsoft_sql_server_settings.bcp_packet_size #=> Integer
2219
+ # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
2220
+ # resp.endpoint.microsoft_sql_server_settings.control_tables_file_group #=> String
2221
+ # resp.endpoint.microsoft_sql_server_settings.password #=> String
2222
+ # resp.endpoint.microsoft_sql_server_settings.read_backup_only #=> Boolean
2223
+ # resp.endpoint.microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
2224
+ # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
2225
+ # resp.endpoint.microsoft_sql_server_settings.username #=> String
2226
+ # resp.endpoint.microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
2227
+ # resp.endpoint.ibm_db_2_settings.database_name #=> String
2228
+ # resp.endpoint.ibm_db_2_settings.password #=> String
2229
+ # resp.endpoint.ibm_db_2_settings.port #=> Integer
2230
+ # resp.endpoint.ibm_db_2_settings.server_name #=> String
2231
+ # resp.endpoint.ibm_db_2_settings.set_data_capture_changes #=> Boolean
2232
+ # resp.endpoint.ibm_db_2_settings.current_lsn #=> String
2233
+ # resp.endpoint.ibm_db_2_settings.max_k_bytes_per_read #=> Integer
2234
+ # resp.endpoint.ibm_db_2_settings.username #=> String
1819
2235
  #
1820
2236
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
1821
2237
  #
@@ -2113,6 +2529,52 @@ module Aws::DatabaseMigrationService
2113
2529
  req.send_request(options)
2114
2530
  end
2115
2531
 
2532
+ # Deletes the record of a single premigration assessment run.
2533
+ #
2534
+ # This operation removes all metadata that AWS DMS maintains about this
2535
+ # assessment run. However, the operation leaves untouched all
2536
+ # information about this assessment run that is stored in your Amazon S3
2537
+ # bucket.
2538
+ #
2539
+ # @option params [required, String] :replication_task_assessment_run_arn
2540
+ # Amazon Resource Name (ARN) of the premigration assessment run to be
2541
+ # deleted.
2542
+ #
2543
+ # @return [Types::DeleteReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2544
+ #
2545
+ # * {Types::DeleteReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
2546
+ #
2547
+ # @example Request syntax with placeholder values
2548
+ #
2549
+ # resp = client.delete_replication_task_assessment_run({
2550
+ # replication_task_assessment_run_arn: "String", # required
2551
+ # })
2552
+ #
2553
+ # @example Response structure
2554
+ #
2555
+ # resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
2556
+ # resp.replication_task_assessment_run.replication_task_arn #=> String
2557
+ # resp.replication_task_assessment_run.status #=> String
2558
+ # resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
2559
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
2560
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
2561
+ # resp.replication_task_assessment_run.last_failure_message #=> String
2562
+ # resp.replication_task_assessment_run.service_access_role_arn #=> String
2563
+ # resp.replication_task_assessment_run.result_location_bucket #=> String
2564
+ # resp.replication_task_assessment_run.result_location_folder #=> String
2565
+ # resp.replication_task_assessment_run.result_encryption_mode #=> String
2566
+ # resp.replication_task_assessment_run.result_kms_key_arn #=> String
2567
+ # resp.replication_task_assessment_run.assessment_run_name #=> String
2568
+ #
2569
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRun AWS API Documentation
2570
+ #
2571
+ # @overload delete_replication_task_assessment_run(params = {})
2572
+ # @param [Hash] params ({})
2573
+ def delete_replication_task_assessment_run(params = {}, options = {})
2574
+ req = build_request(:delete_replication_task_assessment_run, params)
2575
+ req.send_request(options)
2576
+ end
2577
+
2116
2578
  # Lists all of the AWS DMS attributes for a customer account. These
2117
2579
  # attributes include AWS DMS quotas for the account and a unique account
2118
2580
  # identifier in a particular DMS region. DMS quotas include a list of
@@ -2177,10 +2639,98 @@ module Aws::DatabaseMigrationService
2177
2639
  req.send_request(options)
2178
2640
  end
2179
2641
 
2642
+ # Provides a list of individual assessments that you can specify for a
2643
+ # new premigration assessment run, given one or more parameters.
2644
+ #
2645
+ # If you specify an existing migration task, this operation provides the
2646
+ # default individual assessments you can specify for that task.
2647
+ # Otherwise, the specified parameters model elements of a possible
2648
+ # migration task on which to base a premigration assessment run.
2649
+ #
2650
+ # To use these migration task modeling parameters, you must specify an
2651
+ # existing replication instance, a source database engine, a target
2652
+ # database engine, and a migration type. This combination of parameters
2653
+ # potentially limits the default individual assessments available for an
2654
+ # assessment run created for a corresponding migration task.
2655
+ #
2656
+ # If you specify no parameters, this operation provides a list of all
2657
+ # possible individual assessments that you can specify for an assessment
2658
+ # run. If you specify any one of the task modeling parameters, you must
2659
+ # specify all of them or the operation cannot provide a list of
2660
+ # individual assessments. The only parameter that you can specify alone
2661
+ # is for an existing migration task. The specified task definition then
2662
+ # determines the default list of individual assessments that you can
2663
+ # specify in an assessment run for the task.
2664
+ #
2665
+ # @option params [String] :replication_task_arn
2666
+ # Amazon Resource Name (ARN) of a migration task on which you want to
2667
+ # base the default list of individual assessments.
2668
+ #
2669
+ # @option params [String] :replication_instance_arn
2670
+ # ARN of a replication instance on which you want to base the default
2671
+ # list of individual assessments.
2672
+ #
2673
+ # @option params [String] :source_engine_name
2674
+ # Name of a database engine that the specified replication instance
2675
+ # supports as a source.
2676
+ #
2677
+ # @option params [String] :target_engine_name
2678
+ # Name of a database engine that the specified replication instance
2679
+ # supports as a target.
2680
+ #
2681
+ # @option params [String] :migration_type
2682
+ # Name of the migration type that each provided individual assessment
2683
+ # must support.
2684
+ #
2685
+ # @option params [Integer] :max_records
2686
+ # Maximum number of records to include in the response. If more records
2687
+ # exist than the specified `MaxRecords` value, a pagination token called
2688
+ # a marker is included in the response so that the remaining results can
2689
+ # be retrieved.
2690
+ #
2691
+ # @option params [String] :marker
2692
+ # Optional pagination token provided by a previous request. If this
2693
+ # parameter is specified, the response includes only records beyond the
2694
+ # marker, up to the value specified by `MaxRecords`.
2695
+ #
2696
+ # @return [Types::DescribeApplicableIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2697
+ #
2698
+ # * {Types::DescribeApplicableIndividualAssessmentsResponse#individual_assessment_names #individual_assessment_names} => Array&lt;String&gt;
2699
+ # * {Types::DescribeApplicableIndividualAssessmentsResponse#marker #marker} => String
2700
+ #
2701
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2702
+ #
2703
+ # @example Request syntax with placeholder values
2704
+ #
2705
+ # resp = client.describe_applicable_individual_assessments({
2706
+ # replication_task_arn: "String",
2707
+ # replication_instance_arn: "String",
2708
+ # source_engine_name: "String",
2709
+ # target_engine_name: "String",
2710
+ # migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
2711
+ # max_records: 1,
2712
+ # marker: "String",
2713
+ # })
2714
+ #
2715
+ # @example Response structure
2716
+ #
2717
+ # resp.individual_assessment_names #=> Array
2718
+ # resp.individual_assessment_names[0] #=> String
2719
+ # resp.marker #=> String
2720
+ #
2721
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessments AWS API Documentation
2722
+ #
2723
+ # @overload describe_applicable_individual_assessments(params = {})
2724
+ # @param [Hash] params ({})
2725
+ def describe_applicable_individual_assessments(params = {}, options = {})
2726
+ req = build_request(:describe_applicable_individual_assessments, params)
2727
+ req.send_request(options)
2728
+ end
2729
+
2180
2730
  # Provides a description of the certificate.
2181
2731
  #
2182
2732
  # @option params [Array<Types::Filter>] :filters
2183
- # Filters applied to the certificate described in the form of key-value
2733
+ # Filters applied to the certificates described in the form of key-value
2184
2734
  # pairs.
2185
2735
  #
2186
2736
  # @option params [Integer] :max_records
@@ -2372,7 +2922,7 @@ module Aws::DatabaseMigrationService
2372
2922
  # Returns information about the type of endpoints available.
2373
2923
  #
2374
2924
  # @option params [Array<Types::Filter>] :filters
2375
- # Filters applied to the describe action.
2925
+ # Filters applied to the endpoint types.
2376
2926
  #
2377
2927
  # Valid filter names: engine-name \| endpoint-type
2378
2928
  #
@@ -2460,7 +3010,7 @@ module Aws::DatabaseMigrationService
2460
3010
  # current region.
2461
3011
  #
2462
3012
  # @option params [Array<Types::Filter>] :filters
2463
- # Filters applied to the describe action.
3013
+ # Filters applied to the endpoints.
2464
3014
  #
2465
3015
  # Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
2466
3016
  # engine-name
@@ -2569,6 +3119,9 @@ module Aws::DatabaseMigrationService
2569
3119
  # resp.endpoints[0].s3_settings.timestamp_column_name #=> String
2570
3120
  # resp.endpoints[0].s3_settings.parquet_timestamp_in_millisecond #=> Boolean
2571
3121
  # resp.endpoints[0].s3_settings.cdc_inserts_and_updates #=> Boolean
3122
+ # resp.endpoints[0].s3_settings.date_partition_enabled #=> Boolean
3123
+ # resp.endpoints[0].s3_settings.date_partition_sequence #=> String, one of "YYYYMMDD", "YYYYMMDDHH", "YYYYMM", "MMYYYYDD", "DDMMYYYY"
3124
+ # resp.endpoints[0].s3_settings.date_partition_delimiter #=> String, one of "SLASH", "UNDERSCORE", "DASH", "NONE"
2572
3125
  # resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
2573
3126
  # resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
2574
3127
  # resp.endpoints[0].mongo_db_settings.username #=> String
@@ -2591,8 +3144,17 @@ module Aws::DatabaseMigrationService
2591
3144
  # resp.endpoints[0].kinesis_settings.partition_include_schema_table #=> Boolean
2592
3145
  # resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
2593
3146
  # resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
3147
+ # resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
2594
3148
  # resp.endpoints[0].kafka_settings.broker #=> String
2595
3149
  # resp.endpoints[0].kafka_settings.topic #=> String
3150
+ # resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
3151
+ # resp.endpoints[0].kafka_settings.include_transaction_details #=> Boolean
3152
+ # resp.endpoints[0].kafka_settings.include_partition_value #=> Boolean
3153
+ # resp.endpoints[0].kafka_settings.partition_include_schema_table #=> Boolean
3154
+ # resp.endpoints[0].kafka_settings.include_table_alter_operations #=> Boolean
3155
+ # resp.endpoints[0].kafka_settings.include_control_details #=> Boolean
3156
+ # resp.endpoints[0].kafka_settings.message_max_bytes #=> Integer
3157
+ # resp.endpoints[0].kafka_settings.include_null_and_empty #=> Boolean
2596
3158
  # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
2597
3159
  # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
2598
3160
  # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -2629,6 +3191,82 @@ module Aws::DatabaseMigrationService
2629
3191
  # resp.endpoints[0].redshift_settings.truncate_columns #=> Boolean
2630
3192
  # resp.endpoints[0].redshift_settings.username #=> String
2631
3193
  # resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
3194
+ # resp.endpoints[0].postgre_sql_settings.after_connect_script #=> String
3195
+ # resp.endpoints[0].postgre_sql_settings.capture_ddls #=> Boolean
3196
+ # resp.endpoints[0].postgre_sql_settings.max_file_size #=> Integer
3197
+ # resp.endpoints[0].postgre_sql_settings.database_name #=> String
3198
+ # resp.endpoints[0].postgre_sql_settings.ddl_artifacts_schema #=> String
3199
+ # resp.endpoints[0].postgre_sql_settings.execute_timeout #=> Integer
3200
+ # resp.endpoints[0].postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
3201
+ # resp.endpoints[0].postgre_sql_settings.password #=> String
3202
+ # resp.endpoints[0].postgre_sql_settings.port #=> Integer
3203
+ # resp.endpoints[0].postgre_sql_settings.server_name #=> String
3204
+ # resp.endpoints[0].postgre_sql_settings.username #=> String
3205
+ # resp.endpoints[0].postgre_sql_settings.slot_name #=> String
3206
+ # resp.endpoints[0].my_sql_settings.after_connect_script #=> String
3207
+ # resp.endpoints[0].my_sql_settings.database_name #=> String
3208
+ # resp.endpoints[0].my_sql_settings.events_poll_interval #=> Integer
3209
+ # resp.endpoints[0].my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
3210
+ # resp.endpoints[0].my_sql_settings.max_file_size #=> Integer
3211
+ # resp.endpoints[0].my_sql_settings.parallel_load_threads #=> Integer
3212
+ # resp.endpoints[0].my_sql_settings.password #=> String
3213
+ # resp.endpoints[0].my_sql_settings.port #=> Integer
3214
+ # resp.endpoints[0].my_sql_settings.server_name #=> String
3215
+ # resp.endpoints[0].my_sql_settings.server_timezone #=> String
3216
+ # resp.endpoints[0].my_sql_settings.username #=> String
3217
+ # resp.endpoints[0].oracle_settings.add_supplemental_logging #=> Boolean
3218
+ # resp.endpoints[0].oracle_settings.archived_log_dest_id #=> Integer
3219
+ # resp.endpoints[0].oracle_settings.additional_archived_log_dest_id #=> Integer
3220
+ # resp.endpoints[0].oracle_settings.allow_select_nested_tables #=> Boolean
3221
+ # resp.endpoints[0].oracle_settings.parallel_asm_read_threads #=> Integer
3222
+ # resp.endpoints[0].oracle_settings.read_ahead_blocks #=> Integer
3223
+ # resp.endpoints[0].oracle_settings.access_alternate_directly #=> Boolean
3224
+ # resp.endpoints[0].oracle_settings.use_alternate_folder_for_online #=> Boolean
3225
+ # resp.endpoints[0].oracle_settings.oracle_path_prefix #=> String
3226
+ # resp.endpoints[0].oracle_settings.use_path_prefix #=> String
3227
+ # resp.endpoints[0].oracle_settings.replace_path_prefix #=> Boolean
3228
+ # resp.endpoints[0].oracle_settings.enable_homogenous_tablespace #=> Boolean
3229
+ # resp.endpoints[0].oracle_settings.direct_path_no_log #=> Boolean
3230
+ # resp.endpoints[0].oracle_settings.archived_logs_only #=> Boolean
3231
+ # resp.endpoints[0].oracle_settings.asm_password #=> String
3232
+ # resp.endpoints[0].oracle_settings.asm_server #=> String
3233
+ # resp.endpoints[0].oracle_settings.asm_user #=> String
3234
+ # resp.endpoints[0].oracle_settings.char_length_semantics #=> String, one of "default", "char", "byte"
3235
+ # resp.endpoints[0].oracle_settings.database_name #=> String
3236
+ # resp.endpoints[0].oracle_settings.direct_path_parallel_load #=> Boolean
3237
+ # resp.endpoints[0].oracle_settings.fail_tasks_on_lob_truncation #=> Boolean
3238
+ # resp.endpoints[0].oracle_settings.number_datatype_scale #=> Integer
3239
+ # resp.endpoints[0].oracle_settings.password #=> String
3240
+ # resp.endpoints[0].oracle_settings.port #=> Integer
3241
+ # resp.endpoints[0].oracle_settings.read_table_space_name #=> Boolean
3242
+ # resp.endpoints[0].oracle_settings.retry_interval #=> Integer
3243
+ # resp.endpoints[0].oracle_settings.security_db_encryption #=> String
3244
+ # resp.endpoints[0].oracle_settings.security_db_encryption_name #=> String
3245
+ # resp.endpoints[0].oracle_settings.server_name #=> String
3246
+ # resp.endpoints[0].oracle_settings.username #=> String
3247
+ # resp.endpoints[0].sybase_settings.database_name #=> String
3248
+ # resp.endpoints[0].sybase_settings.password #=> String
3249
+ # resp.endpoints[0].sybase_settings.port #=> Integer
3250
+ # resp.endpoints[0].sybase_settings.server_name #=> String
3251
+ # resp.endpoints[0].sybase_settings.username #=> String
3252
+ # resp.endpoints[0].microsoft_sql_server_settings.port #=> Integer
3253
+ # resp.endpoints[0].microsoft_sql_server_settings.bcp_packet_size #=> Integer
3254
+ # resp.endpoints[0].microsoft_sql_server_settings.database_name #=> String
3255
+ # resp.endpoints[0].microsoft_sql_server_settings.control_tables_file_group #=> String
3256
+ # resp.endpoints[0].microsoft_sql_server_settings.password #=> String
3257
+ # resp.endpoints[0].microsoft_sql_server_settings.read_backup_only #=> Boolean
3258
+ # resp.endpoints[0].microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
3259
+ # resp.endpoints[0].microsoft_sql_server_settings.server_name #=> String
3260
+ # resp.endpoints[0].microsoft_sql_server_settings.username #=> String
3261
+ # resp.endpoints[0].microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
3262
+ # resp.endpoints[0].ibm_db_2_settings.database_name #=> String
3263
+ # resp.endpoints[0].ibm_db_2_settings.password #=> String
3264
+ # resp.endpoints[0].ibm_db_2_settings.port #=> Integer
3265
+ # resp.endpoints[0].ibm_db_2_settings.server_name #=> String
3266
+ # resp.endpoints[0].ibm_db_2_settings.set_data_capture_changes #=> Boolean
3267
+ # resp.endpoints[0].ibm_db_2_settings.current_lsn #=> String
3268
+ # resp.endpoints[0].ibm_db_2_settings.max_k_bytes_per_read #=> Integer
3269
+ # resp.endpoints[0].ibm_db_2_settings.username #=> String
2632
3270
  #
2633
3271
  #
2634
3272
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2659,7 +3297,7 @@ module Aws::DatabaseMigrationService
2659
3297
  # Valid values: replication-instance \| replication-task
2660
3298
  #
2661
3299
  # @option params [Array<Types::Filter>] :filters
2662
- # Filters applied to the action.
3300
+ # Filters applied to the event categories.
2663
3301
  #
2664
3302
  # @return [Types::DescribeEventCategoriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2665
3303
  #
@@ -2705,7 +3343,7 @@ module Aws::DatabaseMigrationService
2705
3343
  # The name of the AWS DMS event subscription to be described.
2706
3344
  #
2707
3345
  # @option params [Array<Types::Filter>] :filters
2708
- # Filters applied to the action.
3346
+ # Filters applied to event subscriptions.
2709
3347
  #
2710
3348
  # @option params [Integer] :max_records
2711
3349
  # The maximum number of records to include in the response. If more
@@ -2798,7 +3436,7 @@ module Aws::DatabaseMigrationService
2798
3436
  # A list of event categories for the source type that you've chosen.
2799
3437
  #
2800
3438
  # @option params [Array<Types::Filter>] :filters
2801
- # Filters applied to the action.
3439
+ # Filters applied to events.
2802
3440
  #
2803
3441
  # @option params [Integer] :max_records
2804
3442
  # The maximum number of records to include in the response. If more
@@ -3105,7 +3743,7 @@ module Aws::DatabaseMigrationService
3105
3743
  # the current region.
3106
3744
  #
3107
3745
  # @option params [Array<Types::Filter>] :filters
3108
- # Filters applied to the describe action.
3746
+ # Filters applied to replication instances.
3109
3747
  #
3110
3748
  # Valid filter names: replication-instance-arn \|
3111
3749
  # replication-instance-id \| replication-instance-class \|
@@ -3232,7 +3870,7 @@ module Aws::DatabaseMigrationService
3232
3870
  # Returns information about the replication subnet groups.
3233
3871
  #
3234
3872
  # @option params [Array<Types::Filter>] :filters
3235
- # Filters applied to the describe action.
3873
+ # Filters applied to replication subnet groups.
3236
3874
  #
3237
3875
  # Valid filter names: replication-subnet-group-id
3238
3876
  #
@@ -3381,11 +4019,152 @@ module Aws::DatabaseMigrationService
3381
4019
  req.send_request(options)
3382
4020
  end
3383
4021
 
4022
+ # Returns a paginated list of premigration assessment runs based on
4023
+ # filter settings.
4024
+ #
4025
+ # These filter settings can specify a combination of premigration
4026
+ # assessment runs, migration tasks, replication instances, and
4027
+ # assessment run status values.
4028
+ #
4029
+ # <note markdown="1"> This operation doesn't return information about individual
4030
+ # assessments. For this information, see the
4031
+ # `DescribeReplicationTaskIndividualAssessments` operation.
4032
+ #
4033
+ # </note>
4034
+ #
4035
+ # @option params [Array<Types::Filter>] :filters
4036
+ # Filters applied to the premigration assessment runs described in the
4037
+ # form of key-value pairs.
4038
+ #
4039
+ # Valid filter names: `replication-task-assessment-run-arn`,
4040
+ # `replication-task-arn`, `replication-instance-arn`, `status`
4041
+ #
4042
+ # @option params [Integer] :max_records
4043
+ # The maximum number of records to include in the response. If more
4044
+ # records exist than the specified `MaxRecords` value, a pagination
4045
+ # token called a marker is included in the response so that the
4046
+ # remaining results can be retrieved.
4047
+ #
4048
+ # @option params [String] :marker
4049
+ # An optional pagination token provided by a previous request. If this
4050
+ # parameter is specified, the response includes only records beyond the
4051
+ # marker, up to the value specified by `MaxRecords`.
4052
+ #
4053
+ # @return [Types::DescribeReplicationTaskAssessmentRunsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4054
+ #
4055
+ # * {Types::DescribeReplicationTaskAssessmentRunsResponse#marker #marker} => String
4056
+ # * {Types::DescribeReplicationTaskAssessmentRunsResponse#replication_task_assessment_runs #replication_task_assessment_runs} => Array&lt;Types::ReplicationTaskAssessmentRun&gt;
4057
+ #
4058
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4059
+ #
4060
+ # @example Request syntax with placeholder values
4061
+ #
4062
+ # resp = client.describe_replication_task_assessment_runs({
4063
+ # filters: [
4064
+ # {
4065
+ # name: "String", # required
4066
+ # values: ["String"], # required
4067
+ # },
4068
+ # ],
4069
+ # max_records: 1,
4070
+ # marker: "String",
4071
+ # })
4072
+ #
4073
+ # @example Response structure
4074
+ #
4075
+ # resp.marker #=> String
4076
+ # resp.replication_task_assessment_runs #=> Array
4077
+ # resp.replication_task_assessment_runs[0].replication_task_assessment_run_arn #=> String
4078
+ # resp.replication_task_assessment_runs[0].replication_task_arn #=> String
4079
+ # resp.replication_task_assessment_runs[0].status #=> String
4080
+ # resp.replication_task_assessment_runs[0].replication_task_assessment_run_creation_date #=> Time
4081
+ # resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_count #=> Integer
4082
+ # resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_completed_count #=> Integer
4083
+ # resp.replication_task_assessment_runs[0].last_failure_message #=> String
4084
+ # resp.replication_task_assessment_runs[0].service_access_role_arn #=> String
4085
+ # resp.replication_task_assessment_runs[0].result_location_bucket #=> String
4086
+ # resp.replication_task_assessment_runs[0].result_location_folder #=> String
4087
+ # resp.replication_task_assessment_runs[0].result_encryption_mode #=> String
4088
+ # resp.replication_task_assessment_runs[0].result_kms_key_arn #=> String
4089
+ # resp.replication_task_assessment_runs[0].assessment_run_name #=> String
4090
+ #
4091
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRuns AWS API Documentation
4092
+ #
4093
+ # @overload describe_replication_task_assessment_runs(params = {})
4094
+ # @param [Hash] params ({})
4095
+ def describe_replication_task_assessment_runs(params = {}, options = {})
4096
+ req = build_request(:describe_replication_task_assessment_runs, params)
4097
+ req.send_request(options)
4098
+ end
4099
+
4100
+ # Returns a paginated list of individual assessments based on filter
4101
+ # settings.
4102
+ #
4103
+ # These filter settings can specify a combination of premigration
4104
+ # assessment runs, migration tasks, and assessment status values.
4105
+ #
4106
+ # @option params [Array<Types::Filter>] :filters
4107
+ # Filters applied to the individual assessments described in the form of
4108
+ # key-value pairs.
4109
+ #
4110
+ # Valid filter names: `replication-task-assessment-run-arn`,
4111
+ # `replication-task-arn`, `status`
4112
+ #
4113
+ # @option params [Integer] :max_records
4114
+ # The maximum number of records to include in the response. If more
4115
+ # records exist than the specified `MaxRecords` value, a pagination
4116
+ # token called a marker is included in the response so that the
4117
+ # remaining results can be retrieved.
4118
+ #
4119
+ # @option params [String] :marker
4120
+ # An optional pagination token provided by a previous request. If this
4121
+ # parameter is specified, the response includes only records beyond the
4122
+ # marker, up to the value specified by `MaxRecords`.
4123
+ #
4124
+ # @return [Types::DescribeReplicationTaskIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4125
+ #
4126
+ # * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#marker #marker} => String
4127
+ # * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#replication_task_individual_assessments #replication_task_individual_assessments} => Array&lt;Types::ReplicationTaskIndividualAssessment&gt;
4128
+ #
4129
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4130
+ #
4131
+ # @example Request syntax with placeholder values
4132
+ #
4133
+ # resp = client.describe_replication_task_individual_assessments({
4134
+ # filters: [
4135
+ # {
4136
+ # name: "String", # required
4137
+ # values: ["String"], # required
4138
+ # },
4139
+ # ],
4140
+ # max_records: 1,
4141
+ # marker: "String",
4142
+ # })
4143
+ #
4144
+ # @example Response structure
4145
+ #
4146
+ # resp.marker #=> String
4147
+ # resp.replication_task_individual_assessments #=> Array
4148
+ # resp.replication_task_individual_assessments[0].replication_task_individual_assessment_arn #=> String
4149
+ # resp.replication_task_individual_assessments[0].replication_task_assessment_run_arn #=> String
4150
+ # resp.replication_task_individual_assessments[0].individual_assessment_name #=> String
4151
+ # resp.replication_task_individual_assessments[0].status #=> String
4152
+ # resp.replication_task_individual_assessments[0].replication_task_individual_assessment_start_date #=> Time
4153
+ #
4154
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessments AWS API Documentation
4155
+ #
4156
+ # @overload describe_replication_task_individual_assessments(params = {})
4157
+ # @param [Hash] params ({})
4158
+ def describe_replication_task_individual_assessments(params = {}, options = {})
4159
+ req = build_request(:describe_replication_task_individual_assessments, params)
4160
+ req.send_request(options)
4161
+ end
4162
+
3384
4163
  # Returns information about replication tasks for your account in the
3385
4164
  # current region.
3386
4165
  #
3387
4166
  # @option params [Array<Types::Filter>] :filters
3388
- # Filters applied to the describe action.
4167
+ # Filters applied to replication tasks.
3389
4168
  #
3390
4169
  # Valid filter names: replication-task-arn \| replication-task-id \|
3391
4170
  # migration-type \| endpoint-arn \| replication-instance-arn
@@ -3602,7 +4381,7 @@ module Aws::DatabaseMigrationService
3602
4381
  # marker, up to the value specified by `MaxRecords`.
3603
4382
  #
3604
4383
  # @option params [Array<Types::Filter>] :filters
3605
- # Filters applied to the describe table statistics action.
4384
+ # Filters applied to table statistics.
3606
4385
  #
3607
4386
  # Valid filter names: schema-name \| table-name \| table-state
3608
4387
  #
@@ -3696,7 +4475,7 @@ module Aws::DatabaseMigrationService
3696
4475
  # @option params [String] :certificate_pem
3697
4476
  # The contents of a `.pem` file, which contains an X.509 certificate.
3698
4477
  #
3699
- # @option params [String, IO] :certificate_wallet
4478
+ # @option params [String, StringIO, File] :certificate_wallet
3700
4479
  # The location of an imported Oracle Wallet certificate for use with
3701
4480
  # SSL.
3702
4481
  #
@@ -3759,7 +4538,13 @@ module Aws::DatabaseMigrationService
3759
4538
  req.send_request(options)
3760
4539
  end
3761
4540
 
3762
- # Lists all tags for an AWS DMS resource.
4541
+ # Lists all metadata tags attached to an AWS DMS resource, including
4542
+ # replication instance, endpoint, security group, and migration task.
4543
+ # For more information, see [ `Tag` ][1] data type description.
4544
+ #
4545
+ #
4546
+ #
4547
+ # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
3763
4548
  #
3764
4549
  # @option params [required, String] :resource_arn
3765
4550
  # The Amazon Resource Name (ARN) string that uniquely identifies the AWS
@@ -3959,6 +4744,78 @@ module Aws::DatabaseMigrationService
3959
4744
  # @option params [Types::RedshiftSettings] :redshift_settings
3960
4745
  # Provides information that defines an Amazon Redshift endpoint.
3961
4746
  #
4747
+ # @option params [Types::PostgreSQLSettings] :postgre_sql_settings
4748
+ # Settings in JSON format for the source and target PostgreSQL endpoint.
4749
+ # For information about other available settings, see [Extra connection
4750
+ # attributes when using PostgreSQL as a source for AWS DMS][1] and [
4751
+ # Extra connection attributes when using PostgreSQL as a target for AWS
4752
+ # DMS][2] in the *AWS Database Migration Service User Guide.*
4753
+ #
4754
+ #
4755
+ #
4756
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
4757
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
4758
+ #
4759
+ # @option params [Types::MySQLSettings] :my_sql_settings
4760
+ # Settings in JSON format for the source and target MySQL endpoint. For
4761
+ # information about other available settings, see [Extra connection
4762
+ # attributes when using MySQL as a source for AWS DMS][1] and [Extra
4763
+ # connection attributes when using a MySQL-compatible database as a
4764
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
4765
+ # Guide.*
4766
+ #
4767
+ #
4768
+ #
4769
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
4770
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
4771
+ #
4772
+ # @option params [Types::OracleSettings] :oracle_settings
4773
+ # Settings in JSON format for the source and target Oracle endpoint. For
4774
+ # information about other available settings, see [Extra connection
4775
+ # attributes when using Oracle as a source for AWS DMS][1] and [ Extra
4776
+ # connection attributes when using Oracle as a target for AWS DMS][2] in
4777
+ # the *AWS Database Migration Service User Guide.*
4778
+ #
4779
+ #
4780
+ #
4781
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
4782
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
4783
+ #
4784
+ # @option params [Types::SybaseSettings] :sybase_settings
4785
+ # Settings in JSON format for the source and target SAP ASE endpoint.
4786
+ # For information about other available settings, see [Extra connection
4787
+ # attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
4788
+ # connection attributes when using SAP ASE as a target for AWS DMS][2]
4789
+ # in the *AWS Database Migration Service User Guide.*
4790
+ #
4791
+ #
4792
+ #
4793
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
4794
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
4795
+ #
4796
+ # @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
4797
+ # Settings in JSON format for the source and target Microsoft SQL Server
4798
+ # endpoint. For information about other available settings, see [Extra
4799
+ # connection attributes when using SQL Server as a source for AWS
4800
+ # DMS][1] and [ Extra connection attributes when using SQL Server as a
4801
+ # target for AWS DMS][2] in the *AWS Database Migration Service User
4802
+ # Guide.*
4803
+ #
4804
+ #
4805
+ #
4806
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
4807
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
4808
+ #
4809
+ # @option params [Types::IBMDb2Settings] :ibm_db_2_settings
4810
+ # Settings in JSON format for the source IBM Db2 LUW endpoint. For
4811
+ # information about other available settings, see [Extra connection
4812
+ # attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
4813
+ # Database Migration Service User Guide.*
4814
+ #
4815
+ #
4816
+ #
4817
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
4818
+ #
3962
4819
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3963
4820
  #
3964
4821
  # * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -4031,6 +4888,9 @@ module Aws::DatabaseMigrationService
4031
4888
  # timestamp_column_name: "String",
4032
4889
  # parquet_timestamp_in_millisecond: false,
4033
4890
  # cdc_inserts_and_updates: false,
4891
+ # date_partition_enabled: false,
4892
+ # date_partition_sequence: "YYYYMMDD", # accepts YYYYMMDD, YYYYMMDDHH, YYYYMM, MMYYYYDD, DDMMYYYY
4893
+ # date_partition_delimiter: "SLASH", # accepts SLASH, UNDERSCORE, DASH, NONE
4034
4894
  # },
4035
4895
  # dms_transfer_settings: {
4036
4896
  # service_access_role_arn: "String",
@@ -4059,10 +4919,19 @@ module Aws::DatabaseMigrationService
4059
4919
  # partition_include_schema_table: false,
4060
4920
  # include_table_alter_operations: false,
4061
4921
  # include_control_details: false,
4922
+ # include_null_and_empty: false,
4062
4923
  # },
4063
4924
  # kafka_settings: {
4064
4925
  # broker: "String",
4065
4926
  # topic: "String",
4927
+ # message_format: "json", # accepts json, json-unformatted
4928
+ # include_transaction_details: false,
4929
+ # include_partition_value: false,
4930
+ # partition_include_schema_table: false,
4931
+ # include_table_alter_operations: false,
4932
+ # include_control_details: false,
4933
+ # message_max_bytes: 1,
4934
+ # include_null_and_empty: false,
4066
4935
  # },
4067
4936
  # elasticsearch_settings: {
4068
4937
  # service_access_role_arn: "String", # required
@@ -4106,6 +4975,94 @@ module Aws::DatabaseMigrationService
4106
4975
  # username: "String",
4107
4976
  # write_buffer_size: 1,
4108
4977
  # },
4978
+ # postgre_sql_settings: {
4979
+ # after_connect_script: "String",
4980
+ # capture_ddls: false,
4981
+ # max_file_size: 1,
4982
+ # database_name: "String",
4983
+ # ddl_artifacts_schema: "String",
4984
+ # execute_timeout: 1,
4985
+ # fail_tasks_on_lob_truncation: false,
4986
+ # password: "SecretString",
4987
+ # port: 1,
4988
+ # server_name: "String",
4989
+ # username: "String",
4990
+ # slot_name: "String",
4991
+ # },
4992
+ # my_sql_settings: {
4993
+ # after_connect_script: "String",
4994
+ # database_name: "String",
4995
+ # events_poll_interval: 1,
4996
+ # target_db_type: "specific-database", # accepts specific-database, multiple-databases
4997
+ # max_file_size: 1,
4998
+ # parallel_load_threads: 1,
4999
+ # password: "SecretString",
5000
+ # port: 1,
5001
+ # server_name: "String",
5002
+ # server_timezone: "String",
5003
+ # username: "String",
5004
+ # },
5005
+ # oracle_settings: {
5006
+ # add_supplemental_logging: false,
5007
+ # archived_log_dest_id: 1,
5008
+ # additional_archived_log_dest_id: 1,
5009
+ # allow_select_nested_tables: false,
5010
+ # parallel_asm_read_threads: 1,
5011
+ # read_ahead_blocks: 1,
5012
+ # access_alternate_directly: false,
5013
+ # use_alternate_folder_for_online: false,
5014
+ # oracle_path_prefix: "String",
5015
+ # use_path_prefix: "String",
5016
+ # replace_path_prefix: false,
5017
+ # enable_homogenous_tablespace: false,
5018
+ # direct_path_no_log: false,
5019
+ # archived_logs_only: false,
5020
+ # asm_password: "SecretString",
5021
+ # asm_server: "String",
5022
+ # asm_user: "String",
5023
+ # char_length_semantics: "default", # accepts default, char, byte
5024
+ # database_name: "String",
5025
+ # direct_path_parallel_load: false,
5026
+ # fail_tasks_on_lob_truncation: false,
5027
+ # number_datatype_scale: 1,
5028
+ # password: "SecretString",
5029
+ # port: 1,
5030
+ # read_table_space_name: false,
5031
+ # retry_interval: 1,
5032
+ # security_db_encryption: "SecretString",
5033
+ # security_db_encryption_name: "String",
5034
+ # server_name: "String",
5035
+ # username: "String",
5036
+ # },
5037
+ # sybase_settings: {
5038
+ # database_name: "String",
5039
+ # password: "SecretString",
5040
+ # port: 1,
5041
+ # server_name: "String",
5042
+ # username: "String",
5043
+ # },
5044
+ # microsoft_sql_server_settings: {
5045
+ # port: 1,
5046
+ # bcp_packet_size: 1,
5047
+ # database_name: "String",
5048
+ # control_tables_file_group: "String",
5049
+ # password: "SecretString",
5050
+ # read_backup_only: false,
5051
+ # safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
5052
+ # server_name: "String",
5053
+ # username: "String",
5054
+ # use_bcp_full_load: false,
5055
+ # },
5056
+ # ibm_db_2_settings: {
5057
+ # database_name: "String",
5058
+ # password: "SecretString",
5059
+ # port: 1,
5060
+ # server_name: "String",
5061
+ # set_data_capture_changes: false,
5062
+ # current_lsn: "String",
5063
+ # max_k_bytes_per_read: 1,
5064
+ # username: "String",
5065
+ # },
4109
5066
  # })
4110
5067
  #
4111
5068
  # @example Response structure
@@ -4149,6 +5106,9 @@ module Aws::DatabaseMigrationService
4149
5106
  # resp.endpoint.s3_settings.timestamp_column_name #=> String
4150
5107
  # resp.endpoint.s3_settings.parquet_timestamp_in_millisecond #=> Boolean
4151
5108
  # resp.endpoint.s3_settings.cdc_inserts_and_updates #=> Boolean
5109
+ # resp.endpoint.s3_settings.date_partition_enabled #=> Boolean
5110
+ # resp.endpoint.s3_settings.date_partition_sequence #=> String, one of "YYYYMMDD", "YYYYMMDDHH", "YYYYMM", "MMYYYYDD", "DDMMYYYY"
5111
+ # resp.endpoint.s3_settings.date_partition_delimiter #=> String, one of "SLASH", "UNDERSCORE", "DASH", "NONE"
4152
5112
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
4153
5113
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
4154
5114
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -4171,8 +5131,17 @@ module Aws::DatabaseMigrationService
4171
5131
  # resp.endpoint.kinesis_settings.partition_include_schema_table #=> Boolean
4172
5132
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
4173
5133
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
5134
+ # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
4174
5135
  # resp.endpoint.kafka_settings.broker #=> String
4175
5136
  # resp.endpoint.kafka_settings.topic #=> String
5137
+ # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
5138
+ # resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
5139
+ # resp.endpoint.kafka_settings.include_partition_value #=> Boolean
5140
+ # resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
5141
+ # resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
5142
+ # resp.endpoint.kafka_settings.include_control_details #=> Boolean
5143
+ # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
5144
+ # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
4176
5145
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
4177
5146
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
4178
5147
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -4209,6 +5178,82 @@ module Aws::DatabaseMigrationService
4209
5178
  # resp.endpoint.redshift_settings.truncate_columns #=> Boolean
4210
5179
  # resp.endpoint.redshift_settings.username #=> String
4211
5180
  # resp.endpoint.redshift_settings.write_buffer_size #=> Integer
5181
+ # resp.endpoint.postgre_sql_settings.after_connect_script #=> String
5182
+ # resp.endpoint.postgre_sql_settings.capture_ddls #=> Boolean
5183
+ # resp.endpoint.postgre_sql_settings.max_file_size #=> Integer
5184
+ # resp.endpoint.postgre_sql_settings.database_name #=> String
5185
+ # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
5186
+ # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
5187
+ # resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
5188
+ # resp.endpoint.postgre_sql_settings.password #=> String
5189
+ # resp.endpoint.postgre_sql_settings.port #=> Integer
5190
+ # resp.endpoint.postgre_sql_settings.server_name #=> String
5191
+ # resp.endpoint.postgre_sql_settings.username #=> String
5192
+ # resp.endpoint.postgre_sql_settings.slot_name #=> String
5193
+ # resp.endpoint.my_sql_settings.after_connect_script #=> String
5194
+ # resp.endpoint.my_sql_settings.database_name #=> String
5195
+ # resp.endpoint.my_sql_settings.events_poll_interval #=> Integer
5196
+ # resp.endpoint.my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
5197
+ # resp.endpoint.my_sql_settings.max_file_size #=> Integer
5198
+ # resp.endpoint.my_sql_settings.parallel_load_threads #=> Integer
5199
+ # resp.endpoint.my_sql_settings.password #=> String
5200
+ # resp.endpoint.my_sql_settings.port #=> Integer
5201
+ # resp.endpoint.my_sql_settings.server_name #=> String
5202
+ # resp.endpoint.my_sql_settings.server_timezone #=> String
5203
+ # resp.endpoint.my_sql_settings.username #=> String
5204
+ # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
5205
+ # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
5206
+ # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
5207
+ # resp.endpoint.oracle_settings.allow_select_nested_tables #=> Boolean
5208
+ # resp.endpoint.oracle_settings.parallel_asm_read_threads #=> Integer
5209
+ # resp.endpoint.oracle_settings.read_ahead_blocks #=> Integer
5210
+ # resp.endpoint.oracle_settings.access_alternate_directly #=> Boolean
5211
+ # resp.endpoint.oracle_settings.use_alternate_folder_for_online #=> Boolean
5212
+ # resp.endpoint.oracle_settings.oracle_path_prefix #=> String
5213
+ # resp.endpoint.oracle_settings.use_path_prefix #=> String
5214
+ # resp.endpoint.oracle_settings.replace_path_prefix #=> Boolean
5215
+ # resp.endpoint.oracle_settings.enable_homogenous_tablespace #=> Boolean
5216
+ # resp.endpoint.oracle_settings.direct_path_no_log #=> Boolean
5217
+ # resp.endpoint.oracle_settings.archived_logs_only #=> Boolean
5218
+ # resp.endpoint.oracle_settings.asm_password #=> String
5219
+ # resp.endpoint.oracle_settings.asm_server #=> String
5220
+ # resp.endpoint.oracle_settings.asm_user #=> String
5221
+ # resp.endpoint.oracle_settings.char_length_semantics #=> String, one of "default", "char", "byte"
5222
+ # resp.endpoint.oracle_settings.database_name #=> String
5223
+ # resp.endpoint.oracle_settings.direct_path_parallel_load #=> Boolean
5224
+ # resp.endpoint.oracle_settings.fail_tasks_on_lob_truncation #=> Boolean
5225
+ # resp.endpoint.oracle_settings.number_datatype_scale #=> Integer
5226
+ # resp.endpoint.oracle_settings.password #=> String
5227
+ # resp.endpoint.oracle_settings.port #=> Integer
5228
+ # resp.endpoint.oracle_settings.read_table_space_name #=> Boolean
5229
+ # resp.endpoint.oracle_settings.retry_interval #=> Integer
5230
+ # resp.endpoint.oracle_settings.security_db_encryption #=> String
5231
+ # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
5232
+ # resp.endpoint.oracle_settings.server_name #=> String
5233
+ # resp.endpoint.oracle_settings.username #=> String
5234
+ # resp.endpoint.sybase_settings.database_name #=> String
5235
+ # resp.endpoint.sybase_settings.password #=> String
5236
+ # resp.endpoint.sybase_settings.port #=> Integer
5237
+ # resp.endpoint.sybase_settings.server_name #=> String
5238
+ # resp.endpoint.sybase_settings.username #=> String
5239
+ # resp.endpoint.microsoft_sql_server_settings.port #=> Integer
5240
+ # resp.endpoint.microsoft_sql_server_settings.bcp_packet_size #=> Integer
5241
+ # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
5242
+ # resp.endpoint.microsoft_sql_server_settings.control_tables_file_group #=> String
5243
+ # resp.endpoint.microsoft_sql_server_settings.password #=> String
5244
+ # resp.endpoint.microsoft_sql_server_settings.read_backup_only #=> Boolean
5245
+ # resp.endpoint.microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
5246
+ # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
5247
+ # resp.endpoint.microsoft_sql_server_settings.username #=> String
5248
+ # resp.endpoint.microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
5249
+ # resp.endpoint.ibm_db_2_settings.database_name #=> String
5250
+ # resp.endpoint.ibm_db_2_settings.password #=> String
5251
+ # resp.endpoint.ibm_db_2_settings.port #=> Integer
5252
+ # resp.endpoint.ibm_db_2_settings.server_name #=> String
5253
+ # resp.endpoint.ibm_db_2_settings.set_data_capture_changes #=> Boolean
5254
+ # resp.endpoint.ibm_db_2_settings.current_lsn #=> String
5255
+ # resp.endpoint.ibm_db_2_settings.max_k_bytes_per_read #=> Integer
5256
+ # resp.endpoint.ibm_db_2_settings.username #=> String
4212
5257
  #
4213
5258
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
4214
5259
  #
@@ -4342,6 +5387,9 @@ module Aws::DatabaseMigrationService
4342
5387
  # @option params [String] :engine_version
4343
5388
  # The engine version number of the replication instance.
4344
5389
  #
5390
+ # When modifying a major engine version of an instance, also set
5391
+ # `AllowMajorVersionUpgrade` to `true`.
5392
+ #
4345
5393
  # @option params [Boolean] :allow_major_version_upgrade
4346
5394
  # Indicates that major version upgrades are allowed. Changing this
4347
5395
  # parameter does not result in an outage, and the change is
@@ -4655,10 +5703,10 @@ module Aws::DatabaseMigrationService
4655
5703
  # The value can be either server time or commit time.
4656
5704
  #
4657
5705
  # Server time example: --cdc-stop-position
4658
- # “server\_time:3018-02-09T12:12:12”
5706
+ # “server\_time:2018-02-09T12:12:12”
4659
5707
  #
4660
5708
  # Commit time example: --cdc-stop-position “commit\_time:
4661
- # 3018-02-09T12:12:12 “
5709
+ # 2018-02-09T12:12:12 “
4662
5710
  #
4663
5711
  # @option params [String] :task_data
4664
5712
  # Supplemental information that the task requires to migrate the data
@@ -4884,8 +5932,8 @@ module Aws::DatabaseMigrationService
4884
5932
  # replication_task_arn: "String", # required
4885
5933
  # tables_to_reload: [ # required
4886
5934
  # {
4887
- # schema_name: "String",
4888
- # table_name: "String",
5935
+ # schema_name: "String", # required
5936
+ # table_name: "String", # required
4889
5937
  # },
4890
5938
  # ],
4891
5939
  # reload_option: "data-reload", # accepts data-reload, validate-only
@@ -4904,7 +5952,13 @@ module Aws::DatabaseMigrationService
4904
5952
  req.send_request(options)
4905
5953
  end
4906
5954
 
4907
- # Removes metadata tags from a DMS resource.
5955
+ # Removes metadata tags from an AWS DMS resource, including replication
5956
+ # instance, endpoint, security group, and migration task. For more
5957
+ # information, see [ `Tag` ][1] data type description.
5958
+ #
5959
+ #
5960
+ #
5961
+ # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
4908
5962
  #
4909
5963
  # @option params [required, String] :resource_arn
4910
5964
  # An AWS DMS resource from which you want to remove tag(s). The value
@@ -5001,10 +6055,10 @@ module Aws::DatabaseMigrationService
5001
6055
  # The value can be either server time or commit time.
5002
6056
  #
5003
6057
  # Server time example: --cdc-stop-position
5004
- # “server\_time:3018-02-09T12:12:12”
6058
+ # “server\_time:2018-02-09T12:12:12”
5005
6059
  #
5006
6060
  # Commit time example: --cdc-stop-position “commit\_time:
5007
- # 3018-02-09T12:12:12 “
6061
+ # 2018-02-09T12:12:12 “
5008
6062
  #
5009
6063
  # @return [Types::StartReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5010
6064
  #
@@ -5143,6 +6197,126 @@ module Aws::DatabaseMigrationService
5143
6197
  req.send_request(options)
5144
6198
  end
5145
6199
 
6200
+ # Starts a new premigration assessment run for one or more individual
6201
+ # assessments of a migration task.
6202
+ #
6203
+ # The assessments that you can specify depend on the source and target
6204
+ # database engine and the migration type defined for the given task. To
6205
+ # run this operation, your migration task must already be created. After
6206
+ # you run this operation, you can review the status of each individual
6207
+ # assessment. You can also run the migration task manually after the
6208
+ # assessment run and its individual assessments complete.
6209
+ #
6210
+ # @option params [required, String] :replication_task_arn
6211
+ # Amazon Resource Name (ARN) of the migration task associated with the
6212
+ # premigration assessment run that you want to start.
6213
+ #
6214
+ # @option params [required, String] :service_access_role_arn
6215
+ # ARN of a service role needed to start the assessment run.
6216
+ #
6217
+ # @option params [required, String] :result_location_bucket
6218
+ # Amazon S3 bucket where you want AWS DMS to store the results of this
6219
+ # assessment run.
6220
+ #
6221
+ # @option params [String] :result_location_folder
6222
+ # Folder within an Amazon S3 bucket where you want AWS DMS to store the
6223
+ # results of this assessment run.
6224
+ #
6225
+ # @option params [String] :result_encryption_mode
6226
+ # Encryption mode that you can specify to encrypt the results of this
6227
+ # assessment run. If you don't specify this request parameter, AWS DMS
6228
+ # stores the assessment run results without encryption. You can specify
6229
+ # one of the options following:
6230
+ #
6231
+ # * `"SSE_S3"` – The server-side encryption provided as a default by
6232
+ # Amazon S3.
6233
+ #
6234
+ # * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption. This
6235
+ # encryption can use either a custom KMS encryption key that you
6236
+ # specify or the default KMS encryption key that DMS provides.
6237
+ #
6238
+ # @option params [String] :result_kms_key_arn
6239
+ # ARN of a custom KMS encryption key that you specify when you set
6240
+ # `ResultEncryptionMode` to `"SSE_KMS`".
6241
+ #
6242
+ # @option params [required, String] :assessment_run_name
6243
+ # Unique name to identify the assessment run.
6244
+ #
6245
+ # @option params [Array<String>] :include_only
6246
+ # Space-separated list of names for specific individual assessments that
6247
+ # you want to include. These names come from the default list of
6248
+ # individual assessments that AWS DMS supports for the associated
6249
+ # migration task. This task is specified by `ReplicationTaskArn`.
6250
+ #
6251
+ # <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
6252
+ # `Exclude` in the API operation.
6253
+ #
6254
+ # To identify the names of the default individual assessments that AWS
6255
+ # DMS supports for the associated migration task, run the
6256
+ # `DescribeApplicableIndividualAssessments` operation using its own
6257
+ # `ReplicationTaskArn` request parameter.
6258
+ #
6259
+ # </note>
6260
+ #
6261
+ # @option params [Array<String>] :exclude
6262
+ # Space-separated list of names for specific individual assessments that
6263
+ # you want to exclude. These names come from the default list of
6264
+ # individual assessments that AWS DMS supports for the associated
6265
+ # migration task. This task is specified by `ReplicationTaskArn`.
6266
+ #
6267
+ # <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
6268
+ # `IncludeOnly` in the API operation.
6269
+ #
6270
+ # To identify the names of the default individual assessments that AWS
6271
+ # DMS supports for the associated migration task, run the
6272
+ # `DescribeApplicableIndividualAssessments` operation using its own
6273
+ # `ReplicationTaskArn` request parameter.
6274
+ #
6275
+ # </note>
6276
+ #
6277
+ # @return [Types::StartReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6278
+ #
6279
+ # * {Types::StartReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
6280
+ #
6281
+ # @example Request syntax with placeholder values
6282
+ #
6283
+ # resp = client.start_replication_task_assessment_run({
6284
+ # replication_task_arn: "String", # required
6285
+ # service_access_role_arn: "String", # required
6286
+ # result_location_bucket: "String", # required
6287
+ # result_location_folder: "String",
6288
+ # result_encryption_mode: "String",
6289
+ # result_kms_key_arn: "String",
6290
+ # assessment_run_name: "String", # required
6291
+ # include_only: ["String"],
6292
+ # exclude: ["String"],
6293
+ # })
6294
+ #
6295
+ # @example Response structure
6296
+ #
6297
+ # resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
6298
+ # resp.replication_task_assessment_run.replication_task_arn #=> String
6299
+ # resp.replication_task_assessment_run.status #=> String
6300
+ # resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
6301
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
6302
+ # resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
6303
+ # resp.replication_task_assessment_run.last_failure_message #=> String
6304
+ # resp.replication_task_assessment_run.service_access_role_arn #=> String
6305
+ # resp.replication_task_assessment_run.result_location_bucket #=> String
6306
+ # resp.replication_task_assessment_run.result_location_folder #=> String
6307
+ # resp.replication_task_assessment_run.result_encryption_mode #=> String
6308
+ # resp.replication_task_assessment_run.result_kms_key_arn #=> String
6309
+ # resp.replication_task_assessment_run.assessment_run_name #=> String
6310
+ #
6311
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRun AWS API Documentation
6312
+ #
6313
+ # @overload start_replication_task_assessment_run(params = {})
6314
+ # @param [Hash] params ({})
6315
+ def start_replication_task_assessment_run(params = {}, options = {})
6316
+ req = build_request(:start_replication_task_assessment_run, params)
6317
+ req.send_request(options)
6318
+ end
6319
+
5146
6320
  # Stops the replication task.
5147
6321
  #
5148
6322
  # @option params [required, String] :replication_task_arn
@@ -5291,7 +6465,7 @@ module Aws::DatabaseMigrationService
5291
6465
  params: params,
5292
6466
  config: config)
5293
6467
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
5294
- context[:gem_version] = '1.38.0'
6468
+ context[:gem_version] = '1.44.0'
5295
6469
  Seahorse::Client::Request.new(handlers, context)
5296
6470
  end
5297
6471