aws-sdk-databasemigrationservice 1.53.0 → 1.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3fa39e802e6a5645e1c8b0701a86867c287f703e11c7053bd86c3f93471ef69
4
- data.tar.gz: d4e5ab8a7080a9af0beb6c72095f954945fce1f663c622c2715a38776ce62faf
3
+ metadata.gz: ee13fbfa9d6aa88ae0d215900f1aa3380f8e6b6602a817ed9300e9bd1ffd8ebe
4
+ data.tar.gz: 81a03857705b5e80901465cb8a42055301855071532a17d548fa396300f21407
5
5
  SHA512:
6
- metadata.gz: 565209cff32787126908c86fec9b3e4ac76a2f06bad4db6cdc43c4eee8396f987498008f49e25c3b23f47d06f85c38318de49c362009cae13cd6c9b4473545b6
7
- data.tar.gz: 00f5178cb164594877b8399526550f9d91e357e171d934f7ef17d7be5af5787eab0c78e8959db198c8e8d1e7c7e471f8731e99307585c9165966f40e77b0e271
6
+ metadata.gz: 3b618e3f814736bb127f8d8e3db6b7f0830eb9209de5a7f0aa70c859d026f1e65d710faa60b9a885f9365971368d631bd37cd524cb25d7385c6473ee413aba90
7
+ data.tar.gz: 87401d9c3a2c5e51b68c3240f71ed4ba5658659905c4b76356868bd9fd851b7d57d1f6e35f7ced1a6982500b65ad3e8c45419e265af9f0a4fb498fd5c69eecb9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2021-08-23)
5
+ ------------------
6
+
7
+ * Feature - Amazon AWS DMS service now support Redis target endpoint migration. Now S3 endpoint setting is capable to setup features which are used to be configurable only in extract connection attributes.
8
+
9
+ 1.56.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.55.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.54.0 (2021-07-14)
20
+ ------------------
21
+
22
+ * 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.
23
+
4
24
  1.53.0 (2021-04-15)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.53.0
1
+ 1.57.0
@@ -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
@@ -388,6 +388,7 @@ module Aws::DatabaseMigrationService
388
388
  # {
389
389
  # key: "String",
390
390
  # value: "String",
391
+ # resource_arn: "String",
391
392
  # },
392
393
  # ],
393
394
  # })
@@ -405,8 +406,8 @@ module Aws::DatabaseMigrationService
405
406
  # replication instance).
406
407
  #
407
408
  # @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.
409
+ # The Amazon Resource Name (ARN) of the DMS resource that the pending
410
+ # maintenance action applies to.
410
411
  #
411
412
  # @option params [required, String] :apply_action
412
413
  # The pending maintenance action to apply to this resource.
@@ -504,6 +505,15 @@ module Aws::DatabaseMigrationService
504
505
 
505
506
  # Creates an endpoint using the provided settings.
506
507
  #
508
+ # <note markdown="1"> For a MySQL source or target endpoint, don't explicitly specify the
509
+ # database using the `DatabaseName` request parameter on the
510
+ # `CreateEndpoint` API call. Specifying `DatabaseName` when you create a
511
+ # MySQL endpoint replicates all the task tables to this single database.
512
+ # For MySQL endpoints, you specify the database only when you specify
513
+ # the schema in the table-mapping rules of the DMS task.
514
+ #
515
+ # </note>
516
+ #
507
517
  # @option params [required, String] :endpoint_identifier
508
518
  # The database endpoint identifier. Identifiers must begin with a letter
509
519
  # and must contain only ASCII letters, digits, and hyphens. They can't
@@ -533,30 +543,31 @@ module Aws::DatabaseMigrationService
533
543
  # The port used by the endpoint database.
534
544
  #
535
545
  # @option params [String] :database_name
536
- # The name of the endpoint database.
546
+ # The name of the endpoint database. For a MySQL source or target
547
+ # endpoint, do not specify DatabaseName.
537
548
  #
538
549
  # @option params [String] :extra_connection_attributes
539
550
  # Additional attributes associated with the connection. Each attribute
540
551
  # is specified as a name-value pair associated by an equal sign (=).
541
552
  # Multiple attributes are separated by a semicolon (;) with no
542
553
  # 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.*
554
+ # for connecting your source or target endpoint, see [Working with DMS
555
+ # Endpoints][1] in the *Database Migration Service User Guide.*
545
556
  #
546
557
  #
547
558
  #
548
559
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Endpoints.html
549
560
  #
550
561
  # @option params [String] :kms_key_id
551
- # An AWS KMS key identifier that is used to encrypt the connection
562
+ # An KMS key identifier that is used to encrypt the connection
552
563
  # parameters for the endpoint.
553
564
  #
554
- # If you don't specify a value for the `KmsKeyId` parameter, then AWS
555
- # DMS uses your default encryption key.
565
+ # If you don't specify a value for the `KmsKeyId` parameter, then DMS
566
+ # uses your default encryption key.
556
567
  #
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.
568
+ # KMS creates the default encryption key for your Amazon Web Services
569
+ # account. Your Amazon Web Services account has a different default
570
+ # encryption key for each Amazon Web Services Region.
560
571
  #
561
572
  # @option params [Array<Types::Tag>] :tags
562
573
  # One or more tags to be assigned to the endpoint.
@@ -570,7 +581,8 @@ module Aws::DatabaseMigrationService
570
581
  #
571
582
  # @option params [String] :service_access_role_arn
572
583
  # The Amazon Resource Name (ARN) for the service access role that you
573
- # want to use to create the endpoint.
584
+ # want to use to create the endpoint. The role must allow the
585
+ # `iam:PassRole` action.
574
586
  #
575
587
  # @option params [String] :external_table_definition
576
588
  # The external table definition.
@@ -578,18 +590,18 @@ module Aws::DatabaseMigrationService
578
590
  # @option params [Types::DynamoDbSettings] :dynamo_db_settings
579
591
  # Settings in JSON format for the target Amazon DynamoDB endpoint. For
580
592
  # information about other available settings, see [Using Object Mapping
581
- # to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
593
+ # to Migrate Data to DynamoDB][1] in the *Database Migration Service
582
594
  # User Guide.*
583
595
  #
584
596
  #
585
597
  #
586
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html
598
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html#CHAP_Target.DynamoDB.ObjectMapping
587
599
  #
588
600
  # @option params [Types::S3Settings] :s3_settings
589
601
  # Settings in JSON format for the target Amazon S3 endpoint. For more
590
602
  # 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.*
603
+ # Attributes When Using Amazon S3 as a Target for DMS][1] in the
604
+ # *Database Migration Service User Guide.*
593
605
  #
594
606
  #
595
607
  #
@@ -602,26 +614,21 @@ module Aws::DatabaseMigrationService
602
614
  # Possible settings include the following:
603
615
  #
604
616
  # * `ServiceAccessRoleArn` - The IAM role that has permission to access
605
- # the Amazon S3 bucket.
617
+ # the Amazon S3 bucket. The role must allow the `iam:PassRole` action.
606
618
  #
607
619
  # * `BucketName` - The name of the S3 bucket to use.
608
620
  #
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
621
  # Shorthand syntax for these settings is as follows:
614
- # `ServiceAccessRoleArn=string,BucketName=string,CompressionType=string`
622
+ # `ServiceAccessRoleArn=string,BucketName=string`
615
623
  #
616
624
  # JSON syntax for these settings is as follows: `\{
617
- # "ServiceAccessRoleArn": "string", "BucketName": "string",
618
- # "CompressionType": "none"|"gzip" \} `
625
+ # "ServiceAccessRoleArn": "string", "BucketName": "string", \} `
619
626
  #
620
627
  # @option params [Types::MongoDbSettings] :mongo_db_settings
621
628
  # 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.*
629
+ # information about the available settings, see [Endpoint configuration
630
+ # settings when using MongoDB as a source for Database Migration
631
+ # Service][1] in the *Database Migration Service User Guide.*
625
632
  #
626
633
  #
627
634
  #
@@ -630,29 +637,28 @@ module Aws::DatabaseMigrationService
630
637
  # @option params [Types::KinesisSettings] :kinesis_settings
631
638
  # Settings in JSON format for the target endpoint for Amazon Kinesis
632
639
  # 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.*
640
+ # [Using object mapping to migrate data to a Kinesis data stream][1] in
641
+ # the *Database Migration Service User Guide.*
636
642
  #
637
643
  #
638
644
  #
639
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
645
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
640
646
  #
641
647
  # @option params [Types::KafkaSettings] :kafka_settings
642
648
  # 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.*
649
+ # information about the available settings, see [Using object mapping to
650
+ # migrate data to a Kafka topic][1] in the *Database Migration Service
651
+ # User Guide.*
646
652
  #
647
653
  #
648
654
  #
649
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
655
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
650
656
  #
651
657
  # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
652
658
  # Settings in JSON format for the target Elasticsearch endpoint. For
653
659
  # 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*.
660
+ # Attributes When Using Elasticsearch as a Target for DMS][1] in the
661
+ # *Database Migration Service User Guide*.
656
662
  #
657
663
  #
658
664
  #
@@ -661,8 +667,8 @@ module Aws::DatabaseMigrationService
661
667
  # @option params [Types::NeptuneSettings] :neptune_settings
662
668
  # Settings in JSON format for the target Amazon Neptune endpoint. For
663
669
  # 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.*
670
+ # graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a
671
+ # target][1] in the *Database Migration Service User Guide.*
666
672
  #
667
673
  #
668
674
  #
@@ -674,74 +680,72 @@ module Aws::DatabaseMigrationService
674
680
  # @option params [Types::PostgreSQLSettings] :postgre_sql_settings
675
681
  # Settings in JSON format for the source and target PostgreSQL endpoint.
676
682
  # 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.*
683
+ # attributes when using PostgreSQL as a source for DMS][1] and [ Extra
684
+ # connection attributes when using PostgreSQL as a target for DMS][2] in
685
+ # the *Database Migration Service User Guide.*
680
686
  #
681
687
  #
682
688
  #
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
689
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib
690
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html#CHAP_Target.PostgreSQL.ConnectionAttrib
685
691
  #
686
692
  # @option params [Types::MySQLSettings] :my_sql_settings
687
693
  # Settings in JSON format for the source and target MySQL endpoint. For
688
694
  # information about other available settings, see [Extra connection
689
- # attributes when using MySQL as a source for AWS DMS][1] and [Extra
695
+ # attributes when using MySQL as a source for DMS][1] and [Extra
690
696
  # 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.*
697
+ # target for DMS][2] in the *Database Migration Service User Guide.*
693
698
  #
694
699
  #
695
700
  #
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
701
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html#CHAP_Source.MySQL.ConnectionAttrib
702
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html#CHAP_Target.MySQL.ConnectionAttrib
698
703
  #
699
704
  # @option params [Types::OracleSettings] :oracle_settings
700
705
  # Settings in JSON format for the source and target Oracle endpoint. For
701
706
  # 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.*
707
+ # attributes when using Oracle as a source for DMS][1] and [ Extra
708
+ # connection attributes when using Oracle as a target for DMS][2] in the
709
+ # *Database Migration Service User Guide.*
705
710
  #
706
711
  #
707
712
  #
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
713
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.ConnectionAttrib
714
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html#CHAP_Target.Oracle.ConnectionAttrib
710
715
  #
711
716
  # @option params [Types::SybaseSettings] :sybase_settings
712
717
  # Settings in JSON format for the source and target SAP ASE endpoint.
713
718
  # 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.*
719
+ # attributes when using SAP ASE as a source for DMS][1] and [Extra
720
+ # connection attributes when using SAP ASE as a target for DMS][2] in
721
+ # the *Database Migration Service User Guide.*
717
722
  #
718
723
  #
719
724
  #
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
725
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html#CHAP_Source.SAP.ConnectionAttrib
726
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html#CHAP_Target.SAP.ConnectionAttrib
722
727
  #
723
728
  # @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
724
729
  # Settings in JSON format for the source and target Microsoft SQL Server
725
730
  # 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.*
731
+ # connection attributes when using SQL Server as a source for DMS][1]
732
+ # and [ Extra connection attributes when using SQL Server as a target
733
+ # for DMS][2] in the *Database Migration Service User Guide.*
730
734
  #
731
735
  #
732
736
  #
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
737
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html#CHAP_Source.SQLServer.ConnectionAttrib
738
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html#CHAP_Target.SQLServer.ConnectionAttrib
735
739
  #
736
740
  # @option params [Types::IBMDb2Settings] :ibm_db_2_settings
737
741
  # Settings in JSON format for the source IBM Db2 LUW endpoint. For
738
742
  # 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.*
743
+ # attributes when using Db2 LUW as a source for DMS][1] in the *Database
744
+ # Migration Service User Guide.*
741
745
  #
742
746
  #
743
747
  #
744
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html
748
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html#CHAP_Source.DB2.ConnectionAttrib
745
749
  #
746
750
  # @option params [String] :resource_identifier
747
751
  # A friendly name for the resource identifier at the end of the
@@ -752,12 +756,15 @@ module Aws::DatabaseMigrationService
752
756
  # hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
753
757
  # For example, this value might result in the `EndpointArn` value
754
758
  # `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`.
759
+ # don't specify a `ResourceIdentifier` value, DMS generates a default
760
+ # identifier value for the end of `EndpointArn`.
757
761
  #
758
762
  # @option params [Types::DocDbSettings] :doc_db_settings
759
763
  # Provides information that defines a DocumentDB endpoint.
760
764
  #
765
+ # @option params [Types::RedisSettings] :redis_settings
766
+ # Settings in JSON format for the target Redis endpoint.
767
+ #
761
768
  # @return [Types::CreateEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
762
769
  #
763
770
  # * {Types::CreateEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -820,6 +827,7 @@ module Aws::DatabaseMigrationService
820
827
  # {
821
828
  # key: "String",
822
829
  # value: "String",
830
+ # resource_arn: "String",
823
831
  # },
824
832
  # ],
825
833
  # certificate_arn: "String",
@@ -858,6 +866,14 @@ module Aws::DatabaseMigrationService
858
866
  # csv_no_sup_value: "String",
859
867
  # preserve_transactions: false,
860
868
  # cdc_path: "String",
869
+ # canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
870
+ # add_column_name: false,
871
+ # cdc_max_batch_interval: 1,
872
+ # cdc_min_file_size: 1,
873
+ # csv_null_value: "String",
874
+ # ignore_header_rows: 1,
875
+ # max_file_size: 1,
876
+ # rfc_4180: false,
861
877
  # },
862
878
  # dms_transfer_settings: {
863
879
  # service_access_role_arn: "String",
@@ -889,6 +905,7 @@ module Aws::DatabaseMigrationService
889
905
  # include_table_alter_operations: false,
890
906
  # include_control_details: false,
891
907
  # include_null_and_empty: false,
908
+ # no_hex_prefix: false,
892
909
  # },
893
910
  # kafka_settings: {
894
911
  # broker: "String",
@@ -908,6 +925,7 @@ module Aws::DatabaseMigrationService
908
925
  # ssl_ca_certificate_arn: "String",
909
926
  # sasl_username: "String",
910
927
  # sasl_password: "SecretString",
928
+ # no_hex_prefix: false,
911
929
  # },
912
930
  # elasticsearch_settings: {
913
931
  # service_access_role_arn: "String", # required
@@ -964,11 +982,15 @@ module Aws::DatabaseMigrationService
964
982
  # ddl_artifacts_schema: "String",
965
983
  # execute_timeout: 1,
966
984
  # fail_tasks_on_lob_truncation: false,
985
+ # heartbeat_enable: false,
986
+ # heartbeat_schema: "String",
987
+ # heartbeat_frequency: 1,
967
988
  # password: "SecretString",
968
989
  # port: 1,
969
990
  # server_name: "String",
970
991
  # username: "String",
971
992
  # slot_name: "String",
993
+ # plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
972
994
  # secrets_manager_access_role_arn: "String",
973
995
  # secrets_manager_secret_id: "String",
974
996
  # },
@@ -992,6 +1014,7 @@ module Aws::DatabaseMigrationService
992
1014
  # add_supplemental_logging: false,
993
1015
  # archived_log_dest_id: 1,
994
1016
  # additional_archived_log_dest_id: 1,
1017
+ # extra_archived_log_dest_ids: [1],
995
1018
  # allow_select_nested_tables: false,
996
1019
  # parallel_asm_read_threads: 1,
997
1020
  # read_ahead_blocks: 1,
@@ -1019,7 +1042,11 @@ module Aws::DatabaseMigrationService
1019
1042
  # security_db_encryption_name: "String",
1020
1043
  # server_name: "String",
1021
1044
  # spatial_data_option_to_geo_json_function_name: "String",
1045
+ # standby_delay_time: 1,
1022
1046
  # username: "String",
1047
+ # use_b_file: false,
1048
+ # use_direct_path_full_load: false,
1049
+ # use_logminer_reader: false,
1023
1050
  # secrets_manager_access_role_arn: "String",
1024
1051
  # secrets_manager_secret_id: "String",
1025
1052
  # secrets_manager_oracle_asm_access_role_arn: "String",
@@ -1076,6 +1103,15 @@ module Aws::DatabaseMigrationService
1076
1103
  # secrets_manager_access_role_arn: "String",
1077
1104
  # secrets_manager_secret_id: "String",
1078
1105
  # },
1106
+ # redis_settings: {
1107
+ # server_name: "String", # required
1108
+ # port: 1, # required
1109
+ # ssl_security_protocol: "plaintext", # accepts plaintext, ssl-encryption
1110
+ # auth_type: "none", # accepts none, auth-role, auth-token
1111
+ # auth_user_name: "String",
1112
+ # auth_password: "SecretString",
1113
+ # ssl_ca_certificate_arn: "String",
1114
+ # },
1079
1115
  # })
1080
1116
  #
1081
1117
  # @example Response structure
@@ -1126,6 +1162,14 @@ module Aws::DatabaseMigrationService
1126
1162
  # resp.endpoint.s3_settings.csv_no_sup_value #=> String
1127
1163
  # resp.endpoint.s3_settings.preserve_transactions #=> Boolean
1128
1164
  # resp.endpoint.s3_settings.cdc_path #=> String
1165
+ # resp.endpoint.s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
1166
+ # resp.endpoint.s3_settings.add_column_name #=> Boolean
1167
+ # resp.endpoint.s3_settings.cdc_max_batch_interval #=> Integer
1168
+ # resp.endpoint.s3_settings.cdc_min_file_size #=> Integer
1169
+ # resp.endpoint.s3_settings.csv_null_value #=> String
1170
+ # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
1171
+ # resp.endpoint.s3_settings.max_file_size #=> Integer
1172
+ # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
1129
1173
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
1130
1174
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
1131
1175
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -1151,6 +1195,7 @@ module Aws::DatabaseMigrationService
1151
1195
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
1152
1196
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
1153
1197
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
1198
+ # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
1154
1199
  # resp.endpoint.kafka_settings.broker #=> String
1155
1200
  # resp.endpoint.kafka_settings.topic #=> String
1156
1201
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -1168,6 +1213,7 @@ module Aws::DatabaseMigrationService
1168
1213
  # resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
1169
1214
  # resp.endpoint.kafka_settings.sasl_username #=> String
1170
1215
  # resp.endpoint.kafka_settings.sasl_password #=> String
1216
+ # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
1171
1217
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
1172
1218
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
1173
1219
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -1216,11 +1262,15 @@ module Aws::DatabaseMigrationService
1216
1262
  # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
1217
1263
  # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
1218
1264
  # resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
1265
+ # resp.endpoint.postgre_sql_settings.heartbeat_enable #=> Boolean
1266
+ # resp.endpoint.postgre_sql_settings.heartbeat_schema #=> String
1267
+ # resp.endpoint.postgre_sql_settings.heartbeat_frequency #=> Integer
1219
1268
  # resp.endpoint.postgre_sql_settings.password #=> String
1220
1269
  # resp.endpoint.postgre_sql_settings.port #=> Integer
1221
1270
  # resp.endpoint.postgre_sql_settings.server_name #=> String
1222
1271
  # resp.endpoint.postgre_sql_settings.username #=> String
1223
1272
  # resp.endpoint.postgre_sql_settings.slot_name #=> String
1273
+ # resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
1224
1274
  # resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
1225
1275
  # resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
1226
1276
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
@@ -1240,6 +1290,8 @@ module Aws::DatabaseMigrationService
1240
1290
  # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
1241
1291
  # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
1242
1292
  # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
1293
+ # resp.endpoint.oracle_settings.extra_archived_log_dest_ids #=> Array
1294
+ # resp.endpoint.oracle_settings.extra_archived_log_dest_ids[0] #=> Integer
1243
1295
  # resp.endpoint.oracle_settings.allow_select_nested_tables #=> Boolean
1244
1296
  # resp.endpoint.oracle_settings.parallel_asm_read_threads #=> Integer
1245
1297
  # resp.endpoint.oracle_settings.read_ahead_blocks #=> Integer
@@ -1267,7 +1319,11 @@ module Aws::DatabaseMigrationService
1267
1319
  # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
1268
1320
  # resp.endpoint.oracle_settings.server_name #=> String
1269
1321
  # resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
1322
+ # resp.endpoint.oracle_settings.standby_delay_time #=> Integer
1270
1323
  # resp.endpoint.oracle_settings.username #=> String
1324
+ # resp.endpoint.oracle_settings.use_b_file #=> Boolean
1325
+ # resp.endpoint.oracle_settings.use_direct_path_full_load #=> Boolean
1326
+ # resp.endpoint.oracle_settings.use_logminer_reader #=> Boolean
1271
1327
  # resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
1272
1328
  # resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
1273
1329
  # resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -1314,6 +1370,13 @@ module Aws::DatabaseMigrationService
1314
1370
  # resp.endpoint.doc_db_settings.kms_key_id #=> String
1315
1371
  # resp.endpoint.doc_db_settings.secrets_manager_access_role_arn #=> String
1316
1372
  # resp.endpoint.doc_db_settings.secrets_manager_secret_id #=> String
1373
+ # resp.endpoint.redis_settings.server_name #=> String
1374
+ # resp.endpoint.redis_settings.port #=> Integer
1375
+ # resp.endpoint.redis_settings.ssl_security_protocol #=> String, one of "plaintext", "ssl-encryption"
1376
+ # resp.endpoint.redis_settings.auth_type #=> String, one of "none", "auth-role", "auth-token"
1377
+ # resp.endpoint.redis_settings.auth_user_name #=> String
1378
+ # resp.endpoint.redis_settings.auth_password #=> String
1379
+ # resp.endpoint.redis_settings.ssl_ca_certificate_arn #=> String
1317
1380
  #
1318
1381
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint AWS API Documentation
1319
1382
  #
@@ -1324,10 +1387,10 @@ module Aws::DatabaseMigrationService
1324
1387
  req.send_request(options)
1325
1388
  end
1326
1389
 
1327
- # Creates an AWS DMS event notification subscription.
1390
+ # Creates an DMS event notification subscription.
1328
1391
  #
1329
1392
  # You can specify the type of source (`SourceType`) you want to be
1330
- # notified of, provide a list of AWS DMS source IDs (`SourceIds`) that
1393
+ # notified of, provide a list of DMS source IDs (`SourceIds`) that
1331
1394
  # triggers the events, and provide a list of event categories
1332
1395
  # (`EventCategories`) for events you want to be notified of. If you
1333
1396
  # specify both the `SourceType` and `SourceIds`, such as `SourceType =
@@ -1335,21 +1398,20 @@ module Aws::DatabaseMigrationService
1335
1398
  # will be notified of all the replication instance events for the
1336
1399
  # specified source. If you specify a `SourceType` but don't specify a
1337
1400
  # `SourceIdentifier`, you receive notice of the events for that source
1338
- # type for all your AWS DMS sources. If you don't specify either
1401
+ # type for all your DMS sources. If you don't specify either
1339
1402
  # `SourceType` nor `SourceIdentifier`, you will be notified of events
1340
- # generated from all AWS DMS sources belonging to your customer account.
1403
+ # generated from all DMS sources belonging to your customer account.
1341
1404
  #
1342
- # For more information about AWS DMS events, see [Working with Events
1343
- # and Notifications][1] in the *AWS Database Migration Service User
1344
- # Guide.*
1405
+ # For more information about DMS events, see [Working with Events and
1406
+ # Notifications][1] in the *Database Migration Service User Guide.*
1345
1407
  #
1346
1408
  #
1347
1409
  #
1348
1410
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
1349
1411
  #
1350
1412
  # @option params [required, String] :subscription_name
1351
- # The name of the AWS DMS event notification subscription. This name
1352
- # must be less than 255 characters.
1413
+ # The name of the DMS event notification subscription. This name must be
1414
+ # less than 255 characters.
1353
1415
  #
1354
1416
  # @option params [required, String] :sns_topic_arn
1355
1417
  # The Amazon Resource Name (ARN) of the Amazon SNS topic created for
@@ -1357,24 +1419,24 @@ module Aws::DatabaseMigrationService
1357
1419
  # topic and subscribe to it.
1358
1420
  #
1359
1421
  # @option params [String] :source_type
1360
- # The type of AWS DMS resource that generates the events. For example,
1361
- # if you want to be notified of events generated by a replication
1362
- # instance, you set this parameter to `replication-instance`. If this
1363
- # value isn't specified, all events are returned.
1422
+ # The type of DMS resource that generates the events. For example, if
1423
+ # you want to be notified of events generated by a replication instance,
1424
+ # you set this parameter to `replication-instance`. If this value isn't
1425
+ # specified, all events are returned.
1364
1426
  #
1365
1427
  # Valid values: `replication-instance` \| `replication-task`
1366
1428
  #
1367
1429
  # @option params [Array<String>] :event_categories
1368
1430
  # A list of event categories for a source type that you want to
1369
1431
  # subscribe to. For more information, see [Working with Events and
1370
- # Notifications][1] in the *AWS Database Migration Service User Guide.*
1432
+ # Notifications][1] in the *Database Migration Service User Guide.*
1371
1433
  #
1372
1434
  #
1373
1435
  #
1374
1436
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
1375
1437
  #
1376
1438
  # @option params [Array<String>] :source_ids
1377
- # A list of identifiers for which AWS DMS provides notification events.
1439
+ # A list of identifiers for which DMS provides notification events.
1378
1440
  #
1379
1441
  # If you don't specify a value, notifications are provided for all
1380
1442
  # sources.
@@ -1407,6 +1469,7 @@ module Aws::DatabaseMigrationService
1407
1469
  # {
1408
1470
  # key: "String",
1409
1471
  # value: "String",
1472
+ # resource_arn: "String",
1410
1473
  # },
1411
1474
  # ],
1412
1475
  # })
@@ -1436,11 +1499,11 @@ module Aws::DatabaseMigrationService
1436
1499
 
1437
1500
  # Creates the replication instance using the specified parameters.
1438
1501
  #
1439
- # AWS DMS requires that your account have certain roles with appropriate
1502
+ # DMS requires that your account have certain roles with appropriate
1440
1503
  # permissions before you can create a replication instance. For
1441
1504
  # information on the required roles, see [Creating the IAM Roles to Use
1442
- # With the AWS CLI and AWS DMS API][1]. For information on the required
1443
- # permissions, see [IAM Permissions Needed to Use AWS DMS][2].
1505
+ # With the CLI and DMS API][1]. For information on the required
1506
+ # permissions, see [IAM Permissions Needed to Use DMS][2].
1444
1507
  #
1445
1508
  #
1446
1509
  #
@@ -1472,7 +1535,7 @@ module Aws::DatabaseMigrationService
1472
1535
  # `"dms.c4.large"`.
1473
1536
  #
1474
1537
  # For more information on the settings and capacities for the available
1475
- # replication instance classes, see [ Selecting the right AWS DMS
1538
+ # replication instance classes, see [ Selecting the right DMS
1476
1539
  # replication instance for your migration][1].
1477
1540
  #
1478
1541
  #
@@ -1487,7 +1550,7 @@ module Aws::DatabaseMigrationService
1487
1550
  # @option params [String] :availability_zone
1488
1551
  # The Availability Zone where the replication instance will be created.
1489
1552
  # The default value is a random, system-chosen Availability Zone in the
1490
- # endpoint's AWS Region, for example: `us-east-1d`
1553
+ # endpoint's Amazon Web Services Region, for example: `us-east-1d`
1491
1554
  #
1492
1555
  # @option params [String] :replication_subnet_group_identifier
1493
1556
  # A subnet group to associate with the replication instance.
@@ -1499,7 +1562,8 @@ module Aws::DatabaseMigrationService
1499
1562
  # Format: `ddd:hh24:mi-ddd:hh24:mi`
1500
1563
  #
1501
1564
  # Default: A 30-minute window selected at random from an 8-hour block of
1502
- # time per AWS Region, occurring on a random day of the week.
1565
+ # time per Amazon Web Services Region, occurring on a random day of the
1566
+ # week.
1503
1567
  #
1504
1568
  # Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
1505
1569
  #
@@ -1528,15 +1592,15 @@ module Aws::DatabaseMigrationService
1528
1592
  # One or more tags to be assigned to the replication instance.
1529
1593
  #
1530
1594
  # @option params [String] :kms_key_id
1531
- # An AWS KMS key identifier that is used to encrypt the data on the
1595
+ # An KMS key identifier that is used to encrypt the data on the
1532
1596
  # replication instance.
1533
1597
  #
1534
- # If you don't specify a value for the `KmsKeyId` parameter, then AWS
1535
- # DMS uses your default encryption key.
1598
+ # If you don't specify a value for the `KmsKeyId` parameter, then DMS
1599
+ # uses your default encryption key.
1536
1600
  #
1537
- # AWS KMS creates the default encryption key for your AWS account. Your
1538
- # AWS account has a different default encryption key for each AWS
1539
- # Region.
1601
+ # KMS creates the default encryption key for your Amazon Web Services
1602
+ # account. Your Amazon Web Services account has a different default
1603
+ # encryption key for each Amazon Web Services Region.
1540
1604
  #
1541
1605
  # @option params [Boolean] :publicly_accessible
1542
1606
  # Specifies the accessibility options for the replication instance. A
@@ -1561,8 +1625,8 @@ module Aws::DatabaseMigrationService
1561
1625
  # hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
1562
1626
  # For example, this value might result in the `EndpointArn` value
1563
1627
  # `arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1`. If you
1564
- # don't specify a `ResourceIdentifier` value, AWS DMS generates a
1565
- # default identifier value for the end of `EndpointArn`.
1628
+ # don't specify a `ResourceIdentifier` value, DMS generates a default
1629
+ # identifier value for the end of `EndpointArn`.
1566
1630
  #
1567
1631
  # @return [Types::CreateReplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1568
1632
  #
@@ -1666,6 +1730,7 @@ module Aws::DatabaseMigrationService
1666
1730
  # {
1667
1731
  # key: "String",
1668
1732
  # value: "String",
1733
+ # resource_arn: "String",
1669
1734
  # },
1670
1735
  # ],
1671
1736
  # kms_key_id: "String",
@@ -1784,6 +1849,7 @@ module Aws::DatabaseMigrationService
1784
1849
  # {
1785
1850
  # key: "String",
1786
1851
  # value: "String",
1852
+ # resource_arn: "String",
1787
1853
  # },
1788
1854
  # ],
1789
1855
  # })
@@ -1838,8 +1904,8 @@ module Aws::DatabaseMigrationService
1838
1904
  #
1839
1905
  # @option params [required, String] :table_mappings
1840
1906
  # The table mappings for the task, in JSON format. For more information,
1841
- # see [Using Table Mapping to Specify Task Settings][1] in the *AWS
1842
- # Database Migration Service User Guide.*
1907
+ # see [Using Table Mapping to Specify Task Settings][1] in the *Database
1908
+ # Migration Service User Guide.*
1843
1909
  #
1844
1910
  #
1845
1911
  #
@@ -1847,8 +1913,8 @@ module Aws::DatabaseMigrationService
1847
1913
  #
1848
1914
  # @option params [String] :replication_task_settings
1849
1915
  # Overall settings for the task, in JSON format. For more information,
1850
- # see [Specifying Task Settings for AWS Database Migration Service
1851
- # Tasks][1] in the *AWS Database Migration User Guide.*
1916
+ # see [Specifying Task Settings for Database Migration Service Tasks][1]
1917
+ # in the *Database Migration Service User Guide.*
1852
1918
  #
1853
1919
  #
1854
1920
  #
@@ -1881,7 +1947,7 @@ module Aws::DatabaseMigrationService
1881
1947
  # the source endpoint. You can verify this by setting the `slotName`
1882
1948
  # extra connection attribute to the name of this logical replication
1883
1949
  # slot. For more information, see [Extra Connection Attributes When
1884
- # Using PostgreSQL as a Source for AWS DMS][1].
1950
+ # Using PostgreSQL as a Source for DMS][1].
1885
1951
  #
1886
1952
  # </note>
1887
1953
  #
@@ -1905,8 +1971,8 @@ module Aws::DatabaseMigrationService
1905
1971
  # @option params [String] :task_data
1906
1972
  # Supplemental information that the task requires to migrate the data
1907
1973
  # for certain source and target endpoints. For more information, see
1908
- # [Specifying Supplemental Data for Task Settings][1] in the *AWS
1909
- # Database Migration Service User Guide.*
1974
+ # [Specifying Supplemental Data for Task Settings][1] in the *Database
1975
+ # Migration Service User Guide.*
1910
1976
  #
1911
1977
  #
1912
1978
  #
@@ -1921,8 +1987,8 @@ module Aws::DatabaseMigrationService
1921
1987
  # hyphens, and can only begin with a letter, such as `Example-App-ARN1`.
1922
1988
  # For example, this value might result in the `EndpointArn` value
1923
1989
  # `arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1`. If you
1924
- # don't specify a `ResourceIdentifier` value, AWS DMS generates a
1925
- # default identifier value for the end of `EndpointArn`.
1990
+ # don't specify a `ResourceIdentifier` value, DMS generates a default
1991
+ # identifier value for the end of `EndpointArn`.
1926
1992
  #
1927
1993
  # @return [Types::CreateReplicationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1928
1994
  #
@@ -1983,6 +2049,7 @@ module Aws::DatabaseMigrationService
1983
2049
  # {
1984
2050
  # key: "String",
1985
2051
  # value: "String",
2052
+ # resource_arn: "String",
1986
2053
  # },
1987
2054
  # ],
1988
2055
  # task_data: "String",
@@ -2230,6 +2297,14 @@ module Aws::DatabaseMigrationService
2230
2297
  # resp.endpoint.s3_settings.csv_no_sup_value #=> String
2231
2298
  # resp.endpoint.s3_settings.preserve_transactions #=> Boolean
2232
2299
  # resp.endpoint.s3_settings.cdc_path #=> String
2300
+ # resp.endpoint.s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
2301
+ # resp.endpoint.s3_settings.add_column_name #=> Boolean
2302
+ # resp.endpoint.s3_settings.cdc_max_batch_interval #=> Integer
2303
+ # resp.endpoint.s3_settings.cdc_min_file_size #=> Integer
2304
+ # resp.endpoint.s3_settings.csv_null_value #=> String
2305
+ # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
2306
+ # resp.endpoint.s3_settings.max_file_size #=> Integer
2307
+ # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
2233
2308
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
2234
2309
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
2235
2310
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -2255,6 +2330,7 @@ module Aws::DatabaseMigrationService
2255
2330
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
2256
2331
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
2257
2332
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
2333
+ # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
2258
2334
  # resp.endpoint.kafka_settings.broker #=> String
2259
2335
  # resp.endpoint.kafka_settings.topic #=> String
2260
2336
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -2272,6 +2348,7 @@ module Aws::DatabaseMigrationService
2272
2348
  # resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
2273
2349
  # resp.endpoint.kafka_settings.sasl_username #=> String
2274
2350
  # resp.endpoint.kafka_settings.sasl_password #=> String
2351
+ # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
2275
2352
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
2276
2353
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
2277
2354
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -2320,11 +2397,15 @@ module Aws::DatabaseMigrationService
2320
2397
  # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
2321
2398
  # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
2322
2399
  # resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
2400
+ # resp.endpoint.postgre_sql_settings.heartbeat_enable #=> Boolean
2401
+ # resp.endpoint.postgre_sql_settings.heartbeat_schema #=> String
2402
+ # resp.endpoint.postgre_sql_settings.heartbeat_frequency #=> Integer
2323
2403
  # resp.endpoint.postgre_sql_settings.password #=> String
2324
2404
  # resp.endpoint.postgre_sql_settings.port #=> Integer
2325
2405
  # resp.endpoint.postgre_sql_settings.server_name #=> String
2326
2406
  # resp.endpoint.postgre_sql_settings.username #=> String
2327
2407
  # resp.endpoint.postgre_sql_settings.slot_name #=> String
2408
+ # resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
2328
2409
  # resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
2329
2410
  # resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
2330
2411
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
@@ -2344,6 +2425,8 @@ module Aws::DatabaseMigrationService
2344
2425
  # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
2345
2426
  # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
2346
2427
  # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
2428
+ # resp.endpoint.oracle_settings.extra_archived_log_dest_ids #=> Array
2429
+ # resp.endpoint.oracle_settings.extra_archived_log_dest_ids[0] #=> Integer
2347
2430
  # resp.endpoint.oracle_settings.allow_select_nested_tables #=> Boolean
2348
2431
  # resp.endpoint.oracle_settings.parallel_asm_read_threads #=> Integer
2349
2432
  # resp.endpoint.oracle_settings.read_ahead_blocks #=> Integer
@@ -2371,7 +2454,11 @@ module Aws::DatabaseMigrationService
2371
2454
  # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
2372
2455
  # resp.endpoint.oracle_settings.server_name #=> String
2373
2456
  # resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
2457
+ # resp.endpoint.oracle_settings.standby_delay_time #=> Integer
2374
2458
  # resp.endpoint.oracle_settings.username #=> String
2459
+ # resp.endpoint.oracle_settings.use_b_file #=> Boolean
2460
+ # resp.endpoint.oracle_settings.use_direct_path_full_load #=> Boolean
2461
+ # resp.endpoint.oracle_settings.use_logminer_reader #=> Boolean
2375
2462
  # resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
2376
2463
  # resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
2377
2464
  # resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -2418,6 +2505,13 @@ module Aws::DatabaseMigrationService
2418
2505
  # resp.endpoint.doc_db_settings.kms_key_id #=> String
2419
2506
  # resp.endpoint.doc_db_settings.secrets_manager_access_role_arn #=> String
2420
2507
  # resp.endpoint.doc_db_settings.secrets_manager_secret_id #=> String
2508
+ # resp.endpoint.redis_settings.server_name #=> String
2509
+ # resp.endpoint.redis_settings.port #=> Integer
2510
+ # resp.endpoint.redis_settings.ssl_security_protocol #=> String, one of "plaintext", "ssl-encryption"
2511
+ # resp.endpoint.redis_settings.auth_type #=> String, one of "none", "auth-role", "auth-token"
2512
+ # resp.endpoint.redis_settings.auth_user_name #=> String
2513
+ # resp.endpoint.redis_settings.auth_password #=> String
2514
+ # resp.endpoint.redis_settings.ssl_ca_certificate_arn #=> String
2421
2515
  #
2422
2516
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint AWS API Documentation
2423
2517
  #
@@ -2428,7 +2522,7 @@ module Aws::DatabaseMigrationService
2428
2522
  req.send_request(options)
2429
2523
  end
2430
2524
 
2431
- # Deletes an AWS DMS event subscription.
2525
+ # Deletes an DMS event subscription.
2432
2526
  #
2433
2527
  # @option params [required, String] :subscription_name
2434
2528
  # The name of the DMS event notification subscription to be deleted.
@@ -2718,7 +2812,7 @@ module Aws::DatabaseMigrationService
2718
2812
 
2719
2813
  # Deletes the record of a single premigration assessment run.
2720
2814
  #
2721
- # This operation removes all metadata that AWS DMS maintains about this
2815
+ # This operation removes all metadata that DMS maintains about this
2722
2816
  # assessment run. However, the operation leaves untouched all
2723
2817
  # information about this assessment run that is stored in your Amazon S3
2724
2818
  # bucket.
@@ -2762,8 +2856,8 @@ module Aws::DatabaseMigrationService
2762
2856
  req.send_request(options)
2763
2857
  end
2764
2858
 
2765
- # Lists all of the AWS DMS attributes for a customer account. These
2766
- # attributes include AWS DMS quotas for the account and a unique account
2859
+ # Lists all of the DMS attributes for a customer account. These
2860
+ # attributes include DMS quotas for the account and a unique account
2767
2861
  # identifier in a particular DMS region. DMS quotas include a list of
2768
2862
  # resource quotas supported by the account, such as the number of
2769
2863
  # replication instances allowed. The description for each resource
@@ -3151,6 +3245,7 @@ module Aws::DatabaseMigrationService
3151
3245
  # resp.endpoint_settings[0].applicability #=> String
3152
3246
  # resp.endpoint_settings[0].int_value_min #=> Integer
3153
3247
  # resp.endpoint_settings[0].int_value_max #=> Integer
3248
+ # resp.endpoint_settings[0].default_value #=> String
3154
3249
  #
3155
3250
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointSettings AWS API Documentation
3156
3251
  #
@@ -3368,6 +3463,14 @@ module Aws::DatabaseMigrationService
3368
3463
  # resp.endpoints[0].s3_settings.csv_no_sup_value #=> String
3369
3464
  # resp.endpoints[0].s3_settings.preserve_transactions #=> Boolean
3370
3465
  # resp.endpoints[0].s3_settings.cdc_path #=> String
3466
+ # resp.endpoints[0].s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
3467
+ # resp.endpoints[0].s3_settings.add_column_name #=> Boolean
3468
+ # resp.endpoints[0].s3_settings.cdc_max_batch_interval #=> Integer
3469
+ # resp.endpoints[0].s3_settings.cdc_min_file_size #=> Integer
3470
+ # resp.endpoints[0].s3_settings.csv_null_value #=> String
3471
+ # resp.endpoints[0].s3_settings.ignore_header_rows #=> Integer
3472
+ # resp.endpoints[0].s3_settings.max_file_size #=> Integer
3473
+ # resp.endpoints[0].s3_settings.rfc_4180 #=> Boolean
3371
3474
  # resp.endpoints[0].dms_transfer_settings.service_access_role_arn #=> String
3372
3475
  # resp.endpoints[0].dms_transfer_settings.bucket_name #=> String
3373
3476
  # resp.endpoints[0].mongo_db_settings.username #=> String
@@ -3393,6 +3496,7 @@ module Aws::DatabaseMigrationService
3393
3496
  # resp.endpoints[0].kinesis_settings.include_table_alter_operations #=> Boolean
3394
3497
  # resp.endpoints[0].kinesis_settings.include_control_details #=> Boolean
3395
3498
  # resp.endpoints[0].kinesis_settings.include_null_and_empty #=> Boolean
3499
+ # resp.endpoints[0].kinesis_settings.no_hex_prefix #=> Boolean
3396
3500
  # resp.endpoints[0].kafka_settings.broker #=> String
3397
3501
  # resp.endpoints[0].kafka_settings.topic #=> String
3398
3502
  # resp.endpoints[0].kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -3410,6 +3514,7 @@ module Aws::DatabaseMigrationService
3410
3514
  # resp.endpoints[0].kafka_settings.ssl_ca_certificate_arn #=> String
3411
3515
  # resp.endpoints[0].kafka_settings.sasl_username #=> String
3412
3516
  # resp.endpoints[0].kafka_settings.sasl_password #=> String
3517
+ # resp.endpoints[0].kafka_settings.no_hex_prefix #=> Boolean
3413
3518
  # resp.endpoints[0].elasticsearch_settings.service_access_role_arn #=> String
3414
3519
  # resp.endpoints[0].elasticsearch_settings.endpoint_uri #=> String
3415
3520
  # resp.endpoints[0].elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -3458,11 +3563,15 @@ module Aws::DatabaseMigrationService
3458
3563
  # resp.endpoints[0].postgre_sql_settings.ddl_artifacts_schema #=> String
3459
3564
  # resp.endpoints[0].postgre_sql_settings.execute_timeout #=> Integer
3460
3565
  # resp.endpoints[0].postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
3566
+ # resp.endpoints[0].postgre_sql_settings.heartbeat_enable #=> Boolean
3567
+ # resp.endpoints[0].postgre_sql_settings.heartbeat_schema #=> String
3568
+ # resp.endpoints[0].postgre_sql_settings.heartbeat_frequency #=> Integer
3461
3569
  # resp.endpoints[0].postgre_sql_settings.password #=> String
3462
3570
  # resp.endpoints[0].postgre_sql_settings.port #=> Integer
3463
3571
  # resp.endpoints[0].postgre_sql_settings.server_name #=> String
3464
3572
  # resp.endpoints[0].postgre_sql_settings.username #=> String
3465
3573
  # resp.endpoints[0].postgre_sql_settings.slot_name #=> String
3574
+ # resp.endpoints[0].postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
3466
3575
  # resp.endpoints[0].postgre_sql_settings.secrets_manager_access_role_arn #=> String
3467
3576
  # resp.endpoints[0].postgre_sql_settings.secrets_manager_secret_id #=> String
3468
3577
  # resp.endpoints[0].my_sql_settings.after_connect_script #=> String
@@ -3482,6 +3591,8 @@ module Aws::DatabaseMigrationService
3482
3591
  # resp.endpoints[0].oracle_settings.add_supplemental_logging #=> Boolean
3483
3592
  # resp.endpoints[0].oracle_settings.archived_log_dest_id #=> Integer
3484
3593
  # resp.endpoints[0].oracle_settings.additional_archived_log_dest_id #=> Integer
3594
+ # resp.endpoints[0].oracle_settings.extra_archived_log_dest_ids #=> Array
3595
+ # resp.endpoints[0].oracle_settings.extra_archived_log_dest_ids[0] #=> Integer
3485
3596
  # resp.endpoints[0].oracle_settings.allow_select_nested_tables #=> Boolean
3486
3597
  # resp.endpoints[0].oracle_settings.parallel_asm_read_threads #=> Integer
3487
3598
  # resp.endpoints[0].oracle_settings.read_ahead_blocks #=> Integer
@@ -3509,7 +3620,11 @@ module Aws::DatabaseMigrationService
3509
3620
  # resp.endpoints[0].oracle_settings.security_db_encryption_name #=> String
3510
3621
  # resp.endpoints[0].oracle_settings.server_name #=> String
3511
3622
  # resp.endpoints[0].oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
3623
+ # resp.endpoints[0].oracle_settings.standby_delay_time #=> Integer
3512
3624
  # resp.endpoints[0].oracle_settings.username #=> String
3625
+ # resp.endpoints[0].oracle_settings.use_b_file #=> Boolean
3626
+ # resp.endpoints[0].oracle_settings.use_direct_path_full_load #=> Boolean
3627
+ # resp.endpoints[0].oracle_settings.use_logminer_reader #=> Boolean
3513
3628
  # resp.endpoints[0].oracle_settings.secrets_manager_access_role_arn #=> String
3514
3629
  # resp.endpoints[0].oracle_settings.secrets_manager_secret_id #=> String
3515
3630
  # resp.endpoints[0].oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -3556,6 +3671,13 @@ module Aws::DatabaseMigrationService
3556
3671
  # resp.endpoints[0].doc_db_settings.kms_key_id #=> String
3557
3672
  # resp.endpoints[0].doc_db_settings.secrets_manager_access_role_arn #=> String
3558
3673
  # resp.endpoints[0].doc_db_settings.secrets_manager_secret_id #=> String
3674
+ # resp.endpoints[0].redis_settings.server_name #=> String
3675
+ # resp.endpoints[0].redis_settings.port #=> Integer
3676
+ # resp.endpoints[0].redis_settings.ssl_security_protocol #=> String, one of "plaintext", "ssl-encryption"
3677
+ # resp.endpoints[0].redis_settings.auth_type #=> String, one of "none", "auth-role", "auth-token"
3678
+ # resp.endpoints[0].redis_settings.auth_user_name #=> String
3679
+ # resp.endpoints[0].redis_settings.auth_password #=> String
3680
+ # resp.endpoints[0].redis_settings.ssl_ca_certificate_arn #=> String
3559
3681
  #
3560
3682
  #
3561
3683
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -3573,15 +3695,15 @@ module Aws::DatabaseMigrationService
3573
3695
 
3574
3696
  # Lists categories for all event source types, or, if specified, for a
3575
3697
  # specified source type. You can see a list of the event categories and
3576
- # source types in [Working with Events and Notifications][1] in the *AWS
3577
- # Database Migration Service User Guide.*
3698
+ # source types in [Working with Events and Notifications][1] in the
3699
+ # *Database Migration Service User Guide.*
3578
3700
  #
3579
3701
  #
3580
3702
  #
3581
3703
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html
3582
3704
  #
3583
3705
  # @option params [String] :source_type
3584
- # The type of AWS DMS resource that generates events.
3706
+ # The type of DMS resource that generates events.
3585
3707
  #
3586
3708
  # Valid values: replication-instance \| replication-task
3587
3709
  #
@@ -3629,7 +3751,7 @@ module Aws::DatabaseMigrationService
3629
3751
  # for that subscription.
3630
3752
  #
3631
3753
  # @option params [String] :subscription_name
3632
- # The name of the AWS DMS event subscription to be described.
3754
+ # The name of the DMS event subscription to be described.
3633
3755
  #
3634
3756
  # @option params [Array<Types::Filter>] :filters
3635
3757
  # Filters applied to event subscriptions.
@@ -3696,9 +3818,9 @@ module Aws::DatabaseMigrationService
3696
3818
  end
3697
3819
 
3698
3820
  # Lists events for a given source identifier and source type. You can
3699
- # also specify a start and end time. For more information on AWS DMS
3700
- # events, see [Working with Events and Notifications][1] in the *AWS
3701
- # Database Migration User Guide.*
3821
+ # also specify a start and end time. For more information on DMS events,
3822
+ # see [Working with Events and Notifications][1] in the *Database
3823
+ # Migration Service User Guide.*
3702
3824
  #
3703
3825
  #
3704
3826
  #
@@ -3708,7 +3830,7 @@ module Aws::DatabaseMigrationService
3708
3830
  # The identifier of an event source.
3709
3831
  #
3710
3832
  # @option params [String] :source_type
3711
- # The type of AWS DMS resource that generates events.
3833
+ # The type of DMS resource that generates events.
3712
3834
  #
3713
3835
  # Valid values: replication-instance \| replication-task
3714
3836
  #
@@ -4246,9 +4368,19 @@ module Aws::DatabaseMigrationService
4246
4368
  req.send_request(options)
4247
4369
  end
4248
4370
 
4249
- # Returns the task assessment results from Amazon S3. This action always
4371
+ # Returns the task assessment results from the Amazon S3 bucket that DMS
4372
+ # creates in your Amazon Web Services account. This action always
4250
4373
  # returns the latest results.
4251
4374
  #
4375
+ # For more information about DMS task assessments, see [Creating a task
4376
+ # assessment report][1] in the [ Database Migration Service User
4377
+ # Guide][2].
4378
+ #
4379
+ #
4380
+ #
4381
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html
4382
+ # [2]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/dms/latest/userguide/Welcome.html
4383
+ #
4252
4384
  # @option params [String] :replication_task_arn
4253
4385
  # The Amazon Resource Name (ARN) string that uniquely identifies the
4254
4386
  # task. When this input parameter is specified, the API returns only one
@@ -4649,7 +4781,7 @@ module Aws::DatabaseMigrationService
4649
4781
  # table name, rows inserted, rows updated, and rows deleted.
4650
4782
  #
4651
4783
  # Note that the "last updated" column the DMS console only indicates
4652
- # the time that AWS DMS last updated the table statistics record for a
4784
+ # the time that DMS last updated the table statistics record for a
4653
4785
  # table. It does not indicate the time of the last update to the table.
4654
4786
  #
4655
4787
  # @option params [required, String] :replication_task_arn
@@ -4767,7 +4899,8 @@ module Aws::DatabaseMigrationService
4767
4899
  #
4768
4900
  # @option params [String, StringIO, File] :certificate_wallet
4769
4901
  # The location of an imported Oracle Wallet certificate for use with
4770
- # SSL.
4902
+ # SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
4903
+ # You can't provide the certificate inline.
4771
4904
  #
4772
4905
  # @option params [Array<Types::Tag>] :tags
4773
4906
  # The tags associated with the certificate.
@@ -4802,6 +4935,7 @@ module Aws::DatabaseMigrationService
4802
4935
  # {
4803
4936
  # key: "String",
4804
4937
  # value: "String",
4938
+ # resource_arn: "String",
4805
4939
  # },
4806
4940
  # ],
4807
4941
  # })
@@ -4828,7 +4962,7 @@ module Aws::DatabaseMigrationService
4828
4962
  req.send_request(options)
4829
4963
  end
4830
4964
 
4831
- # Lists all metadata tags attached to an AWS DMS resource, including
4965
+ # Lists all metadata tags attached to an DMS resource, including
4832
4966
  # replication instance, endpoint, security group, and migration task.
4833
4967
  # For more information, see [ `Tag` ][1] data type description.
4834
4968
  #
@@ -4836,9 +4970,17 @@ module Aws::DatabaseMigrationService
4836
4970
  #
4837
4971
  # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
4838
4972
  #
4839
- # @option params [required, String] :resource_arn
4840
- # The Amazon Resource Name (ARN) string that uniquely identifies the AWS
4841
- # DMS resource.
4973
+ # @option params [String] :resource_arn
4974
+ # The Amazon Resource Name (ARN) string that uniquely identifies the DMS
4975
+ # resource to list tags for. This returns a list of keys (names of tags)
4976
+ # created for the resource and their associated tag values.
4977
+ #
4978
+ # @option params [Array<String>] :resource_arn_list
4979
+ # List of ARNs that identify multiple DMS resources that you want to
4980
+ # list tags for. This returns a list of keys (tag names) and their
4981
+ # associated tag values. It also returns each tag's associated
4982
+ # `ResourceArn` value, which is the ARN of the resource for which each
4983
+ # listed tag is created.
4842
4984
  #
4843
4985
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4844
4986
  #
@@ -4862,7 +5004,8 @@ module Aws::DatabaseMigrationService
4862
5004
  # @example Request syntax with placeholder values
4863
5005
  #
4864
5006
  # resp = client.list_tags_for_resource({
4865
- # resource_arn: "String", # required
5007
+ # resource_arn: "String",
5008
+ # resource_arn_list: ["String"],
4866
5009
  # })
4867
5010
  #
4868
5011
  # @example Response structure
@@ -4870,6 +5013,7 @@ module Aws::DatabaseMigrationService
4870
5013
  # resp.tag_list #=> Array
4871
5014
  # resp.tag_list[0].key #=> String
4872
5015
  # resp.tag_list[0].value #=> String
5016
+ # resp.tag_list[0].resource_arn #=> String
4873
5017
  #
4874
5018
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ListTagsForResource AWS API Documentation
4875
5019
  #
@@ -4882,6 +5026,15 @@ module Aws::DatabaseMigrationService
4882
5026
 
4883
5027
  # Modifies the specified endpoint.
4884
5028
  #
5029
+ # <note markdown="1"> For a MySQL source or target endpoint, don't explicitly specify the
5030
+ # database using the `DatabaseName` request parameter on the
5031
+ # `ModifyEndpoint` API call. Specifying `DatabaseName` when you modify a
5032
+ # MySQL endpoint replicates all the task tables to this single database.
5033
+ # For MySQL endpoints, you specify the database only when you specify
5034
+ # the schema in the table-mapping rules of the DMS task.
5035
+ #
5036
+ # </note>
5037
+ #
4885
5038
  # @option params [required, String] :endpoint_arn
4886
5039
  # The Amazon Resource Name (ARN) string that uniquely identifies the
4887
5040
  # endpoint.
@@ -4915,7 +5068,8 @@ module Aws::DatabaseMigrationService
4915
5068
  # The port used by the endpoint database.
4916
5069
  #
4917
5070
  # @option params [String] :database_name
4918
- # The name of the endpoint database.
5071
+ # The name of the endpoint database. For a MySQL source or target
5072
+ # endpoint, do not specify DatabaseName.
4919
5073
  #
4920
5074
  # @option params [String] :extra_connection_attributes
4921
5075
  # Additional attributes associated with the connection. To reset this
@@ -4930,8 +5084,8 @@ module Aws::DatabaseMigrationService
4930
5084
  # `none`.
4931
5085
  #
4932
5086
  # @option params [String] :service_access_role_arn
4933
- # The Amazon Resource Name (ARN) for the service access role you want to
4934
- # use to modify the endpoint.
5087
+ # The Amazon Resource Name (ARN) for the IAM role you want to use to
5088
+ # modify the endpoint. The role must allow the `iam:PassRole` action.
4935
5089
  #
4936
5090
  # @option params [String] :external_table_definition
4937
5091
  # The external table definition.
@@ -4939,18 +5093,18 @@ module Aws::DatabaseMigrationService
4939
5093
  # @option params [Types::DynamoDbSettings] :dynamo_db_settings
4940
5094
  # Settings in JSON format for the target Amazon DynamoDB endpoint. For
4941
5095
  # information about other available settings, see [Using Object Mapping
4942
- # to Migrate Data to DynamoDB][1] in the *AWS Database Migration Service
5096
+ # to Migrate Data to DynamoDB][1] in the *Database Migration Service
4943
5097
  # User Guide.*
4944
5098
  #
4945
5099
  #
4946
5100
  #
4947
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html
5101
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html#CHAP_Target.DynamoDB.ObjectMapping
4948
5102
  #
4949
5103
  # @option params [Types::S3Settings] :s3_settings
4950
5104
  # Settings in JSON format for the target Amazon S3 endpoint. For more
4951
5105
  # information about the available settings, see [Extra Connection
4952
- # Attributes When Using Amazon S3 as a Target for AWS DMS][1] in the
4953
- # *AWS Database Migration Service User Guide.*
5106
+ # Attributes When Using Amazon S3 as a Target for DMS][1] in the
5107
+ # *Database Migration Service User Guide.*
4954
5108
  #
4955
5109
  #
4956
5110
  #
@@ -4962,60 +5116,54 @@ module Aws::DatabaseMigrationService
4962
5116
  #
4963
5117
  # Attributes include the following:
4964
5118
  #
4965
- # * serviceAccessRoleArn - The AWS Identity and Access Management (IAM)
4966
- # role that has permission to access the Amazon S3 bucket.
5119
+ # * serviceAccessRoleArn - The Identity and Access Management (IAM) role
5120
+ # that has permission to access the Amazon S3 bucket. The role must
5121
+ # allow the `iam:PassRole` action.
4967
5122
  #
4968
5123
  # * BucketName - The name of the S3 bucket to use.
4969
5124
  #
4970
- # * compressionType - An optional parameter to use GZIP to compress the
4971
- # target files. Either set this parameter to NONE (the default) or
4972
- # don't use it to leave the files uncompressed.
4973
- #
4974
5125
  # Shorthand syntax for these settings is as follows:
4975
- # `ServiceAccessRoleArn=string
4976
- # ,BucketName=string,CompressionType=string`
5126
+ # `ServiceAccessRoleArn=string ,BucketName=string`
4977
5127
  #
4978
5128
  # JSON syntax for these settings is as follows: `\{
4979
- # "ServiceAccessRoleArn": "string", "BucketName": "string",
4980
- # "CompressionType": "none"|"gzip" \} `
5129
+ # "ServiceAccessRoleArn": "string", "BucketName": "string"\} `
4981
5130
  #
4982
5131
  # @option params [Types::MongoDbSettings] :mongo_db_settings
4983
5132
  # Settings in JSON format for the source MongoDB endpoint. For more
4984
5133
  # information about the available settings, see the configuration
4985
- # properties section in [ Using MongoDB as a Target for AWS Database
4986
- # Migration Service][1] in the *AWS Database Migration Service User
4987
- # Guide.*
5134
+ # properties section in [Endpoint configuration settings when using
5135
+ # MongoDB as a source for Database Migration Service][1] in the
5136
+ # *Database Migration Service User Guide.*
4988
5137
  #
4989
5138
  #
4990
5139
  #
4991
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html
5140
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration
4992
5141
  #
4993
5142
  # @option params [Types::KinesisSettings] :kinesis_settings
4994
5143
  # Settings in JSON format for the target endpoint for Amazon Kinesis
4995
5144
  # Data Streams. For more information about the available settings, see
4996
- # [Using Amazon Kinesis Data Streams as a Target for AWS Database
4997
- # Migration Service][1] in the *AWS Database Migration Service User
4998
- # Guide.*
5145
+ # [Using object mapping to migrate data to a Kinesis data stream][1] in
5146
+ # the *Database Migration Service User Guide.*
4999
5147
  #
5000
5148
  #
5001
5149
  #
5002
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html
5150
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping
5003
5151
  #
5004
5152
  # @option params [Types::KafkaSettings] :kafka_settings
5005
5153
  # Settings in JSON format for the target Apache Kafka endpoint. For more
5006
- # information about the available settings, see [Using Apache Kafka as a
5007
- # Target for AWS Database Migration Service][1] in the *AWS Database
5008
- # Migration Service User Guide.*
5154
+ # information about the available settings, see [Using object mapping to
5155
+ # migrate data to a Kafka topic][1] in the *Database Migration Service
5156
+ # User Guide.*
5009
5157
  #
5010
5158
  #
5011
5159
  #
5012
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html
5160
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping
5013
5161
  #
5014
5162
  # @option params [Types::ElasticsearchSettings] :elasticsearch_settings
5015
5163
  # Settings in JSON format for the target Elasticsearch endpoint. For
5016
5164
  # more information about the available settings, see [Extra Connection
5017
- # Attributes When Using Elasticsearch as a Target for AWS DMS][1] in the
5018
- # *AWS Database Migration Service User Guide.*
5165
+ # Attributes When Using Elasticsearch as a Target for DMS][1] in the
5166
+ # *Database Migration Service User Guide.*
5019
5167
  #
5020
5168
  #
5021
5169
  #
@@ -5024,8 +5172,8 @@ module Aws::DatabaseMigrationService
5024
5172
  # @option params [Types::NeptuneSettings] :neptune_settings
5025
5173
  # Settings in JSON format for the target Amazon Neptune endpoint. For
5026
5174
  # more information about the available settings, see [Specifying
5027
- # Endpoint Settings for Amazon Neptune as a Target][1] in the *AWS
5028
- # Database Migration Service User Guide.*
5175
+ # graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a
5176
+ # target][1] in the *Database Migration Service User Guide.*
5029
5177
  #
5030
5178
  #
5031
5179
  #
@@ -5037,86 +5185,110 @@ module Aws::DatabaseMigrationService
5037
5185
  # @option params [Types::PostgreSQLSettings] :postgre_sql_settings
5038
5186
  # Settings in JSON format for the source and target PostgreSQL endpoint.
5039
5187
  # For information about other available settings, see [Extra connection
5040
- # attributes when using PostgreSQL as a source for AWS DMS][1] and [
5041
- # Extra connection attributes when using PostgreSQL as a target for AWS
5042
- # DMS][2] in the *AWS Database Migration Service User Guide.*
5188
+ # attributes when using PostgreSQL as a source for DMS][1] and [ Extra
5189
+ # connection attributes when using PostgreSQL as a target for DMS][2] in
5190
+ # the *Database Migration Service User Guide.*
5043
5191
  #
5044
5192
  #
5045
5193
  #
5046
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.ConnectionAttrib
5047
- # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.ConnectionAttrib
5194
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib
5195
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html#CHAP_Target.PostgreSQL.ConnectionAttrib
5048
5196
  #
5049
5197
  # @option params [Types::MySQLSettings] :my_sql_settings
5050
5198
  # Settings in JSON format for the source and target MySQL endpoint. For
5051
5199
  # information about other available settings, see [Extra connection
5052
- # attributes when using MySQL as a source for AWS DMS][1] and [Extra
5200
+ # attributes when using MySQL as a source for DMS][1] and [Extra
5053
5201
  # connection attributes when using a MySQL-compatible database as a
5054
- # target for AWS DMS][2] in the *AWS Database Migration Service User
5055
- # Guide.*
5202
+ # target for DMS][2] in the *Database Migration Service User Guide.*
5056
5203
  #
5057
5204
  #
5058
5205
  #
5059
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.ConnectionAttrib
5060
- # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.ConnectionAttrib
5206
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html#CHAP_Source.MySQL.ConnectionAttrib
5207
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html#CHAP_Target.MySQL.ConnectionAttrib
5061
5208
  #
5062
5209
  # @option params [Types::OracleSettings] :oracle_settings
5063
5210
  # Settings in JSON format for the source and target Oracle endpoint. For
5064
5211
  # information about other available settings, see [Extra connection
5065
- # attributes when using Oracle as a source for AWS DMS][1] and [ Extra
5066
- # connection attributes when using Oracle as a target for AWS DMS][2] in
5067
- # the *AWS Database Migration Service User Guide.*
5212
+ # attributes when using Oracle as a source for DMS][1] and [ Extra
5213
+ # connection attributes when using Oracle as a target for DMS][2] in the
5214
+ # *Database Migration Service User Guide.*
5068
5215
  #
5069
5216
  #
5070
5217
  #
5071
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.ConnectionAttrib
5072
- # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.ConnectionAttrib
5218
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.ConnectionAttrib
5219
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html#CHAP_Target.Oracle.ConnectionAttrib
5073
5220
  #
5074
5221
  # @option params [Types::SybaseSettings] :sybase_settings
5075
5222
  # Settings in JSON format for the source and target SAP ASE endpoint.
5076
5223
  # For information about other available settings, see [Extra connection
5077
- # attributes when using SAP ASE as a source for AWS DMS][1] and [Extra
5078
- # connection attributes when using SAP ASE as a target for AWS DMS][2]
5079
- # in the *AWS Database Migration Service User Guide.*
5224
+ # attributes when using SAP ASE as a source for DMS][1] and [Extra
5225
+ # connection attributes when using SAP ASE as a target for DMS][2] in
5226
+ # the *Database Migration Service User Guide.*
5080
5227
  #
5081
5228
  #
5082
5229
  #
5083
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.ConnectionAttrib
5084
- # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.ConnectionAttrib
5230
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html#CHAP_Source.SAP.ConnectionAttrib
5231
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html#CHAP_Target.SAP.ConnectionAttrib
5085
5232
  #
5086
5233
  # @option params [Types::MicrosoftSQLServerSettings] :microsoft_sql_server_settings
5087
5234
  # Settings in JSON format for the source and target Microsoft SQL Server
5088
5235
  # endpoint. For information about other available settings, see [Extra
5089
- # connection attributes when using SQL Server as a source for AWS
5090
- # DMS][1] and [ Extra connection attributes when using SQL Server as a
5091
- # target for AWS DMS][2] in the *AWS Database Migration Service User
5092
- # Guide.*
5236
+ # connection attributes when using SQL Server as a source for DMS][1]
5237
+ # and [ Extra connection attributes when using SQL Server as a target
5238
+ # for DMS][2] in the *Database Migration Service User Guide.*
5093
5239
  #
5094
5240
  #
5095
5241
  #
5096
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.ConnectionAttrib
5097
- # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.ConnectionAttrib
5242
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html#CHAP_Source.SQLServer.ConnectionAttrib
5243
+ # [2]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html#CHAP_Target.SQLServer.ConnectionAttrib
5098
5244
  #
5099
5245
  # @option params [Types::IBMDb2Settings] :ibm_db_2_settings
5100
5246
  # Settings in JSON format for the source IBM Db2 LUW endpoint. For
5101
5247
  # information about other available settings, see [Extra connection
5102
- # attributes when using Db2 LUW as a source for AWS DMS][1] in the *AWS
5103
- # Database Migration Service User Guide.*
5248
+ # attributes when using Db2 LUW as a source for DMS][1] in the *Database
5249
+ # Migration Service User Guide.*
5104
5250
  #
5105
5251
  #
5106
5252
  #
5107
- # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.ConnectionAttrib
5253
+ # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html#CHAP_Source.DB2.ConnectionAttrib
5108
5254
  #
5109
5255
  # @option params [Types::DocDbSettings] :doc_db_settings
5110
5256
  # Settings in JSON format for the source DocumentDB endpoint. For more
5111
5257
  # information about the available settings, see the configuration
5112
- # properties section in [ Using DocumentDB as a Target for AWS Database
5113
- # Migration Service][1] in the *AWS Database Migration Service User
5114
- # Guide.*
5258
+ # properties section in [ Using DocumentDB as a Target for Database
5259
+ # Migration Service ][1] in the *Database Migration Service User Guide.*
5115
5260
  #
5116
5261
  #
5117
5262
  #
5118
5263
  # [1]: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DocumentDB.html
5119
5264
  #
5265
+ # @option params [Types::RedisSettings] :redis_settings
5266
+ # Settings in JSON format for the Redis target endpoint.
5267
+ #
5268
+ # @option params [Boolean] :exact_settings
5269
+ # If this attribute is Y, the current call to `ModifyEndpoint` replaces
5270
+ # all existing endpoint settings with the exact settings that you
5271
+ # specify in this call. If this attribute is N, the current call to
5272
+ # `ModifyEndpoint` does two things:
5273
+ #
5274
+ # * It replaces any endpoint settings that already exist with new
5275
+ # values, for settings with the same names.
5276
+ #
5277
+ # * It creates new endpoint settings that you specify in the call, for
5278
+ # settings with different names.
5279
+ #
5280
+ # For example, if you call `create-endpoint ... --endpoint-settings
5281
+ # '\{"a":1\}' ...`, the endpoint has the following endpoint settings:
5282
+ # `'\{"a":1\}'`. If you then call `modify-endpoint ...
5283
+ # --endpoint-settings '\{"b":2\}' ...` for the same endpoint, the
5284
+ # endpoint has the following settings: `'\{"a":1,"b":2\}'`.
5285
+ #
5286
+ # However, suppose that you follow this with a call to `modify-endpoint
5287
+ # ... --endpoint-settings '\{"b":2\}' --exact-settings ...` for that
5288
+ # same endpoint again. Then the endpoint has the following settings:
5289
+ # `'\{"b":2\}'`. All existing settings are replaced with the exact
5290
+ # settings that you specify.
5291
+ #
5120
5292
  # @return [Types::ModifyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5121
5293
  #
5122
5294
  # * {Types::ModifyEndpointResponse#endpoint #endpoint} => Types::Endpoint
@@ -5196,6 +5368,14 @@ module Aws::DatabaseMigrationService
5196
5368
  # csv_no_sup_value: "String",
5197
5369
  # preserve_transactions: false,
5198
5370
  # cdc_path: "String",
5371
+ # canned_acl_for_objects: "none", # accepts none, private, public-read, public-read-write, authenticated-read, aws-exec-read, bucket-owner-read, bucket-owner-full-control
5372
+ # add_column_name: false,
5373
+ # cdc_max_batch_interval: 1,
5374
+ # cdc_min_file_size: 1,
5375
+ # csv_null_value: "String",
5376
+ # ignore_header_rows: 1,
5377
+ # max_file_size: 1,
5378
+ # rfc_4180: false,
5199
5379
  # },
5200
5380
  # dms_transfer_settings: {
5201
5381
  # service_access_role_arn: "String",
@@ -5227,6 +5407,7 @@ module Aws::DatabaseMigrationService
5227
5407
  # include_table_alter_operations: false,
5228
5408
  # include_control_details: false,
5229
5409
  # include_null_and_empty: false,
5410
+ # no_hex_prefix: false,
5230
5411
  # },
5231
5412
  # kafka_settings: {
5232
5413
  # broker: "String",
@@ -5246,6 +5427,7 @@ module Aws::DatabaseMigrationService
5246
5427
  # ssl_ca_certificate_arn: "String",
5247
5428
  # sasl_username: "String",
5248
5429
  # sasl_password: "SecretString",
5430
+ # no_hex_prefix: false,
5249
5431
  # },
5250
5432
  # elasticsearch_settings: {
5251
5433
  # service_access_role_arn: "String", # required
@@ -5302,11 +5484,15 @@ module Aws::DatabaseMigrationService
5302
5484
  # ddl_artifacts_schema: "String",
5303
5485
  # execute_timeout: 1,
5304
5486
  # fail_tasks_on_lob_truncation: false,
5487
+ # heartbeat_enable: false,
5488
+ # heartbeat_schema: "String",
5489
+ # heartbeat_frequency: 1,
5305
5490
  # password: "SecretString",
5306
5491
  # port: 1,
5307
5492
  # server_name: "String",
5308
5493
  # username: "String",
5309
5494
  # slot_name: "String",
5495
+ # plugin_name: "no-preference", # accepts no-preference, test-decoding, pglogical
5310
5496
  # secrets_manager_access_role_arn: "String",
5311
5497
  # secrets_manager_secret_id: "String",
5312
5498
  # },
@@ -5330,6 +5516,7 @@ module Aws::DatabaseMigrationService
5330
5516
  # add_supplemental_logging: false,
5331
5517
  # archived_log_dest_id: 1,
5332
5518
  # additional_archived_log_dest_id: 1,
5519
+ # extra_archived_log_dest_ids: [1],
5333
5520
  # allow_select_nested_tables: false,
5334
5521
  # parallel_asm_read_threads: 1,
5335
5522
  # read_ahead_blocks: 1,
@@ -5357,7 +5544,11 @@ module Aws::DatabaseMigrationService
5357
5544
  # security_db_encryption_name: "String",
5358
5545
  # server_name: "String",
5359
5546
  # spatial_data_option_to_geo_json_function_name: "String",
5547
+ # standby_delay_time: 1,
5360
5548
  # username: "String",
5549
+ # use_b_file: false,
5550
+ # use_direct_path_full_load: false,
5551
+ # use_logminer_reader: false,
5361
5552
  # secrets_manager_access_role_arn: "String",
5362
5553
  # secrets_manager_secret_id: "String",
5363
5554
  # secrets_manager_oracle_asm_access_role_arn: "String",
@@ -5413,6 +5604,16 @@ module Aws::DatabaseMigrationService
5413
5604
  # secrets_manager_access_role_arn: "String",
5414
5605
  # secrets_manager_secret_id: "String",
5415
5606
  # },
5607
+ # redis_settings: {
5608
+ # server_name: "String", # required
5609
+ # port: 1, # required
5610
+ # ssl_security_protocol: "plaintext", # accepts plaintext, ssl-encryption
5611
+ # auth_type: "none", # accepts none, auth-role, auth-token
5612
+ # auth_user_name: "String",
5613
+ # auth_password: "SecretString",
5614
+ # ssl_ca_certificate_arn: "String",
5615
+ # },
5616
+ # exact_settings: false,
5416
5617
  # })
5417
5618
  #
5418
5619
  # @example Response structure
@@ -5463,6 +5664,14 @@ module Aws::DatabaseMigrationService
5463
5664
  # resp.endpoint.s3_settings.csv_no_sup_value #=> String
5464
5665
  # resp.endpoint.s3_settings.preserve_transactions #=> Boolean
5465
5666
  # resp.endpoint.s3_settings.cdc_path #=> String
5667
+ # resp.endpoint.s3_settings.canned_acl_for_objects #=> String, one of "none", "private", "public-read", "public-read-write", "authenticated-read", "aws-exec-read", "bucket-owner-read", "bucket-owner-full-control"
5668
+ # resp.endpoint.s3_settings.add_column_name #=> Boolean
5669
+ # resp.endpoint.s3_settings.cdc_max_batch_interval #=> Integer
5670
+ # resp.endpoint.s3_settings.cdc_min_file_size #=> Integer
5671
+ # resp.endpoint.s3_settings.csv_null_value #=> String
5672
+ # resp.endpoint.s3_settings.ignore_header_rows #=> Integer
5673
+ # resp.endpoint.s3_settings.max_file_size #=> Integer
5674
+ # resp.endpoint.s3_settings.rfc_4180 #=> Boolean
5466
5675
  # resp.endpoint.dms_transfer_settings.service_access_role_arn #=> String
5467
5676
  # resp.endpoint.dms_transfer_settings.bucket_name #=> String
5468
5677
  # resp.endpoint.mongo_db_settings.username #=> String
@@ -5488,6 +5697,7 @@ module Aws::DatabaseMigrationService
5488
5697
  # resp.endpoint.kinesis_settings.include_table_alter_operations #=> Boolean
5489
5698
  # resp.endpoint.kinesis_settings.include_control_details #=> Boolean
5490
5699
  # resp.endpoint.kinesis_settings.include_null_and_empty #=> Boolean
5700
+ # resp.endpoint.kinesis_settings.no_hex_prefix #=> Boolean
5491
5701
  # resp.endpoint.kafka_settings.broker #=> String
5492
5702
  # resp.endpoint.kafka_settings.topic #=> String
5493
5703
  # resp.endpoint.kafka_settings.message_format #=> String, one of "json", "json-unformatted"
@@ -5505,6 +5715,7 @@ module Aws::DatabaseMigrationService
5505
5715
  # resp.endpoint.kafka_settings.ssl_ca_certificate_arn #=> String
5506
5716
  # resp.endpoint.kafka_settings.sasl_username #=> String
5507
5717
  # resp.endpoint.kafka_settings.sasl_password #=> String
5718
+ # resp.endpoint.kafka_settings.no_hex_prefix #=> Boolean
5508
5719
  # resp.endpoint.elasticsearch_settings.service_access_role_arn #=> String
5509
5720
  # resp.endpoint.elasticsearch_settings.endpoint_uri #=> String
5510
5721
  # resp.endpoint.elasticsearch_settings.full_load_error_percentage #=> Integer
@@ -5553,11 +5764,15 @@ module Aws::DatabaseMigrationService
5553
5764
  # resp.endpoint.postgre_sql_settings.ddl_artifacts_schema #=> String
5554
5765
  # resp.endpoint.postgre_sql_settings.execute_timeout #=> Integer
5555
5766
  # resp.endpoint.postgre_sql_settings.fail_tasks_on_lob_truncation #=> Boolean
5767
+ # resp.endpoint.postgre_sql_settings.heartbeat_enable #=> Boolean
5768
+ # resp.endpoint.postgre_sql_settings.heartbeat_schema #=> String
5769
+ # resp.endpoint.postgre_sql_settings.heartbeat_frequency #=> Integer
5556
5770
  # resp.endpoint.postgre_sql_settings.password #=> String
5557
5771
  # resp.endpoint.postgre_sql_settings.port #=> Integer
5558
5772
  # resp.endpoint.postgre_sql_settings.server_name #=> String
5559
5773
  # resp.endpoint.postgre_sql_settings.username #=> String
5560
5774
  # resp.endpoint.postgre_sql_settings.slot_name #=> String
5775
+ # resp.endpoint.postgre_sql_settings.plugin_name #=> String, one of "no-preference", "test-decoding", "pglogical"
5561
5776
  # resp.endpoint.postgre_sql_settings.secrets_manager_access_role_arn #=> String
5562
5777
  # resp.endpoint.postgre_sql_settings.secrets_manager_secret_id #=> String
5563
5778
  # resp.endpoint.my_sql_settings.after_connect_script #=> String
@@ -5577,6 +5792,8 @@ module Aws::DatabaseMigrationService
5577
5792
  # resp.endpoint.oracle_settings.add_supplemental_logging #=> Boolean
5578
5793
  # resp.endpoint.oracle_settings.archived_log_dest_id #=> Integer
5579
5794
  # resp.endpoint.oracle_settings.additional_archived_log_dest_id #=> Integer
5795
+ # resp.endpoint.oracle_settings.extra_archived_log_dest_ids #=> Array
5796
+ # resp.endpoint.oracle_settings.extra_archived_log_dest_ids[0] #=> Integer
5580
5797
  # resp.endpoint.oracle_settings.allow_select_nested_tables #=> Boolean
5581
5798
  # resp.endpoint.oracle_settings.parallel_asm_read_threads #=> Integer
5582
5799
  # resp.endpoint.oracle_settings.read_ahead_blocks #=> Integer
@@ -5604,7 +5821,11 @@ module Aws::DatabaseMigrationService
5604
5821
  # resp.endpoint.oracle_settings.security_db_encryption_name #=> String
5605
5822
  # resp.endpoint.oracle_settings.server_name #=> String
5606
5823
  # resp.endpoint.oracle_settings.spatial_data_option_to_geo_json_function_name #=> String
5824
+ # resp.endpoint.oracle_settings.standby_delay_time #=> Integer
5607
5825
  # resp.endpoint.oracle_settings.username #=> String
5826
+ # resp.endpoint.oracle_settings.use_b_file #=> Boolean
5827
+ # resp.endpoint.oracle_settings.use_direct_path_full_load #=> Boolean
5828
+ # resp.endpoint.oracle_settings.use_logminer_reader #=> Boolean
5608
5829
  # resp.endpoint.oracle_settings.secrets_manager_access_role_arn #=> String
5609
5830
  # resp.endpoint.oracle_settings.secrets_manager_secret_id #=> String
5610
5831
  # resp.endpoint.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
@@ -5651,6 +5872,13 @@ module Aws::DatabaseMigrationService
5651
5872
  # resp.endpoint.doc_db_settings.kms_key_id #=> String
5652
5873
  # resp.endpoint.doc_db_settings.secrets_manager_access_role_arn #=> String
5653
5874
  # resp.endpoint.doc_db_settings.secrets_manager_secret_id #=> String
5875
+ # resp.endpoint.redis_settings.server_name #=> String
5876
+ # resp.endpoint.redis_settings.port #=> Integer
5877
+ # resp.endpoint.redis_settings.ssl_security_protocol #=> String, one of "plaintext", "ssl-encryption"
5878
+ # resp.endpoint.redis_settings.auth_type #=> String, one of "none", "auth-role", "auth-token"
5879
+ # resp.endpoint.redis_settings.auth_user_name #=> String
5880
+ # resp.endpoint.redis_settings.auth_password #=> String
5881
+ # resp.endpoint.redis_settings.ssl_ca_certificate_arn #=> String
5654
5882
  #
5655
5883
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint AWS API Documentation
5656
5884
  #
@@ -5661,11 +5889,10 @@ module Aws::DatabaseMigrationService
5661
5889
  req.send_request(options)
5662
5890
  end
5663
5891
 
5664
- # Modifies an existing AWS DMS event notification subscription.
5892
+ # Modifies an existing DMS event notification subscription.
5665
5893
  #
5666
5894
  # @option params [required, String] :subscription_name
5667
- # The name of the AWS DMS event notification subscription to be
5668
- # modified.
5895
+ # The name of the DMS event notification subscription to be modified.
5669
5896
  #
5670
5897
  # @option params [String] :sns_topic_arn
5671
5898
  # The Amazon Resource Name (ARN) of the Amazon SNS topic created for
@@ -5673,7 +5900,7 @@ module Aws::DatabaseMigrationService
5673
5900
  # topic and subscribe to it.
5674
5901
  #
5675
5902
  # @option params [String] :source_type
5676
- # The type of AWS DMS resource that generates the events you want to
5903
+ # The type of DMS resource that generates the events you want to
5677
5904
  # subscribe to.
5678
5905
  #
5679
5906
  # Valid values: replication-instance \| replication-task
@@ -5747,7 +5974,7 @@ module Aws::DatabaseMigrationService
5747
5974
  # `"dms.c4.large"`.
5748
5975
  #
5749
5976
  # For more information on the settings and capacities for the available
5750
- # replication instance classes, see [ Selecting the right AWS DMS
5977
+ # replication instance classes, see [ Selecting the right DMS
5751
5978
  # replication instance for your migration][1].
5752
5979
  #
5753
5980
  #
@@ -5809,7 +6036,7 @@ module Aws::DatabaseMigrationService
5809
6036
  #
5810
6037
  # * A newer minor version is available.
5811
6038
  #
5812
- # * AWS DMS has enabled automatic patching for the given engine version.
6039
+ # * DMS has enabled automatic patching for the given engine version.
5813
6040
  #
5814
6041
  # @option params [String] :replication_instance_identifier
5815
6042
  # The replication instance identifier. This parameter is stored as a
@@ -6025,8 +6252,8 @@ module Aws::DatabaseMigrationService
6025
6252
  # You can't modify the task endpoints. The task must be stopped before
6026
6253
  # you can modify it.
6027
6254
  #
6028
- # For more information about AWS DMS tasks, see [Working with Migration
6029
- # Tasks][1] in the *AWS Database Migration Service User Guide*.
6255
+ # For more information about DMS tasks, see [Working with Migration
6256
+ # Tasks][1] in the *Database Migration Service User Guide*.
6030
6257
  #
6031
6258
  #
6032
6259
  #
@@ -6051,8 +6278,8 @@ module Aws::DatabaseMigrationService
6051
6278
  # `full-load-and-cdc`
6052
6279
  #
6053
6280
  # @option params [String] :table_mappings
6054
- # When using the AWS CLI or boto3, provide the path of the JSON file
6055
- # that contains the table mappings. Precede the path with `file://`. For
6281
+ # When using the CLI or boto3, provide the path of the JSON file that
6282
+ # contains the table mappings. Precede the path with `file://`. For
6056
6283
  # example, `--table-mappings file://mappingfile.json`. When working with
6057
6284
  # the DMS API, provide the JSON as the parameter value.
6058
6285
  #
@@ -6087,7 +6314,7 @@ module Aws::DatabaseMigrationService
6087
6314
  # the source endpoint. You can verify this by setting the `slotName`
6088
6315
  # extra connection attribute to the name of this logical replication
6089
6316
  # slot. For more information, see [Extra Connection Attributes When
6090
- # Using PostgreSQL as a Source for AWS DMS][1].
6317
+ # Using PostgreSQL as a Source for DMS][1].
6091
6318
  #
6092
6319
  # </note>
6093
6320
  #
@@ -6108,8 +6335,8 @@ module Aws::DatabaseMigrationService
6108
6335
  # @option params [String] :task_data
6109
6336
  # Supplemental information that the task requires to migrate the data
6110
6337
  # for certain source and target endpoints. For more information, see
6111
- # [Specifying Supplemental Data for Task Settings][1] in the *AWS
6112
- # Database Migration Service User Guide.*
6338
+ # [Specifying Supplemental Data for Task Settings][1] in the *Database
6339
+ # Migration Service User Guide.*
6113
6340
  #
6114
6341
  #
6115
6342
  #
@@ -6177,7 +6404,7 @@ module Aws::DatabaseMigrationService
6177
6404
  # Moves a replication task from its current replication instance to a
6178
6405
  # different target replication instance using the specified parameters.
6179
6406
  # The target replication instance must be created with the same or later
6180
- # AWS DMS version as the current replication instance.
6407
+ # DMS version as the current replication instance.
6181
6408
  #
6182
6409
  # @option params [required, String] :replication_task_arn
6183
6410
  # The Amazon Resource Name (ARN) of the task that you want to move.
@@ -6414,7 +6641,7 @@ module Aws::DatabaseMigrationService
6414
6641
  req.send_request(options)
6415
6642
  end
6416
6643
 
6417
- # Removes metadata tags from an AWS DMS resource, including replication
6644
+ # Removes metadata tags from an DMS resource, including replication
6418
6645
  # instance, endpoint, security group, and migration task. For more
6419
6646
  # information, see [ `Tag` ][1] data type description.
6420
6647
  #
@@ -6423,8 +6650,8 @@ module Aws::DatabaseMigrationService
6423
6650
  # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html
6424
6651
  #
6425
6652
  # @option params [required, String] :resource_arn
6426
- # An AWS DMS resource from which you want to remove tag(s). The value
6427
- # for this parameter is an Amazon Resource Name (ARN).
6653
+ # An DMS resource from which you want to remove tag(s). The value for
6654
+ # this parameter is an Amazon Resource Name (ARN).
6428
6655
  #
6429
6656
  # @option params [required, Array<String>] :tag_keys
6430
6657
  # The tag key (name) of the tag to be removed.
@@ -6464,8 +6691,8 @@ module Aws::DatabaseMigrationService
6464
6691
 
6465
6692
  # Starts the replication task.
6466
6693
  #
6467
- # For more information about AWS DMS tasks, see [Working with Migration
6468
- # Tasks ][1] in the *AWS Database Migration Service User Guide.*
6694
+ # For more information about DMS tasks, see [Working with Migration
6695
+ # Tasks ][1] in the *Database Migration Service User Guide.*
6469
6696
  #
6470
6697
  #
6471
6698
  #
@@ -6504,7 +6731,7 @@ module Aws::DatabaseMigrationService
6504
6731
  # the source endpoint. You can verify this by setting the `slotName`
6505
6732
  # extra connection attribute to the name of this logical replication
6506
6733
  # slot. For more information, see [Extra Connection Attributes When
6507
- # Using PostgreSQL as a Source for AWS DMS][1].
6734
+ # Using PostgreSQL as a Source for DMS][1].
6508
6735
  #
6509
6736
  # </note>
6510
6737
  #
@@ -6676,26 +6903,27 @@ module Aws::DatabaseMigrationService
6676
6903
  # premigration assessment run that you want to start.
6677
6904
  #
6678
6905
  # @option params [required, String] :service_access_role_arn
6679
- # ARN of a service role needed to start the assessment run.
6906
+ # ARN of the service role needed to start the assessment run. The role
6907
+ # must allow the `iam:PassRole` action.
6680
6908
  #
6681
6909
  # @option params [required, String] :result_location_bucket
6682
- # Amazon S3 bucket where you want AWS DMS to store the results of this
6910
+ # Amazon S3 bucket where you want DMS to store the results of this
6683
6911
  # assessment run.
6684
6912
  #
6685
6913
  # @option params [String] :result_location_folder
6686
- # Folder within an Amazon S3 bucket where you want AWS DMS to store the
6914
+ # Folder within an Amazon S3 bucket where you want DMS to store the
6687
6915
  # results of this assessment run.
6688
6916
  #
6689
6917
  # @option params [String] :result_encryption_mode
6690
6918
  # Encryption mode that you can specify to encrypt the results of this
6691
- # assessment run. If you don't specify this request parameter, AWS DMS
6919
+ # assessment run. If you don't specify this request parameter, DMS
6692
6920
  # stores the assessment run results without encryption. You can specify
6693
6921
  # one of the options following:
6694
6922
  #
6695
6923
  # * `"SSE_S3"` – The server-side encryption provided as a default by
6696
6924
  # Amazon S3.
6697
6925
  #
6698
- # * `"SSE_KMS"` – AWS Key Management Service (AWS KMS) encryption. This
6926
+ # * `"SSE_KMS"` – Key Management Service (KMS) encryption. This
6699
6927
  # encryption can use either a custom KMS encryption key that you
6700
6928
  # specify or the default KMS encryption key that DMS provides.
6701
6929
  #
@@ -6709,14 +6937,14 @@ module Aws::DatabaseMigrationService
6709
6937
  # @option params [Array<String>] :include_only
6710
6938
  # Space-separated list of names for specific individual assessments that
6711
6939
  # you want to include. These names come from the default list of
6712
- # individual assessments that AWS DMS supports for the associated
6713
- # migration task. This task is specified by `ReplicationTaskArn`.
6940
+ # individual assessments that DMS supports for the associated migration
6941
+ # task. This task is specified by `ReplicationTaskArn`.
6714
6942
  #
6715
6943
  # <note markdown="1"> You can't set a value for `IncludeOnly` if you also set a value for
6716
6944
  # `Exclude` in the API operation.
6717
6945
  #
6718
- # To identify the names of the default individual assessments that AWS
6719
- # DMS supports for the associated migration task, run the
6946
+ # To identify the names of the default individual assessments that DMS
6947
+ # supports for the associated migration task, run the
6720
6948
  # `DescribeApplicableIndividualAssessments` operation using its own
6721
6949
  # `ReplicationTaskArn` request parameter.
6722
6950
  #
@@ -6725,14 +6953,14 @@ module Aws::DatabaseMigrationService
6725
6953
  # @option params [Array<String>] :exclude
6726
6954
  # Space-separated list of names for specific individual assessments that
6727
6955
  # you want to exclude. These names come from the default list of
6728
- # individual assessments that AWS DMS supports for the associated
6729
- # migration task. This task is specified by `ReplicationTaskArn`.
6956
+ # individual assessments that DMS supports for the associated migration
6957
+ # task. This task is specified by `ReplicationTaskArn`.
6730
6958
  #
6731
6959
  # <note markdown="1"> You can't set a value for `Exclude` if you also set a value for
6732
6960
  # `IncludeOnly` in the API operation.
6733
6961
  #
6734
- # To identify the names of the default individual assessments that AWS
6735
- # DMS supports for the associated migration task, run the
6962
+ # To identify the names of the default individual assessments that DMS
6963
+ # supports for the associated migration task, run the
6736
6964
  # `DescribeApplicableIndividualAssessments` operation using its own
6737
6965
  # `ReplicationTaskArn` request parameter.
6738
6966
  #
@@ -6930,7 +7158,7 @@ module Aws::DatabaseMigrationService
6930
7158
  params: params,
6931
7159
  config: config)
6932
7160
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
6933
- context[:gem_version] = '1.53.0'
7161
+ context[:gem_version] = '1.57.0'
6934
7162
  Seahorse::Client::Request.new(handlers, context)
6935
7163
  end
6936
7164