aws-sdk-databasemigrationservice 1.53.0 → 1.54.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-databasemigrationservice.rb +1 -1
- data/lib/aws-sdk-databasemigrationservice/client.rb +332 -234
- data/lib/aws-sdk-databasemigrationservice/client_api.rb +13 -0
- data/lib/aws-sdk-databasemigrationservice/types.rb +704 -537
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1caa959cdb5c6bd54947494af678fb575c26f093d2f0d1c8147815b66ac8b77
|
4
|
+
data.tar.gz: 856c10b03438b08ada6fbc65ae88129f38e6e50410e5c8c87eb3775fd744f76a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d30e0b3a1a271a11e5a877f7f86e18812254a9322746b96fe06a7ef5a3305d8a91c823fea8bd18a1d132d1ed22cbb9fef089a2870ba7918fe07fbc629ee2669
|
7
|
+
data.tar.gz: e3e4a6eebe07671cb6e96b971dd7ec6624eba3588727e4b712fb97dab2c77b88b09757f583a545c0f01a088aa839dcb62a5d2db21714e2046935b768dd9d9b38
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.54.0 (2021-07-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Release of feature needed for ECA-Endpoint settings. This allows customer to delete a field in endpoint settings by using --exact-settings flag in modify-endpoint api. This also displays default values for certain required fields of endpoint settings in describe-endpoint-settings api.
|
8
|
+
|
4
9
|
1.53.0 (2021-04-15)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.0
|
@@ -337,21 +337,21 @@ module Aws::DatabaseMigrationService
|
|
337
337
|
|
338
338
|
# @!group API Operations
|
339
339
|
|
340
|
-
# Adds metadata tags to an
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
340
|
+
# Adds metadata tags to an DMS resource, including replication instance,
|
341
|
+
# endpoint, security group, and migration task. These tags can also be
|
342
|
+
# used with cost allocation reporting to track cost associated with DMS
|
343
|
+
# resources, or used in a Condition statement in an IAM policy for DMS.
|
344
|
+
# For more information, see [ `Tag` ][1] data type description.
|
345
345
|
#
|
346
346
|
#
|
347
347
|
#
|
348
348
|
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
|
349
349
|
#
|
350
350
|
# @option params [required, String] :resource_arn
|
351
|
-
# Identifies the
|
352
|
-
#
|
351
|
+
# Identifies the DMS resource to which tags should be added. The value
|
352
|
+
# for this parameter is an Amazon Resource Name (ARN).
|
353
353
|
#
|
354
|
-
# For
|
354
|
+
# For DMS, you can tag a replication instance, an endpoint, or a
|
355
355
|
# replication task.
|
356
356
|
#
|
357
357
|
# @option params [required, Array<Types::Tag>] :tags
|
@@ -405,8 +405,8 @@ module Aws::DatabaseMigrationService
|
|
405
405
|
# replication instance).
|
406
406
|
#
|
407
407
|
# @option params [required, String] :replication_instance_arn
|
408
|
-
# The Amazon Resource Name (ARN) of the
|
409
|
-
#
|
408
|
+
# The Amazon Resource Name (ARN) of the DMS resource that the pending
|
409
|
+
# maintenance action applies to.
|
410
410
|
#
|
411
411
|
# @option params [required, String] :apply_action
|
412
412
|
# The pending maintenance action to apply to this resource.
|
@@ -504,6 +504,15 @@ module Aws::DatabaseMigrationService
|
|
504
504
|
|
505
505
|
# Creates an endpoint using the provided settings.
|
506
506
|
#
|
507
|
+
# <note markdown="1"> For a MySQL source or target endpoint, don't explicitly specify the
|
508
|
+
# database using the `DatabaseName` request parameter on the
|
509
|
+
# `CreateEndpoint` API call. Specifying `DatabaseName` when you create a
|
510
|
+
# MySQL endpoint replicates all the task tables to this single database.
|
511
|
+
# For MySQL endpoints, you specify the database only when you specify
|
512
|
+
# the schema in the table-mapping rules of the DMS task.
|
513
|
+
#
|
514
|
+
# </note>
|
515
|
+
#
|
507
516
|
# @option params [required, String] :endpoint_identifier
|
508
517
|
# The database endpoint identifier. Identifiers must begin with a letter
|
509
518
|
# and must contain only ASCII letters, digits, and hyphens. They can't
|
@@ -533,30 +542,30 @@ module Aws::DatabaseMigrationService
|
|
533
542
|
# The port used by the endpoint database.
|
534
543
|
#
|
535
544
|
# @option params [String] :database_name
|
536
|
-
# The name of the endpoint database.
|
545
|
+
# The name of the endpoint database. For a MySQL source or target
|
546
|
+
# endpoint, do not specify DatabaseName.
|
537
547
|
#
|
538
548
|
# @option params [String] :extra_connection_attributes
|
539
549
|
# Additional attributes associated with the connection. Each attribute
|
540
550
|
# is specified as a name-value pair associated by an equal sign (=).
|
541
551
|
# Multiple attributes are separated by a semicolon (;) with no
|
542
552
|
# additional white space. For information on the attributes available
|
543
|
-
# for connecting your source or target endpoint, see [Working with
|
544
|
-
#
|
553
|
+
# for connecting your source or target endpoint, see [Working with DMS
|
554
|
+
# Endpoints][1] in the *Database Migration Service User Guide.*
|
545
555
|
#
|
546
556
|
#
|
547
557
|
#
|
548
558
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Endpoints.html
|
549
559
|
#
|
550
560
|
# @option params [String] :kms_key_id
|
551
|
-
# An
|
561
|
+
# An KMS key identifier that is used to encrypt the connection
|
552
562
|
# parameters for the endpoint.
|
553
563
|
#
|
554
|
-
# If you don't specify a value for the `KmsKeyId` parameter, then
|
555
|
-
#
|
564
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then DMS
|
565
|
+
# uses your default encryption key.
|
556
566
|
#
|
557
|
-
#
|
558
|
-
#
|
559
|
-
# Region.
|
567
|
+
# KMS creates the default encryption key for your account. Your account
|
568
|
+
# has a different default encryption key for each Region.
|
560
569
|
#
|
561
570
|
# @option params [Array<Types::Tag>] :tags
|
562
571
|
# One or more tags to be assigned to the endpoint.
|
@@ -570,7 +579,8 @@ module Aws::DatabaseMigrationService
|
|
570
579
|
#
|
571
580
|
# @option params [String] :service_access_role_arn
|
572
581
|
# The Amazon Resource Name (ARN) for the service access role that you
|
573
|
-
# want to use to create the endpoint.
|
582
|
+
# want to use to create the endpoint. The role must allow the
|
583
|
+
# `iam:PassRole` action.
|
574
584
|
#
|
575
585
|
# @option params [String] :external_table_definition
|
576
586
|
# The external table definition.
|
@@ -578,18 +588,18 @@ module Aws::DatabaseMigrationService
|
|
578
588
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
579
589
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
580
590
|
# information about other available settings, see [Using Object Mapping
|
581
|
-
# to Migrate Data to DynamoDB][1] in the *
|
591
|
+
# to Migrate Data to DynamoDB][1] in the *Database Migration Service
|
582
592
|
# User Guide.*
|
583
593
|
#
|
584
594
|
#
|
585
595
|
#
|
586
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html
|
596
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html#CHAP_Target.DynamoDB.ObjectMapping
|
587
597
|
#
|
588
598
|
# @option params [Types::S3Settings] :s3_settings
|
589
599
|
# Settings in JSON format for the target Amazon S3 endpoint. For more
|
590
600
|
# information about the available settings, see [Extra Connection
|
591
|
-
# Attributes When Using Amazon S3 as a Target for
|
592
|
-
# *
|
601
|
+
# Attributes When Using Amazon S3 as a Target for DMS][1] in the
|
602
|
+
# *Database Migration Service User Guide.*
|
593
603
|
#
|
594
604
|
#
|
595
605
|
#
|
@@ -602,26 +612,21 @@ module Aws::DatabaseMigrationService
|
|
602
612
|
# Possible settings include the following:
|
603
613
|
#
|
604
614
|
# * `ServiceAccessRoleArn` - The IAM role that has permission to access
|
605
|
-
# the Amazon S3 bucket.
|
615
|
+
# the Amazon S3 bucket. The role must allow the `iam:PassRole` action.
|
606
616
|
#
|
607
617
|
# * `BucketName` - The name of the S3 bucket to use.
|
608
618
|
#
|
609
|
-
# * `CompressionType` - An optional parameter to use GZIP to compress
|
610
|
-
# the target files. To use GZIP, set this value to `NONE` (the
|
611
|
-
# default). To keep the files uncompressed, don't use this value.
|
612
|
-
#
|
613
619
|
# Shorthand syntax for these settings is as follows:
|
614
|
-
# `ServiceAccessRoleArn=string,BucketName=string
|
620
|
+
# `ServiceAccessRoleArn=string,BucketName=string`
|
615
621
|
#
|
616
622
|
# JSON syntax for these settings is as follows: `\{
|
617
|
-
# "ServiceAccessRoleArn": "string", "BucketName": "string",
|
618
|
-
# "CompressionType": "none"|"gzip" \} `
|
623
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string", \} `
|
619
624
|
#
|
620
625
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
621
626
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
622
|
-
# information about the available settings, see [
|
623
|
-
#
|
624
|
-
# Migration Service User Guide.*
|
627
|
+
# information about the available settings, see [Endpoint configuration
|
628
|
+
# settings when using MongoDB as a source for Database Migration
|
629
|
+
# Service][1] in the *Database Migration Service User Guide.*
|
625
630
|
#
|
626
631
|
#
|
627
632
|
#
|
@@ -630,29 +635,28 @@ module Aws::DatabaseMigrationService
|
|
630
635
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
631
636
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
632
637
|
# Data Streams. For more information about the available settings, see
|
633
|
-
# [Using
|
634
|
-
#
|
635
|
-
# Guide.*
|
638
|
+
# [Using object mapping to migrate data to a Kinesis data stream][1] in
|
639
|
+
# the *Database Migration Service User Guide.*
|
636
640
|
#
|
637
641
|
#
|
638
642
|
#
|
639
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
643
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
|
640
644
|
#
|
641
645
|
# @option params [Types::KafkaSettings] :kafka_settings
|
642
646
|
# Settings in JSON format for the target Apache Kafka endpoint. For more
|
643
|
-
# information about the available settings, see [Using
|
644
|
-
#
|
645
|
-
#
|
647
|
+
# information about the available settings, see [Using object mapping to
|
648
|
+
# migrate data to a Kafka topic][1] in the *Database Migration Service
|
649
|
+
# User Guide.*
|
646
650
|
#
|
647
651
|
#
|
648
652
|
#
|
649
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
653
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
|
650
654
|
#
|
651
655
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
652
656
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
653
657
|
# more information about the available settings, see [Extra Connection
|
654
|
-
# Attributes When Using Elasticsearch as a Target for
|
655
|
-
# *
|
658
|
+
# Attributes When Using Elasticsearch as a Target for DMS][1] in the
|
659
|
+
# *Database Migration Service User Guide*.
|
656
660
|
#
|
657
661
|
#
|
658
662
|
#
|
@@ -661,8 +665,8 @@ module Aws::DatabaseMigrationService
|
|
661
665
|
# @option params [Types::NeptuneSettings] :neptune_settings
|
662
666
|
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
663
667
|
# more information about the available settings, see [Specifying
|
664
|
-
#
|
665
|
-
# Database Migration Service User Guide.*
|
668
|
+
# graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a
|
669
|
+
# target][1] in the *Database Migration Service User Guide.*
|
666
670
|
#
|
667
671
|
#
|
668
672
|
#
|
@@ -674,74 +678,72 @@ module Aws::DatabaseMigrationService
|
|
674
678
|
# @option params [Types::PostgreSQLSettings] :postgre_sql_settings
|
675
679
|
# Settings in JSON format for the source and target PostgreSQL endpoint.
|
676
680
|
# For information about other available settings, see [Extra connection
|
677
|
-
# attributes when using PostgreSQL as a source for
|
678
|
-
#
|
679
|
-
#
|
681
|
+
# attributes when using PostgreSQL as a source for DMS][1] and [ Extra
|
682
|
+
# connection attributes when using PostgreSQL as a target for DMS][2] in
|
683
|
+
# the *Database Migration Service User Guide.*
|
680
684
|
#
|
681
685
|
#
|
682
686
|
#
|
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
|
687
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib
|
688
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html#CHAP_Target.PostgreSQL.ConnectionAttrib
|
685
689
|
#
|
686
690
|
# @option params [Types::MySQLSettings] :my_sql_settings
|
687
691
|
# Settings in JSON format for the source and target MySQL endpoint. For
|
688
692
|
# information about other available settings, see [Extra connection
|
689
|
-
# attributes when using MySQL as a source for
|
693
|
+
# attributes when using MySQL as a source for DMS][1] and [Extra
|
690
694
|
# connection attributes when using a MySQL-compatible database as a
|
691
|
-
# target for
|
692
|
-
# Guide.*
|
695
|
+
# target for DMS][2] in the *Database Migration Service User Guide.*
|
693
696
|
#
|
694
697
|
#
|
695
698
|
#
|
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
|
699
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html#CHAP_Source.MySQL.ConnectionAttrib
|
700
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html#CHAP_Target.MySQL.ConnectionAttrib
|
698
701
|
#
|
699
702
|
# @option params [Types::OracleSettings] :oracle_settings
|
700
703
|
# Settings in JSON format for the source and target Oracle endpoint. For
|
701
704
|
# information about other available settings, see [Extra connection
|
702
|
-
# attributes when using Oracle as a source for
|
703
|
-
# connection attributes when using Oracle as a target for
|
704
|
-
#
|
705
|
+
# attributes when using Oracle as a source for DMS][1] and [ Extra
|
706
|
+
# connection attributes when using Oracle as a target for DMS][2] in the
|
707
|
+
# *Database Migration Service User Guide.*
|
705
708
|
#
|
706
709
|
#
|
707
710
|
#
|
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
|
711
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.ConnectionAttrib
|
712
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html#CHAP_Target.Oracle.ConnectionAttrib
|
710
713
|
#
|
711
714
|
# @option params [Types::SybaseSettings] :sybase_settings
|
712
715
|
# Settings in JSON format for the source and target SAP ASE endpoint.
|
713
716
|
# For information about other available settings, see [Extra connection
|
714
|
-
# attributes when using SAP ASE as a source for
|
715
|
-
# connection attributes when using SAP ASE as a target for
|
716
|
-
#
|
717
|
+
# attributes when using SAP ASE as a source for DMS][1] and [Extra
|
718
|
+
# connection attributes when using SAP ASE as a target for DMS][2] in
|
719
|
+
# the *Database Migration Service User Guide.*
|
717
720
|
#
|
718
721
|
#
|
719
722
|
#
|
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
|
723
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html#CHAP_Source.SAP.ConnectionAttrib
|
724
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html#CHAP_Target.SAP.ConnectionAttrib
|
722
725
|
#
|
723
726
|
# @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
|
724
727
|
# Settings in JSON format for the source and target Microsoft SQL Server
|
725
728
|
# endpoint. For information about other available settings, see [Extra
|
726
|
-
# connection attributes when using SQL Server as a source for
|
727
|
-
#
|
728
|
-
#
|
729
|
-
# Guide.*
|
729
|
+
# connection attributes when using SQL Server as a source for DMS][1]
|
730
|
+
# and [ Extra connection attributes when using SQL Server as a target
|
731
|
+
# for DMS][2] in the *Database Migration Service User Guide.*
|
730
732
|
#
|
731
733
|
#
|
732
734
|
#
|
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
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html#CHAP_Source.SQLServer.ConnectionAttrib
|
736
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html#CHAP_Target.SQLServer.ConnectionAttrib
|
735
737
|
#
|
736
738
|
# @option params [Types::IBMDb2Settings] :ibm_db_2_settings
|
737
739
|
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
738
740
|
# information about other available settings, see [Extra connection
|
739
|
-
# attributes when using Db2 LUW as a source for
|
740
|
-
#
|
741
|
+
# attributes when using Db2 LUW as a source for DMS][1] in the *Database
|
742
|
+
# Migration Service User Guide.*
|
741
743
|
#
|
742
744
|
#
|
743
745
|
#
|
744
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html
|
746
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html#CHAP_Source.DB2.ConnectionAttrib
|
745
747
|
#
|
746
748
|
# @option params [String] :resource_identifier
|
747
749
|
# A friendly name for the resource identifier at the end of the
|
@@ -752,8 +754,8 @@ module Aws::DatabaseMigrationService
|
|
752
754
|
# hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
|
753
755
|
# For example, this value might result in the `EndpointArn` value
|
754
756
|
# `arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1`. If you
|
755
|
-
# don't specify a `ResourceIdentifier` value,
|
756
|
-
#
|
757
|
+
# don't specify a `ResourceIdentifier` value, DMS generates a default
|
758
|
+
# identifier value for the end of `EndpointArn`.
|
757
759
|
#
|
758
760
|
# @option params [Types::DocDbSettings] :doc_db_settings
|
759
761
|
# Provides information that defines a DocumentDB endpoint.
|
@@ -889,6 +891,7 @@ module Aws::DatabaseMigrationService
|
|
889
891
|
# include_table_alter_operations: false,
|
890
892
|
# include_control_details: false,
|
891
893
|
# include_null_and_empty: false,
|
894
|
+
# no_hex_prefix: false,
|
892
895
|
# },
|
893
896
|
# kafka_settings: {
|
894
897
|
# broker: "String",
|
@@ -908,6 +911,7 @@ module Aws::DatabaseMigrationService
|
|
908
911
|
# ssl_ca_certificate_arn: "String",
|
909
912
|
# sasl_username: "String",
|
910
913
|
# sasl_password: "SecretString",
|
914
|
+
# no_hex_prefix: false,
|
911
915
|
# },
|
912
916
|
# elasticsearch_settings: {
|
913
917
|
# service_access_role_arn: "String", # required
|
@@ -964,11 +968,15 @@ module Aws::DatabaseMigrationService
|
|
964
968
|
# ddl_artifacts_schema: "String",
|
965
969
|
# execute_timeout: 1,
|
966
970
|
# fail_tasks_on_lob_truncation: false,
|
971
|
+
# heartbeat_enable: false,
|
972
|
+
# heartbeat_schema: "String",
|
973
|
+
# heartbeat_frequency: 1,
|
967
974
|
# password: "SecretString",
|
968
975
|
# port: 1,
|
969
976
|
# server_name: "String",
|
970
977
|
# username: "String",
|
971
978
|
# slot_name: "String",
|
979
|
+
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
972
980
|
# secrets_manager_access_role_arn: "String",
|
973
981
|
# secrets_manager_secret_id: "String",
|
974
982
|
# },
|
@@ -1019,7 +1027,11 @@ module Aws::DatabaseMigrationService
|
|
1019
1027
|
# security_db_encryption_name: "String",
|
1020
1028
|
# server_name: "String",
|
1021
1029
|
# spatial_data_option_to_geo_json_function_name: "String",
|
1030
|
+
# standby_delay_time: 1,
|
1022
1031
|
# username: "String",
|
1032
|
+
# use_b_file: false,
|
1033
|
+
# use_direct_path_full_load: false,
|
1034
|
+
# use_logminer_reader: false,
|
1023
1035
|
# secrets_manager_access_role_arn: "String",
|
1024
1036
|
# secrets_manager_secret_id: "String",
|
1025
1037
|
# secrets_manager_oracle_asm_access_role_arn: "String",
|
@@ -1151,6 +1163,7 @@ module Aws::DatabaseMigrationService
|
|
1151
1163
|
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
1152
1164
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
1153
1165
|
# resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
|
1166
|
+
# resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
|
1154
1167
|
# resp.endpoint.kafka_settings.broker #=> String
|
1155
1168
|
# resp.endpoint.kafka_settings.topic #=> String
|
1156
1169
|
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -1168,6 +1181,7 @@ module Aws::DatabaseMigrationService
|
|
1168
1181
|
# resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
|
1169
1182
|
# resp.endpoint.kafka_settings.sasl_username #=> String
|
1170
1183
|
# resp.endpoint.kafka_settings.sasl_password #=> String
|
1184
|
+
# resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
|
1171
1185
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
1172
1186
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
1173
1187
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -1216,11 +1230,15 @@ module Aws::DatabaseMigrationService
|
|
1216
1230
|
# resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
|
1217
1231
|
# resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
|
1218
1232
|
# resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
|
1233
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_enable #=> Boolean
|
1234
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_schema #=> String
|
1235
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_frequency #=> Integer
|
1219
1236
|
# resp.endpoint.postgre_sql_settings.password #=> String
|
1220
1237
|
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
1221
1238
|
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
1222
1239
|
# resp.endpoint.postgre_sql_settings.username #=> String
|
1223
1240
|
# resp.endpoint.postgre_sql_settings.slot_name #=> String
|
1241
|
+
# resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
1224
1242
|
# resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
1225
1243
|
# resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
|
1226
1244
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
@@ -1267,7 +1285,11 @@ module Aws::DatabaseMigrationService
|
|
1267
1285
|
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
1268
1286
|
# resp.endpoint.oracle_settings.server_name #=> String
|
1269
1287
|
# resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
|
1288
|
+
# resp.endpoint.oracle_settings.standby_delay_time #=> Integer
|
1270
1289
|
# resp.endpoint.oracle_settings.username #=> String
|
1290
|
+
# resp.endpoint.oracle_settings.use_b_file #=> Boolean
|
1291
|
+
# resp.endpoint.oracle_settings.use_direct_path_full_load #=> Boolean
|
1292
|
+
# resp.endpoint.oracle_settings.use_logminer_reader #=> Boolean
|
1271
1293
|
# resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
|
1272
1294
|
# resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
|
1273
1295
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
@@ -1324,10 +1346,10 @@ module Aws::DatabaseMigrationService
|
|
1324
1346
|
req.send_request(options)
|
1325
1347
|
end
|
1326
1348
|
|
1327
|
-
# Creates an
|
1349
|
+
# Creates an DMS event notification subscription.
|
1328
1350
|
#
|
1329
1351
|
# You can specify the type of source (`SourceType`) you want to be
|
1330
|
-
# notified of, provide a list of
|
1352
|
+
# notified of, provide a list of DMS source IDs (`SourceIds`) that
|
1331
1353
|
# triggers the events, and provide a list of event categories
|
1332
1354
|
# (`EventCategories`) for events you want to be notified of. If you
|
1333
1355
|
# specify both the `SourceType` and `SourceIds`, such as `SourceType =
|
@@ -1335,21 +1357,20 @@ module Aws::DatabaseMigrationService
|
|
1335
1357
|
# will be notified of all the replication instance events for the
|
1336
1358
|
# specified source. If you specify a `SourceType` but don't specify a
|
1337
1359
|
# `SourceIdentifier`, you receive notice of the events for that source
|
1338
|
-
# type for all your
|
1360
|
+
# type for all your DMS sources. If you don't specify either
|
1339
1361
|
# `SourceType` nor `SourceIdentifier`, you will be notified of events
|
1340
|
-
# generated from all
|
1362
|
+
# generated from all DMS sources belonging to your customer account.
|
1341
1363
|
#
|
1342
|
-
# For more information about
|
1343
|
-
#
|
1344
|
-
# Guide.*
|
1364
|
+
# For more information about DMS events, see [Working with Events and
|
1365
|
+
# Notifications][1] in the *Database Migration Service User Guide.*
|
1345
1366
|
#
|
1346
1367
|
#
|
1347
1368
|
#
|
1348
1369
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
|
1349
1370
|
#
|
1350
1371
|
# @option params [required, String] :subscription_name
|
1351
|
-
# The name of the
|
1352
|
-
#
|
1372
|
+
# The name of the DMS event notification subscription. This name must be
|
1373
|
+
# less than 255 characters.
|
1353
1374
|
#
|
1354
1375
|
# @option params [required, String] :sns_topic_arn
|
1355
1376
|
# The Amazon Resource Name (ARN) of the Amazon SNS topic created for
|
@@ -1357,24 +1378,24 @@ module Aws::DatabaseMigrationService
|
|
1357
1378
|
# topic and subscribe to it.
|
1358
1379
|
#
|
1359
1380
|
# @option params [String] :source_type
|
1360
|
-
# The type of
|
1361
|
-
#
|
1362
|
-
#
|
1363
|
-
#
|
1381
|
+
# The type of DMS resource that generates the events. For example, if
|
1382
|
+
# you want to be notified of events generated by a replication instance,
|
1383
|
+
# you set this parameter to `replication-instance`. If this value isn't
|
1384
|
+
# specified, all events are returned.
|
1364
1385
|
#
|
1365
1386
|
# Valid values: `replication-instance` \| `replication-task`
|
1366
1387
|
#
|
1367
1388
|
# @option params [Array<String>] :event_categories
|
1368
1389
|
# A list of event categories for a source type that you want to
|
1369
1390
|
# subscribe to. For more information, see [Working with Events and
|
1370
|
-
# Notifications][1] in the *
|
1391
|
+
# Notifications][1] in the *Database Migration Service User Guide.*
|
1371
1392
|
#
|
1372
1393
|
#
|
1373
1394
|
#
|
1374
1395
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
|
1375
1396
|
#
|
1376
1397
|
# @option params [Array<String>] :source_ids
|
1377
|
-
# A list of identifiers for which
|
1398
|
+
# A list of identifiers for which DMS provides notification events.
|
1378
1399
|
#
|
1379
1400
|
# If you don't specify a value, notifications are provided for all
|
1380
1401
|
# sources.
|
@@ -1436,11 +1457,11 @@ module Aws::DatabaseMigrationService
|
|
1436
1457
|
|
1437
1458
|
# Creates the replication instance using the specified parameters.
|
1438
1459
|
#
|
1439
|
-
#
|
1460
|
+
# DMS requires that your account have certain roles with appropriate
|
1440
1461
|
# permissions before you can create a replication instance. For
|
1441
1462
|
# information on the required roles, see [Creating the IAM Roles to Use
|
1442
|
-
# With the
|
1443
|
-
# permissions, see [IAM Permissions Needed to Use
|
1463
|
+
# With the CLI and DMS API][1]. For information on the required
|
1464
|
+
# permissions, see [IAM Permissions Needed to Use DMS][2].
|
1444
1465
|
#
|
1445
1466
|
#
|
1446
1467
|
#
|
@@ -1472,7 +1493,7 @@ module Aws::DatabaseMigrationService
|
|
1472
1493
|
# `"dms.c4.large"`.
|
1473
1494
|
#
|
1474
1495
|
# For more information on the settings and capacities for the available
|
1475
|
-
# replication instance classes, see [ Selecting the right
|
1496
|
+
# replication instance classes, see [ Selecting the right DMS
|
1476
1497
|
# replication instance for your migration][1].
|
1477
1498
|
#
|
1478
1499
|
#
|
@@ -1487,7 +1508,7 @@ module Aws::DatabaseMigrationService
|
|
1487
1508
|
# @option params [String] :availability_zone
|
1488
1509
|
# The Availability Zone where the replication instance will be created.
|
1489
1510
|
# The default value is a random, system-chosen Availability Zone in the
|
1490
|
-
# endpoint's
|
1511
|
+
# endpoint's Region, for example: `us-east-1d`
|
1491
1512
|
#
|
1492
1513
|
# @option params [String] :replication_subnet_group_identifier
|
1493
1514
|
# A subnet group to associate with the replication instance.
|
@@ -1499,7 +1520,7 @@ module Aws::DatabaseMigrationService
|
|
1499
1520
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1500
1521
|
#
|
1501
1522
|
# Default: A 30-minute window selected at random from an 8-hour block of
|
1502
|
-
# time per
|
1523
|
+
# time per Region, occurring on a random day of the week.
|
1503
1524
|
#
|
1504
1525
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
1505
1526
|
#
|
@@ -1528,15 +1549,14 @@ module Aws::DatabaseMigrationService
|
|
1528
1549
|
# One or more tags to be assigned to the replication instance.
|
1529
1550
|
#
|
1530
1551
|
# @option params [String] :kms_key_id
|
1531
|
-
# An
|
1552
|
+
# An KMS key identifier that is used to encrypt the data on the
|
1532
1553
|
# replication instance.
|
1533
1554
|
#
|
1534
|
-
# If you don't specify a value for the `KmsKeyId` parameter, then
|
1535
|
-
#
|
1555
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then DMS
|
1556
|
+
# uses your default encryption key.
|
1536
1557
|
#
|
1537
|
-
#
|
1538
|
-
#
|
1539
|
-
# Region.
|
1558
|
+
# KMS creates the default encryption key for your account. Your account
|
1559
|
+
# has a different default encryption key for each Region.
|
1540
1560
|
#
|
1541
1561
|
# @option params [Boolean] :publicly_accessible
|
1542
1562
|
# Specifies the accessibility options for the replication instance. A
|
@@ -1561,8 +1581,8 @@ module Aws::DatabaseMigrationService
|
|
1561
1581
|
# hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
|
1562
1582
|
# For example, this value might result in the `EndpointArn` value
|
1563
1583
|
# `arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1`. If you
|
1564
|
-
# don't specify a `ResourceIdentifier` value,
|
1565
|
-
#
|
1584
|
+
# don't specify a `ResourceIdentifier` value, DMS generates a default
|
1585
|
+
# identifier value for the end of `EndpointArn`.
|
1566
1586
|
#
|
1567
1587
|
# @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1568
1588
|
#
|
@@ -1838,8 +1858,8 @@ module Aws::DatabaseMigrationService
|
|
1838
1858
|
#
|
1839
1859
|
# @option params [required, String] :table_mappings
|
1840
1860
|
# The table mappings for the task, in JSON format. For more information,
|
1841
|
-
# see [Using Table Mapping to Specify Task Settings][1] in the *
|
1842
|
-
#
|
1861
|
+
# see [Using Table Mapping to Specify Task Settings][1] in the *Database
|
1862
|
+
# Migration Service User Guide.*
|
1843
1863
|
#
|
1844
1864
|
#
|
1845
1865
|
#
|
@@ -1847,8 +1867,8 @@ module Aws::DatabaseMigrationService
|
|
1847
1867
|
#
|
1848
1868
|
# @option params [String] :replication_task_settings
|
1849
1869
|
# Overall settings for the task, in JSON format. For more information,
|
1850
|
-
# see [Specifying Task Settings for
|
1851
|
-
#
|
1870
|
+
# see [Specifying Task Settings for Database Migration Service Tasks][1]
|
1871
|
+
# in the *Database Migration Service User Guide.*
|
1852
1872
|
#
|
1853
1873
|
#
|
1854
1874
|
#
|
@@ -1881,7 +1901,7 @@ module Aws::DatabaseMigrationService
|
|
1881
1901
|
# the source endpoint. You can verify this by setting the `slotName`
|
1882
1902
|
# extra connection attribute to the name of this logical replication
|
1883
1903
|
# slot. For more information, see [Extra Connection Attributes When
|
1884
|
-
# Using PostgreSQL as a Source for
|
1904
|
+
# Using PostgreSQL as a Source for DMS][1].
|
1885
1905
|
#
|
1886
1906
|
# </note>
|
1887
1907
|
#
|
@@ -1905,8 +1925,8 @@ module Aws::DatabaseMigrationService
|
|
1905
1925
|
# @option params [String] :task_data
|
1906
1926
|
# Supplemental information that the task requires to migrate the data
|
1907
1927
|
# for certain source and target endpoints. For more information, see
|
1908
|
-
# [Specifying Supplemental Data for Task Settings][1] in the *
|
1909
|
-
#
|
1928
|
+
# [Specifying Supplemental Data for Task Settings][1] in the *Database
|
1929
|
+
# Migration Service User Guide.*
|
1910
1930
|
#
|
1911
1931
|
#
|
1912
1932
|
#
|
@@ -1921,8 +1941,8 @@ module Aws::DatabaseMigrationService
|
|
1921
1941
|
# hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
|
1922
1942
|
# For example, this value might result in the `EndpointArn` value
|
1923
1943
|
# `arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1`. If you
|
1924
|
-
# don't specify a `ResourceIdentifier` value,
|
1925
|
-
#
|
1944
|
+
# don't specify a `ResourceIdentifier` value, DMS generates a default
|
1945
|
+
# identifier value for the end of `EndpointArn`.
|
1926
1946
|
#
|
1927
1947
|
# @return [Types::CreateReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1928
1948
|
#
|
@@ -2255,6 +2275,7 @@ module Aws::DatabaseMigrationService
|
|
2255
2275
|
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
2256
2276
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
2257
2277
|
# resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
|
2278
|
+
# resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
|
2258
2279
|
# resp.endpoint.kafka_settings.broker #=> String
|
2259
2280
|
# resp.endpoint.kafka_settings.topic #=> String
|
2260
2281
|
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -2272,6 +2293,7 @@ module Aws::DatabaseMigrationService
|
|
2272
2293
|
# resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
|
2273
2294
|
# resp.endpoint.kafka_settings.sasl_username #=> String
|
2274
2295
|
# resp.endpoint.kafka_settings.sasl_password #=> String
|
2296
|
+
# resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
|
2275
2297
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
2276
2298
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
2277
2299
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -2320,11 +2342,15 @@ module Aws::DatabaseMigrationService
|
|
2320
2342
|
# resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
|
2321
2343
|
# resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
|
2322
2344
|
# resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
|
2345
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_enable #=> Boolean
|
2346
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_schema #=> String
|
2347
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_frequency #=> Integer
|
2323
2348
|
# resp.endpoint.postgre_sql_settings.password #=> String
|
2324
2349
|
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
2325
2350
|
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
2326
2351
|
# resp.endpoint.postgre_sql_settings.username #=> String
|
2327
2352
|
# resp.endpoint.postgre_sql_settings.slot_name #=> String
|
2353
|
+
# resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
2328
2354
|
# resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
2329
2355
|
# resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
|
2330
2356
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
@@ -2371,7 +2397,11 @@ module Aws::DatabaseMigrationService
|
|
2371
2397
|
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
2372
2398
|
# resp.endpoint.oracle_settings.server_name #=> String
|
2373
2399
|
# resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
|
2400
|
+
# resp.endpoint.oracle_settings.standby_delay_time #=> Integer
|
2374
2401
|
# resp.endpoint.oracle_settings.username #=> String
|
2402
|
+
# resp.endpoint.oracle_settings.use_b_file #=> Boolean
|
2403
|
+
# resp.endpoint.oracle_settings.use_direct_path_full_load #=> Boolean
|
2404
|
+
# resp.endpoint.oracle_settings.use_logminer_reader #=> Boolean
|
2375
2405
|
# resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
|
2376
2406
|
# resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
|
2377
2407
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
@@ -2428,7 +2458,7 @@ module Aws::DatabaseMigrationService
|
|
2428
2458
|
req.send_request(options)
|
2429
2459
|
end
|
2430
2460
|
|
2431
|
-
# Deletes an
|
2461
|
+
# Deletes an DMS event subscription.
|
2432
2462
|
#
|
2433
2463
|
# @option params [required, String] :subscription_name
|
2434
2464
|
# The name of the DMS event notification subscription to be deleted.
|
@@ -2718,7 +2748,7 @@ module Aws::DatabaseMigrationService
|
|
2718
2748
|
|
2719
2749
|
# Deletes the record of a single premigration assessment run.
|
2720
2750
|
#
|
2721
|
-
# This operation removes all metadata that
|
2751
|
+
# This operation removes all metadata that DMS maintains about this
|
2722
2752
|
# assessment run. However, the operation leaves untouched all
|
2723
2753
|
# information about this assessment run that is stored in your Amazon S3
|
2724
2754
|
# bucket.
|
@@ -2762,8 +2792,8 @@ module Aws::DatabaseMigrationService
|
|
2762
2792
|
req.send_request(options)
|
2763
2793
|
end
|
2764
2794
|
|
2765
|
-
# Lists all of the
|
2766
|
-
# attributes include
|
2795
|
+
# Lists all of the DMS attributes for a customer account. These
|
2796
|
+
# attributes include DMS quotas for the account and a unique account
|
2767
2797
|
# identifier in a particular DMS region. DMS quotas include a list of
|
2768
2798
|
# resource quotas supported by the account, such as the number of
|
2769
2799
|
# replication instances allowed. The description for each resource
|
@@ -3151,6 +3181,7 @@ module Aws::DatabaseMigrationService
|
|
3151
3181
|
# resp.endpoint_settings[0].applicability #=> String
|
3152
3182
|
# resp.endpoint_settings[0].int_value_min #=> Integer
|
3153
3183
|
# resp.endpoint_settings[0].int_value_max #=> Integer
|
3184
|
+
# resp.endpoint_settings[0].default_value #=> String
|
3154
3185
|
#
|
3155
3186
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointSettings AWS API Documentation
|
3156
3187
|
#
|
@@ -3393,6 +3424,7 @@ module Aws::DatabaseMigrationService
|
|
3393
3424
|
# resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
|
3394
3425
|
# resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
|
3395
3426
|
# resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
|
3427
|
+
# resp.endpoints[0].kinesis_settings.no_hex_prefix #=> Boolean
|
3396
3428
|
# resp.endpoints[0].kafka_settings.broker #=> String
|
3397
3429
|
# resp.endpoints[0].kafka_settings.topic #=> String
|
3398
3430
|
# resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -3410,6 +3442,7 @@ module Aws::DatabaseMigrationService
|
|
3410
3442
|
# resp.endpoints[0].kafka_settings.ssl_ca_certificate_arn #=> String
|
3411
3443
|
# resp.endpoints[0].kafka_settings.sasl_username #=> String
|
3412
3444
|
# resp.endpoints[0].kafka_settings.sasl_password #=> String
|
3445
|
+
# resp.endpoints[0].kafka_settings.no_hex_prefix #=> Boolean
|
3413
3446
|
# resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
|
3414
3447
|
# resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
|
3415
3448
|
# resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -3458,11 +3491,15 @@ module Aws::DatabaseMigrationService
|
|
3458
3491
|
# resp.endpoints[0].postgre_sql_settings.ddl_artifacts_schema #=> String
|
3459
3492
|
# resp.endpoints[0].postgre_sql_settings.execute_timeout #=> Integer
|
3460
3493
|
# resp.endpoints[0].postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
|
3494
|
+
# resp.endpoints[0].postgre_sql_settings.heartbeat_enable #=> Boolean
|
3495
|
+
# resp.endpoints[0].postgre_sql_settings.heartbeat_schema #=> String
|
3496
|
+
# resp.endpoints[0].postgre_sql_settings.heartbeat_frequency #=> Integer
|
3461
3497
|
# resp.endpoints[0].postgre_sql_settings.password #=> String
|
3462
3498
|
# resp.endpoints[0].postgre_sql_settings.port #=> Integer
|
3463
3499
|
# resp.endpoints[0].postgre_sql_settings.server_name #=> String
|
3464
3500
|
# resp.endpoints[0].postgre_sql_settings.username #=> String
|
3465
3501
|
# resp.endpoints[0].postgre_sql_settings.slot_name #=> String
|
3502
|
+
# resp.endpoints[0].postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
3466
3503
|
# resp.endpoints[0].postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
3467
3504
|
# resp.endpoints[0].postgre_sql_settings.secrets_manager_secret_id #=> String
|
3468
3505
|
# resp.endpoints[0].my_sql_settings.after_connect_script #=> String
|
@@ -3509,7 +3546,11 @@ module Aws::DatabaseMigrationService
|
|
3509
3546
|
# resp.endpoints[0].oracle_settings.security_db_encryption_name #=> String
|
3510
3547
|
# resp.endpoints[0].oracle_settings.server_name #=> String
|
3511
3548
|
# resp.endpoints[0].oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
|
3549
|
+
# resp.endpoints[0].oracle_settings.standby_delay_time #=> Integer
|
3512
3550
|
# resp.endpoints[0].oracle_settings.username #=> String
|
3551
|
+
# resp.endpoints[0].oracle_settings.use_b_file #=> Boolean
|
3552
|
+
# resp.endpoints[0].oracle_settings.use_direct_path_full_load #=> Boolean
|
3553
|
+
# resp.endpoints[0].oracle_settings.use_logminer_reader #=> Boolean
|
3513
3554
|
# resp.endpoints[0].oracle_settings.secrets_manager_access_role_arn #=> String
|
3514
3555
|
# resp.endpoints[0].oracle_settings.secrets_manager_secret_id #=> String
|
3515
3556
|
# resp.endpoints[0].oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
@@ -3573,15 +3614,15 @@ module Aws::DatabaseMigrationService
|
|
3573
3614
|
|
3574
3615
|
# Lists categories for all event source types, or, if specified, for a
|
3575
3616
|
# specified source type. You can see a list of the event categories and
|
3576
|
-
# source types in [Working with Events and Notifications][1] in the
|
3577
|
-
# Database Migration Service User Guide.*
|
3617
|
+
# source types in [Working with Events and Notifications][1] in the
|
3618
|
+
# *Database Migration Service User Guide.*
|
3578
3619
|
#
|
3579
3620
|
#
|
3580
3621
|
#
|
3581
3622
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
|
3582
3623
|
#
|
3583
3624
|
# @option params [String] :source_type
|
3584
|
-
# The type of
|
3625
|
+
# The type of DMS resource that generates events.
|
3585
3626
|
#
|
3586
3627
|
# Valid values: replication-instance \| replication-task
|
3587
3628
|
#
|
@@ -3629,7 +3670,7 @@ module Aws::DatabaseMigrationService
|
|
3629
3670
|
# for that subscription.
|
3630
3671
|
#
|
3631
3672
|
# @option params [String] :subscription_name
|
3632
|
-
# The name of the
|
3673
|
+
# The name of the DMS event subscription to be described.
|
3633
3674
|
#
|
3634
3675
|
# @option params [Array<Types::Filter>] :filters
|
3635
3676
|
# Filters applied to event subscriptions.
|
@@ -3696,9 +3737,9 @@ module Aws::DatabaseMigrationService
|
|
3696
3737
|
end
|
3697
3738
|
|
3698
3739
|
# Lists events for a given source identifier and source type. You can
|
3699
|
-
# also specify a start and end time. For more information on
|
3700
|
-
#
|
3701
|
-
#
|
3740
|
+
# also specify a start and end time. For more information on DMS events,
|
3741
|
+
# see [Working with Events and Notifications][1] in the *Database
|
3742
|
+
# Migration Service User Guide.*
|
3702
3743
|
#
|
3703
3744
|
#
|
3704
3745
|
#
|
@@ -3708,7 +3749,7 @@ module Aws::DatabaseMigrationService
|
|
3708
3749
|
# The identifier of an event source.
|
3709
3750
|
#
|
3710
3751
|
# @option params [String] :source_type
|
3711
|
-
# The type of
|
3752
|
+
# The type of DMS resource that generates events.
|
3712
3753
|
#
|
3713
3754
|
# Valid values: replication-instance \| replication-task
|
3714
3755
|
#
|
@@ -4246,8 +4287,18 @@ module Aws::DatabaseMigrationService
|
|
4246
4287
|
req.send_request(options)
|
4247
4288
|
end
|
4248
4289
|
|
4249
|
-
# Returns the task assessment results from Amazon S3
|
4250
|
-
# returns the latest
|
4290
|
+
# Returns the task assessment results from the Amazon S3 bucket that DMS
|
4291
|
+
# creates in your account. This action always returns the latest
|
4292
|
+
# results.
|
4293
|
+
#
|
4294
|
+
# For more information about DMS task assessments, see [Creating a task
|
4295
|
+
# assessment report][1] in the [ Database Migration Service User
|
4296
|
+
# Guide][2].
|
4297
|
+
#
|
4298
|
+
#
|
4299
|
+
#
|
4300
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
|
4301
|
+
# [2]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/dms/latest/userguide/Welcome.html
|
4251
4302
|
#
|
4252
4303
|
# @option params [String] :replication_task_arn
|
4253
4304
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
@@ -4649,7 +4700,7 @@ module Aws::DatabaseMigrationService
|
|
4649
4700
|
# table name, rows inserted, rows updated, and rows deleted.
|
4650
4701
|
#
|
4651
4702
|
# Note that the "last updated" column the DMS console only indicates
|
4652
|
-
# the time that
|
4703
|
+
# the time that DMS last updated the table statistics record for a
|
4653
4704
|
# table. It does not indicate the time of the last update to the table.
|
4654
4705
|
#
|
4655
4706
|
# @option params [required, String] :replication_task_arn
|
@@ -4767,7 +4818,8 @@ module Aws::DatabaseMigrationService
|
|
4767
4818
|
#
|
4768
4819
|
# @option params [String, StringIO, File] :certificate_wallet
|
4769
4820
|
# The location of an imported Oracle Wallet certificate for use with
|
4770
|
-
# SSL.
|
4821
|
+
# SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
|
4822
|
+
# You can't provide the certificate inline.
|
4771
4823
|
#
|
4772
4824
|
# @option params [Array<Types::Tag>] :tags
|
4773
4825
|
# The tags associated with the certificate.
|
@@ -4828,7 +4880,7 @@ module Aws::DatabaseMigrationService
|
|
4828
4880
|
req.send_request(options)
|
4829
4881
|
end
|
4830
4882
|
|
4831
|
-
# Lists all metadata tags attached to an
|
4883
|
+
# Lists all metadata tags attached to an DMS resource, including
|
4832
4884
|
# replication instance, endpoint, security group, and migration task.
|
4833
4885
|
# For more information, see [ `Tag` ][1] data type description.
|
4834
4886
|
#
|
@@ -4837,8 +4889,8 @@ module Aws::DatabaseMigrationService
|
|
4837
4889
|
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
|
4838
4890
|
#
|
4839
4891
|
# @option params [required, String] :resource_arn
|
4840
|
-
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
4841
|
-
#
|
4892
|
+
# The Amazon Resource Name (ARN) string that uniquely identifies the DMS
|
4893
|
+
# resource.
|
4842
4894
|
#
|
4843
4895
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4844
4896
|
#
|
@@ -4882,6 +4934,15 @@ module Aws::DatabaseMigrationService
|
|
4882
4934
|
|
4883
4935
|
# Modifies the specified endpoint.
|
4884
4936
|
#
|
4937
|
+
# <note markdown="1"> For a MySQL source or target endpoint, don't explicitly specify the
|
4938
|
+
# database using the `DatabaseName` request parameter on the
|
4939
|
+
# `ModifyEndpoint` API call. Specifying `DatabaseName` when you modify a
|
4940
|
+
# MySQL endpoint replicates all the task tables to this single database.
|
4941
|
+
# For MySQL endpoints, you specify the database only when you specify
|
4942
|
+
# the schema in the table-mapping rules of the DMS task.
|
4943
|
+
#
|
4944
|
+
# </note>
|
4945
|
+
#
|
4885
4946
|
# @option params [required, String] :endpoint_arn
|
4886
4947
|
# The Amazon Resource Name (ARN) string that uniquely identifies the
|
4887
4948
|
# endpoint.
|
@@ -4915,7 +4976,8 @@ module Aws::DatabaseMigrationService
|
|
4915
4976
|
# The port used by the endpoint database.
|
4916
4977
|
#
|
4917
4978
|
# @option params [String] :database_name
|
4918
|
-
# The name of the endpoint database.
|
4979
|
+
# The name of the endpoint database. For a MySQL source or target
|
4980
|
+
# endpoint, do not specify DatabaseName.
|
4919
4981
|
#
|
4920
4982
|
# @option params [String] :extra_connection_attributes
|
4921
4983
|
# Additional attributes associated with the connection. To reset this
|
@@ -4930,8 +4992,8 @@ module Aws::DatabaseMigrationService
|
|
4930
4992
|
# `none`.
|
4931
4993
|
#
|
4932
4994
|
# @option params [String] :service_access_role_arn
|
4933
|
-
# The Amazon Resource Name (ARN) for the
|
4934
|
-
#
|
4995
|
+
# The Amazon Resource Name (ARN) for the IAM role you want to use to
|
4996
|
+
# modify the endpoint. The role must allow the `iam:PassRole` action.
|
4935
4997
|
#
|
4936
4998
|
# @option params [String] :external_table_definition
|
4937
4999
|
# The external table definition.
|
@@ -4939,18 +5001,18 @@ module Aws::DatabaseMigrationService
|
|
4939
5001
|
# @option params [Types::DynamoDbSettings] :dynamo_db_settings
|
4940
5002
|
# Settings in JSON format for the target Amazon DynamoDB endpoint. For
|
4941
5003
|
# information about other available settings, see [Using Object Mapping
|
4942
|
-
# to Migrate Data to DynamoDB][1] in the *
|
5004
|
+
# to Migrate Data to DynamoDB][1] in the *Database Migration Service
|
4943
5005
|
# User Guide.*
|
4944
5006
|
#
|
4945
5007
|
#
|
4946
5008
|
#
|
4947
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html
|
5009
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html#CHAP_Target.DynamoDB.ObjectMapping
|
4948
5010
|
#
|
4949
5011
|
# @option params [Types::S3Settings] :s3_settings
|
4950
5012
|
# Settings in JSON format for the target Amazon S3 endpoint. For more
|
4951
5013
|
# information about the available settings, see [Extra Connection
|
4952
|
-
# Attributes When Using Amazon S3 as a Target for
|
4953
|
-
# *
|
5014
|
+
# Attributes When Using Amazon S3 as a Target for DMS][1] in the
|
5015
|
+
# *Database Migration Service User Guide.*
|
4954
5016
|
#
|
4955
5017
|
#
|
4956
5018
|
#
|
@@ -4962,60 +5024,54 @@ module Aws::DatabaseMigrationService
|
|
4962
5024
|
#
|
4963
5025
|
# Attributes include the following:
|
4964
5026
|
#
|
4965
|
-
# * serviceAccessRoleArn - The
|
4966
|
-
#
|
5027
|
+
# * serviceAccessRoleArn - The Identity and Access Management (IAM) role
|
5028
|
+
# that has permission to access the Amazon S3 bucket. The role must
|
5029
|
+
# allow the `iam:PassRole` action.
|
4967
5030
|
#
|
4968
5031
|
# * BucketName - The name of the S3 bucket to use.
|
4969
5032
|
#
|
4970
|
-
# * compressionType - An optional parameter to use GZIP to compress the
|
4971
|
-
# target files. Either set this parameter to NONE (the default) or
|
4972
|
-
# don't use it to leave the files uncompressed.
|
4973
|
-
#
|
4974
5033
|
# Shorthand syntax for these settings is as follows:
|
4975
|
-
# `ServiceAccessRoleArn=string
|
4976
|
-
# ,BucketName=string,CompressionType=string`
|
5034
|
+
# `ServiceAccessRoleArn=string ,BucketName=string`
|
4977
5035
|
#
|
4978
5036
|
# JSON syntax for these settings is as follows: `\{
|
4979
|
-
# "ServiceAccessRoleArn": "string", "BucketName": "string"
|
4980
|
-
# "CompressionType": "none"|"gzip" \} `
|
5037
|
+
# "ServiceAccessRoleArn": "string", "BucketName": "string"\} `
|
4981
5038
|
#
|
4982
5039
|
# @option params [Types::MongoDbSettings] :mongo_db_settings
|
4983
5040
|
# Settings in JSON format for the source MongoDB endpoint. For more
|
4984
5041
|
# information about the available settings, see the configuration
|
4985
|
-
# properties section in [
|
4986
|
-
# Migration Service][1] in the
|
4987
|
-
# Guide.*
|
5042
|
+
# properties section in [Endpoint configuration settings when using
|
5043
|
+
# MongoDB as a source for Database Migration Service][1] in the
|
5044
|
+
# *Database Migration Service User Guide.*
|
4988
5045
|
#
|
4989
5046
|
#
|
4990
5047
|
#
|
4991
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
|
5048
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration
|
4992
5049
|
#
|
4993
5050
|
# @option params [Types::KinesisSettings] :kinesis_settings
|
4994
5051
|
# Settings in JSON format for the target endpoint for Amazon Kinesis
|
4995
5052
|
# Data Streams. For more information about the available settings, see
|
4996
|
-
# [Using
|
4997
|
-
#
|
4998
|
-
# Guide.*
|
5053
|
+
# [Using object mapping to migrate data to a Kinesis data stream][1] in
|
5054
|
+
# the *Database Migration Service User Guide.*
|
4999
5055
|
#
|
5000
5056
|
#
|
5001
5057
|
#
|
5002
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
|
5058
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
|
5003
5059
|
#
|
5004
5060
|
# @option params [Types::KafkaSettings] :kafka_settings
|
5005
5061
|
# Settings in JSON format for the target Apache Kafka endpoint. For more
|
5006
|
-
# information about the available settings, see [Using
|
5007
|
-
#
|
5008
|
-
#
|
5062
|
+
# information about the available settings, see [Using object mapping to
|
5063
|
+
# migrate data to a Kafka topic][1] in the *Database Migration Service
|
5064
|
+
# User Guide.*
|
5009
5065
|
#
|
5010
5066
|
#
|
5011
5067
|
#
|
5012
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
|
5068
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
|
5013
5069
|
#
|
5014
5070
|
# @option params [Types::ElasticsearchSettings] :elasticsearch_settings
|
5015
5071
|
# Settings in JSON format for the target Elasticsearch endpoint. For
|
5016
5072
|
# more information about the available settings, see [Extra Connection
|
5017
|
-
# Attributes When Using Elasticsearch as a Target for
|
5018
|
-
# *
|
5073
|
+
# Attributes When Using Elasticsearch as a Target for DMS][1] in the
|
5074
|
+
# *Database Migration Service User Guide.*
|
5019
5075
|
#
|
5020
5076
|
#
|
5021
5077
|
#
|
@@ -5024,8 +5080,8 @@ module Aws::DatabaseMigrationService
|
|
5024
5080
|
# @option params [Types::NeptuneSettings] :neptune_settings
|
5025
5081
|
# Settings in JSON format for the target Amazon Neptune endpoint. For
|
5026
5082
|
# more information about the available settings, see [Specifying
|
5027
|
-
#
|
5028
|
-
# Database Migration Service User Guide.*
|
5083
|
+
# graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a
|
5084
|
+
# target][1] in the *Database Migration Service User Guide.*
|
5029
5085
|
#
|
5030
5086
|
#
|
5031
5087
|
#
|
@@ -5037,86 +5093,107 @@ module Aws::DatabaseMigrationService
|
|
5037
5093
|
# @option params [Types::PostgreSQLSettings] :postgre_sql_settings
|
5038
5094
|
# Settings in JSON format for the source and target PostgreSQL endpoint.
|
5039
5095
|
# For information about other available settings, see [Extra connection
|
5040
|
-
# attributes when using PostgreSQL as a source for
|
5041
|
-
#
|
5042
|
-
#
|
5096
|
+
# attributes when using PostgreSQL as a source for DMS][1] and [ Extra
|
5097
|
+
# connection attributes when using PostgreSQL as a target for DMS][2] in
|
5098
|
+
# the *Database Migration Service User Guide.*
|
5043
5099
|
#
|
5044
5100
|
#
|
5045
5101
|
#
|
5046
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
|
5047
|
-
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
|
5102
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib
|
5103
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html#CHAP_Target.PostgreSQL.ConnectionAttrib
|
5048
5104
|
#
|
5049
5105
|
# @option params [Types::MySQLSettings] :my_sql_settings
|
5050
5106
|
# Settings in JSON format for the source and target MySQL endpoint. For
|
5051
5107
|
# information about other available settings, see [Extra connection
|
5052
|
-
# attributes when using MySQL as a source for
|
5108
|
+
# attributes when using MySQL as a source for DMS][1] and [Extra
|
5053
5109
|
# connection attributes when using a MySQL-compatible database as a
|
5054
|
-
# target for
|
5055
|
-
# Guide.*
|
5110
|
+
# target for DMS][2] in the *Database Migration Service User Guide.*
|
5056
5111
|
#
|
5057
5112
|
#
|
5058
5113
|
#
|
5059
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
|
5060
|
-
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
|
5114
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html#CHAP_Source.MySQL.ConnectionAttrib
|
5115
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html#CHAP_Target.MySQL.ConnectionAttrib
|
5061
5116
|
#
|
5062
5117
|
# @option params [Types::OracleSettings] :oracle_settings
|
5063
5118
|
# Settings in JSON format for the source and target Oracle endpoint. For
|
5064
5119
|
# information about other available settings, see [Extra connection
|
5065
|
-
# attributes when using Oracle as a source for
|
5066
|
-
# connection attributes when using Oracle as a target for
|
5067
|
-
#
|
5120
|
+
# attributes when using Oracle as a source for DMS][1] and [ Extra
|
5121
|
+
# connection attributes when using Oracle as a target for DMS][2] in the
|
5122
|
+
# *Database Migration Service User Guide.*
|
5068
5123
|
#
|
5069
5124
|
#
|
5070
5125
|
#
|
5071
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
|
5072
|
-
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
|
5126
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.ConnectionAttrib
|
5127
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html#CHAP_Target.Oracle.ConnectionAttrib
|
5073
5128
|
#
|
5074
5129
|
# @option params [Types::SybaseSettings] :sybase_settings
|
5075
5130
|
# Settings in JSON format for the source and target SAP ASE endpoint.
|
5076
5131
|
# For information about other available settings, see [Extra connection
|
5077
|
-
# attributes when using SAP ASE as a source for
|
5078
|
-
# connection attributes when using SAP ASE as a target for
|
5079
|
-
#
|
5132
|
+
# attributes when using SAP ASE as a source for DMS][1] and [Extra
|
5133
|
+
# connection attributes when using SAP ASE as a target for DMS][2] in
|
5134
|
+
# the *Database Migration Service User Guide.*
|
5080
5135
|
#
|
5081
5136
|
#
|
5082
5137
|
#
|
5083
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
|
5084
|
-
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
|
5138
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html#CHAP_Source.SAP.ConnectionAttrib
|
5139
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html#CHAP_Target.SAP.ConnectionAttrib
|
5085
5140
|
#
|
5086
5141
|
# @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
|
5087
5142
|
# Settings in JSON format for the source and target Microsoft SQL Server
|
5088
5143
|
# endpoint. For information about other available settings, see [Extra
|
5089
|
-
# connection attributes when using SQL Server as a source for
|
5090
|
-
#
|
5091
|
-
#
|
5092
|
-
# Guide.*
|
5144
|
+
# connection attributes when using SQL Server as a source for DMS][1]
|
5145
|
+
# and [ Extra connection attributes when using SQL Server as a target
|
5146
|
+
# for DMS][2] in the *Database Migration Service User Guide.*
|
5093
5147
|
#
|
5094
5148
|
#
|
5095
5149
|
#
|
5096
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
|
5097
|
-
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
|
5150
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html#CHAP_Source.SQLServer.ConnectionAttrib
|
5151
|
+
# [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html#CHAP_Target.SQLServer.ConnectionAttrib
|
5098
5152
|
#
|
5099
5153
|
# @option params [Types::IBMDb2Settings] :ibm_db_2_settings
|
5100
5154
|
# Settings in JSON format for the source IBM Db2 LUW endpoint. For
|
5101
5155
|
# information about other available settings, see [Extra connection
|
5102
|
-
# attributes when using Db2 LUW as a source for
|
5103
|
-
#
|
5156
|
+
# attributes when using Db2 LUW as a source for DMS][1] in the *Database
|
5157
|
+
# Migration Service User Guide.*
|
5104
5158
|
#
|
5105
5159
|
#
|
5106
5160
|
#
|
5107
|
-
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
|
5161
|
+
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html#CHAP_Source.DB2.ConnectionAttrib
|
5108
5162
|
#
|
5109
5163
|
# @option params [Types::DocDbSettings] :doc_db_settings
|
5110
5164
|
# Settings in JSON format for the source DocumentDB endpoint. For more
|
5111
5165
|
# information about the available settings, see the configuration
|
5112
|
-
# properties section in [ Using DocumentDB as a Target for
|
5113
|
-
# Migration Service][1] in the *
|
5114
|
-
# Guide.*
|
5166
|
+
# properties section in [ Using DocumentDB as a Target for Database
|
5167
|
+
# Migration Service ][1] in the *Database Migration Service User Guide.*
|
5115
5168
|
#
|
5116
5169
|
#
|
5117
5170
|
#
|
5118
5171
|
# [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DocumentDB.html
|
5119
5172
|
#
|
5173
|
+
# @option params [Boolean] :exact_settings
|
5174
|
+
# If this attribute is Y, the current call to `ModifyEndpoint` replaces
|
5175
|
+
# all existing endpoint settings with the exact settings that you
|
5176
|
+
# specify in this call. If this attribute is N, the current call to
|
5177
|
+
# `ModifyEndpoint` does two things:
|
5178
|
+
#
|
5179
|
+
# * It replaces any endpoint settings that already exist with new
|
5180
|
+
# values, for settings with the same names.
|
5181
|
+
#
|
5182
|
+
# * It creates new endpoint settings that you specify in the call, for
|
5183
|
+
# settings with different names.
|
5184
|
+
#
|
5185
|
+
# For example, if you call `create-endpoint ... --endpoint-settings
|
5186
|
+
# '\{"a":1\}' ...`, the endpoint has the following endpoint settings:
|
5187
|
+
# `'\{"a":1\}'`. If you then call `modify-endpoint ...
|
5188
|
+
# --endpoint-settings '\{"b":2\}' ...` for the same endpoint, the
|
5189
|
+
# endpoint has the following settings: `'\{"a":1,"b":2\}'`.
|
5190
|
+
#
|
5191
|
+
# However, suppose that you follow this with a call to `modify-endpoint
|
5192
|
+
# ... --endpoint-settings '\{"b":2\}' --exact-settings ...` for that
|
5193
|
+
# same endpoint again. Then the endpoint has the following settings:
|
5194
|
+
# `'\{"b":2\}'`. All existing settings are replaced with the exact
|
5195
|
+
# settings that you specify.
|
5196
|
+
#
|
5120
5197
|
# @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5121
5198
|
#
|
5122
5199
|
# * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
|
@@ -5227,6 +5304,7 @@ module Aws::DatabaseMigrationService
|
|
5227
5304
|
# include_table_alter_operations: false,
|
5228
5305
|
# include_control_details: false,
|
5229
5306
|
# include_null_and_empty: false,
|
5307
|
+
# no_hex_prefix: false,
|
5230
5308
|
# },
|
5231
5309
|
# kafka_settings: {
|
5232
5310
|
# broker: "String",
|
@@ -5246,6 +5324,7 @@ module Aws::DatabaseMigrationService
|
|
5246
5324
|
# ssl_ca_certificate_arn: "String",
|
5247
5325
|
# sasl_username: "String",
|
5248
5326
|
# sasl_password: "SecretString",
|
5327
|
+
# no_hex_prefix: false,
|
5249
5328
|
# },
|
5250
5329
|
# elasticsearch_settings: {
|
5251
5330
|
# service_access_role_arn: "String", # required
|
@@ -5302,11 +5381,15 @@ module Aws::DatabaseMigrationService
|
|
5302
5381
|
# ddl_artifacts_schema: "String",
|
5303
5382
|
# execute_timeout: 1,
|
5304
5383
|
# fail_tasks_on_lob_truncation: false,
|
5384
|
+
# heartbeat_enable: false,
|
5385
|
+
# heartbeat_schema: "String",
|
5386
|
+
# heartbeat_frequency: 1,
|
5305
5387
|
# password: "SecretString",
|
5306
5388
|
# port: 1,
|
5307
5389
|
# server_name: "String",
|
5308
5390
|
# username: "String",
|
5309
5391
|
# slot_name: "String",
|
5392
|
+
# plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
|
5310
5393
|
# secrets_manager_access_role_arn: "String",
|
5311
5394
|
# secrets_manager_secret_id: "String",
|
5312
5395
|
# },
|
@@ -5357,7 +5440,11 @@ module Aws::DatabaseMigrationService
|
|
5357
5440
|
# security_db_encryption_name: "String",
|
5358
5441
|
# server_name: "String",
|
5359
5442
|
# spatial_data_option_to_geo_json_function_name: "String",
|
5443
|
+
# standby_delay_time: 1,
|
5360
5444
|
# username: "String",
|
5445
|
+
# use_b_file: false,
|
5446
|
+
# use_direct_path_full_load: false,
|
5447
|
+
# use_logminer_reader: false,
|
5361
5448
|
# secrets_manager_access_role_arn: "String",
|
5362
5449
|
# secrets_manager_secret_id: "String",
|
5363
5450
|
# secrets_manager_oracle_asm_access_role_arn: "String",
|
@@ -5413,6 +5500,7 @@ module Aws::DatabaseMigrationService
|
|
5413
5500
|
# secrets_manager_access_role_arn: "String",
|
5414
5501
|
# secrets_manager_secret_id: "String",
|
5415
5502
|
# },
|
5503
|
+
# exact_settings: false,
|
5416
5504
|
# })
|
5417
5505
|
#
|
5418
5506
|
# @example Response structure
|
@@ -5488,6 +5576,7 @@ module Aws::DatabaseMigrationService
|
|
5488
5576
|
# resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
|
5489
5577
|
# resp.endpoint.kinesis_settings.include_control_details #=> Boolean
|
5490
5578
|
# resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
|
5579
|
+
# resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
|
5491
5580
|
# resp.endpoint.kafka_settings.broker #=> String
|
5492
5581
|
# resp.endpoint.kafka_settings.topic #=> String
|
5493
5582
|
# resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
|
@@ -5505,6 +5594,7 @@ module Aws::DatabaseMigrationService
|
|
5505
5594
|
# resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
|
5506
5595
|
# resp.endpoint.kafka_settings.sasl_username #=> String
|
5507
5596
|
# resp.endpoint.kafka_settings.sasl_password #=> String
|
5597
|
+
# resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
|
5508
5598
|
# resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
|
5509
5599
|
# resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
|
5510
5600
|
# resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
|
@@ -5553,11 +5643,15 @@ module Aws::DatabaseMigrationService
|
|
5553
5643
|
# resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
|
5554
5644
|
# resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
|
5555
5645
|
# resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
|
5646
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_enable #=> Boolean
|
5647
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_schema #=> String
|
5648
|
+
# resp.endpoint.postgre_sql_settings.heartbeat_frequency #=> Integer
|
5556
5649
|
# resp.endpoint.postgre_sql_settings.password #=> String
|
5557
5650
|
# resp.endpoint.postgre_sql_settings.port #=> Integer
|
5558
5651
|
# resp.endpoint.postgre_sql_settings.server_name #=> String
|
5559
5652
|
# resp.endpoint.postgre_sql_settings.username #=> String
|
5560
5653
|
# resp.endpoint.postgre_sql_settings.slot_name #=> String
|
5654
|
+
# resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
|
5561
5655
|
# resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
|
5562
5656
|
# resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
|
5563
5657
|
# resp.endpoint.my_sql_settings.after_connect_script #=> String
|
@@ -5604,7 +5698,11 @@ module Aws::DatabaseMigrationService
|
|
5604
5698
|
# resp.endpoint.oracle_settings.security_db_encryption_name #=> String
|
5605
5699
|
# resp.endpoint.oracle_settings.server_name #=> String
|
5606
5700
|
# resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
|
5701
|
+
# resp.endpoint.oracle_settings.standby_delay_time #=> Integer
|
5607
5702
|
# resp.endpoint.oracle_settings.username #=> String
|
5703
|
+
# resp.endpoint.oracle_settings.use_b_file #=> Boolean
|
5704
|
+
# resp.endpoint.oracle_settings.use_direct_path_full_load #=> Boolean
|
5705
|
+
# resp.endpoint.oracle_settings.use_logminer_reader #=> Boolean
|
5608
5706
|
# resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
|
5609
5707
|
# resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
|
5610
5708
|
# resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
|
@@ -5661,11 +5759,10 @@ module Aws::DatabaseMigrationService
|
|
5661
5759
|
req.send_request(options)
|
5662
5760
|
end
|
5663
5761
|
|
5664
|
-
# Modifies an existing
|
5762
|
+
# Modifies an existing DMS event notification subscription.
|
5665
5763
|
#
|
5666
5764
|
# @option params [required, String] :subscription_name
|
5667
|
-
# The name of the
|
5668
|
-
# modified.
|
5765
|
+
# The name of the DMS event notification subscription to be modified.
|
5669
5766
|
#
|
5670
5767
|
# @option params [String] :sns_topic_arn
|
5671
5768
|
# The Amazon Resource Name (ARN) of the Amazon SNS topic created for
|
@@ -5673,7 +5770,7 @@ module Aws::DatabaseMigrationService
|
|
5673
5770
|
# topic and subscribe to it.
|
5674
5771
|
#
|
5675
5772
|
# @option params [String] :source_type
|
5676
|
-
# The type of
|
5773
|
+
# The type of DMS resource that generates the events you want to
|
5677
5774
|
# subscribe to.
|
5678
5775
|
#
|
5679
5776
|
# Valid values: replication-instance \| replication-task
|
@@ -5747,7 +5844,7 @@ module Aws::DatabaseMigrationService
|
|
5747
5844
|
# `"dms.c4.large"`.
|
5748
5845
|
#
|
5749
5846
|
# For more information on the settings and capacities for the available
|
5750
|
-
# replication instance classes, see [ Selecting the right
|
5847
|
+
# replication instance classes, see [ Selecting the right DMS
|
5751
5848
|
# replication instance for your migration][1].
|
5752
5849
|
#
|
5753
5850
|
#
|
@@ -5809,7 +5906,7 @@ module Aws::DatabaseMigrationService
|
|
5809
5906
|
#
|
5810
5907
|
# * A newer minor version is available.
|
5811
5908
|
#
|
5812
|
-
# *
|
5909
|
+
# * DMS has enabled automatic patching for the given engine version.
|
5813
5910
|
#
|
5814
5911
|
# @option params [String] :replication_instance_identifier
|
5815
5912
|
# The replication instance identifier. This parameter is stored as a
|
@@ -6025,8 +6122,8 @@ module Aws::DatabaseMigrationService
|
|
6025
6122
|
# You can't modify the task endpoints. The task must be stopped before
|
6026
6123
|
# you can modify it.
|
6027
6124
|
#
|
6028
|
-
# For more information about
|
6029
|
-
# Tasks][1] in the *
|
6125
|
+
# For more information about DMS tasks, see [Working with Migration
|
6126
|
+
# Tasks][1] in the *Database Migration Service User Guide*.
|
6030
6127
|
#
|
6031
6128
|
#
|
6032
6129
|
#
|
@@ -6051,8 +6148,8 @@ module Aws::DatabaseMigrationService
|
|
6051
6148
|
# `full-load-and-cdc`
|
6052
6149
|
#
|
6053
6150
|
# @option params [String] :table_mappings
|
6054
|
-
# When using the
|
6055
|
-
#
|
6151
|
+
# When using the CLI or boto3, provide the path of the JSON file that
|
6152
|
+
# contains the table mappings. Precede the path with `file://`. For
|
6056
6153
|
# example, `--table-mappings file://mappingfile.json`. When working with
|
6057
6154
|
# the DMS API, provide the JSON as the parameter value.
|
6058
6155
|
#
|
@@ -6087,7 +6184,7 @@ module Aws::DatabaseMigrationService
|
|
6087
6184
|
# the source endpoint. You can verify this by setting the `slotName`
|
6088
6185
|
# extra connection attribute to the name of this logical replication
|
6089
6186
|
# slot. For more information, see [Extra Connection Attributes When
|
6090
|
-
# Using PostgreSQL as a Source for
|
6187
|
+
# Using PostgreSQL as a Source for DMS][1].
|
6091
6188
|
#
|
6092
6189
|
# </note>
|
6093
6190
|
#
|
@@ -6108,8 +6205,8 @@ module Aws::DatabaseMigrationService
|
|
6108
6205
|
# @option params [String] :task_data
|
6109
6206
|
# Supplemental information that the task requires to migrate the data
|
6110
6207
|
# for certain source and target endpoints. For more information, see
|
6111
|
-
# [Specifying Supplemental Data for Task Settings][1] in the *
|
6112
|
-
#
|
6208
|
+
# [Specifying Supplemental Data for Task Settings][1] in the *Database
|
6209
|
+
# Migration Service User Guide.*
|
6113
6210
|
#
|
6114
6211
|
#
|
6115
6212
|
#
|
@@ -6177,7 +6274,7 @@ module Aws::DatabaseMigrationService
|
|
6177
6274
|
# Moves a replication task from its current replication instance to a
|
6178
6275
|
# different target replication instance using the specified parameters.
|
6179
6276
|
# The target replication instance must be created with the same or later
|
6180
|
-
#
|
6277
|
+
# DMS version as the current replication instance.
|
6181
6278
|
#
|
6182
6279
|
# @option params [required, String] :replication_task_arn
|
6183
6280
|
# The Amazon Resource Name (ARN) of the task that you want to move.
|
@@ -6414,7 +6511,7 @@ module Aws::DatabaseMigrationService
|
|
6414
6511
|
req.send_request(options)
|
6415
6512
|
end
|
6416
6513
|
|
6417
|
-
# Removes metadata tags from an
|
6514
|
+
# Removes metadata tags from an DMS resource, including replication
|
6418
6515
|
# instance, endpoint, security group, and migration task. For more
|
6419
6516
|
# information, see [ `Tag` ][1] data type description.
|
6420
6517
|
#
|
@@ -6423,8 +6520,8 @@ module Aws::DatabaseMigrationService
|
|
6423
6520
|
# [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
|
6424
6521
|
#
|
6425
6522
|
# @option params [required, String] :resource_arn
|
6426
|
-
# An
|
6427
|
-
#
|
6523
|
+
# An DMS resource from which you want to remove tag(s). The value for
|
6524
|
+
# this parameter is an Amazon Resource Name (ARN).
|
6428
6525
|
#
|
6429
6526
|
# @option params [required, Array<String>] :tag_keys
|
6430
6527
|
# The tag key (name) of the tag to be removed.
|
@@ -6464,8 +6561,8 @@ module Aws::DatabaseMigrationService
|
|
6464
6561
|
|
6465
6562
|
# Starts the replication task.
|
6466
6563
|
#
|
6467
|
-
# For more information about
|
6468
|
-
# Tasks ][1] in the *
|
6564
|
+
# For more information about DMS tasks, see [Working with Migration
|
6565
|
+
# Tasks ][1] in the *Database Migration Service User Guide.*
|
6469
6566
|
#
|
6470
6567
|
#
|
6471
6568
|
#
|
@@ -6504,7 +6601,7 @@ module Aws::DatabaseMigrationService
|
|
6504
6601
|
# the source endpoint. You can verify this by setting the `slotName`
|
6505
6602
|
# extra connection attribute to the name of this logical replication
|
6506
6603
|
# slot. For more information, see [Extra Connection Attributes When
|
6507
|
-
# Using PostgreSQL as a Source for
|
6604
|
+
# Using PostgreSQL as a Source for DMS][1].
|
6508
6605
|
#
|
6509
6606
|
# </note>
|
6510
6607
|
#
|
@@ -6676,26 +6773,27 @@ module Aws::DatabaseMigrationService
|
|
6676
6773
|
# premigration assessment run that you want to start.
|
6677
6774
|
#
|
6678
6775
|
# @option params [required, String] :service_access_role_arn
|
6679
|
-
# ARN of
|
6776
|
+
# ARN of the service role needed to start the assessment run. The role
|
6777
|
+
# must allow the `iam:PassRole` action.
|
6680
6778
|
#
|
6681
6779
|
# @option params [required, String] :result_location_bucket
|
6682
|
-
# Amazon S3 bucket where you want
|
6780
|
+
# Amazon S3 bucket where you want DMS to store the results of this
|
6683
6781
|
# assessment run.
|
6684
6782
|
#
|
6685
6783
|
# @option params [String] :result_location_folder
|
6686
|
-
# Folder within an Amazon S3 bucket where you want
|
6784
|
+
# Folder within an Amazon S3 bucket where you want DMS to store the
|
6687
6785
|
# results of this assessment run.
|
6688
6786
|
#
|
6689
6787
|
# @option params [String] :result_encryption_mode
|
6690
6788
|
# Encryption mode that you can specify to encrypt the results of this
|
6691
|
-
# assessment run. If you don't specify this request parameter,
|
6789
|
+
# assessment run. If you don't specify this request parameter, DMS
|
6692
6790
|
# stores the assessment run results without encryption. You can specify
|
6693
6791
|
# one of the options following:
|
6694
6792
|
#
|
6695
6793
|
# * `"SSE_S3"` – The server-side encryption provided as a default by
|
6696
6794
|
# Amazon S3.
|
6697
6795
|
#
|
6698
|
-
# * `"SSE_KMS"` –
|
6796
|
+
# * `"SSE_KMS"` – Key Management Service (KMS) encryption. This
|
6699
6797
|
# encryption can use either a custom KMS encryption key that you
|
6700
6798
|
# specify or the default KMS encryption key that DMS provides.
|
6701
6799
|
#
|
@@ -6709,14 +6807,14 @@ module Aws::DatabaseMigrationService
|
|
6709
6807
|
# @option params [Array<String>] :include_only
|
6710
6808
|
# Space-separated list of names for specific individual assessments that
|
6711
6809
|
# you want to include. These names come from the default list of
|
6712
|
-
# individual assessments that
|
6713
|
-
#
|
6810
|
+
# individual assessments that DMS supports for the associated migration
|
6811
|
+
# task. This task is specified by `ReplicationTaskArn`.
|
6714
6812
|
#
|
6715
6813
|
# <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
|
6716
6814
|
# `Exclude` in the API operation.
|
6717
6815
|
#
|
6718
|
-
# To identify the names of the default individual assessments that
|
6719
|
-
#
|
6816
|
+
# To identify the names of the default individual assessments that DMS
|
6817
|
+
# supports for the associated migration task, run the
|
6720
6818
|
# `DescribeApplicableIndividualAssessments` operation using its own
|
6721
6819
|
# `ReplicationTaskArn` request parameter.
|
6722
6820
|
#
|
@@ -6725,14 +6823,14 @@ module Aws::DatabaseMigrationService
|
|
6725
6823
|
# @option params [Array<String>] :exclude
|
6726
6824
|
# Space-separated list of names for specific individual assessments that
|
6727
6825
|
# you want to exclude. These names come from the default list of
|
6728
|
-
# individual assessments that
|
6729
|
-
#
|
6826
|
+
# individual assessments that DMS supports for the associated migration
|
6827
|
+
# task. This task is specified by `ReplicationTaskArn`.
|
6730
6828
|
#
|
6731
6829
|
# <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
|
6732
6830
|
# `IncludeOnly` in the API operation.
|
6733
6831
|
#
|
6734
|
-
# To identify the names of the default individual assessments that
|
6735
|
-
#
|
6832
|
+
# To identify the names of the default individual assessments that DMS
|
6833
|
+
# supports for the associated migration task, run the
|
6736
6834
|
# `DescribeApplicableIndividualAssessments` operation using its own
|
6737
6835
|
# `ReplicationTaskArn` request parameter.
|
6738
6836
|
#
|
@@ -6930,7 +7028,7 @@ module Aws::DatabaseMigrationService
|
|
6930
7028
|
params: params,
|
6931
7029
|
config: config)
|
6932
7030
|
context[:gem_name] = 'aws-sdk-databasemigrationservice'
|
6933
|
-
context[:gem_version] = '1.
|
7031
|
+
context[:gem_version] = '1.54.0'
|
6934
7032
|
Seahorse::Client::Request.new(handlers, context)
|
6935
7033
|
end
|
6936
7034
|
|