aws-sdk-databasemigrationservice 1.52.0 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88d619aa42975eed79b7bd5ff5dc2849f2a84b22d6755d37d430ca2f84b1d25f
4
- data.tar.gz: cdcbe0e2ada9f9307c3592937afa9ec3207e96e570e38d18013ab292245ba702
3
+ metadata.gz: e45e067c7f6a5ac62c18e6112099e1c12d705d9aca4cb3d7082798c69d4d5887
4
+ data.tar.gz: 66b220a8c0ab57daa7fe06b61792b6d8cd43527b6284d8afbd134dd95b12e4be
5
5
  SHA512:
6
- metadata.gz: 942fa45398c92682116ed3e65005f8f2f41b7e8b1755b1ec12d054fbd51627b06c8dc6b17570d66cf63c8f204d51dbce250a00eb458f78da6360af0055ae0c9d
7
- data.tar.gz: c706b7d611e37a7698282a2b53ec6570f04226293f4c32a72fee4c0840dee795b45267d6c8b890cb8ca733958ba37387e4d6b0d7f93d31618e3ceab036fc34e0
6
+ metadata.gz: c4e6dc216eb53045e2d07b485704083429ab5ba523bbe517ff031c05d7b24b8b5f55c60fbd219d15aa43ba86b68f9ecbdc8596b9abefd7b7f0b5af48ddc70455
7
+ data.tar.gz: 47050c13ab9163fa0e7aa4a1ba745c8fe5e96a4138cdeb004f434c77f1624f5c254bc213b8b5397ad6ea4bbd51e0e2cb385a0e878b998ed801b5cbdd01246965
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.55.0 (2021-07-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.54.0 (2021-07-14)
15
+ ------------------
16
+
17
+ * 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.
18
+
19
+ 1.53.0 (2021-04-15)
20
+ ------------------
21
+
22
+ * Feature - AWS DMS added support of TLS for Kafka endpoint. Added Describe endpoint setting API for DMS endpoints.
23
+
4
24
  1.52.0 (2021-03-10)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.56.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-databasemigrationservice/customizations'
49
49
  # @!group service
50
50
  module Aws::DatabaseMigrationService
51
51
 
52
- GEM_VERSION = '1.52.0'
52
+ GEM_VERSION = '1.56.0'
53
53
 
54
54
  end
@@ -337,21 +337,21 @@ module Aws::DatabaseMigrationService
337
337
 
338
338
  # @!group API Operations
339
339
 
340
- # Adds metadata tags to an AWS DMS resource, including replication
341
- # instance, endpoint, security group, and migration task. These tags can
342
- # also be used with cost allocation reporting to track cost associated
343
- # with DMS resources, or used in a Condition statement in an IAM policy
344
- # for DMS. For more information, see [ `Tag` ][1] data type description.
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 AWS DMS resource to which tags should be added. The
352
- # value for this parameter is an Amazon Resource Name (ARN).
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 AWS DMS, you can tag a replication instance, an endpoint, or a
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 AWS DMS resource that the
409
- # pending maintenance action applies to.
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 AWS
544
- # DMS Endpoints][1] in the *AWS Database Migration Service User Guide.*
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 AWS KMS key identifier that is used to encrypt the connection
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 AWS
555
- # DMS uses your default encryption key.
564
+ # If you don't specify a value for the `KmsKeyId` parameter, then DMS
565
+ # uses your default encryption key.
556
566
  #
557
- # AWS KMS creates the default encryption key for your AWS account. Your
558
- # AWS account has a different default encryption key for each AWS
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 *AWS Database Migration Service
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 AWS DMS][1] in the
592
- # *AWS Database Migration Service User Guide.*
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,CompressionType=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 [Using MongoDB as a
623
- # Target for AWS Database Migration Service][1] in the *AWS Database
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 Amazon Kinesis Data Streams as a Target for AWS Database
634
- # Migration Service][1] in the *AWS Database Migration Service User
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 Apache Kafka as a
644
- # Target for AWS Database Migration Service][1] in the *AWS Database
645
- # Migration Service User Guide.*
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 AWS DMS][1] in the
655
- # *AWS Database Migration Service User Guide*.
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
- # Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
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 AWS DMS][1] and [
678
- # Extra connection attributes when using PostgreSQL as a target for AWS
679
- # DMS][2] in the *AWS Database Migration Service User Guide.*
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 AWS DMS][1] and [Extra
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 AWS DMS][2] in the *AWS Database Migration Service User
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 AWS DMS][1] and [ Extra
703
- # connection attributes when using Oracle as a target for AWS DMS][2] in
704
- # the *AWS Database Migration Service User Guide.*
705
+ # 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 AWS DMS][1] and [Extra
715
- # connection attributes when using SAP ASE as a target for AWS DMS][2]
716
- # in the *AWS Database Migration Service User Guide.*
717
+ # 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 AWS
727
- # DMS][1] and [ Extra connection attributes when using SQL Server as a
728
- # target for AWS DMS][2] in the *AWS Database Migration Service User
729
- # Guide.*
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 AWS DMS][1] in the *AWS
740
- # Database Migration Service User Guide.*
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, AWS DMS generates a
756
- # default identifier value for the end of `EndpointArn`.
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",
@@ -901,6 +904,14 @@ module Aws::DatabaseMigrationService
901
904
  # include_control_details: false,
902
905
  # message_max_bytes: 1,
903
906
  # include_null_and_empty: false,
907
+ # security_protocol: "plaintext", # accepts plaintext, ssl-authentication, ssl-encryption, sasl-ssl
908
+ # ssl_client_certificate_arn: "String",
909
+ # ssl_client_key_arn: "String",
910
+ # ssl_client_key_password: "SecretString",
911
+ # ssl_ca_certificate_arn: "String",
912
+ # sasl_username: "String",
913
+ # sasl_password: "SecretString",
914
+ # no_hex_prefix: false,
904
915
  # },
905
916
  # elasticsearch_settings: {
906
917
  # service_access_role_arn: "String", # required
@@ -957,16 +968,21 @@ module Aws::DatabaseMigrationService
957
968
  # ddl_artifacts_schema: "String",
958
969
  # execute_timeout: 1,
959
970
  # fail_tasks_on_lob_truncation: false,
971
+ # heartbeat_enable: false,
972
+ # heartbeat_schema: "String",
973
+ # heartbeat_frequency: 1,
960
974
  # password: "SecretString",
961
975
  # port: 1,
962
976
  # server_name: "String",
963
977
  # username: "String",
964
978
  # slot_name: "String",
979
+ # plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
965
980
  # secrets_manager_access_role_arn: "String",
966
981
  # secrets_manager_secret_id: "String",
967
982
  # },
968
983
  # my_sql_settings: {
969
984
  # after_connect_script: "String",
985
+ # clean_source_metadata_on_mismatch: false,
970
986
  # database_name: "String",
971
987
  # events_poll_interval: 1,
972
988
  # target_db_type: "specific-database", # accepts specific-database, multiple-databases
@@ -1010,7 +1026,12 @@ module Aws::DatabaseMigrationService
1010
1026
  # security_db_encryption: "SecretString",
1011
1027
  # security_db_encryption_name: "String",
1012
1028
  # server_name: "String",
1029
+ # spatial_data_option_to_geo_json_function_name: "String",
1030
+ # standby_delay_time: 1,
1013
1031
  # username: "String",
1032
+ # use_b_file: false,
1033
+ # use_direct_path_full_load: false,
1034
+ # use_logminer_reader: false,
1014
1035
  # secrets_manager_access_role_arn: "String",
1015
1036
  # secrets_manager_secret_id: "String",
1016
1037
  # secrets_manager_oracle_asm_access_role_arn: "String",
@@ -1031,11 +1052,13 @@ module Aws::DatabaseMigrationService
1031
1052
  # database_name: "String",
1032
1053
  # control_tables_file_group: "String",
1033
1054
  # password: "SecretString",
1055
+ # query_single_always_on_node: false,
1034
1056
  # read_backup_only: false,
1035
1057
  # safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
1036
1058
  # server_name: "String",
1037
1059
  # username: "String",
1038
1060
  # use_bcp_full_load: false,
1061
+ # use_third_party_backup_device: false,
1039
1062
  # secrets_manager_access_role_arn: "String",
1040
1063
  # secrets_manager_secret_id: "String",
1041
1064
  # },
@@ -1140,6 +1163,7 @@ module Aws::DatabaseMigrationService
1140
1163
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
1141
1164
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
1142
1165
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
1166
+ # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
1143
1167
  # resp.endpoint.kafka_settings.broker #=> String
1144
1168
  # resp.endpoint.kafka_settings.topic #=> String
1145
1169
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -1150,6 +1174,14 @@ module Aws::DatabaseMigrationService
1150
1174
  # resp.endpoint.kafka_settings.include_control_details #=> Boolean
1151
1175
  # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
1152
1176
  # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
1177
+ # resp.endpoint.kafka_settings.security_protocol #=> String, one of "plaintext", "ssl-authentication", "ssl-encryption", "sasl-ssl"
1178
+ # resp.endpoint.kafka_settings.ssl_client_certificate_arn #=> String
1179
+ # resp.endpoint.kafka_settings.ssl_client_key_arn #=> String
1180
+ # resp.endpoint.kafka_settings.ssl_client_key_password #=> String
1181
+ # resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
1182
+ # resp.endpoint.kafka_settings.sasl_username #=> String
1183
+ # resp.endpoint.kafka_settings.sasl_password #=> String
1184
+ # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
1153
1185
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1154
1186
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1155
1187
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -1198,14 +1230,19 @@ module Aws::DatabaseMigrationService
1198
1230
  # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
1199
1231
  # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
1200
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
1201
1236
  # resp.endpoint.postgre_sql_settings.password #=> String
1202
1237
  # resp.endpoint.postgre_sql_settings.port #=> Integer
1203
1238
  # resp.endpoint.postgre_sql_settings.server_name #=> String
1204
1239
  # resp.endpoint.postgre_sql_settings.username #=> String
1205
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"
1206
1242
  # resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
1207
1243
  # resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
1208
1244
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
1245
+ # resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
1209
1246
  # resp.endpoint.my_sql_settings.database_name #=> String
1210
1247
  # resp.endpoint.my_sql_settings.events_poll_interval #=> Integer
1211
1248
  # resp.endpoint.my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
@@ -1247,7 +1284,12 @@ module Aws::DatabaseMigrationService
1247
1284
  # resp.endpoint.oracle_settings.security_db_encryption #=> String
1248
1285
  # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
1249
1286
  # resp.endpoint.oracle_settings.server_name #=> String
1287
+ # resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
1288
+ # resp.endpoint.oracle_settings.standby_delay_time #=> Integer
1250
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
1251
1293
  # resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
1252
1294
  # resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
1253
1295
  # resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -1264,11 +1306,13 @@ module Aws::DatabaseMigrationService
1264
1306
  # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
1265
1307
  # resp.endpoint.microsoft_sql_server_settings.control_tables_file_group #=> String
1266
1308
  # resp.endpoint.microsoft_sql_server_settings.password #=> String
1309
+ # resp.endpoint.microsoft_sql_server_settings.query_single_always_on_node #=> Boolean
1267
1310
  # resp.endpoint.microsoft_sql_server_settings.read_backup_only #=> Boolean
1268
1311
  # resp.endpoint.microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
1269
1312
  # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
1270
1313
  # resp.endpoint.microsoft_sql_server_settings.username #=> String
1271
1314
  # resp.endpoint.microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
1315
+ # resp.endpoint.microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
1272
1316
  # resp.endpoint.microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
1273
1317
  # resp.endpoint.microsoft_sql_server_settings.secrets_manager_secret_id #=> String
1274
1318
  # resp.endpoint.ibm_db_2_settings.database_name #=> String
@@ -1302,10 +1346,10 @@ module Aws::DatabaseMigrationService
1302
1346
  req.send_request(options)
1303
1347
  end
1304
1348
 
1305
- # Creates an AWS DMS event notification subscription.
1349
+ # Creates an DMS event notification subscription.
1306
1350
  #
1307
1351
  # You can specify the type of source (`SourceType`) you want to be
1308
- # notified of, provide a list of AWS DMS source IDs (`SourceIds`) that
1352
+ # notified of, provide a list of DMS source IDs (`SourceIds`) that
1309
1353
  # triggers the events, and provide a list of event categories
1310
1354
  # (`EventCategories`) for events you want to be notified of. If you
1311
1355
  # specify both the `SourceType` and `SourceIds`, such as `SourceType =
@@ -1313,21 +1357,20 @@ module Aws::DatabaseMigrationService
1313
1357
  # will be notified of all the replication instance events for the
1314
1358
  # specified source. If you specify a `SourceType` but don't specify a
1315
1359
  # `SourceIdentifier`, you receive notice of the events for that source
1316
- # type for all your AWS DMS sources. If you don't specify either
1360
+ # type for all your DMS sources. If you don't specify either
1317
1361
  # `SourceType` nor `SourceIdentifier`, you will be notified of events
1318
- # generated from all AWS DMS sources belonging to your customer account.
1362
+ # generated from all DMS sources belonging to your customer account.
1319
1363
  #
1320
- # For more information about AWS DMS events, see [Working with Events
1321
- # and Notifications][1] in the *AWS Database Migration Service User
1322
- # Guide.*
1364
+ # For more information about DMS events, see [Working with Events and
1365
+ # Notifications][1] in the *Database Migration Service User Guide.*
1323
1366
  #
1324
1367
  #
1325
1368
  #
1326
1369
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
1327
1370
  #
1328
1371
  # @option params [required, String] :subscription_name
1329
- # The name of the AWS DMS event notification subscription. This name
1330
- # must be less than 255 characters.
1372
+ # The name of the DMS event notification subscription. This name must be
1373
+ # less than 255 characters.
1331
1374
  #
1332
1375
  # @option params [required, String] :sns_topic_arn
1333
1376
  # The Amazon Resource Name (ARN) of the Amazon SNS topic created for
@@ -1335,24 +1378,24 @@ module Aws::DatabaseMigrationService
1335
1378
  # topic and subscribe to it.
1336
1379
  #
1337
1380
  # @option params [String] :source_type
1338
- # The type of AWS DMS resource that generates the events. For example,
1339
- # if you want to be notified of events generated by a replication
1340
- # instance, you set this parameter to `replication-instance`. If this
1341
- # value isn't specified, all events are returned.
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.
1342
1385
  #
1343
1386
  # Valid values: `replication-instance` \| `replication-task`
1344
1387
  #
1345
1388
  # @option params [Array<String>] :event_categories
1346
1389
  # A list of event categories for a source type that you want to
1347
1390
  # subscribe to. For more information, see [Working with Events and
1348
- # Notifications][1] in the *AWS Database Migration Service User Guide.*
1391
+ # Notifications][1] in the *Database Migration Service User Guide.*
1349
1392
  #
1350
1393
  #
1351
1394
  #
1352
1395
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
1353
1396
  #
1354
1397
  # @option params [Array<String>] :source_ids
1355
- # A list of identifiers for which AWS DMS provides notification events.
1398
+ # A list of identifiers for which DMS provides notification events.
1356
1399
  #
1357
1400
  # If you don't specify a value, notifications are provided for all
1358
1401
  # sources.
@@ -1414,11 +1457,11 @@ module Aws::DatabaseMigrationService
1414
1457
 
1415
1458
  # Creates the replication instance using the specified parameters.
1416
1459
  #
1417
- # AWS DMS requires that your account have certain roles with appropriate
1460
+ # DMS requires that your account have certain roles with appropriate
1418
1461
  # permissions before you can create a replication instance. For
1419
1462
  # information on the required roles, see [Creating the IAM Roles to Use
1420
- # With the AWS CLI and AWS DMS API][1]. For information on the required
1421
- # permissions, see [IAM Permissions Needed to Use AWS DMS][2].
1463
+ # With the CLI and DMS API][1]. For information on the required
1464
+ # permissions, see [IAM Permissions Needed to Use DMS][2].
1422
1465
  #
1423
1466
  #
1424
1467
  #
@@ -1450,7 +1493,7 @@ module Aws::DatabaseMigrationService
1450
1493
  # `"dms.c4.large"`.
1451
1494
  #
1452
1495
  # For more information on the settings and capacities for the available
1453
- # replication instance classes, see [ Selecting the right AWS DMS
1496
+ # replication instance classes, see [ Selecting the right DMS
1454
1497
  # replication instance for your migration][1].
1455
1498
  #
1456
1499
  #
@@ -1465,7 +1508,7 @@ module Aws::DatabaseMigrationService
1465
1508
  # @option params [String] :availability_zone
1466
1509
  # The Availability Zone where the replication instance will be created.
1467
1510
  # The default value is a random, system-chosen Availability Zone in the
1468
- # endpoint's AWS Region, for example: `us-east-1d`
1511
+ # endpoint's Region, for example: `us-east-1d`
1469
1512
  #
1470
1513
  # @option params [String] :replication_subnet_group_identifier
1471
1514
  # A subnet group to associate with the replication instance.
@@ -1477,7 +1520,7 @@ module Aws::DatabaseMigrationService
1477
1520
  # Format: `ddd:hh24:mi-ddd:hh24:mi`
1478
1521
  #
1479
1522
  # Default: A 30-minute window selected at random from an 8-hour block of
1480
- # time per AWS Region, occurring on a random day of the week.
1523
+ # time per Region, occurring on a random day of the week.
1481
1524
  #
1482
1525
  # Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
1483
1526
  #
@@ -1506,15 +1549,14 @@ module Aws::DatabaseMigrationService
1506
1549
  # One or more tags to be assigned to the replication instance.
1507
1550
  #
1508
1551
  # @option params [String] :kms_key_id
1509
- # An AWS KMS key identifier that is used to encrypt the data on the
1552
+ # An KMS key identifier that is used to encrypt the data on the
1510
1553
  # replication instance.
1511
1554
  #
1512
- # If you don't specify a value for the `KmsKeyId` parameter, then AWS
1513
- # DMS uses your default encryption key.
1555
+ # If you don't specify a value for the `KmsKeyId` parameter, then DMS
1556
+ # uses your default encryption key.
1514
1557
  #
1515
- # AWS KMS creates the default encryption key for your AWS account. Your
1516
- # AWS account has a different default encryption key for each AWS
1517
- # Region.
1558
+ # KMS creates the default encryption key for your account. Your account
1559
+ # has a different default encryption key for each Region.
1518
1560
  #
1519
1561
  # @option params [Boolean] :publicly_accessible
1520
1562
  # Specifies the accessibility options for the replication instance. A
@@ -1539,8 +1581,8 @@ module Aws::DatabaseMigrationService
1539
1581
  # hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
1540
1582
  # For example, this value might result in the `EndpointArn` value
1541
1583
  # `arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1`. If you
1542
- # don't specify a `ResourceIdentifier` value, AWS DMS generates a
1543
- # default identifier value for the end of `EndpointArn`.
1584
+ # don't specify a `ResourceIdentifier` value, DMS generates a default
1585
+ # identifier value for the end of `EndpointArn`.
1544
1586
  #
1545
1587
  # @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1546
1588
  #
@@ -1816,8 +1858,8 @@ module Aws::DatabaseMigrationService
1816
1858
  #
1817
1859
  # @option params [required, String] :table_mappings
1818
1860
  # The table mappings for the task, in JSON format. For more information,
1819
- # see [Using Table Mapping to Specify Task Settings][1] in the *AWS
1820
- # Database Migration Service User Guide.*
1861
+ # see [Using Table Mapping to Specify Task Settings][1] in the *Database
1862
+ # Migration Service User Guide.*
1821
1863
  #
1822
1864
  #
1823
1865
  #
@@ -1825,8 +1867,8 @@ module Aws::DatabaseMigrationService
1825
1867
  #
1826
1868
  # @option params [String] :replication_task_settings
1827
1869
  # Overall settings for the task, in JSON format. For more information,
1828
- # see [Specifying Task Settings for AWS Database Migration Service
1829
- # Tasks][1] in the *AWS Database Migration User Guide.*
1870
+ # see [Specifying Task Settings for Database Migration Service Tasks][1]
1871
+ # in the *Database Migration Service User Guide.*
1830
1872
  #
1831
1873
  #
1832
1874
  #
@@ -1859,7 +1901,7 @@ module Aws::DatabaseMigrationService
1859
1901
  # the source endpoint. You can verify this by setting the `slotName`
1860
1902
  # extra connection attribute to the name of this logical replication
1861
1903
  # slot. For more information, see [Extra Connection Attributes When
1862
- # Using PostgreSQL as a Source for AWS DMS][1].
1904
+ # Using PostgreSQL as a Source for DMS][1].
1863
1905
  #
1864
1906
  # </note>
1865
1907
  #
@@ -1883,8 +1925,8 @@ module Aws::DatabaseMigrationService
1883
1925
  # @option params [String] :task_data
1884
1926
  # Supplemental information that the task requires to migrate the data
1885
1927
  # for certain source and target endpoints. For more information, see
1886
- # [Specifying Supplemental Data for Task Settings][1] in the *AWS
1887
- # Database Migration Service User Guide.*
1928
+ # [Specifying Supplemental Data for Task Settings][1] in the *Database
1929
+ # Migration Service User Guide.*
1888
1930
  #
1889
1931
  #
1890
1932
  #
@@ -1899,8 +1941,8 @@ module Aws::DatabaseMigrationService
1899
1941
  # hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
1900
1942
  # For example, this value might result in the `EndpointArn` value
1901
1943
  # `arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1`. If you
1902
- # don't specify a `ResourceIdentifier` value, AWS DMS generates a
1903
- # default identifier value for the end of `EndpointArn`.
1944
+ # don't specify a `ResourceIdentifier` value, DMS generates a default
1945
+ # identifier value for the end of `EndpointArn`.
1904
1946
  #
1905
1947
  # @return [Types::CreateReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1906
1948
  #
@@ -2233,6 +2275,7 @@ module Aws::DatabaseMigrationService
2233
2275
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
2234
2276
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
2235
2277
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
2278
+ # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
2236
2279
  # resp.endpoint.kafka_settings.broker #=> String
2237
2280
  # resp.endpoint.kafka_settings.topic #=> String
2238
2281
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -2243,6 +2286,14 @@ module Aws::DatabaseMigrationService
2243
2286
  # resp.endpoint.kafka_settings.include_control_details #=> Boolean
2244
2287
  # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
2245
2288
  # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
2289
+ # resp.endpoint.kafka_settings.security_protocol #=> String, one of "plaintext", "ssl-authentication", "ssl-encryption", "sasl-ssl"
2290
+ # resp.endpoint.kafka_settings.ssl_client_certificate_arn #=> String
2291
+ # resp.endpoint.kafka_settings.ssl_client_key_arn #=> String
2292
+ # resp.endpoint.kafka_settings.ssl_client_key_password #=> String
2293
+ # resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
2294
+ # resp.endpoint.kafka_settings.sasl_username #=> String
2295
+ # resp.endpoint.kafka_settings.sasl_password #=> String
2296
+ # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
2246
2297
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
2247
2298
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
2248
2299
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -2291,14 +2342,19 @@ module Aws::DatabaseMigrationService
2291
2342
  # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
2292
2343
  # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
2293
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
2294
2348
  # resp.endpoint.postgre_sql_settings.password #=> String
2295
2349
  # resp.endpoint.postgre_sql_settings.port #=> Integer
2296
2350
  # resp.endpoint.postgre_sql_settings.server_name #=> String
2297
2351
  # resp.endpoint.postgre_sql_settings.username #=> String
2298
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"
2299
2354
  # resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
2300
2355
  # resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
2301
2356
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
2357
+ # resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
2302
2358
  # resp.endpoint.my_sql_settings.database_name #=> String
2303
2359
  # resp.endpoint.my_sql_settings.events_poll_interval #=> Integer
2304
2360
  # resp.endpoint.my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
@@ -2340,7 +2396,12 @@ module Aws::DatabaseMigrationService
2340
2396
  # resp.endpoint.oracle_settings.security_db_encryption #=> String
2341
2397
  # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
2342
2398
  # resp.endpoint.oracle_settings.server_name #=> String
2399
+ # resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
2400
+ # resp.endpoint.oracle_settings.standby_delay_time #=> Integer
2343
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
2344
2405
  # resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
2345
2406
  # resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
2346
2407
  # resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -2357,11 +2418,13 @@ module Aws::DatabaseMigrationService
2357
2418
  # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
2358
2419
  # resp.endpoint.microsoft_sql_server_settings.control_tables_file_group #=> String
2359
2420
  # resp.endpoint.microsoft_sql_server_settings.password #=> String
2421
+ # resp.endpoint.microsoft_sql_server_settings.query_single_always_on_node #=> Boolean
2360
2422
  # resp.endpoint.microsoft_sql_server_settings.read_backup_only #=> Boolean
2361
2423
  # resp.endpoint.microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
2362
2424
  # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
2363
2425
  # resp.endpoint.microsoft_sql_server_settings.username #=> String
2364
2426
  # resp.endpoint.microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
2427
+ # resp.endpoint.microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
2365
2428
  # resp.endpoint.microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
2366
2429
  # resp.endpoint.microsoft_sql_server_settings.secrets_manager_secret_id #=> String
2367
2430
  # resp.endpoint.ibm_db_2_settings.database_name #=> String
@@ -2395,7 +2458,7 @@ module Aws::DatabaseMigrationService
2395
2458
  req.send_request(options)
2396
2459
  end
2397
2460
 
2398
- # Deletes an AWS DMS event subscription.
2461
+ # Deletes an DMS event subscription.
2399
2462
  #
2400
2463
  # @option params [required, String] :subscription_name
2401
2464
  # The name of the DMS event notification subscription to be deleted.
@@ -2685,7 +2748,7 @@ module Aws::DatabaseMigrationService
2685
2748
 
2686
2749
  # Deletes the record of a single premigration assessment run.
2687
2750
  #
2688
- # This operation removes all metadata that AWS DMS maintains about this
2751
+ # This operation removes all metadata that DMS maintains about this
2689
2752
  # assessment run. However, the operation leaves untouched all
2690
2753
  # information about this assessment run that is stored in your Amazon S3
2691
2754
  # bucket.
@@ -2729,8 +2792,8 @@ module Aws::DatabaseMigrationService
2729
2792
  req.send_request(options)
2730
2793
  end
2731
2794
 
2732
- # Lists all of the AWS DMS attributes for a customer account. These
2733
- # attributes include AWS DMS quotas for the account and a unique account
2795
+ # Lists all of the DMS attributes for a customer account. These
2796
+ # attributes include DMS quotas for the account and a unique account
2734
2797
  # identifier in a particular DMS region. DMS quotas include a list of
2735
2798
  # resource quotas supported by the account, such as the number of
2736
2799
  # replication instances allowed. The description for each resource
@@ -3073,6 +3136,62 @@ module Aws::DatabaseMigrationService
3073
3136
  req.send_request(options)
3074
3137
  end
3075
3138
 
3139
+ # Returns information about the possible endpoint settings available
3140
+ # when you create an endpoint for a specific database engine.
3141
+ #
3142
+ # @option params [required, String] :engine_name
3143
+ # The databse engine used for your source or target endpoint.
3144
+ #
3145
+ # @option params [Integer] :max_records
3146
+ # The maximum number of records to include in the response. If more
3147
+ # records exist than the specified `MaxRecords` value, a pagination
3148
+ # token called a marker is included in the response so that the
3149
+ # remaining results can be retrieved.
3150
+ #
3151
+ # @option params [String] :marker
3152
+ # An optional pagination token provided by a previous request. If this
3153
+ # parameter is specified, the response includes only records beyond the
3154
+ # marker, up to the value specified by `MaxRecords`.
3155
+ #
3156
+ # @return [Types::DescribeEndpointSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3157
+ #
3158
+ # * {Types::DescribeEndpointSettingsResponse#marker #marker} => String
3159
+ # * {Types::DescribeEndpointSettingsResponse#endpoint_settings #endpoint_settings} => Array&lt;Types::EndpointSetting&gt;
3160
+ #
3161
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3162
+ #
3163
+ # @example Request syntax with placeholder values
3164
+ #
3165
+ # resp = client.describe_endpoint_settings({
3166
+ # engine_name: "String", # required
3167
+ # max_records: 1,
3168
+ # marker: "String",
3169
+ # })
3170
+ #
3171
+ # @example Response structure
3172
+ #
3173
+ # resp.marker #=> String
3174
+ # resp.endpoint_settings #=> Array
3175
+ # resp.endpoint_settings[0].name #=> String
3176
+ # resp.endpoint_settings[0].type #=> String, one of "string", "boolean", "integer", "enum"
3177
+ # resp.endpoint_settings[0].enum_values #=> Array
3178
+ # resp.endpoint_settings[0].enum_values[0] #=> String
3179
+ # resp.endpoint_settings[0].sensitive #=> Boolean
3180
+ # resp.endpoint_settings[0].units #=> String
3181
+ # resp.endpoint_settings[0].applicability #=> String
3182
+ # resp.endpoint_settings[0].int_value_min #=> Integer
3183
+ # resp.endpoint_settings[0].int_value_max #=> Integer
3184
+ # resp.endpoint_settings[0].default_value #=> String
3185
+ #
3186
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointSettings AWS API Documentation
3187
+ #
3188
+ # @overload describe_endpoint_settings(params = {})
3189
+ # @param [Hash] params ({})
3190
+ def describe_endpoint_settings(params = {}, options = {})
3191
+ req = build_request(:describe_endpoint_settings, params)
3192
+ req.send_request(options)
3193
+ end
3194
+
3076
3195
  # Returns information about the type of endpoints available.
3077
3196
  #
3078
3197
  # @option params [Array<Types::Filter>] :filters
@@ -3305,6 +3424,7 @@ module Aws::DatabaseMigrationService
3305
3424
  # resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
3306
3425
  # resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
3307
3426
  # resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
3427
+ # resp.endpoints[0].kinesis_settings.no_hex_prefix #=> Boolean
3308
3428
  # resp.endpoints[0].kafka_settings.broker #=> String
3309
3429
  # resp.endpoints[0].kafka_settings.topic #=> String
3310
3430
  # resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -3315,6 +3435,14 @@ module Aws::DatabaseMigrationService
3315
3435
  # resp.endpoints[0].kafka_settings.include_control_details #=> Boolean
3316
3436
  # resp.endpoints[0].kafka_settings.message_max_bytes #=> Integer
3317
3437
  # resp.endpoints[0].kafka_settings.include_null_and_empty #=> Boolean
3438
+ # resp.endpoints[0].kafka_settings.security_protocol #=> String, one of "plaintext", "ssl-authentication", "ssl-encryption", "sasl-ssl"
3439
+ # resp.endpoints[0].kafka_settings.ssl_client_certificate_arn #=> String
3440
+ # resp.endpoints[0].kafka_settings.ssl_client_key_arn #=> String
3441
+ # resp.endpoints[0].kafka_settings.ssl_client_key_password #=> String
3442
+ # resp.endpoints[0].kafka_settings.ssl_ca_certificate_arn #=> String
3443
+ # resp.endpoints[0].kafka_settings.sasl_username #=> String
3444
+ # resp.endpoints[0].kafka_settings.sasl_password #=> String
3445
+ # resp.endpoints[0].kafka_settings.no_hex_prefix #=> Boolean
3318
3446
  # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
3319
3447
  # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
3320
3448
  # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -3363,14 +3491,19 @@ module Aws::DatabaseMigrationService
3363
3491
  # resp.endpoints[0].postgre_sql_settings.ddl_artifacts_schema #=> String
3364
3492
  # resp.endpoints[0].postgre_sql_settings.execute_timeout #=> Integer
3365
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
3366
3497
  # resp.endpoints[0].postgre_sql_settings.password #=> String
3367
3498
  # resp.endpoints[0].postgre_sql_settings.port #=> Integer
3368
3499
  # resp.endpoints[0].postgre_sql_settings.server_name #=> String
3369
3500
  # resp.endpoints[0].postgre_sql_settings.username #=> String
3370
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"
3371
3503
  # resp.endpoints[0].postgre_sql_settings.secrets_manager_access_role_arn #=> String
3372
3504
  # resp.endpoints[0].postgre_sql_settings.secrets_manager_secret_id #=> String
3373
3505
  # resp.endpoints[0].my_sql_settings.after_connect_script #=> String
3506
+ # resp.endpoints[0].my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
3374
3507
  # resp.endpoints[0].my_sql_settings.database_name #=> String
3375
3508
  # resp.endpoints[0].my_sql_settings.events_poll_interval #=> Integer
3376
3509
  # resp.endpoints[0].my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
@@ -3412,7 +3545,12 @@ module Aws::DatabaseMigrationService
3412
3545
  # resp.endpoints[0].oracle_settings.security_db_encryption #=> String
3413
3546
  # resp.endpoints[0].oracle_settings.security_db_encryption_name #=> String
3414
3547
  # resp.endpoints[0].oracle_settings.server_name #=> String
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
3415
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
3416
3554
  # resp.endpoints[0].oracle_settings.secrets_manager_access_role_arn #=> String
3417
3555
  # resp.endpoints[0].oracle_settings.secrets_manager_secret_id #=> String
3418
3556
  # resp.endpoints[0].oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -3429,11 +3567,13 @@ module Aws::DatabaseMigrationService
3429
3567
  # resp.endpoints[0].microsoft_sql_server_settings.database_name #=> String
3430
3568
  # resp.endpoints[0].microsoft_sql_server_settings.control_tables_file_group #=> String
3431
3569
  # resp.endpoints[0].microsoft_sql_server_settings.password #=> String
3570
+ # resp.endpoints[0].microsoft_sql_server_settings.query_single_always_on_node #=> Boolean
3432
3571
  # resp.endpoints[0].microsoft_sql_server_settings.read_backup_only #=> Boolean
3433
3572
  # resp.endpoints[0].microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
3434
3573
  # resp.endpoints[0].microsoft_sql_server_settings.server_name #=> String
3435
3574
  # resp.endpoints[0].microsoft_sql_server_settings.username #=> String
3436
3575
  # resp.endpoints[0].microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
3576
+ # resp.endpoints[0].microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
3437
3577
  # resp.endpoints[0].microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
3438
3578
  # resp.endpoints[0].microsoft_sql_server_settings.secrets_manager_secret_id #=> String
3439
3579
  # resp.endpoints[0].ibm_db_2_settings.database_name #=> String
@@ -3474,15 +3614,15 @@ module Aws::DatabaseMigrationService
3474
3614
 
3475
3615
  # Lists categories for all event source types, or, if specified, for a
3476
3616
  # specified source type. You can see a list of the event categories and
3477
- # source types in [Working with Events and Notifications][1] in the *AWS
3478
- # Database Migration Service User Guide.*
3617
+ # source types in [Working with Events and Notifications][1] in the
3618
+ # *Database Migration Service User Guide.*
3479
3619
  #
3480
3620
  #
3481
3621
  #
3482
3622
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
3483
3623
  #
3484
3624
  # @option params [String] :source_type
3485
- # The type of AWS DMS resource that generates events.
3625
+ # The type of DMS resource that generates events.
3486
3626
  #
3487
3627
  # Valid values: replication-instance \| replication-task
3488
3628
  #
@@ -3530,7 +3670,7 @@ module Aws::DatabaseMigrationService
3530
3670
  # for that subscription.
3531
3671
  #
3532
3672
  # @option params [String] :subscription_name
3533
- # The name of the AWS DMS event subscription to be described.
3673
+ # The name of the DMS event subscription to be described.
3534
3674
  #
3535
3675
  # @option params [Array<Types::Filter>] :filters
3536
3676
  # Filters applied to event subscriptions.
@@ -3597,9 +3737,9 @@ module Aws::DatabaseMigrationService
3597
3737
  end
3598
3738
 
3599
3739
  # Lists events for a given source identifier and source type. You can
3600
- # also specify a start and end time. For more information on AWS DMS
3601
- # events, see [Working with Events and Notifications][1] in the *AWS
3602
- # Database Migration User Guide.*
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.*
3603
3743
  #
3604
3744
  #
3605
3745
  #
@@ -3609,7 +3749,7 @@ module Aws::DatabaseMigrationService
3609
3749
  # The identifier of an event source.
3610
3750
  #
3611
3751
  # @option params [String] :source_type
3612
- # The type of AWS DMS resource that generates events.
3752
+ # The type of DMS resource that generates events.
3613
3753
  #
3614
3754
  # Valid values: replication-instance \| replication-task
3615
3755
  #
@@ -4147,8 +4287,18 @@ module Aws::DatabaseMigrationService
4147
4287
  req.send_request(options)
4148
4288
  end
4149
4289
 
4150
- # Returns the task assessment results from Amazon S3. This action always
4151
- # returns the latest results.
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
4152
4302
  #
4153
4303
  # @option params [String] :replication_task_arn
4154
4304
  # The Amazon Resource Name (ARN) string that uniquely identifies the
@@ -4550,7 +4700,7 @@ module Aws::DatabaseMigrationService
4550
4700
  # table name, rows inserted, rows updated, and rows deleted.
4551
4701
  #
4552
4702
  # Note that the "last updated" column the DMS console only indicates
4553
- # the time that AWS DMS last updated the table statistics record for a
4703
+ # the time that DMS last updated the table statistics record for a
4554
4704
  # table. It does not indicate the time of the last update to the table.
4555
4705
  #
4556
4706
  # @option params [required, String] :replication_task_arn
@@ -4668,7 +4818,8 @@ module Aws::DatabaseMigrationService
4668
4818
  #
4669
4819
  # @option params [String, StringIO, File] :certificate_wallet
4670
4820
  # The location of an imported Oracle Wallet certificate for use with
4671
- # SSL.
4821
+ # SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
4822
+ # You can't provide the certificate inline.
4672
4823
  #
4673
4824
  # @option params [Array<Types::Tag>] :tags
4674
4825
  # The tags associated with the certificate.
@@ -4697,7 +4848,7 @@ module Aws::DatabaseMigrationService
4697
4848
  #
4698
4849
  # resp = client.import_certificate({
4699
4850
  # certificate_identifier: "String", # required
4700
- # certificate_pem: "String",
4851
+ # certificate_pem: "SecretString",
4701
4852
  # certificate_wallet: "data",
4702
4853
  # tags: [
4703
4854
  # {
@@ -4729,7 +4880,7 @@ module Aws::DatabaseMigrationService
4729
4880
  req.send_request(options)
4730
4881
  end
4731
4882
 
4732
- # Lists all metadata tags attached to an AWS DMS resource, including
4883
+ # Lists all metadata tags attached to an DMS resource, including
4733
4884
  # replication instance, endpoint, security group, and migration task.
4734
4885
  # For more information, see [ `Tag` ][1] data type description.
4735
4886
  #
@@ -4738,8 +4889,8 @@ module Aws::DatabaseMigrationService
4738
4889
  # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
4739
4890
  #
4740
4891
  # @option params [required, String] :resource_arn
4741
- # The Amazon Resource Name (ARN) string that uniquely identifies the AWS
4742
- # DMS resource.
4892
+ # The Amazon Resource Name (ARN) string that uniquely identifies the DMS
4893
+ # resource.
4743
4894
  #
4744
4895
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4745
4896
  #
@@ -4783,6 +4934,15 @@ module Aws::DatabaseMigrationService
4783
4934
 
4784
4935
  # Modifies the specified endpoint.
4785
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
+ #
4786
4946
  # @option params [required, String] :endpoint_arn
4787
4947
  # The Amazon Resource Name (ARN) string that uniquely identifies the
4788
4948
  # endpoint.
@@ -4816,7 +4976,8 @@ module Aws::DatabaseMigrationService
4816
4976
  # The port used by the endpoint database.
4817
4977
  #
4818
4978
  # @option params [String] :database_name
4819
- # 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.
4820
4981
  #
4821
4982
  # @option params [String] :extra_connection_attributes
4822
4983
  # Additional attributes associated with the connection. To reset this
@@ -4831,8 +4992,8 @@ module Aws::DatabaseMigrationService
4831
4992
  # `none`.
4832
4993
  #
4833
4994
  # @option params [String] :service_access_role_arn
4834
- # The Amazon Resource Name (ARN) for the service access role you want to
4835
- # use to modify the endpoint.
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.
4836
4997
  #
4837
4998
  # @option params [String] :external_table_definition
4838
4999
  # The external table definition.
@@ -4840,18 +5001,18 @@ module Aws::DatabaseMigrationService
4840
5001
  # @option params [Types::DynamoDbSettings] :dynamo_db_settings
4841
5002
  # Settings in JSON format for the target Amazon DynamoDB endpoint. For
4842
5003
  # information about other available settings, see [Using Object Mapping
4843
- # to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
5004
+ # to Migrate Data to DynamoDB][1] in the *Database Migration Service
4844
5005
  # User Guide.*
4845
5006
  #
4846
5007
  #
4847
5008
  #
4848
- # [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
4849
5010
  #
4850
5011
  # @option params [Types::S3Settings] :s3_settings
4851
5012
  # Settings in JSON format for the target Amazon S3 endpoint. For more
4852
5013
  # information about the available settings, see [Extra Connection
4853
- # Attributes When Using Amazon S3 as a Target for AWS DMS][1] in the
4854
- # *AWS Database Migration Service User Guide.*
5014
+ # Attributes When Using Amazon S3 as a Target for DMS][1] in the
5015
+ # *Database Migration Service User Guide.*
4855
5016
  #
4856
5017
  #
4857
5018
  #
@@ -4863,60 +5024,54 @@ module Aws::DatabaseMigrationService
4863
5024
  #
4864
5025
  # Attributes include the following:
4865
5026
  #
4866
- # * serviceAccessRoleArn - The AWS Identity and Access Management (IAM)
4867
- # role that has permission to access the Amazon S3 bucket.
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.
4868
5030
  #
4869
5031
  # * BucketName - The name of the S3 bucket to use.
4870
5032
  #
4871
- # * compressionType - An optional parameter to use GZIP to compress the
4872
- # target files. Either set this parameter to NONE (the default) or
4873
- # don't use it to leave the files uncompressed.
4874
- #
4875
5033
  # Shorthand syntax for these settings is as follows:
4876
- # `ServiceAccessRoleArn=string
4877
- # ,BucketName=string,CompressionType=string`
5034
+ # `ServiceAccessRoleArn=string ,BucketName=string`
4878
5035
  #
4879
5036
  # JSON syntax for these settings is as follows: `\{
4880
- # "ServiceAccessRoleArn": "string", "BucketName": "string",
4881
- # "CompressionType": "none"|"gzip" \} `
5037
+ # "ServiceAccessRoleArn": "string", "BucketName": "string"\} `
4882
5038
  #
4883
5039
  # @option params [Types::MongoDbSettings] :mongo_db_settings
4884
5040
  # Settings in JSON format for the source MongoDB endpoint. For more
4885
5041
  # information about the available settings, see the configuration
4886
- # properties section in [ Using MongoDB as a Target for AWS Database
4887
- # Migration Service][1] in the *AWS Database Migration Service User
4888
- # 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.*
4889
5045
  #
4890
5046
  #
4891
5047
  #
4892
- # [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
4893
5049
  #
4894
5050
  # @option params [Types::KinesisSettings] :kinesis_settings
4895
5051
  # Settings in JSON format for the target endpoint for Amazon Kinesis
4896
5052
  # Data Streams. For more information about the available settings, see
4897
- # [Using Amazon Kinesis Data Streams as a Target for AWS Database
4898
- # Migration Service][1] in the *AWS Database Migration Service User
4899
- # Guide.*
5053
+ # [Using object mapping to migrate data to a Kinesis data stream][1] in
5054
+ # the *Database Migration Service User Guide.*
4900
5055
  #
4901
5056
  #
4902
5057
  #
4903
- # [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
4904
5059
  #
4905
5060
  # @option params [Types::KafkaSettings] :kafka_settings
4906
5061
  # Settings in JSON format for the target Apache Kafka endpoint. For more
4907
- # information about the available settings, see [Using Apache Kafka as a
4908
- # Target for AWS Database Migration Service][1] in the *AWS Database
4909
- # Migration Service User Guide.*
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.*
4910
5065
  #
4911
5066
  #
4912
5067
  #
4913
- # [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
4914
5069
  #
4915
5070
  # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
4916
5071
  # Settings in JSON format for the target Elasticsearch endpoint. For
4917
5072
  # more information about the available settings, see [Extra Connection
4918
- # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
4919
- # *AWS Database Migration Service User Guide.*
5073
+ # Attributes When Using Elasticsearch as a Target for DMS][1] in the
5074
+ # *Database Migration Service User Guide.*
4920
5075
  #
4921
5076
  #
4922
5077
  #
@@ -4925,8 +5080,8 @@ module Aws::DatabaseMigrationService
4925
5080
  # @option params [Types::NeptuneSettings] :neptune_settings
4926
5081
  # Settings in JSON format for the target Amazon Neptune endpoint. For
4927
5082
  # more information about the available settings, see [Specifying
4928
- # Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
4929
- # 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.*
4930
5085
  #
4931
5086
  #
4932
5087
  #
@@ -4938,86 +5093,107 @@ module Aws::DatabaseMigrationService
4938
5093
  # @option params [Types::PostgreSQLSettings] :postgre_sql_settings
4939
5094
  # Settings in JSON format for the source and target PostgreSQL endpoint.
4940
5095
  # For information about other available settings, see [Extra connection
4941
- # attributes when using PostgreSQL as a source for AWS DMS][1] and [
4942
- # Extra connection attributes when using PostgreSQL as a target for AWS
4943
- # DMS][2] in the *AWS Database Migration Service User Guide.*
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.*
4944
5099
  #
4945
5100
  #
4946
5101
  #
4947
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
4948
- # [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
4949
5104
  #
4950
5105
  # @option params [Types::MySQLSettings] :my_sql_settings
4951
5106
  # Settings in JSON format for the source and target MySQL endpoint. For
4952
5107
  # information about other available settings, see [Extra connection
4953
- # attributes when using MySQL as a source for AWS DMS][1] and [Extra
5108
+ # attributes when using MySQL as a source for DMS][1] and [Extra
4954
5109
  # connection attributes when using a MySQL-compatible database as a
4955
- # target for AWS DMS][2] in the *AWS Database Migration Service User
4956
- # Guide.*
5110
+ # target for DMS][2] in the *Database Migration Service User Guide.*
4957
5111
  #
4958
5112
  #
4959
5113
  #
4960
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
4961
- # [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
4962
5116
  #
4963
5117
  # @option params [Types::OracleSettings] :oracle_settings
4964
5118
  # Settings in JSON format for the source and target Oracle endpoint. For
4965
5119
  # information about other available settings, see [Extra connection
4966
- # attributes when using Oracle as a source for AWS DMS][1] and [ Extra
4967
- # connection attributes when using Oracle as a target for AWS DMS][2] in
4968
- # the *AWS Database Migration Service User Guide.*
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.*
4969
5123
  #
4970
5124
  #
4971
5125
  #
4972
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
4973
- # [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
4974
5128
  #
4975
5129
  # @option params [Types::SybaseSettings] :sybase_settings
4976
5130
  # Settings in JSON format for the source and target SAP ASE endpoint.
4977
5131
  # For information about other available settings, see [Extra connection
4978
- # attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
4979
- # connection attributes when using SAP ASE as a target for AWS DMS][2]
4980
- # in the *AWS Database Migration Service User Guide.*
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.*
4981
5135
  #
4982
5136
  #
4983
5137
  #
4984
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
4985
- # [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
4986
5140
  #
4987
5141
  # @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
4988
5142
  # Settings in JSON format for the source and target Microsoft SQL Server
4989
5143
  # endpoint. For information about other available settings, see [Extra
4990
- # connection attributes when using SQL Server as a source for AWS
4991
- # DMS][1] and [ Extra connection attributes when using SQL Server as a
4992
- # target for AWS DMS][2] in the *AWS Database Migration Service User
4993
- # 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.*
4994
5147
  #
4995
5148
  #
4996
5149
  #
4997
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
4998
- # [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
4999
5152
  #
5000
5153
  # @option params [Types::IBMDb2Settings] :ibm_db_2_settings
5001
5154
  # Settings in JSON format for the source IBM Db2 LUW endpoint. For
5002
5155
  # information about other available settings, see [Extra connection
5003
- # attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
5004
- # Database Migration Service User Guide.*
5156
+ # attributes when using Db2 LUW as a source for DMS][1] in the *Database
5157
+ # Migration Service User Guide.*
5005
5158
  #
5006
5159
  #
5007
5160
  #
5008
- # [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
5009
5162
  #
5010
5163
  # @option params [Types::DocDbSettings] :doc_db_settings
5011
5164
  # Settings in JSON format for the source DocumentDB endpoint. For more
5012
5165
  # information about the available settings, see the configuration
5013
- # properties section in [ Using DocumentDB as a Target for AWS Database
5014
- # Migration Service][1] in the *AWS Database Migration Service User
5015
- # Guide.*
5166
+ # properties section in [ Using DocumentDB as a Target for Database
5167
+ # Migration Service ][1] in the *Database Migration Service User Guide.*
5016
5168
  #
5017
5169
  #
5018
5170
  #
5019
5171
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DocumentDB.html
5020
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
+ #
5021
5197
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5022
5198
  #
5023
5199
  # * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -5128,6 +5304,7 @@ module Aws::DatabaseMigrationService
5128
5304
  # include_table_alter_operations: false,
5129
5305
  # include_control_details: false,
5130
5306
  # include_null_and_empty: false,
5307
+ # no_hex_prefix: false,
5131
5308
  # },
5132
5309
  # kafka_settings: {
5133
5310
  # broker: "String",
@@ -5140,6 +5317,14 @@ module Aws::DatabaseMigrationService
5140
5317
  # include_control_details: false,
5141
5318
  # message_max_bytes: 1,
5142
5319
  # include_null_and_empty: false,
5320
+ # security_protocol: "plaintext", # accepts plaintext, ssl-authentication, ssl-encryption, sasl-ssl
5321
+ # ssl_client_certificate_arn: "String",
5322
+ # ssl_client_key_arn: "String",
5323
+ # ssl_client_key_password: "SecretString",
5324
+ # ssl_ca_certificate_arn: "String",
5325
+ # sasl_username: "String",
5326
+ # sasl_password: "SecretString",
5327
+ # no_hex_prefix: false,
5143
5328
  # },
5144
5329
  # elasticsearch_settings: {
5145
5330
  # service_access_role_arn: "String", # required
@@ -5196,16 +5381,21 @@ module Aws::DatabaseMigrationService
5196
5381
  # ddl_artifacts_schema: "String",
5197
5382
  # execute_timeout: 1,
5198
5383
  # fail_tasks_on_lob_truncation: false,
5384
+ # heartbeat_enable: false,
5385
+ # heartbeat_schema: "String",
5386
+ # heartbeat_frequency: 1,
5199
5387
  # password: "SecretString",
5200
5388
  # port: 1,
5201
5389
  # server_name: "String",
5202
5390
  # username: "String",
5203
5391
  # slot_name: "String",
5392
+ # plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
5204
5393
  # secrets_manager_access_role_arn: "String",
5205
5394
  # secrets_manager_secret_id: "String",
5206
5395
  # },
5207
5396
  # my_sql_settings: {
5208
5397
  # after_connect_script: "String",
5398
+ # clean_source_metadata_on_mismatch: false,
5209
5399
  # database_name: "String",
5210
5400
  # events_poll_interval: 1,
5211
5401
  # target_db_type: "specific-database", # accepts specific-database, multiple-databases
@@ -5249,7 +5439,12 @@ module Aws::DatabaseMigrationService
5249
5439
  # security_db_encryption: "SecretString",
5250
5440
  # security_db_encryption_name: "String",
5251
5441
  # server_name: "String",
5442
+ # spatial_data_option_to_geo_json_function_name: "String",
5443
+ # standby_delay_time: 1,
5252
5444
  # username: "String",
5445
+ # use_b_file: false,
5446
+ # use_direct_path_full_load: false,
5447
+ # use_logminer_reader: false,
5253
5448
  # secrets_manager_access_role_arn: "String",
5254
5449
  # secrets_manager_secret_id: "String",
5255
5450
  # secrets_manager_oracle_asm_access_role_arn: "String",
@@ -5270,11 +5465,13 @@ module Aws::DatabaseMigrationService
5270
5465
  # database_name: "String",
5271
5466
  # control_tables_file_group: "String",
5272
5467
  # password: "SecretString",
5468
+ # query_single_always_on_node: false,
5273
5469
  # read_backup_only: false,
5274
5470
  # safeguard_policy: "rely-on-sql-server-replication-agent", # accepts rely-on-sql-server-replication-agent, exclusive-automatic-truncation, shared-automatic-truncation
5275
5471
  # server_name: "String",
5276
5472
  # username: "String",
5277
5473
  # use_bcp_full_load: false,
5474
+ # use_third_party_backup_device: false,
5278
5475
  # secrets_manager_access_role_arn: "String",
5279
5476
  # secrets_manager_secret_id: "String",
5280
5477
  # },
@@ -5303,6 +5500,7 @@ module Aws::DatabaseMigrationService
5303
5500
  # secrets_manager_access_role_arn: "String",
5304
5501
  # secrets_manager_secret_id: "String",
5305
5502
  # },
5503
+ # exact_settings: false,
5306
5504
  # })
5307
5505
  #
5308
5506
  # @example Response structure
@@ -5378,6 +5576,7 @@ module Aws::DatabaseMigrationService
5378
5576
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
5379
5577
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
5380
5578
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
5579
+ # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
5381
5580
  # resp.endpoint.kafka_settings.broker #=> String
5382
5581
  # resp.endpoint.kafka_settings.topic #=> String
5383
5582
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -5388,6 +5587,14 @@ module Aws::DatabaseMigrationService
5388
5587
  # resp.endpoint.kafka_settings.include_control_details #=> Boolean
5389
5588
  # resp.endpoint.kafka_settings.message_max_bytes #=> Integer
5390
5589
  # resp.endpoint.kafka_settings.include_null_and_empty #=> Boolean
5590
+ # resp.endpoint.kafka_settings.security_protocol #=> String, one of "plaintext", "ssl-authentication", "ssl-encryption", "sasl-ssl"
5591
+ # resp.endpoint.kafka_settings.ssl_client_certificate_arn #=> String
5592
+ # resp.endpoint.kafka_settings.ssl_client_key_arn #=> String
5593
+ # resp.endpoint.kafka_settings.ssl_client_key_password #=> String
5594
+ # resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
5595
+ # resp.endpoint.kafka_settings.sasl_username #=> String
5596
+ # resp.endpoint.kafka_settings.sasl_password #=> String
5597
+ # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
5391
5598
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
5392
5599
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
5393
5600
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -5436,14 +5643,19 @@ module Aws::DatabaseMigrationService
5436
5643
  # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
5437
5644
  # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
5438
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
5439
5649
  # resp.endpoint.postgre_sql_settings.password #=> String
5440
5650
  # resp.endpoint.postgre_sql_settings.port #=> Integer
5441
5651
  # resp.endpoint.postgre_sql_settings.server_name #=> String
5442
5652
  # resp.endpoint.postgre_sql_settings.username #=> String
5443
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"
5444
5655
  # resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
5445
5656
  # resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
5446
5657
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
5658
+ # resp.endpoint.my_sql_settings.clean_source_metadata_on_mismatch #=> Boolean
5447
5659
  # resp.endpoint.my_sql_settings.database_name #=> String
5448
5660
  # resp.endpoint.my_sql_settings.events_poll_interval #=> Integer
5449
5661
  # resp.endpoint.my_sql_settings.target_db_type #=> String, one of "specific-database", "multiple-databases"
@@ -5485,7 +5697,12 @@ module Aws::DatabaseMigrationService
5485
5697
  # resp.endpoint.oracle_settings.security_db_encryption #=> String
5486
5698
  # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
5487
5699
  # resp.endpoint.oracle_settings.server_name #=> String
5700
+ # resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
5701
+ # resp.endpoint.oracle_settings.standby_delay_time #=> Integer
5488
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
5489
5706
  # resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
5490
5707
  # resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
5491
5708
  # resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -5502,11 +5719,13 @@ module Aws::DatabaseMigrationService
5502
5719
  # resp.endpoint.microsoft_sql_server_settings.database_name #=> String
5503
5720
  # resp.endpoint.microsoft_sql_server_settings.control_tables_file_group #=> String
5504
5721
  # resp.endpoint.microsoft_sql_server_settings.password #=> String
5722
+ # resp.endpoint.microsoft_sql_server_settings.query_single_always_on_node #=> Boolean
5505
5723
  # resp.endpoint.microsoft_sql_server_settings.read_backup_only #=> Boolean
5506
5724
  # resp.endpoint.microsoft_sql_server_settings.safeguard_policy #=> String, one of "rely-on-sql-server-replication-agent", "exclusive-automatic-truncation", "shared-automatic-truncation"
5507
5725
  # resp.endpoint.microsoft_sql_server_settings.server_name #=> String
5508
5726
  # resp.endpoint.microsoft_sql_server_settings.username #=> String
5509
5727
  # resp.endpoint.microsoft_sql_server_settings.use_bcp_full_load #=> Boolean
5728
+ # resp.endpoint.microsoft_sql_server_settings.use_third_party_backup_device #=> Boolean
5510
5729
  # resp.endpoint.microsoft_sql_server_settings.secrets_manager_access_role_arn #=> String
5511
5730
  # resp.endpoint.microsoft_sql_server_settings.secrets_manager_secret_id #=> String
5512
5731
  # resp.endpoint.ibm_db_2_settings.database_name #=> String
@@ -5540,11 +5759,10 @@ module Aws::DatabaseMigrationService
5540
5759
  req.send_request(options)
5541
5760
  end
5542
5761
 
5543
- # Modifies an existing AWS DMS event notification subscription.
5762
+ # Modifies an existing DMS event notification subscription.
5544
5763
  #
5545
5764
  # @option params [required, String] :subscription_name
5546
- # The name of the AWS DMS event notification subscription to be
5547
- # modified.
5765
+ # The name of the DMS event notification subscription to be modified.
5548
5766
  #
5549
5767
  # @option params [String] :sns_topic_arn
5550
5768
  # The Amazon Resource Name (ARN) of the Amazon SNS topic created for
@@ -5552,7 +5770,7 @@ module Aws::DatabaseMigrationService
5552
5770
  # topic and subscribe to it.
5553
5771
  #
5554
5772
  # @option params [String] :source_type
5555
- # The type of AWS DMS resource that generates the events you want to
5773
+ # The type of DMS resource that generates the events you want to
5556
5774
  # subscribe to.
5557
5775
  #
5558
5776
  # Valid values: replication-instance \| replication-task
@@ -5626,7 +5844,7 @@ module Aws::DatabaseMigrationService
5626
5844
  # `"dms.c4.large"`.
5627
5845
  #
5628
5846
  # For more information on the settings and capacities for the available
5629
- # replication instance classes, see [ Selecting the right AWS DMS
5847
+ # replication instance classes, see [ Selecting the right DMS
5630
5848
  # replication instance for your migration][1].
5631
5849
  #
5632
5850
  #
@@ -5688,7 +5906,7 @@ module Aws::DatabaseMigrationService
5688
5906
  #
5689
5907
  # * A newer minor version is available.
5690
5908
  #
5691
- # * AWS DMS has enabled automatic patching for the given engine version.
5909
+ # * DMS has enabled automatic patching for the given engine version.
5692
5910
  #
5693
5911
  # @option params [String] :replication_instance_identifier
5694
5912
  # The replication instance identifier. This parameter is stored as a
@@ -5904,8 +6122,8 @@ module Aws::DatabaseMigrationService
5904
6122
  # You can't modify the task endpoints. The task must be stopped before
5905
6123
  # you can modify it.
5906
6124
  #
5907
- # For more information about AWS DMS tasks, see [Working with Migration
5908
- # Tasks][1] in the *AWS Database Migration Service User Guide*.
6125
+ # For more information about DMS tasks, see [Working with Migration
6126
+ # Tasks][1] in the *Database Migration Service User Guide*.
5909
6127
  #
5910
6128
  #
5911
6129
  #
@@ -5930,10 +6148,10 @@ module Aws::DatabaseMigrationService
5930
6148
  # `full-load-and-cdc`
5931
6149
  #
5932
6150
  # @option params [String] :table_mappings
5933
- # When using the AWS CLI or boto3, provide the path of the JSON file
5934
- # that contains the table mappings. Precede the path with `file://`.
5935
- # When working with the DMS API, provide the JSON as the parameter
5936
- # value, for example: `--table-mappings file://mappingfile.json`
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
6153
+ # example, `--table-mappings file://mappingfile.json`. When working with
6154
+ # the DMS API, provide the JSON as the parameter value.
5937
6155
  #
5938
6156
  # @option params [String] :replication_task_settings
5939
6157
  # JSON file that contains settings for the task, such as task metadata
@@ -5966,7 +6184,7 @@ module Aws::DatabaseMigrationService
5966
6184
  # the source endpoint. You can verify this by setting the `slotName`
5967
6185
  # extra connection attribute to the name of this logical replication
5968
6186
  # slot. For more information, see [Extra Connection Attributes When
5969
- # Using PostgreSQL as a Source for AWS DMS][1].
6187
+ # Using PostgreSQL as a Source for DMS][1].
5970
6188
  #
5971
6189
  # </note>
5972
6190
  #
@@ -5987,8 +6205,8 @@ module Aws::DatabaseMigrationService
5987
6205
  # @option params [String] :task_data
5988
6206
  # Supplemental information that the task requires to migrate the data
5989
6207
  # for certain source and target endpoints. For more information, see
5990
- # [Specifying Supplemental Data for Task Settings][1] in the *AWS
5991
- # Database Migration Service User Guide.*
6208
+ # [Specifying Supplemental Data for Task Settings][1] in the *Database
6209
+ # Migration Service User Guide.*
5992
6210
  #
5993
6211
  #
5994
6212
  #
@@ -6056,7 +6274,7 @@ module Aws::DatabaseMigrationService
6056
6274
  # Moves a replication task from its current replication instance to a
6057
6275
  # different target replication instance using the specified parameters.
6058
6276
  # The target replication instance must be created with the same or later
6059
- # AWS DMS version as the current replication instance.
6277
+ # DMS version as the current replication instance.
6060
6278
  #
6061
6279
  # @option params [required, String] :replication_task_arn
6062
6280
  # The Amazon Resource Name (ARN) of the task that you want to move.
@@ -6293,7 +6511,7 @@ module Aws::DatabaseMigrationService
6293
6511
  req.send_request(options)
6294
6512
  end
6295
6513
 
6296
- # Removes metadata tags from an AWS DMS resource, including replication
6514
+ # Removes metadata tags from an DMS resource, including replication
6297
6515
  # instance, endpoint, security group, and migration task. For more
6298
6516
  # information, see [ `Tag` ][1] data type description.
6299
6517
  #
@@ -6302,8 +6520,8 @@ module Aws::DatabaseMigrationService
6302
6520
  # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
6303
6521
  #
6304
6522
  # @option params [required, String] :resource_arn
6305
- # An AWS DMS resource from which you want to remove tag(s). The value
6306
- # for this parameter is an Amazon Resource Name (ARN).
6523
+ # An DMS resource from which you want to remove tag(s). The value for
6524
+ # this parameter is an Amazon Resource Name (ARN).
6307
6525
  #
6308
6526
  # @option params [required, Array<String>] :tag_keys
6309
6527
  # The tag key (name) of the tag to be removed.
@@ -6343,8 +6561,8 @@ module Aws::DatabaseMigrationService
6343
6561
 
6344
6562
  # Starts the replication task.
6345
6563
  #
6346
- # For more information about AWS DMS tasks, see [Working with Migration
6347
- # Tasks ][1] in the *AWS Database Migration Service User Guide.*
6564
+ # For more information about DMS tasks, see [Working with Migration
6565
+ # Tasks ][1] in the *Database Migration Service User Guide.*
6348
6566
  #
6349
6567
  #
6350
6568
  #
@@ -6383,7 +6601,7 @@ module Aws::DatabaseMigrationService
6383
6601
  # the source endpoint. You can verify this by setting the `slotName`
6384
6602
  # extra connection attribute to the name of this logical replication
6385
6603
  # slot. For more information, see [Extra Connection Attributes When
6386
- # Using PostgreSQL as a Source for AWS DMS][1].
6604
+ # Using PostgreSQL as a Source for DMS][1].
6387
6605
  #
6388
6606
  # </note>
6389
6607
  #
@@ -6555,26 +6773,27 @@ module Aws::DatabaseMigrationService
6555
6773
  # premigration assessment run that you want to start.
6556
6774
  #
6557
6775
  # @option params [required, String] :service_access_role_arn
6558
- # ARN of a service role needed to start the assessment run.
6776
+ # ARN of the service role needed to start the assessment run. The role
6777
+ # must allow the `iam:PassRole` action.
6559
6778
  #
6560
6779
  # @option params [required, String] :result_location_bucket
6561
- # Amazon S3 bucket where you want AWS DMS to store the results of this
6780
+ # Amazon S3 bucket where you want DMS to store the results of this
6562
6781
  # assessment run.
6563
6782
  #
6564
6783
  # @option params [String] :result_location_folder
6565
- # Folder within an Amazon S3 bucket where you want AWS DMS to store the
6784
+ # Folder within an Amazon S3 bucket where you want DMS to store the
6566
6785
  # results of this assessment run.
6567
6786
  #
6568
6787
  # @option params [String] :result_encryption_mode
6569
6788
  # Encryption mode that you can specify to encrypt the results of this
6570
- # assessment run. If you don't specify this request parameter, AWS DMS
6789
+ # assessment run. If you don't specify this request parameter, DMS
6571
6790
  # stores the assessment run results without encryption. You can specify
6572
6791
  # one of the options following:
6573
6792
  #
6574
6793
  # * `"SSE_S3"` – The server-side encryption provided as a default by
6575
6794
  # Amazon S3.
6576
6795
  #
6577
- # * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption. This
6796
+ # * `"SSE_KMS"` – Key Management Service (KMS) encryption. This
6578
6797
  # encryption can use either a custom KMS encryption key that you
6579
6798
  # specify or the default KMS encryption key that DMS provides.
6580
6799
  #
@@ -6588,14 +6807,14 @@ module Aws::DatabaseMigrationService
6588
6807
  # @option params [Array<String>] :include_only
6589
6808
  # Space-separated list of names for specific individual assessments that
6590
6809
  # you want to include. These names come from the default list of
6591
- # individual assessments that AWS DMS supports for the associated
6592
- # migration task. This task is specified by `ReplicationTaskArn`.
6810
+ # individual assessments that DMS supports for the associated migration
6811
+ # task. This task is specified by `ReplicationTaskArn`.
6593
6812
  #
6594
6813
  # <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
6595
6814
  # `Exclude` in the API operation.
6596
6815
  #
6597
- # To identify the names of the default individual assessments that AWS
6598
- # DMS supports for the associated migration task, run the
6816
+ # To identify the names of the default individual assessments that DMS
6817
+ # supports for the associated migration task, run the
6599
6818
  # `DescribeApplicableIndividualAssessments` operation using its own
6600
6819
  # `ReplicationTaskArn` request parameter.
6601
6820
  #
@@ -6604,14 +6823,14 @@ module Aws::DatabaseMigrationService
6604
6823
  # @option params [Array<String>] :exclude
6605
6824
  # Space-separated list of names for specific individual assessments that
6606
6825
  # you want to exclude. These names come from the default list of
6607
- # individual assessments that AWS DMS supports for the associated
6608
- # migration task. This task is specified by `ReplicationTaskArn`.
6826
+ # individual assessments that DMS supports for the associated migration
6827
+ # task. This task is specified by `ReplicationTaskArn`.
6609
6828
  #
6610
6829
  # <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
6611
6830
  # `IncludeOnly` in the API operation.
6612
6831
  #
6613
- # To identify the names of the default individual assessments that AWS
6614
- # DMS supports for the associated migration task, run the
6832
+ # To identify the names of the default individual assessments that DMS
6833
+ # supports for the associated migration task, run the
6615
6834
  # `DescribeApplicableIndividualAssessments` operation using its own
6616
6835
  # `ReplicationTaskArn` request parameter.
6617
6836
  #
@@ -6809,7 +7028,7 @@ module Aws::DatabaseMigrationService
6809
7028
  params: params,
6810
7029
  config: config)
6811
7030
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
6812
- context[:gem_version] = '1.52.0'
7031
+ context[:gem_version] = '1.56.0'
6813
7032
  Seahorse::Client::Request.new(handlers, context)
6814
7033
  end
6815
7034