aws-sdk-databasemigrationservice 1.34.0 → 1.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-databasemigrationservice.rb +3 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +925 -47
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +294 -2
- data/lib/aws-sdk-databasemigrationservice/customizations.rb +1 -0
- data/lib/aws-sdk-databasemigrationservice/errors.rb +50 -0
- data/lib/aws-sdk-databasemigrationservice/resource.rb +2 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +1777 -192
- data/lib/aws-sdk-databasemigrationservice/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b481499cb6712d83b2377d234d31c56f05c339218a42a1138f682296491b630
|
4
|
+
data.tar.gz: 4125d885a713daf475b99ab7d7a78c5dc0108c360fe43ce90f5027486fdf0c79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5c3e635db88f873262e0ef48d6fbe59f075ab5f754658ceb0132e5bdc6ea9536473e74a108ba56b54e392f683677f618929dd6d6480396ad6727d2d61bf2793
|
7
|
+
data.tar.gz: e52e8ca67922dbb66a23c8bf4b241dc66c9f4caa87286fadcfa43c5b869ebace10509e575dd804aeca50e11ca67798383f8c3fa2cb4d07431fcba2a2f01e7198
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::DatabaseMigrationService
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.39.0'
|
50
52
|
|
51
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::DatabaseMigrationService
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::DatabaseMigrationService
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -434,6 +438,51 @@ module Aws::DatabaseMigrationService
|
|
434
438
|
req.send_request(options)
|
435
439
|
end
|
436
440
|
|
441
|
+
# Cancels a single premigration assessment run.
|
442
|
+
#
|
443
|
+
# This operation prevents any individual assessments from running if
|
444
|
+
# they haven't started running. It also attempts to cancel any
|
445
|
+
# individual assessments that are currently running.
|
446
|
+
#
|
447
|
+
# @option params [required, String] :replication_task_assessment_run_arn
|
448
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
449
|
+
# canceled.
|
450
|
+
#
|
451
|
+
# @return [Types::CancelReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
452
|
+
#
|
453
|
+
# * {Types::CancelReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
|
454
|
+
#
|
455
|
+
# @example Request syntax with placeholder values
|
456
|
+
#
|
457
|
+
# resp = client.cancel_replication_task_assessment_run({
|
458
|
+
# replication_task_assessment_run_arn: "String", # required
|
459
|
+
# })
|
460
|
+
#
|
461
|
+
# @example Response structure
|
462
|
+
#
|
463
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
|
464
|
+
# resp.replication_task_assessment_run.replication_task_arn #=> String
|
465
|
+
# resp.replication_task_assessment_run.status #=> String
|
466
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
|
467
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
|
468
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
|
469
|
+
# resp.replication_task_assessment_run.last_failure_message #=> String
|
470
|
+
# resp.replication_task_assessment_run.service_access_role_arn #=> String
|
471
|
+
# resp.replication_task_assessment_run.result_location_bucket #=> String
|
472
|
+
# resp.replication_task_assessment_run.result_location_folder #=> String
|
473
|
+
# resp.replication_task_assessment_run.result_encryption_mode #=> String
|
474
|
+
# resp.replication_task_assessment_run.result_kms_key_arn #=> String
|
475
|
+
# resp.replication_task_assessment_run.assessment_run_name #=> String
|
476
|
+
#
|
477
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRun AWS API Documentation
|
478
|
+
#
|
479
|
+
# @overload cancel_replication_task_assessment_run(params = {})
|
480
|
+
# @param [Hash] params ({})
|
481
|
+
def cancel_replication_task_assessment_run(params = {}, options = {})
|
482
|
+
req = build_request(:cancel_replication_task_assessment_run, params)
|
483
|
+
req.send_request(options)
|
484
|
+
end
|
485
|
+
|
437
486
|
# Creates an endpoint using the provided settings.
|
438
487
|
#
|
439
488
|
# @option params [required, String] :endpoint_identifier
|
@@ -449,8 +498,8 @@ module Aws::DatabaseMigrationService
|
|
449
498
|
# `EndpointType` value, include `"mysql"`, `"oracle"`, `"postgres"`,
|
450
499
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
|
451
500
|
# `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
|
452
|
-
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
|
453
|
-
# `"sqlserver"`.
|
501
|
+
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
|
502
|
+
# `"sqlserver"`, and `"neptune"`.
|
454
503
|
#
|
455
504
|
# @option params [String] :username
|
456
505
|
# The user name to be used to log in to the endpoint database.
|
@@ -563,7 +612,8 @@ module Aws::DatabaseMigrationService
|
|
563
612
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
564
613
|
# Data Streams. For more information about the available settings, see
|
565
614
|
# [Using Amazon Kinesis Data Streams as a Target for AWS Database
|
566
|
-
# Migration Service][1] in the *AWS Database Migration User
|
615
|
+
# Migration Service][1] in the *AWS Database Migration Service User
|
616
|
+
# Guide.*
|
567
617
|
#
|
568
618
|
#
|
569
619
|
#
|
@@ -573,7 +623,7 @@ module Aws::DatabaseMigrationService
|
|
573
623
|
# Settings in JSON format for the target Apache Kafka endpoint. For more
|
574
624
|
# information about the available settings, see [Using Apache Kafka as a
|
575
625
|
# Target for AWS Database Migration Service][1] in the *AWS Database
|
576
|
-
# Migration User Guide.*
|
626
|
+
# Migration Service User Guide.*
|
577
627
|
#
|
578
628
|
#
|
579
629
|
#
|
@@ -583,7 +633,7 @@ module Aws::DatabaseMigrationService
|
|
583
633
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
584
634
|
# more information about the available settings, see [Extra Connection
|
585
635
|
# Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
|
586
|
-
# *AWS Database Migration User Guide
|
636
|
+
# *AWS Database Migration Service User Guide*.
|
587
637
|
#
|
588
638
|
#
|
589
639
|
#
|
@@ -591,9 +641,9 @@ module Aws::DatabaseMigrationService
|
|
591
641
|
#
|
592
642
|
# @option params [Types::NeptuneSettings] :neptune_settings
|
593
643
|
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
594
|
-
# more information about the available settings, see
|
595
|
-
#
|
596
|
-
#
|
644
|
+
# more information about the available settings, see [Specifying
|
645
|
+
# Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
|
646
|
+
# Database Migration Service User Guide.*
|
597
647
|
#
|
598
648
|
#
|
599
649
|
#
|
@@ -602,6 +652,78 @@ module Aws::DatabaseMigrationService
|
|
602
652
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
603
653
|
# Provides information that defines an Amazon Redshift endpoint.
|
604
654
|
#
|
655
|
+
# @option params [Types::PostgreSQLSettings] :postgre_sql_settings
|
656
|
+
# Settings in JSON format for the source and target PostgreSQL endpoint.
|
657
|
+
# For information about other available settings, see [Extra connection
|
658
|
+
# attributes when using PostgreSQL as a source for AWS DMS][1] and [
|
659
|
+
# Extra connection attributes when using PostgreSQL as a target for AWS
|
660
|
+
# DMS][2] in the *AWS Database Migration Service User Guide.*
|
661
|
+
#
|
662
|
+
#
|
663
|
+
#
|
664
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
665
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
666
|
+
#
|
667
|
+
# @option params [Types::MySQLSettings] :my_sql_settings
|
668
|
+
# Settings in JSON format for the source and target MySQL endpoint. For
|
669
|
+
# information about other available settings, see [Extra connection
|
670
|
+
# attributes when using MySQL as a source for AWS DMS][1] and [Extra
|
671
|
+
# connection attributes when using a MySQL-compatible database as a
|
672
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
673
|
+
# Guide.*
|
674
|
+
#
|
675
|
+
#
|
676
|
+
#
|
677
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
678
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
679
|
+
#
|
680
|
+
# @option params [Types::OracleSettings] :oracle_settings
|
681
|
+
# Settings in JSON format for the source and target Oracle endpoint. For
|
682
|
+
# information about other available settings, see [Extra connection
|
683
|
+
# attributes when using Oracle as a source for AWS DMS][1] and [ Extra
|
684
|
+
# connection attributes when using Oracle as a target for AWS DMS][2] in
|
685
|
+
# the *AWS Database Migration Service User Guide.*
|
686
|
+
#
|
687
|
+
#
|
688
|
+
#
|
689
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
690
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
691
|
+
#
|
692
|
+
# @option params [Types::SybaseSettings] :sybase_settings
|
693
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
694
|
+
# For information about other available settings, see [Extra connection
|
695
|
+
# attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
|
696
|
+
# connection attributes when using SAP ASE as a target for AWS DMS][2]
|
697
|
+
# in the *AWS Database Migration Service User Guide.*
|
698
|
+
#
|
699
|
+
#
|
700
|
+
#
|
701
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
702
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
703
|
+
#
|
704
|
+
# @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
|
705
|
+
# Settings in JSON format for the source and target Microsoft SQL Server
|
706
|
+
# endpoint. For information about other available settings, see [Extra
|
707
|
+
# connection attributes when using SQL Server as a source for AWS
|
708
|
+
# DMS][1] and [ Extra connection attributes when using SQL Server as a
|
709
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
710
|
+
# Guide.*
|
711
|
+
#
|
712
|
+
#
|
713
|
+
#
|
714
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
715
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
716
|
+
#
|
717
|
+
# @option params [Types::IBMDb2Settings] :ibm_db_2_settings
|
718
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
719
|
+
# information about other available settings, see [Extra connection
|
720
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
|
721
|
+
# Database Migration Service User Guide.*
|
722
|
+
#
|
723
|
+
#
|
724
|
+
#
|
725
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
726
|
+
#
|
605
727
|
# @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
606
728
|
#
|
607
729
|
# * {Types::CreateEndpointResponse#endpoint #endpoint} => Types::Endpoint
|
@@ -727,6 +849,12 @@ module Aws::DatabaseMigrationService
|
|
727
849
|
# kafka_settings: {
|
728
850
|
# broker: "String",
|
729
851
|
# topic: "String",
|
852
|
+
# message_format: "json", # accepts json, json-unformatted
|
853
|
+
# include_transaction_details: false,
|
854
|
+
# include_partition_value: false,
|
855
|
+
# partition_include_schema_table: false,
|
856
|
+
# include_table_alter_operations: false,
|
857
|
+
# include_control_details: false,
|
730
858
|
# },
|
731
859
|
# elasticsearch_settings: {
|
732
860
|
# service_access_role_arn: "String", # required
|
@@ -770,6 +898,53 @@ module Aws::DatabaseMigrationService
|
|
770
898
|
# username: "String",
|
771
899
|
# write_buffer_size: 1,
|
772
900
|
# },
|
901
|
+
# postgre_sql_settings: {
|
902
|
+
# database_name: "String",
|
903
|
+
# password: "SecretString",
|
904
|
+
# port: 1,
|
905
|
+
# server_name: "String",
|
906
|
+
# username: "String",
|
907
|
+
# },
|
908
|
+
# my_sql_settings: {
|
909
|
+
# database_name: "String",
|
910
|
+
# password: "SecretString",
|
911
|
+
# port: 1,
|
912
|
+
# server_name: "String",
|
913
|
+
# username: "String",
|
914
|
+
# },
|
915
|
+
# oracle_settings: {
|
916
|
+
# asm_password: "SecretString",
|
917
|
+
# asm_server: "String",
|
918
|
+
# asm_user: "String",
|
919
|
+
# database_name: "String",
|
920
|
+
# password: "SecretString",
|
921
|
+
# port: 1,
|
922
|
+
# security_db_encryption: "SecretString",
|
923
|
+
# security_db_encryption_name: "String",
|
924
|
+
# server_name: "String",
|
925
|
+
# username: "String",
|
926
|
+
# },
|
927
|
+
# sybase_settings: {
|
928
|
+
# database_name: "String",
|
929
|
+
# password: "SecretString",
|
930
|
+
# port: 1,
|
931
|
+
# server_name: "String",
|
932
|
+
# username: "String",
|
933
|
+
# },
|
934
|
+
# microsoft_sql_server_settings: {
|
935
|
+
# port: 1,
|
936
|
+
# database_name: "String",
|
937
|
+
# password: "SecretString",
|
938
|
+
# server_name: "String",
|
939
|
+
# username: "String",
|
940
|
+
# },
|
941
|
+
# ibm_db_2_settings: {
|
942
|
+
# database_name: "String",
|
943
|
+
# password: "SecretString",
|
944
|
+
# port: 1,
|
945
|
+
# server_name: "String",
|
946
|
+
# username: "String",
|
947
|
+
# },
|
773
948
|
# })
|
774
949
|
#
|
775
950
|
# @example Response structure
|
@@ -837,6 +1012,12 @@ module Aws::DatabaseMigrationService
|
|
837
1012
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
838
1013
|
# resp.endpoint.kafka_settings.broker #=> String
|
839
1014
|
# resp.endpoint.kafka_settings.topic #=> String
|
1015
|
+
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
1016
|
+
# resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
|
1017
|
+
# resp.endpoint.kafka_settings.include_partition_value #=> Boolean
|
1018
|
+
# resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
|
1019
|
+
# resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
|
1020
|
+
# resp.endpoint.kafka_settings.include_control_details #=> Boolean
|
840
1021
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
841
1022
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
842
1023
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -873,6 +1054,41 @@ module Aws::DatabaseMigrationService
|
|
873
1054
|
# resp.endpoint.redshift_settings.truncate_columns #=> Boolean
|
874
1055
|
# resp.endpoint.redshift_settings.username #=> String
|
875
1056
|
# resp.endpoint.redshift_settings.write_buffer_size #=> Integer
|
1057
|
+
# resp.endpoint.postgre_sql_settings.database_name #=> String
|
1058
|
+
# resp.endpoint.postgre_sql_settings.password #=> String
|
1059
|
+
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
1060
|
+
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
1061
|
+
# resp.endpoint.postgre_sql_settings.username #=> String
|
1062
|
+
# resp.endpoint.my_sql_settings.database_name #=> String
|
1063
|
+
# resp.endpoint.my_sql_settings.password #=> String
|
1064
|
+
# resp.endpoint.my_sql_settings.port #=> Integer
|
1065
|
+
# resp.endpoint.my_sql_settings.server_name #=> String
|
1066
|
+
# resp.endpoint.my_sql_settings.username #=> String
|
1067
|
+
# resp.endpoint.oracle_settings.asm_password #=> String
|
1068
|
+
# resp.endpoint.oracle_settings.asm_server #=> String
|
1069
|
+
# resp.endpoint.oracle_settings.asm_user #=> String
|
1070
|
+
# resp.endpoint.oracle_settings.database_name #=> String
|
1071
|
+
# resp.endpoint.oracle_settings.password #=> String
|
1072
|
+
# resp.endpoint.oracle_settings.port #=> Integer
|
1073
|
+
# resp.endpoint.oracle_settings.security_db_encryption #=> String
|
1074
|
+
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
1075
|
+
# resp.endpoint.oracle_settings.server_name #=> String
|
1076
|
+
# resp.endpoint.oracle_settings.username #=> String
|
1077
|
+
# resp.endpoint.sybase_settings.database_name #=> String
|
1078
|
+
# resp.endpoint.sybase_settings.password #=> String
|
1079
|
+
# resp.endpoint.sybase_settings.port #=> Integer
|
1080
|
+
# resp.endpoint.sybase_settings.server_name #=> String
|
1081
|
+
# resp.endpoint.sybase_settings.username #=> String
|
1082
|
+
# resp.endpoint.microsoft_sql_server_settings.port #=> Integer
|
1083
|
+
# resp.endpoint.microsoft_sql_server_settings.database_name #=> String
|
1084
|
+
# resp.endpoint.microsoft_sql_server_settings.password #=> String
|
1085
|
+
# resp.endpoint.microsoft_sql_server_settings.server_name #=> String
|
1086
|
+
# resp.endpoint.microsoft_sql_server_settings.username #=> String
|
1087
|
+
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
1088
|
+
# resp.endpoint.ibm_db_2_settings.password #=> String
|
1089
|
+
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
1090
|
+
# resp.endpoint.ibm_db_2_settings.server_name #=> String
|
1091
|
+
# resp.endpoint.ibm_db_2_settings.username #=> String
|
876
1092
|
#
|
877
1093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
|
878
1094
|
#
|
@@ -1012,7 +1228,7 @@ module Aws::DatabaseMigrationService
|
|
1012
1228
|
#
|
1013
1229
|
# Constraints:
|
1014
1230
|
#
|
1015
|
-
# * Must contain
|
1231
|
+
# * Must contain 1-63 alphanumeric characters or hyphens.
|
1016
1232
|
#
|
1017
1233
|
# * First character must be a letter.
|
1018
1234
|
#
|
@@ -1025,12 +1241,18 @@ module Aws::DatabaseMigrationService
|
|
1025
1241
|
# replication instance.
|
1026
1242
|
#
|
1027
1243
|
# @option params [required, String] :replication_instance_class
|
1028
|
-
# The compute and memory capacity of the replication instance as
|
1029
|
-
#
|
1244
|
+
# The compute and memory capacity of the replication instance as defined
|
1245
|
+
# for the specified replication instance class. For example to specify
|
1246
|
+
# the instance class dms.c4.large, set this parameter to
|
1247
|
+
# `"dms.c4.large"`.
|
1248
|
+
#
|
1249
|
+
# For more information on the settings and capacities for the available
|
1250
|
+
# replication instance classes, see [ Selecting the right AWS DMS
|
1251
|
+
# replication instance for your migration][1].
|
1252
|
+
#
|
1030
1253
|
#
|
1031
|
-
#
|
1032
|
-
#
|
1033
|
-
# dms.c4.4xlarge `
|
1254
|
+
#
|
1255
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
|
1034
1256
|
#
|
1035
1257
|
# @option params [Array<String>] :vpc_security_group_ids
|
1036
1258
|
# Specifies the VPC security group to be used with the replication
|
@@ -1094,7 +1316,12 @@ module Aws::DatabaseMigrationService
|
|
1094
1316
|
# default value is `true`.
|
1095
1317
|
#
|
1096
1318
|
# @option params [String] :dns_name_servers
|
1097
|
-
# A list of DNS name servers supported for the replication
|
1319
|
+
# A list of custom DNS name servers supported for the replication
|
1320
|
+
# instance to access your on-premise source or target database. This
|
1321
|
+
# list overrides the default name servers supported by the replication
|
1322
|
+
# instance. You can specify a comma-separated list of internet addresses
|
1323
|
+
# for up to four on-premise DNS name servers. For example:
|
1324
|
+
# `"1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4"`
|
1098
1325
|
#
|
1099
1326
|
# @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1100
1327
|
#
|
@@ -1346,7 +1573,7 @@ module Aws::DatabaseMigrationService
|
|
1346
1573
|
#
|
1347
1574
|
# Constraints:
|
1348
1575
|
#
|
1349
|
-
# * Must contain
|
1576
|
+
# * Must contain 1-255 alphanumeric characters or hyphens.
|
1350
1577
|
#
|
1351
1578
|
# * First character must be a letter.
|
1352
1579
|
#
|
@@ -1370,7 +1597,7 @@ module Aws::DatabaseMigrationService
|
|
1370
1597
|
# @option params [required, String] :table_mappings
|
1371
1598
|
# The table mappings for the task, in JSON format. For more information,
|
1372
1599
|
# see [Using Table Mapping to Specify Task Settings][1] in the *AWS
|
1373
|
-
# Database Migration User Guide.*
|
1600
|
+
# Database Migration Service User Guide.*
|
1374
1601
|
#
|
1375
1602
|
#
|
1376
1603
|
#
|
@@ -1437,7 +1664,7 @@ module Aws::DatabaseMigrationService
|
|
1437
1664
|
# Supplemental information that the task requires to migrate the data
|
1438
1665
|
# for certain source and target endpoints. For more information, see
|
1439
1666
|
# [Specifying Supplemental Data for Task Settings][1] in the *AWS
|
1440
|
-
# Database Migration User Guide.*
|
1667
|
+
# Database Migration Service User Guide.*
|
1441
1668
|
#
|
1442
1669
|
#
|
1443
1670
|
#
|
@@ -1764,6 +1991,12 @@ module Aws::DatabaseMigrationService
|
|
1764
1991
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
1765
1992
|
# resp.endpoint.kafka_settings.broker #=> String
|
1766
1993
|
# resp.endpoint.kafka_settings.topic #=> String
|
1994
|
+
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
1995
|
+
# resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
|
1996
|
+
# resp.endpoint.kafka_settings.include_partition_value #=> Boolean
|
1997
|
+
# resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
|
1998
|
+
# resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
|
1999
|
+
# resp.endpoint.kafka_settings.include_control_details #=> Boolean
|
1767
2000
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
1768
2001
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1769
2002
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -1800,6 +2033,41 @@ module Aws::DatabaseMigrationService
|
|
1800
2033
|
# resp.endpoint.redshift_settings.truncate_columns #=> Boolean
|
1801
2034
|
# resp.endpoint.redshift_settings.username #=> String
|
1802
2035
|
# resp.endpoint.redshift_settings.write_buffer_size #=> Integer
|
2036
|
+
# resp.endpoint.postgre_sql_settings.database_name #=> String
|
2037
|
+
# resp.endpoint.postgre_sql_settings.password #=> String
|
2038
|
+
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
2039
|
+
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
2040
|
+
# resp.endpoint.postgre_sql_settings.username #=> String
|
2041
|
+
# resp.endpoint.my_sql_settings.database_name #=> String
|
2042
|
+
# resp.endpoint.my_sql_settings.password #=> String
|
2043
|
+
# resp.endpoint.my_sql_settings.port #=> Integer
|
2044
|
+
# resp.endpoint.my_sql_settings.server_name #=> String
|
2045
|
+
# resp.endpoint.my_sql_settings.username #=> String
|
2046
|
+
# resp.endpoint.oracle_settings.asm_password #=> String
|
2047
|
+
# resp.endpoint.oracle_settings.asm_server #=> String
|
2048
|
+
# resp.endpoint.oracle_settings.asm_user #=> String
|
2049
|
+
# resp.endpoint.oracle_settings.database_name #=> String
|
2050
|
+
# resp.endpoint.oracle_settings.password #=> String
|
2051
|
+
# resp.endpoint.oracle_settings.port #=> Integer
|
2052
|
+
# resp.endpoint.oracle_settings.security_db_encryption #=> String
|
2053
|
+
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
2054
|
+
# resp.endpoint.oracle_settings.server_name #=> String
|
2055
|
+
# resp.endpoint.oracle_settings.username #=> String
|
2056
|
+
# resp.endpoint.sybase_settings.database_name #=> String
|
2057
|
+
# resp.endpoint.sybase_settings.password #=> String
|
2058
|
+
# resp.endpoint.sybase_settings.port #=> Integer
|
2059
|
+
# resp.endpoint.sybase_settings.server_name #=> String
|
2060
|
+
# resp.endpoint.sybase_settings.username #=> String
|
2061
|
+
# resp.endpoint.microsoft_sql_server_settings.port #=> Integer
|
2062
|
+
# resp.endpoint.microsoft_sql_server_settings.database_name #=> String
|
2063
|
+
# resp.endpoint.microsoft_sql_server_settings.password #=> String
|
2064
|
+
# resp.endpoint.microsoft_sql_server_settings.server_name #=> String
|
2065
|
+
# resp.endpoint.microsoft_sql_server_settings.username #=> String
|
2066
|
+
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
2067
|
+
# resp.endpoint.ibm_db_2_settings.password #=> String
|
2068
|
+
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
2069
|
+
# resp.endpoint.ibm_db_2_settings.server_name #=> String
|
2070
|
+
# resp.endpoint.ibm_db_2_settings.username #=> String
|
1803
2071
|
#
|
1804
2072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
|
1805
2073
|
#
|
@@ -2097,6 +2365,52 @@ module Aws::DatabaseMigrationService
|
|
2097
2365
|
req.send_request(options)
|
2098
2366
|
end
|
2099
2367
|
|
2368
|
+
# Deletes the record of a single premigration assessment run.
|
2369
|
+
#
|
2370
|
+
# This operation removes all metadata that AWS DMS maintains about this
|
2371
|
+
# assessment run. However, the operation leaves untouched all
|
2372
|
+
# information about this assessment run that is stored in your Amazon S3
|
2373
|
+
# bucket.
|
2374
|
+
#
|
2375
|
+
# @option params [required, String] :replication_task_assessment_run_arn
|
2376
|
+
# Amazon Resource Name (ARN) of the premigration assessment run to be
|
2377
|
+
# deleted.
|
2378
|
+
#
|
2379
|
+
# @return [Types::DeleteReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2380
|
+
#
|
2381
|
+
# * {Types::DeleteReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
|
2382
|
+
#
|
2383
|
+
# @example Request syntax with placeholder values
|
2384
|
+
#
|
2385
|
+
# resp = client.delete_replication_task_assessment_run({
|
2386
|
+
# replication_task_assessment_run_arn: "String", # required
|
2387
|
+
# })
|
2388
|
+
#
|
2389
|
+
# @example Response structure
|
2390
|
+
#
|
2391
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
|
2392
|
+
# resp.replication_task_assessment_run.replication_task_arn #=> String
|
2393
|
+
# resp.replication_task_assessment_run.status #=> String
|
2394
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
|
2395
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
|
2396
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
|
2397
|
+
# resp.replication_task_assessment_run.last_failure_message #=> String
|
2398
|
+
# resp.replication_task_assessment_run.service_access_role_arn #=> String
|
2399
|
+
# resp.replication_task_assessment_run.result_location_bucket #=> String
|
2400
|
+
# resp.replication_task_assessment_run.result_location_folder #=> String
|
2401
|
+
# resp.replication_task_assessment_run.result_encryption_mode #=> String
|
2402
|
+
# resp.replication_task_assessment_run.result_kms_key_arn #=> String
|
2403
|
+
# resp.replication_task_assessment_run.assessment_run_name #=> String
|
2404
|
+
#
|
2405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRun AWS API Documentation
|
2406
|
+
#
|
2407
|
+
# @overload delete_replication_task_assessment_run(params = {})
|
2408
|
+
# @param [Hash] params ({})
|
2409
|
+
def delete_replication_task_assessment_run(params = {}, options = {})
|
2410
|
+
req = build_request(:delete_replication_task_assessment_run, params)
|
2411
|
+
req.send_request(options)
|
2412
|
+
end
|
2413
|
+
|
2100
2414
|
# Lists all of the AWS DMS attributes for a customer account. These
|
2101
2415
|
# attributes include AWS DMS quotas for the account and a unique account
|
2102
2416
|
# identifier in a particular DMS region. DMS quotas include a list of
|
@@ -2161,10 +2475,98 @@ module Aws::DatabaseMigrationService
|
|
2161
2475
|
req.send_request(options)
|
2162
2476
|
end
|
2163
2477
|
|
2478
|
+
# Provides a list of individual assessments that you can specify for a
|
2479
|
+
# new premigration assessment run, given one or more parameters.
|
2480
|
+
#
|
2481
|
+
# If you specify an existing migration task, this operation provides the
|
2482
|
+
# default individual assessments you can specify for that task.
|
2483
|
+
# Otherwise, the specified parameters model elements of a possible
|
2484
|
+
# migration task on which to base a premigration assessment run.
|
2485
|
+
#
|
2486
|
+
# To use these migration task modeling parameters, you must specify an
|
2487
|
+
# existing replication instance, a source database engine, a target
|
2488
|
+
# database engine, and a migration type. This combination of parameters
|
2489
|
+
# potentially limits the default individual assessments available for an
|
2490
|
+
# assessment run created for a corresponding migration task.
|
2491
|
+
#
|
2492
|
+
# If you specify no parameters, this operation provides a list of all
|
2493
|
+
# possible individual assessments that you can specify for an assessment
|
2494
|
+
# run. If you specify any one of the task modeling parameters, you must
|
2495
|
+
# specify all of them or the operation cannot provide a list of
|
2496
|
+
# individual assessments. The only parameter that you can specify alone
|
2497
|
+
# is for an existing migration task. The specified task definition then
|
2498
|
+
# determines the default list of individual assessments that you can
|
2499
|
+
# specify in an assessment run for the task.
|
2500
|
+
#
|
2501
|
+
# @option params [String] :replication_task_arn
|
2502
|
+
# Amazon Resource Name (ARN) of a migration task on which you want to
|
2503
|
+
# base the default list of individual assessments.
|
2504
|
+
#
|
2505
|
+
# @option params [String] :replication_instance_arn
|
2506
|
+
# ARN of a replication instance on which you want to base the default
|
2507
|
+
# list of individual assessments.
|
2508
|
+
#
|
2509
|
+
# @option params [String] :source_engine_name
|
2510
|
+
# Name of a database engine that the specified replication instance
|
2511
|
+
# supports as a source.
|
2512
|
+
#
|
2513
|
+
# @option params [String] :target_engine_name
|
2514
|
+
# Name of a database engine that the specified replication instance
|
2515
|
+
# supports as a target.
|
2516
|
+
#
|
2517
|
+
# @option params [String] :migration_type
|
2518
|
+
# Name of the migration type that each provided individual assessment
|
2519
|
+
# must support.
|
2520
|
+
#
|
2521
|
+
# @option params [Integer] :max_records
|
2522
|
+
# Maximum number of records to include in the response. If more records
|
2523
|
+
# exist than the specified `MaxRecords` value, a pagination token called
|
2524
|
+
# a marker is included in the response so that the remaining results can
|
2525
|
+
# be retrieved.
|
2526
|
+
#
|
2527
|
+
# @option params [String] :marker
|
2528
|
+
# Optional pagination token provided by a previous request. If this
|
2529
|
+
# parameter is specified, the response includes only records beyond the
|
2530
|
+
# marker, up to the value specified by `MaxRecords`.
|
2531
|
+
#
|
2532
|
+
# @return [Types::DescribeApplicableIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2533
|
+
#
|
2534
|
+
# * {Types::DescribeApplicableIndividualAssessmentsResponse#individual_assessment_names #individual_assessment_names} => Array<String>
|
2535
|
+
# * {Types::DescribeApplicableIndividualAssessmentsResponse#marker #marker} => String
|
2536
|
+
#
|
2537
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2538
|
+
#
|
2539
|
+
# @example Request syntax with placeholder values
|
2540
|
+
#
|
2541
|
+
# resp = client.describe_applicable_individual_assessments({
|
2542
|
+
# replication_task_arn: "String",
|
2543
|
+
# replication_instance_arn: "String",
|
2544
|
+
# source_engine_name: "String",
|
2545
|
+
# target_engine_name: "String",
|
2546
|
+
# migration_type: "full-load", # accepts full-load, cdc, full-load-and-cdc
|
2547
|
+
# max_records: 1,
|
2548
|
+
# marker: "String",
|
2549
|
+
# })
|
2550
|
+
#
|
2551
|
+
# @example Response structure
|
2552
|
+
#
|
2553
|
+
# resp.individual_assessment_names #=> Array
|
2554
|
+
# resp.individual_assessment_names[0] #=> String
|
2555
|
+
# resp.marker #=> String
|
2556
|
+
#
|
2557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessments AWS API Documentation
|
2558
|
+
#
|
2559
|
+
# @overload describe_applicable_individual_assessments(params = {})
|
2560
|
+
# @param [Hash] params ({})
|
2561
|
+
def describe_applicable_individual_assessments(params = {}, options = {})
|
2562
|
+
req = build_request(:describe_applicable_individual_assessments, params)
|
2563
|
+
req.send_request(options)
|
2564
|
+
end
|
2565
|
+
|
2164
2566
|
# Provides a description of the certificate.
|
2165
2567
|
#
|
2166
2568
|
# @option params [Array<Types::Filter>] :filters
|
2167
|
-
# Filters applied to the
|
2569
|
+
# Filters applied to the certificates described in the form of key-value
|
2168
2570
|
# pairs.
|
2169
2571
|
#
|
2170
2572
|
# @option params [Integer] :max_records
|
@@ -2356,7 +2758,7 @@ module Aws::DatabaseMigrationService
|
|
2356
2758
|
# Returns information about the type of endpoints available.
|
2357
2759
|
#
|
2358
2760
|
# @option params [Array<Types::Filter>] :filters
|
2359
|
-
# Filters applied to the
|
2761
|
+
# Filters applied to the endpoint types.
|
2360
2762
|
#
|
2361
2763
|
# Valid filter names: engine-name \| endpoint-type
|
2362
2764
|
#
|
@@ -2444,7 +2846,7 @@ module Aws::DatabaseMigrationService
|
|
2444
2846
|
# current region.
|
2445
2847
|
#
|
2446
2848
|
# @option params [Array<Types::Filter>] :filters
|
2447
|
-
# Filters applied to the
|
2849
|
+
# Filters applied to the endpoints.
|
2448
2850
|
#
|
2449
2851
|
# Valid filter names: endpoint-arn \| endpoint-type \| endpoint-id \|
|
2450
2852
|
# engine-name
|
@@ -2577,6 +2979,12 @@ module Aws::DatabaseMigrationService
|
|
2577
2979
|
# resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
|
2578
2980
|
# resp.endpoints[0].kafka_settings.broker #=> String
|
2579
2981
|
# resp.endpoints[0].kafka_settings.topic #=> String
|
2982
|
+
# resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
2983
|
+
# resp.endpoints[0].kafka_settings.include_transaction_details #=> Boolean
|
2984
|
+
# resp.endpoints[0].kafka_settings.include_partition_value #=> Boolean
|
2985
|
+
# resp.endpoints[0].kafka_settings.partition_include_schema_table #=> Boolean
|
2986
|
+
# resp.endpoints[0].kafka_settings.include_table_alter_operations #=> Boolean
|
2987
|
+
# resp.endpoints[0].kafka_settings.include_control_details #=> Boolean
|
2580
2988
|
# resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
|
2581
2989
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
2582
2990
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -2613,6 +3021,41 @@ module Aws::DatabaseMigrationService
|
|
2613
3021
|
# resp.endpoints[0].redshift_settings.truncate_columns #=> Boolean
|
2614
3022
|
# resp.endpoints[0].redshift_settings.username #=> String
|
2615
3023
|
# resp.endpoints[0].redshift_settings.write_buffer_size #=> Integer
|
3024
|
+
# resp.endpoints[0].postgre_sql_settings.database_name #=> String
|
3025
|
+
# resp.endpoints[0].postgre_sql_settings.password #=> String
|
3026
|
+
# resp.endpoints[0].postgre_sql_settings.port #=> Integer
|
3027
|
+
# resp.endpoints[0].postgre_sql_settings.server_name #=> String
|
3028
|
+
# resp.endpoints[0].postgre_sql_settings.username #=> String
|
3029
|
+
# resp.endpoints[0].my_sql_settings.database_name #=> String
|
3030
|
+
# resp.endpoints[0].my_sql_settings.password #=> String
|
3031
|
+
# resp.endpoints[0].my_sql_settings.port #=> Integer
|
3032
|
+
# resp.endpoints[0].my_sql_settings.server_name #=> String
|
3033
|
+
# resp.endpoints[0].my_sql_settings.username #=> String
|
3034
|
+
# resp.endpoints[0].oracle_settings.asm_password #=> String
|
3035
|
+
# resp.endpoints[0].oracle_settings.asm_server #=> String
|
3036
|
+
# resp.endpoints[0].oracle_settings.asm_user #=> String
|
3037
|
+
# resp.endpoints[0].oracle_settings.database_name #=> String
|
3038
|
+
# resp.endpoints[0].oracle_settings.password #=> String
|
3039
|
+
# resp.endpoints[0].oracle_settings.port #=> Integer
|
3040
|
+
# resp.endpoints[0].oracle_settings.security_db_encryption #=> String
|
3041
|
+
# resp.endpoints[0].oracle_settings.security_db_encryption_name #=> String
|
3042
|
+
# resp.endpoints[0].oracle_settings.server_name #=> String
|
3043
|
+
# resp.endpoints[0].oracle_settings.username #=> String
|
3044
|
+
# resp.endpoints[0].sybase_settings.database_name #=> String
|
3045
|
+
# resp.endpoints[0].sybase_settings.password #=> String
|
3046
|
+
# resp.endpoints[0].sybase_settings.port #=> Integer
|
3047
|
+
# resp.endpoints[0].sybase_settings.server_name #=> String
|
3048
|
+
# resp.endpoints[0].sybase_settings.username #=> String
|
3049
|
+
# resp.endpoints[0].microsoft_sql_server_settings.port #=> Integer
|
3050
|
+
# resp.endpoints[0].microsoft_sql_server_settings.database_name #=> String
|
3051
|
+
# resp.endpoints[0].microsoft_sql_server_settings.password #=> String
|
3052
|
+
# resp.endpoints[0].microsoft_sql_server_settings.server_name #=> String
|
3053
|
+
# resp.endpoints[0].microsoft_sql_server_settings.username #=> String
|
3054
|
+
# resp.endpoints[0].ibm_db_2_settings.database_name #=> String
|
3055
|
+
# resp.endpoints[0].ibm_db_2_settings.password #=> String
|
3056
|
+
# resp.endpoints[0].ibm_db_2_settings.port #=> Integer
|
3057
|
+
# resp.endpoints[0].ibm_db_2_settings.server_name #=> String
|
3058
|
+
# resp.endpoints[0].ibm_db_2_settings.username #=> String
|
2616
3059
|
#
|
2617
3060
|
#
|
2618
3061
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2643,7 +3086,7 @@ module Aws::DatabaseMigrationService
|
|
2643
3086
|
# Valid values: replication-instance \| replication-task
|
2644
3087
|
#
|
2645
3088
|
# @option params [Array<Types::Filter>] :filters
|
2646
|
-
# Filters applied to the
|
3089
|
+
# Filters applied to the event categories.
|
2647
3090
|
#
|
2648
3091
|
# @return [Types::DescribeEventCategoriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2649
3092
|
#
|
@@ -2689,7 +3132,7 @@ module Aws::DatabaseMigrationService
|
|
2689
3132
|
# The name of the AWS DMS event subscription to be described.
|
2690
3133
|
#
|
2691
3134
|
# @option params [Array<Types::Filter>] :filters
|
2692
|
-
# Filters applied to
|
3135
|
+
# Filters applied to event subscriptions.
|
2693
3136
|
#
|
2694
3137
|
# @option params [Integer] :max_records
|
2695
3138
|
# The maximum number of records to include in the response. If more
|
@@ -2782,7 +3225,7 @@ module Aws::DatabaseMigrationService
|
|
2782
3225
|
# A list of event categories for the source type that you've chosen.
|
2783
3226
|
#
|
2784
3227
|
# @option params [Array<Types::Filter>] :filters
|
2785
|
-
# Filters applied to
|
3228
|
+
# Filters applied to events.
|
2786
3229
|
#
|
2787
3230
|
# @option params [Integer] :max_records
|
2788
3231
|
# The maximum number of records to include in the response. If more
|
@@ -3089,7 +3532,7 @@ module Aws::DatabaseMigrationService
|
|
3089
3532
|
# the current region.
|
3090
3533
|
#
|
3091
3534
|
# @option params [Array<Types::Filter>] :filters
|
3092
|
-
# Filters applied to
|
3535
|
+
# Filters applied to replication instances.
|
3093
3536
|
#
|
3094
3537
|
# Valid filter names: replication-instance-arn \|
|
3095
3538
|
# replication-instance-id \| replication-instance-class \|
|
@@ -3216,7 +3659,7 @@ module Aws::DatabaseMigrationService
|
|
3216
3659
|
# Returns information about the replication subnet groups.
|
3217
3660
|
#
|
3218
3661
|
# @option params [Array<Types::Filter>] :filters
|
3219
|
-
# Filters applied to
|
3662
|
+
# Filters applied to replication subnet groups.
|
3220
3663
|
#
|
3221
3664
|
# Valid filter names: replication-subnet-group-id
|
3222
3665
|
#
|
@@ -3365,11 +3808,152 @@ module Aws::DatabaseMigrationService
|
|
3365
3808
|
req.send_request(options)
|
3366
3809
|
end
|
3367
3810
|
|
3811
|
+
# Returns a paginated list of premigration assessment runs based on
|
3812
|
+
# filter settings.
|
3813
|
+
#
|
3814
|
+
# These filter settings can specify a combination of premigration
|
3815
|
+
# assessment runs, migration tasks, replication instances, and
|
3816
|
+
# assessment run status values.
|
3817
|
+
#
|
3818
|
+
# <note markdown="1"> This operation doesn't return information about individual
|
3819
|
+
# assessments. For this information, see the
|
3820
|
+
# `DescribeReplicationTaskIndividualAssessments` operation.
|
3821
|
+
#
|
3822
|
+
# </note>
|
3823
|
+
#
|
3824
|
+
# @option params [Array<Types::Filter>] :filters
|
3825
|
+
# Filters applied to the premigration assessment runs described in the
|
3826
|
+
# form of key-value pairs.
|
3827
|
+
#
|
3828
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
3829
|
+
# `replication-task-arn`, `replication-instance-arn`, `status`
|
3830
|
+
#
|
3831
|
+
# @option params [Integer] :max_records
|
3832
|
+
# The maximum number of records to include in the response. If more
|
3833
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
3834
|
+
# token called a marker is included in the response so that the
|
3835
|
+
# remaining results can be retrieved.
|
3836
|
+
#
|
3837
|
+
# @option params [String] :marker
|
3838
|
+
# An optional pagination token provided by a previous request. If this
|
3839
|
+
# parameter is specified, the response includes only records beyond the
|
3840
|
+
# marker, up to the value specified by `MaxRecords`.
|
3841
|
+
#
|
3842
|
+
# @return [Types::DescribeReplicationTaskAssessmentRunsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3843
|
+
#
|
3844
|
+
# * {Types::DescribeReplicationTaskAssessmentRunsResponse#marker #marker} => String
|
3845
|
+
# * {Types::DescribeReplicationTaskAssessmentRunsResponse#replication_task_assessment_runs #replication_task_assessment_runs} => Array<Types::ReplicationTaskAssessmentRun>
|
3846
|
+
#
|
3847
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3848
|
+
#
|
3849
|
+
# @example Request syntax with placeholder values
|
3850
|
+
#
|
3851
|
+
# resp = client.describe_replication_task_assessment_runs({
|
3852
|
+
# filters: [
|
3853
|
+
# {
|
3854
|
+
# name: "String", # required
|
3855
|
+
# values: ["String"], # required
|
3856
|
+
# },
|
3857
|
+
# ],
|
3858
|
+
# max_records: 1,
|
3859
|
+
# marker: "String",
|
3860
|
+
# })
|
3861
|
+
#
|
3862
|
+
# @example Response structure
|
3863
|
+
#
|
3864
|
+
# resp.marker #=> String
|
3865
|
+
# resp.replication_task_assessment_runs #=> Array
|
3866
|
+
# resp.replication_task_assessment_runs[0].replication_task_assessment_run_arn #=> String
|
3867
|
+
# resp.replication_task_assessment_runs[0].replication_task_arn #=> String
|
3868
|
+
# resp.replication_task_assessment_runs[0].status #=> String
|
3869
|
+
# resp.replication_task_assessment_runs[0].replication_task_assessment_run_creation_date #=> Time
|
3870
|
+
# resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_count #=> Integer
|
3871
|
+
# resp.replication_task_assessment_runs[0].assessment_progress.individual_assessment_completed_count #=> Integer
|
3872
|
+
# resp.replication_task_assessment_runs[0].last_failure_message #=> String
|
3873
|
+
# resp.replication_task_assessment_runs[0].service_access_role_arn #=> String
|
3874
|
+
# resp.replication_task_assessment_runs[0].result_location_bucket #=> String
|
3875
|
+
# resp.replication_task_assessment_runs[0].result_location_folder #=> String
|
3876
|
+
# resp.replication_task_assessment_runs[0].result_encryption_mode #=> String
|
3877
|
+
# resp.replication_task_assessment_runs[0].result_kms_key_arn #=> String
|
3878
|
+
# resp.replication_task_assessment_runs[0].assessment_run_name #=> String
|
3879
|
+
#
|
3880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRuns AWS API Documentation
|
3881
|
+
#
|
3882
|
+
# @overload describe_replication_task_assessment_runs(params = {})
|
3883
|
+
# @param [Hash] params ({})
|
3884
|
+
def describe_replication_task_assessment_runs(params = {}, options = {})
|
3885
|
+
req = build_request(:describe_replication_task_assessment_runs, params)
|
3886
|
+
req.send_request(options)
|
3887
|
+
end
|
3888
|
+
|
3889
|
+
# Returns a paginated list of individual assessments based on filter
|
3890
|
+
# settings.
|
3891
|
+
#
|
3892
|
+
# These filter settings can specify a combination of premigration
|
3893
|
+
# assessment runs, migration tasks, and assessment status values.
|
3894
|
+
#
|
3895
|
+
# @option params [Array<Types::Filter>] :filters
|
3896
|
+
# Filters applied to the individual assessments described in the form of
|
3897
|
+
# key-value pairs.
|
3898
|
+
#
|
3899
|
+
# Valid filter names: `replication-task-assessment-run-arn`,
|
3900
|
+
# `replication-task-arn`, `status`
|
3901
|
+
#
|
3902
|
+
# @option params [Integer] :max_records
|
3903
|
+
# The maximum number of records to include in the response. If more
|
3904
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
3905
|
+
# token called a marker is included in the response so that the
|
3906
|
+
# remaining results can be retrieved.
|
3907
|
+
#
|
3908
|
+
# @option params [String] :marker
|
3909
|
+
# An optional pagination token provided by a previous request. If this
|
3910
|
+
# parameter is specified, the response includes only records beyond the
|
3911
|
+
# marker, up to the value specified by `MaxRecords`.
|
3912
|
+
#
|
3913
|
+
# @return [Types::DescribeReplicationTaskIndividualAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3914
|
+
#
|
3915
|
+
# * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#marker #marker} => String
|
3916
|
+
# * {Types::DescribeReplicationTaskIndividualAssessmentsResponse#replication_task_individual_assessments #replication_task_individual_assessments} => Array<Types::ReplicationTaskIndividualAssessment>
|
3917
|
+
#
|
3918
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3919
|
+
#
|
3920
|
+
# @example Request syntax with placeholder values
|
3921
|
+
#
|
3922
|
+
# resp = client.describe_replication_task_individual_assessments({
|
3923
|
+
# filters: [
|
3924
|
+
# {
|
3925
|
+
# name: "String", # required
|
3926
|
+
# values: ["String"], # required
|
3927
|
+
# },
|
3928
|
+
# ],
|
3929
|
+
# max_records: 1,
|
3930
|
+
# marker: "String",
|
3931
|
+
# })
|
3932
|
+
#
|
3933
|
+
# @example Response structure
|
3934
|
+
#
|
3935
|
+
# resp.marker #=> String
|
3936
|
+
# resp.replication_task_individual_assessments #=> Array
|
3937
|
+
# resp.replication_task_individual_assessments[0].replication_task_individual_assessment_arn #=> String
|
3938
|
+
# resp.replication_task_individual_assessments[0].replication_task_assessment_run_arn #=> String
|
3939
|
+
# resp.replication_task_individual_assessments[0].individual_assessment_name #=> String
|
3940
|
+
# resp.replication_task_individual_assessments[0].status #=> String
|
3941
|
+
# resp.replication_task_individual_assessments[0].replication_task_individual_assessment_start_date #=> Time
|
3942
|
+
#
|
3943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessments AWS API Documentation
|
3944
|
+
#
|
3945
|
+
# @overload describe_replication_task_individual_assessments(params = {})
|
3946
|
+
# @param [Hash] params ({})
|
3947
|
+
def describe_replication_task_individual_assessments(params = {}, options = {})
|
3948
|
+
req = build_request(:describe_replication_task_individual_assessments, params)
|
3949
|
+
req.send_request(options)
|
3950
|
+
end
|
3951
|
+
|
3368
3952
|
# Returns information about replication tasks for your account in the
|
3369
3953
|
# current region.
|
3370
3954
|
#
|
3371
3955
|
# @option params [Array<Types::Filter>] :filters
|
3372
|
-
# Filters applied to
|
3956
|
+
# Filters applied to replication tasks.
|
3373
3957
|
#
|
3374
3958
|
# Valid filter names: replication-task-arn \| replication-task-id \|
|
3375
3959
|
# migration-type \| endpoint-arn \| replication-instance-arn
|
@@ -3586,7 +4170,7 @@ module Aws::DatabaseMigrationService
|
|
3586
4170
|
# marker, up to the value specified by `MaxRecords`.
|
3587
4171
|
#
|
3588
4172
|
# @option params [Array<Types::Filter>] :filters
|
3589
|
-
# Filters applied to
|
4173
|
+
# Filters applied to table statistics.
|
3590
4174
|
#
|
3591
4175
|
# Valid filter names: schema-name \| table-name \| table-state
|
3592
4176
|
#
|
@@ -3680,7 +4264,7 @@ module Aws::DatabaseMigrationService
|
|
3680
4264
|
# @option params [String] :certificate_pem
|
3681
4265
|
# The contents of a `.pem` file, which contains an X.509 certificate.
|
3682
4266
|
#
|
3683
|
-
# @option params [String,
|
4267
|
+
# @option params [String, StringIO, File] :certificate_wallet
|
3684
4268
|
# The location of an imported Oracle Wallet certificate for use with
|
3685
4269
|
# SSL.
|
3686
4270
|
#
|
@@ -3808,8 +4392,8 @@ module Aws::DatabaseMigrationService
|
|
3808
4392
|
# EndpointType, include `"mysql"`, `"oracle"`, `"postgres"`,
|
3809
4393
|
# `"mariadb"`, `"aurora"`, `"aurora-postgresql"`, `"redshift"`, `"s3"`,
|
3810
4394
|
# `"db2"`, `"azuredb"`, `"sybase"`, `"dynamodb"`, `"mongodb"`,
|
3811
|
-
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
|
3812
|
-
# `"sqlserver"`.
|
4395
|
+
# `"kinesis"`, `"kafka"`, `"elasticsearch"`, `"documentdb"`,
|
4396
|
+
# `"sqlserver"`, and `"neptune"`.
|
3813
4397
|
#
|
3814
4398
|
# @option params [String] :username
|
3815
4399
|
# The user name to be used to login to the endpoint database.
|
@@ -3903,7 +4487,8 @@ module Aws::DatabaseMigrationService
|
|
3903
4487
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
3904
4488
|
# Data Streams. For more information about the available settings, see
|
3905
4489
|
# [Using Amazon Kinesis Data Streams as a Target for AWS Database
|
3906
|
-
# Migration Service][1] in the *AWS Database Migration User
|
4490
|
+
# Migration Service][1] in the *AWS Database Migration Service User
|
4491
|
+
# Guide.*
|
3907
4492
|
#
|
3908
4493
|
#
|
3909
4494
|
#
|
@@ -3913,7 +4498,7 @@ module Aws::DatabaseMigrationService
|
|
3913
4498
|
# Settings in JSON format for the target Apache Kafka endpoint. For more
|
3914
4499
|
# information about the available settings, see [Using Apache Kafka as a
|
3915
4500
|
# Target for AWS Database Migration Service][1] in the *AWS Database
|
3916
|
-
# Migration User Guide.*
|
4501
|
+
# Migration Service User Guide.*
|
3917
4502
|
#
|
3918
4503
|
#
|
3919
4504
|
#
|
@@ -3923,7 +4508,7 @@ module Aws::DatabaseMigrationService
|
|
3923
4508
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
3924
4509
|
# more information about the available settings, see [Extra Connection
|
3925
4510
|
# Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
|
3926
|
-
# *AWS Database Migration User Guide.*
|
4511
|
+
# *AWS Database Migration Service User Guide.*
|
3927
4512
|
#
|
3928
4513
|
#
|
3929
4514
|
#
|
@@ -3931,9 +4516,9 @@ module Aws::DatabaseMigrationService
|
|
3931
4516
|
#
|
3932
4517
|
# @option params [Types::NeptuneSettings] :neptune_settings
|
3933
4518
|
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
3934
|
-
# more information about the available settings, see
|
3935
|
-
#
|
3936
|
-
#
|
4519
|
+
# more information about the available settings, see [Specifying
|
4520
|
+
# Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
|
4521
|
+
# Database Migration Service User Guide.*
|
3937
4522
|
#
|
3938
4523
|
#
|
3939
4524
|
#
|
@@ -3942,6 +4527,78 @@ module Aws::DatabaseMigrationService
|
|
3942
4527
|
# @option params [Types::RedshiftSettings] :redshift_settings
|
3943
4528
|
# Provides information that defines an Amazon Redshift endpoint.
|
3944
4529
|
#
|
4530
|
+
# @option params [Types::PostgreSQLSettings] :postgre_sql_settings
|
4531
|
+
# Settings in JSON format for the source and target PostgreSQL endpoint.
|
4532
|
+
# For information about other available settings, see [Extra connection
|
4533
|
+
# attributes when using PostgreSQL as a source for AWS DMS][1] and [
|
4534
|
+
# Extra connection attributes when using PostgreSQL as a target for AWS
|
4535
|
+
# DMS][2] in the *AWS Database Migration Service User Guide.*
|
4536
|
+
#
|
4537
|
+
#
|
4538
|
+
#
|
4539
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
4540
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
4541
|
+
#
|
4542
|
+
# @option params [Types::MySQLSettings] :my_sql_settings
|
4543
|
+
# Settings in JSON format for the source and target MySQL endpoint. For
|
4544
|
+
# information about other available settings, see [Extra connection
|
4545
|
+
# attributes when using MySQL as a source for AWS DMS][1] and [Extra
|
4546
|
+
# connection attributes when using a MySQL-compatible database as a
|
4547
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
4548
|
+
# Guide.*
|
4549
|
+
#
|
4550
|
+
#
|
4551
|
+
#
|
4552
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
4553
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
4554
|
+
#
|
4555
|
+
# @option params [Types::OracleSettings] :oracle_settings
|
4556
|
+
# Settings in JSON format for the source and target Oracle endpoint. For
|
4557
|
+
# information about other available settings, see [Extra connection
|
4558
|
+
# attributes when using Oracle as a source for AWS DMS][1] and [ Extra
|
4559
|
+
# connection attributes when using Oracle as a target for AWS DMS][2] in
|
4560
|
+
# the *AWS Database Migration Service User Guide.*
|
4561
|
+
#
|
4562
|
+
#
|
4563
|
+
#
|
4564
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
4565
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
4566
|
+
#
|
4567
|
+
# @option params [Types::SybaseSettings] :sybase_settings
|
4568
|
+
# Settings in JSON format for the source and target SAP ASE endpoint.
|
4569
|
+
# For information about other available settings, see [Extra connection
|
4570
|
+
# attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
|
4571
|
+
# connection attributes when using SAP ASE as a target for AWS DMS][2]
|
4572
|
+
# in the *AWS Database Migration Service User Guide.*
|
4573
|
+
#
|
4574
|
+
#
|
4575
|
+
#
|
4576
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
4577
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
4578
|
+
#
|
4579
|
+
# @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
|
4580
|
+
# Settings in JSON format for the source and target Microsoft SQL Server
|
4581
|
+
# endpoint. For information about other available settings, see [Extra
|
4582
|
+
# connection attributes when using SQL Server as a source for AWS
|
4583
|
+
# DMS][1] and [ Extra connection attributes when using SQL Server as a
|
4584
|
+
# target for AWS DMS][2] in the *AWS Database Migration Service User
|
4585
|
+
# Guide.*
|
4586
|
+
#
|
4587
|
+
#
|
4588
|
+
#
|
4589
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
4590
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
4591
|
+
#
|
4592
|
+
# @option params [Types::IBMDb2Settings] :ibm_db_2_settings
|
4593
|
+
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
4594
|
+
# information about other available settings, see [Extra connection
|
4595
|
+
# attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
|
4596
|
+
# Database Migration Service User Guide.*
|
4597
|
+
#
|
4598
|
+
#
|
4599
|
+
#
|
4600
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
4601
|
+
#
|
3945
4602
|
# @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3946
4603
|
#
|
3947
4604
|
# * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
|
@@ -4046,6 +4703,12 @@ module Aws::DatabaseMigrationService
|
|
4046
4703
|
# kafka_settings: {
|
4047
4704
|
# broker: "String",
|
4048
4705
|
# topic: "String",
|
4706
|
+
# message_format: "json", # accepts json, json-unformatted
|
4707
|
+
# include_transaction_details: false,
|
4708
|
+
# include_partition_value: false,
|
4709
|
+
# partition_include_schema_table: false,
|
4710
|
+
# include_table_alter_operations: false,
|
4711
|
+
# include_control_details: false,
|
4049
4712
|
# },
|
4050
4713
|
# elasticsearch_settings: {
|
4051
4714
|
# service_access_role_arn: "String", # required
|
@@ -4089,6 +4752,53 @@ module Aws::DatabaseMigrationService
|
|
4089
4752
|
# username: "String",
|
4090
4753
|
# write_buffer_size: 1,
|
4091
4754
|
# },
|
4755
|
+
# postgre_sql_settings: {
|
4756
|
+
# database_name: "String",
|
4757
|
+
# password: "SecretString",
|
4758
|
+
# port: 1,
|
4759
|
+
# server_name: "String",
|
4760
|
+
# username: "String",
|
4761
|
+
# },
|
4762
|
+
# my_sql_settings: {
|
4763
|
+
# database_name: "String",
|
4764
|
+
# password: "SecretString",
|
4765
|
+
# port: 1,
|
4766
|
+
# server_name: "String",
|
4767
|
+
# username: "String",
|
4768
|
+
# },
|
4769
|
+
# oracle_settings: {
|
4770
|
+
# asm_password: "SecretString",
|
4771
|
+
# asm_server: "String",
|
4772
|
+
# asm_user: "String",
|
4773
|
+
# database_name: "String",
|
4774
|
+
# password: "SecretString",
|
4775
|
+
# port: 1,
|
4776
|
+
# security_db_encryption: "SecretString",
|
4777
|
+
# security_db_encryption_name: "String",
|
4778
|
+
# server_name: "String",
|
4779
|
+
# username: "String",
|
4780
|
+
# },
|
4781
|
+
# sybase_settings: {
|
4782
|
+
# database_name: "String",
|
4783
|
+
# password: "SecretString",
|
4784
|
+
# port: 1,
|
4785
|
+
# server_name: "String",
|
4786
|
+
# username: "String",
|
4787
|
+
# },
|
4788
|
+
# microsoft_sql_server_settings: {
|
4789
|
+
# port: 1,
|
4790
|
+
# database_name: "String",
|
4791
|
+
# password: "SecretString",
|
4792
|
+
# server_name: "String",
|
4793
|
+
# username: "String",
|
4794
|
+
# },
|
4795
|
+
# ibm_db_2_settings: {
|
4796
|
+
# database_name: "String",
|
4797
|
+
# password: "SecretString",
|
4798
|
+
# port: 1,
|
4799
|
+
# server_name: "String",
|
4800
|
+
# username: "String",
|
4801
|
+
# },
|
4092
4802
|
# })
|
4093
4803
|
#
|
4094
4804
|
# @example Response structure
|
@@ -4156,6 +4866,12 @@ module Aws::DatabaseMigrationService
|
|
4156
4866
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
4157
4867
|
# resp.endpoint.kafka_settings.broker #=> String
|
4158
4868
|
# resp.endpoint.kafka_settings.topic #=> String
|
4869
|
+
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
4870
|
+
# resp.endpoint.kafka_settings.include_transaction_details #=> Boolean
|
4871
|
+
# resp.endpoint.kafka_settings.include_partition_value #=> Boolean
|
4872
|
+
# resp.endpoint.kafka_settings.partition_include_schema_table #=> Boolean
|
4873
|
+
# resp.endpoint.kafka_settings.include_table_alter_operations #=> Boolean
|
4874
|
+
# resp.endpoint.kafka_settings.include_control_details #=> Boolean
|
4159
4875
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
4160
4876
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
4161
4877
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -4192,6 +4908,41 @@ module Aws::DatabaseMigrationService
|
|
4192
4908
|
# resp.endpoint.redshift_settings.truncate_columns #=> Boolean
|
4193
4909
|
# resp.endpoint.redshift_settings.username #=> String
|
4194
4910
|
# resp.endpoint.redshift_settings.write_buffer_size #=> Integer
|
4911
|
+
# resp.endpoint.postgre_sql_settings.database_name #=> String
|
4912
|
+
# resp.endpoint.postgre_sql_settings.password #=> String
|
4913
|
+
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
4914
|
+
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
4915
|
+
# resp.endpoint.postgre_sql_settings.username #=> String
|
4916
|
+
# resp.endpoint.my_sql_settings.database_name #=> String
|
4917
|
+
# resp.endpoint.my_sql_settings.password #=> String
|
4918
|
+
# resp.endpoint.my_sql_settings.port #=> Integer
|
4919
|
+
# resp.endpoint.my_sql_settings.server_name #=> String
|
4920
|
+
# resp.endpoint.my_sql_settings.username #=> String
|
4921
|
+
# resp.endpoint.oracle_settings.asm_password #=> String
|
4922
|
+
# resp.endpoint.oracle_settings.asm_server #=> String
|
4923
|
+
# resp.endpoint.oracle_settings.asm_user #=> String
|
4924
|
+
# resp.endpoint.oracle_settings.database_name #=> String
|
4925
|
+
# resp.endpoint.oracle_settings.password #=> String
|
4926
|
+
# resp.endpoint.oracle_settings.port #=> Integer
|
4927
|
+
# resp.endpoint.oracle_settings.security_db_encryption #=> String
|
4928
|
+
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
4929
|
+
# resp.endpoint.oracle_settings.server_name #=> String
|
4930
|
+
# resp.endpoint.oracle_settings.username #=> String
|
4931
|
+
# resp.endpoint.sybase_settings.database_name #=> String
|
4932
|
+
# resp.endpoint.sybase_settings.password #=> String
|
4933
|
+
# resp.endpoint.sybase_settings.port #=> Integer
|
4934
|
+
# resp.endpoint.sybase_settings.server_name #=> String
|
4935
|
+
# resp.endpoint.sybase_settings.username #=> String
|
4936
|
+
# resp.endpoint.microsoft_sql_server_settings.port #=> Integer
|
4937
|
+
# resp.endpoint.microsoft_sql_server_settings.database_name #=> String
|
4938
|
+
# resp.endpoint.microsoft_sql_server_settings.password #=> String
|
4939
|
+
# resp.endpoint.microsoft_sql_server_settings.server_name #=> String
|
4940
|
+
# resp.endpoint.microsoft_sql_server_settings.username #=> String
|
4941
|
+
# resp.endpoint.ibm_db_2_settings.database_name #=> String
|
4942
|
+
# resp.endpoint.ibm_db_2_settings.password #=> String
|
4943
|
+
# resp.endpoint.ibm_db_2_settings.port #=> Integer
|
4944
|
+
# resp.endpoint.ibm_db_2_settings.server_name #=> String
|
4945
|
+
# resp.endpoint.ibm_db_2_settings.username #=> String
|
4195
4946
|
#
|
4196
4947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
|
4197
4948
|
#
|
@@ -4282,11 +5033,18 @@ module Aws::DatabaseMigrationService
|
|
4282
5033
|
# the next maintenance window.
|
4283
5034
|
#
|
4284
5035
|
# @option params [String] :replication_instance_class
|
4285
|
-
# The compute and memory capacity of the replication instance
|
5036
|
+
# The compute and memory capacity of the replication instance as defined
|
5037
|
+
# for the specified replication instance class. For example to specify
|
5038
|
+
# the instance class dms.c4.large, set this parameter to
|
5039
|
+
# `"dms.c4.large"`.
|
5040
|
+
#
|
5041
|
+
# For more information on the settings and capacities for the available
|
5042
|
+
# replication instance classes, see [ Selecting the right AWS DMS
|
5043
|
+
# replication instance for your migration][1].
|
5044
|
+
#
|
4286
5045
|
#
|
4287
|
-
#
|
4288
|
-
#
|
4289
|
-
# dms.c4.4xlarge `
|
5046
|
+
#
|
5047
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth
|
4290
5048
|
#
|
4291
5049
|
# @option params [Array<String>] :vpc_security_group_ids
|
4292
5050
|
# Specifies the VPC security group to be used with the replication
|
@@ -4571,7 +5329,7 @@ module Aws::DatabaseMigrationService
|
|
4571
5329
|
#
|
4572
5330
|
# Constraints:
|
4573
5331
|
#
|
4574
|
-
# * Must contain
|
5332
|
+
# * Must contain 1-255 alphanumeric characters or hyphens.
|
4575
5333
|
#
|
4576
5334
|
# * First character must be a letter.
|
4577
5335
|
#
|
@@ -4640,7 +5398,7 @@ module Aws::DatabaseMigrationService
|
|
4640
5398
|
# Supplemental information that the task requires to migrate the data
|
4641
5399
|
# for certain source and target endpoints. For more information, see
|
4642
5400
|
# [Specifying Supplemental Data for Task Settings][1] in the *AWS
|
4643
|
-
# Database Migration User Guide.*
|
5401
|
+
# Database Migration Service User Guide.*
|
4644
5402
|
#
|
4645
5403
|
#
|
4646
5404
|
#
|
@@ -4860,8 +5618,8 @@ module Aws::DatabaseMigrationService
|
|
4860
5618
|
# replication_task_arn: "String", # required
|
4861
5619
|
# tables_to_reload: [ # required
|
4862
5620
|
# {
|
4863
|
-
# schema_name: "String",
|
4864
|
-
# table_name: "String",
|
5621
|
+
# schema_name: "String", # required
|
5622
|
+
# table_name: "String", # required
|
4865
5623
|
# },
|
4866
5624
|
# ],
|
4867
5625
|
# reload_option: "data-reload", # accepts data-reload, validate-only
|
@@ -5119,6 +5877,126 @@ module Aws::DatabaseMigrationService
|
|
5119
5877
|
req.send_request(options)
|
5120
5878
|
end
|
5121
5879
|
|
5880
|
+
# Starts a new premigration assessment run for one or more individual
|
5881
|
+
# assessments of a migration task.
|
5882
|
+
#
|
5883
|
+
# The assessments that you can specify depend on the source and target
|
5884
|
+
# database engine and the migration type defined for the given task. To
|
5885
|
+
# run this operation, your migration task must already be created. After
|
5886
|
+
# you run this operation, you can review the status of each individual
|
5887
|
+
# assessment. You can also run the migration task manually after the
|
5888
|
+
# assessment run and its individual assessments complete.
|
5889
|
+
#
|
5890
|
+
# @option params [required, String] :replication_task_arn
|
5891
|
+
# Amazon Resource Name (ARN) of the migration task associated with the
|
5892
|
+
# premigration assessment run that you want to start.
|
5893
|
+
#
|
5894
|
+
# @option params [required, String] :service_access_role_arn
|
5895
|
+
# ARN of a service role needed to start the assessment run.
|
5896
|
+
#
|
5897
|
+
# @option params [required, String] :result_location_bucket
|
5898
|
+
# Amazon S3 bucket where you want AWS DMS to store the results of this
|
5899
|
+
# assessment run.
|
5900
|
+
#
|
5901
|
+
# @option params [String] :result_location_folder
|
5902
|
+
# Folder within an Amazon S3 bucket where you want AWS DMS to store the
|
5903
|
+
# results of this assessment run.
|
5904
|
+
#
|
5905
|
+
# @option params [String] :result_encryption_mode
|
5906
|
+
# Encryption mode that you can specify to encrypt the results of this
|
5907
|
+
# assessment run. If you don't specify this request parameter, AWS DMS
|
5908
|
+
# stores the assessment run results without encryption. You can specify
|
5909
|
+
# one of the options following:
|
5910
|
+
#
|
5911
|
+
# * `"SSE_S3"` – The server-side encryption provided as a default by
|
5912
|
+
# Amazon S3.
|
5913
|
+
#
|
5914
|
+
# * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption. This
|
5915
|
+
# encryption can use either a custom KMS encryption key that you
|
5916
|
+
# specify or the default KMS encryption key that DMS provides.
|
5917
|
+
#
|
5918
|
+
# @option params [String] :result_kms_key_arn
|
5919
|
+
# ARN of a custom KMS encryption key that you specify when you set
|
5920
|
+
# `ResultEncryptionMode` to `"SSE_KMS`".
|
5921
|
+
#
|
5922
|
+
# @option params [required, String] :assessment_run_name
|
5923
|
+
# Unique name to identify the assessment run.
|
5924
|
+
#
|
5925
|
+
# @option params [Array<String>] :include_only
|
5926
|
+
# Space-separated list of names for specific individual assessments that
|
5927
|
+
# you want to include. These names come from the default list of
|
5928
|
+
# individual assessments that AWS DMS supports for the associated
|
5929
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
5930
|
+
#
|
5931
|
+
# <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
|
5932
|
+
# `Exclude` in the API operation.
|
5933
|
+
#
|
5934
|
+
# To identify the names of the default individual assessments that AWS
|
5935
|
+
# DMS supports for the associated migration task, run the
|
5936
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
5937
|
+
# `ReplicationTaskArn` request parameter.
|
5938
|
+
#
|
5939
|
+
# </note>
|
5940
|
+
#
|
5941
|
+
# @option params [Array<String>] :exclude
|
5942
|
+
# Space-separated list of names for specific individual assessments that
|
5943
|
+
# you want to exclude. These names come from the default list of
|
5944
|
+
# individual assessments that AWS DMS supports for the associated
|
5945
|
+
# migration task. This task is specified by `ReplicationTaskArn`.
|
5946
|
+
#
|
5947
|
+
# <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
|
5948
|
+
# `IncludeOnly` in the API operation.
|
5949
|
+
#
|
5950
|
+
# To identify the names of the default individual assessments that AWS
|
5951
|
+
# DMS supports for the associated migration task, run the
|
5952
|
+
# `DescribeApplicableIndividualAssessments` operation using its own
|
5953
|
+
# `ReplicationTaskArn` request parameter.
|
5954
|
+
#
|
5955
|
+
# </note>
|
5956
|
+
#
|
5957
|
+
# @return [Types::StartReplicationTaskAssessmentRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5958
|
+
#
|
5959
|
+
# * {Types::StartReplicationTaskAssessmentRunResponse#replication_task_assessment_run #replication_task_assessment_run} => Types::ReplicationTaskAssessmentRun
|
5960
|
+
#
|
5961
|
+
# @example Request syntax with placeholder values
|
5962
|
+
#
|
5963
|
+
# resp = client.start_replication_task_assessment_run({
|
5964
|
+
# replication_task_arn: "String", # required
|
5965
|
+
# service_access_role_arn: "String", # required
|
5966
|
+
# result_location_bucket: "String", # required
|
5967
|
+
# result_location_folder: "String",
|
5968
|
+
# result_encryption_mode: "String",
|
5969
|
+
# result_kms_key_arn: "String",
|
5970
|
+
# assessment_run_name: "String", # required
|
5971
|
+
# include_only: ["String"],
|
5972
|
+
# exclude: ["String"],
|
5973
|
+
# })
|
5974
|
+
#
|
5975
|
+
# @example Response structure
|
5976
|
+
#
|
5977
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_arn #=> String
|
5978
|
+
# resp.replication_task_assessment_run.replication_task_arn #=> String
|
5979
|
+
# resp.replication_task_assessment_run.status #=> String
|
5980
|
+
# resp.replication_task_assessment_run.replication_task_assessment_run_creation_date #=> Time
|
5981
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_count #=> Integer
|
5982
|
+
# resp.replication_task_assessment_run.assessment_progress.individual_assessment_completed_count #=> Integer
|
5983
|
+
# resp.replication_task_assessment_run.last_failure_message #=> String
|
5984
|
+
# resp.replication_task_assessment_run.service_access_role_arn #=> String
|
5985
|
+
# resp.replication_task_assessment_run.result_location_bucket #=> String
|
5986
|
+
# resp.replication_task_assessment_run.result_location_folder #=> String
|
5987
|
+
# resp.replication_task_assessment_run.result_encryption_mode #=> String
|
5988
|
+
# resp.replication_task_assessment_run.result_kms_key_arn #=> String
|
5989
|
+
# resp.replication_task_assessment_run.assessment_run_name #=> String
|
5990
|
+
#
|
5991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRun AWS API Documentation
|
5992
|
+
#
|
5993
|
+
# @overload start_replication_task_assessment_run(params = {})
|
5994
|
+
# @param [Hash] params ({})
|
5995
|
+
def start_replication_task_assessment_run(params = {}, options = {})
|
5996
|
+
req = build_request(:start_replication_task_assessment_run, params)
|
5997
|
+
req.send_request(options)
|
5998
|
+
end
|
5999
|
+
|
5122
6000
|
# Stops the replication task.
|
5123
6001
|
#
|
5124
6002
|
# @option params [required, String] :replication_task_arn
|
@@ -5267,7 +6145,7 @@ module Aws::DatabaseMigrationService
|
|
5267
6145
|
params: params,
|
5268
6146
|
config: config)
|
5269
6147
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
5270
|
-
context[:gem_version] = '1.
|
6148
|
+
context[:gem_version] = '1.39.0'
|
5271
6149
|
Seahorse::Client::Request.new(handlers, context)
|
5272
6150
|
end
|
5273
6151
|
|