aws-sdk-rds 1.103.0 → 1.108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/aws-sdk-rds.rb +1 -1
 - data/lib/aws-sdk-rds/client.rb +596 -196
 - data/lib/aws-sdk-rds/client_api.rb +76 -5
 - data/lib/aws-sdk-rds/db_cluster.rb +68 -43
 - data/lib/aws-sdk-rds/db_cluster_snapshot.rb +40 -22
 - data/lib/aws-sdk-rds/db_engine_version.rb +0 -6
 - data/lib/aws-sdk-rds/db_instance.rb +86 -72
 - data/lib/aws-sdk-rds/db_snapshot.rb +36 -18
 - data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +11 -12
 - data/lib/aws-sdk-rds/resource.rb +49 -66
 - data/lib/aws-sdk-rds/types.rb +525 -261
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 3f30d43719089ac6bd89890d5d18b2fa84346d3fd64107bc2347015bbfbd0fca
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 156c98334b4a75d079f4c149c0ed354c3a1b4be7670bcc3d9668e436a45d4356
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 43cbaa0665a48597ee22cb74f03005c2e6d86a56b82d6d6114ad5ec390cfe8935749fff9575563fe678287309de73be40018710f33a066e928b95675d16f84a3
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: aa15fa9029fd7d3760a841422915ccd7561283d6298996fc464b841248bc41903ac940e4ec6f32bcc8a7423115609c8ccd82124459335549235151bd0a1c1880
         
     | 
    
        data/lib/aws-sdk-rds.rb
    CHANGED
    
    
    
        data/lib/aws-sdk-rds/client.rb
    CHANGED
    
    | 
         @@ -347,7 +347,7 @@ module Aws::RDS 
     | 
|
| 
       347 
347 
     | 
    
         
             
                #
         
     | 
| 
       348 
348 
     | 
    
         
             
                # @option params [required, String] :role_arn
         
     | 
| 
       349 
349 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) of the IAM role to associate with the
         
     | 
| 
       350 
     | 
    
         
            -
                #   Aurora DB cluster, for example
         
     | 
| 
      
 350 
     | 
    
         
            +
                #   Aurora DB cluster, for example,
         
     | 
| 
       351 
351 
     | 
    
         
             
                #   `arn:aws:iam::123456789012:role/AuroraAccessRole`.
         
     | 
| 
       352 
352 
     | 
    
         
             
                #
         
     | 
| 
       353 
353 
     | 
    
         
             
                # @option params [String] :feature_name
         
     | 
| 
         @@ -1031,11 +1031,12 @@ module Aws::RDS 
     | 
|
| 
       1031 
1031 
     | 
    
         
             
                #   The pre-signed URL request must contain the following parameter
         
     | 
| 
       1032 
1032 
     | 
    
         
             
                #   values:
         
     | 
| 
       1033 
1033 
     | 
    
         
             
                #
         
     | 
| 
       1034 
     | 
    
         
            -
                #   * `KmsKeyId` - The KMS key identifier for the  
     | 
| 
       1035 
     | 
    
         
            -
                #     the copy of the DB cluster snapshot in 
     | 
| 
       1036 
     | 
    
         
            -
                #     This is the same identifier for both 
     | 
| 
       1037 
     | 
    
         
            -
                #     action that is called in the 
     | 
| 
       1038 
     | 
    
         
            -
                #     action contained in the pre-signed 
     | 
| 
      
 1034 
     | 
    
         
            +
                #   * `KmsKeyId` - The AWS KMS key identifier for the customer master
         
     | 
| 
      
 1035 
     | 
    
         
            +
                #     key (CMK) to use to encrypt the copy of the DB cluster snapshot in
         
     | 
| 
      
 1036 
     | 
    
         
            +
                #     the destination AWS Region. This is the same identifier for both
         
     | 
| 
      
 1037 
     | 
    
         
            +
                #     the `CopyDBClusterSnapshot` action that is called in the
         
     | 
| 
      
 1038 
     | 
    
         
            +
                #     destination AWS Region, and the action contained in the pre-signed
         
     | 
| 
      
 1039 
     | 
    
         
            +
                #     URL.
         
     | 
| 
       1039 
1040 
     | 
    
         
             
                #
         
     | 
| 
       1040 
1041 
     | 
    
         
             
                #   * `DestinationRegion` - The name of the AWS Region that the DB
         
     | 
| 
       1041 
1042 
     | 
    
         
             
                #     cluster snapshot is to be created in.
         
     | 
| 
         @@ -1132,25 +1133,25 @@ module Aws::RDS 
     | 
|
| 
       1132 
1133 
     | 
    
         
             
                #   Example: `my-cluster-snapshot2`
         
     | 
| 
       1133 
1134 
     | 
    
         
             
                #
         
     | 
| 
       1134 
1135 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       1135 
     | 
    
         
            -
                #   The AWS KMS key  
     | 
| 
       1136 
     | 
    
         
            -
                #    
     | 
| 
       1137 
     | 
    
         
            -
                #    
     | 
| 
      
 1136 
     | 
    
         
            +
                #   The AWS KMS key identifier for an encrypted DB cluster snapshot. The
         
     | 
| 
      
 1137 
     | 
    
         
            +
                #   AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 1138 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK).
         
     | 
| 
       1138 
1139 
     | 
    
         
             
                #
         
     | 
| 
       1139 
1140 
     | 
    
         
             
                #   If you copy an encrypted DB cluster snapshot from your AWS account,
         
     | 
| 
       1140 
1141 
     | 
    
         
             
                #   you can specify a value for `KmsKeyId` to encrypt the copy with a new
         
     | 
| 
       1141 
     | 
    
         
            -
                #   KMS  
     | 
| 
       1142 
     | 
    
         
            -
                #    
     | 
| 
      
 1142 
     | 
    
         
            +
                #   AWS KMS CMK. If you don't specify a value for `KmsKeyId`, then the
         
     | 
| 
      
 1143 
     | 
    
         
            +
                #   copy of the DB cluster snapshot is encrypted with the same AWS KMS key
         
     | 
| 
       1143 
1144 
     | 
    
         
             
                #   as the source DB cluster snapshot.
         
     | 
| 
       1144 
1145 
     | 
    
         
             
                #
         
     | 
| 
       1145 
1146 
     | 
    
         
             
                #   If you copy an encrypted DB cluster snapshot that is shared from
         
     | 
| 
       1146 
1147 
     | 
    
         
             
                #   another AWS account, then you must specify a value for `KmsKeyId`.
         
     | 
| 
       1147 
1148 
     | 
    
         
             
                #
         
     | 
| 
       1148 
1149 
     | 
    
         
             
                #   To copy an encrypted DB cluster snapshot to another AWS Region, you
         
     | 
| 
       1149 
     | 
    
         
            -
                #   must set `KmsKeyId` to the KMS key  
     | 
| 
       1150 
     | 
    
         
            -
                #   copy of the DB cluster snapshot in the destination AWS 
     | 
| 
       1151 
     | 
    
         
            -
                #    
     | 
| 
       1152 
     | 
    
         
            -
                #   in, and you can't use  
     | 
| 
       1153 
     | 
    
         
            -
                #    
     | 
| 
      
 1150 
     | 
    
         
            +
                #   must set `KmsKeyId` to the AWS KMS key identifier you want to use to
         
     | 
| 
      
 1151 
     | 
    
         
            +
                #   encrypt the copy of the DB cluster snapshot in the destination AWS
         
     | 
| 
      
 1152 
     | 
    
         
            +
                #   Region. AWS KMS CMKs are specific to the AWS Region that they are
         
     | 
| 
      
 1153 
     | 
    
         
            +
                #   created in, and you can't use CMKs from one AWS Region in another AWS
         
     | 
| 
      
 1154 
     | 
    
         
            +
                #   Region.
         
     | 
| 
       1154 
1155 
     | 
    
         
             
                #
         
     | 
| 
       1155 
1156 
     | 
    
         
             
                #   If you copy an unencrypted DB cluster snapshot and specify a value for
         
     | 
| 
       1156 
1157 
     | 
    
         
             
                #   the `KmsKeyId` parameter, an error is returned.
         
     | 
| 
         @@ -1169,9 +1170,9 @@ module Aws::RDS 
     | 
|
| 
       1169 
1170 
     | 
    
         
             
                #   copied. The pre-signed URL request must contain the following
         
     | 
| 
       1170 
1171 
     | 
    
         
             
                #   parameter values:
         
     | 
| 
       1171 
1172 
     | 
    
         
             
                #
         
     | 
| 
       1172 
     | 
    
         
            -
                #   * `KmsKeyId` - The AWS KMS key identifier for the  
     | 
| 
       1173 
     | 
    
         
            -
                #     encrypt the copy of the DB cluster snapshot in the 
     | 
| 
       1174 
     | 
    
         
            -
                #     Region. This is the same identifier for both the
         
     | 
| 
      
 1173 
     | 
    
         
            +
                #   * `KmsKeyId` - The AWS KMS key identifier for the customer master key
         
     | 
| 
      
 1174 
     | 
    
         
            +
                #     (CMK) to use to encrypt the copy of the DB cluster snapshot in the
         
     | 
| 
      
 1175 
     | 
    
         
            +
                #     destination AWS Region. This is the same identifier for both the
         
     | 
| 
       1175 
1176 
     | 
    
         
             
                #     `CopyDBClusterSnapshot` action that is called in the destination AWS
         
     | 
| 
       1176 
1177 
     | 
    
         
             
                #     Region, and the action contained in the pre-signed URL.
         
     | 
| 
       1177 
1178 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1281,6 +1282,9 @@ module Aws::RDS 
     | 
|
| 
       1281 
1282 
     | 
    
         
             
                #   resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
         
     | 
| 
       1282 
1283 
     | 
    
         
             
                #   resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
         
     | 
| 
       1283 
1284 
     | 
    
         
             
                #   resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 1285 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list #=> Array
         
     | 
| 
      
 1286 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list[0].key #=> String
         
     | 
| 
      
 1287 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list[0].value #=> String
         
     | 
| 
       1284 
1288 
     | 
    
         
             
                #
         
     | 
| 
       1285 
1289 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
         
     | 
| 
       1286 
1290 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1387,7 +1391,7 @@ module Aws::RDS 
     | 
|
| 
       1387 
1391 
     | 
    
         
             
                end
         
     | 
| 
       1388 
1392 
     | 
    
         | 
| 
       1389 
1393 
     | 
    
         
             
                # Copies the specified DB snapshot. The source DB snapshot must be in
         
     | 
| 
       1390 
     | 
    
         
            -
                # the `available`  
     | 
| 
      
 1394 
     | 
    
         
            +
                # the `available` state.
         
     | 
| 
       1391 
1395 
     | 
    
         
             
                #
         
     | 
| 
       1392 
1396 
     | 
    
         
             
                # You can copy a snapshot from one AWS Region to another. In that case,
         
     | 
| 
       1393 
1397 
     | 
    
         
             
                # the AWS Region where you call the `CopyDBSnapshot` action is the
         
     | 
| 
         @@ -1445,14 +1449,14 @@ module Aws::RDS 
     | 
|
| 
       1445 
1449 
     | 
    
         
             
                #   Example: `my-db-snapshot`
         
     | 
| 
       1446 
1450 
     | 
    
         
             
                #
         
     | 
| 
       1447 
1451 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       1448 
     | 
    
         
            -
                #   The AWS KMS key  
     | 
| 
       1449 
     | 
    
         
            -
                #    
     | 
| 
       1450 
     | 
    
         
            -
                #    
     | 
| 
      
 1452 
     | 
    
         
            +
                #   The AWS KMS key identifier for an encrypted DB snapshot. The AWS KMS
         
     | 
| 
      
 1453 
     | 
    
         
            +
                #   key identifier is the key ARN, key ID, alias ARN, or alias name for
         
     | 
| 
      
 1454 
     | 
    
         
            +
                #   the AWS KMS customer master key (CMK).
         
     | 
| 
       1451 
1455 
     | 
    
         
             
                #
         
     | 
| 
       1452 
1456 
     | 
    
         
             
                #   If you copy an encrypted DB snapshot from your AWS account, you can
         
     | 
| 
       1453 
     | 
    
         
            -
                #   specify a value for this parameter to encrypt the copy with a new  
     | 
| 
       1454 
     | 
    
         
            -
                #    
     | 
| 
       1455 
     | 
    
         
            -
                #    
     | 
| 
      
 1457 
     | 
    
         
            +
                #   specify a value for this parameter to encrypt the copy with a new AWS
         
     | 
| 
      
 1458 
     | 
    
         
            +
                #   KMS CMK. If you don't specify a value for this parameter, then the
         
     | 
| 
      
 1459 
     | 
    
         
            +
                #   copy of the DB snapshot is encrypted with the same AWS KMS key as the
         
     | 
| 
       1456 
1460 
     | 
    
         
             
                #   source DB snapshot.
         
     | 
| 
       1457 
1461 
     | 
    
         
             
                #
         
     | 
| 
       1458 
1462 
     | 
    
         
             
                #   If you copy an encrypted DB snapshot that is shared from another AWS
         
     | 
| 
         @@ -1462,9 +1466,9 @@ module Aws::RDS 
     | 
|
| 
       1462 
1466 
     | 
    
         
             
                #   the copy is encrypted.
         
     | 
| 
       1463 
1467 
     | 
    
         
             
                #
         
     | 
| 
       1464 
1468 
     | 
    
         
             
                #   If you copy an encrypted snapshot to a different AWS Region, then you
         
     | 
| 
       1465 
     | 
    
         
            -
                #   must specify a KMS key for the destination AWS Region. 
     | 
| 
       1466 
     | 
    
         
            -
                #    
     | 
| 
       1467 
     | 
    
         
            -
                #   can't use  
     | 
| 
      
 1469 
     | 
    
         
            +
                #   must specify a AWS KMS key identifier for the destination AWS Region.
         
     | 
| 
      
 1470 
     | 
    
         
            +
                #   AWS KMS CMKs are specific to the AWS Region that they are created in,
         
     | 
| 
      
 1471 
     | 
    
         
            +
                #   and you can't use CMKs from one AWS Region in another AWS Region.
         
     | 
| 
       1468 
1472 
     | 
    
         
             
                #
         
     | 
| 
       1469 
1473 
     | 
    
         
             
                # @option params [Array<Types::Tag>] :tags
         
     | 
| 
       1470 
1474 
     | 
    
         
             
                #   A list of tags. For more information, see [Tagging Amazon RDS
         
     | 
| 
         @@ -1504,11 +1508,11 @@ module Aws::RDS 
     | 
|
| 
       1504 
1508 
     | 
    
         
             
                #     the us-west-2 AWS Region. For this example, the `DestinationRegion`
         
     | 
| 
       1505 
1509 
     | 
    
         
             
                #     in the presigned URL must be set to the us-east-1 AWS Region.
         
     | 
| 
       1506 
1510 
     | 
    
         
             
                #
         
     | 
| 
       1507 
     | 
    
         
            -
                #   * `KmsKeyId` - The AWS KMS key identifier for the  
     | 
| 
       1508 
     | 
    
         
            -
                #     encrypt the copy of the DB snapshot in the 
     | 
| 
       1509 
     | 
    
         
            -
                #     This is the same identifier for both the 
     | 
| 
       1510 
     | 
    
         
            -
                #     that is called in the destination AWS 
     | 
| 
       1511 
     | 
    
         
            -
                #     contained in the presigned URL.
         
     | 
| 
      
 1511 
     | 
    
         
            +
                #   * `KmsKeyId` - The AWS KMS key identifier for the customer master key
         
     | 
| 
      
 1512 
     | 
    
         
            +
                #     (CMK) to use to encrypt the copy of the DB snapshot in the
         
     | 
| 
      
 1513 
     | 
    
         
            +
                #     destination AWS Region. This is the same identifier for both the
         
     | 
| 
      
 1514 
     | 
    
         
            +
                #     `CopyDBSnapshot` action that is called in the destination AWS
         
     | 
| 
      
 1515 
     | 
    
         
            +
                #     Region, and the action contained in the presigned URL.
         
     | 
| 
       1512 
1516 
     | 
    
         
             
                #
         
     | 
| 
       1513 
1517 
     | 
    
         
             
                #   * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
         
     | 
| 
       1514 
1518 
     | 
    
         
             
                #     encrypted snapshot to be copied. This identifier must be in the
         
     | 
| 
         @@ -1550,6 +1554,12 @@ module Aws::RDS 
     | 
|
| 
       1550 
1554 
     | 
    
         
             
                #
         
     | 
| 
       1551 
1555 
     | 
    
         
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
         
     | 
| 
       1552 
1556 
     | 
    
         
             
                #
         
     | 
| 
      
 1557 
     | 
    
         
            +
                # @option params [String] :target_custom_availability_zone
         
     | 
| 
      
 1558 
     | 
    
         
            +
                #   The external custom Availability Zone (CAZ) identifier for the target
         
     | 
| 
      
 1559 
     | 
    
         
            +
                #   CAZ.
         
     | 
| 
      
 1560 
     | 
    
         
            +
                #
         
     | 
| 
      
 1561 
     | 
    
         
            +
                #   Example: `rds-caz-aiqhTgQv`.
         
     | 
| 
      
 1562 
     | 
    
         
            +
                #
         
     | 
| 
       1553 
1563 
     | 
    
         
             
                # @option params [String] :source_region
         
     | 
| 
       1554 
1564 
     | 
    
         
             
                #   The source region of the snapshot. This is only needed when the
         
     | 
| 
       1555 
1565 
     | 
    
         
             
                #   shapshot is encrypted and in a different region.
         
     | 
| 
         @@ -1589,6 +1599,7 @@ module Aws::RDS 
     | 
|
| 
       1589 
1599 
     | 
    
         
             
                #     copy_tags: false,
         
     | 
| 
       1590 
1600 
     | 
    
         
             
                #     pre_signed_url: "String",
         
     | 
| 
       1591 
1601 
     | 
    
         
             
                #     option_group_name: "String",
         
     | 
| 
      
 1602 
     | 
    
         
            +
                #     target_custom_availability_zone: "String",
         
     | 
| 
       1592 
1603 
     | 
    
         
             
                #     source_region: "String",
         
     | 
| 
       1593 
1604 
     | 
    
         
             
                #   })
         
     | 
| 
       1594 
1605 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1624,6 +1635,9 @@ module Aws::RDS 
     | 
|
| 
       1624 
1635 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].name #=> String
         
     | 
| 
       1625 
1636 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].value #=> String
         
     | 
| 
       1626 
1637 
     | 
    
         
             
                #   resp.db_snapshot.dbi_resource_id #=> String
         
     | 
| 
      
 1638 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list #=> Array
         
     | 
| 
      
 1639 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].key #=> String
         
     | 
| 
      
 1640 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].value #=> String
         
     | 
| 
       1627 
1641 
     | 
    
         
             
                #
         
     | 
| 
       1628 
1642 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
         
     | 
| 
       1629 
1643 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2024,30 +2038,27 @@ module Aws::RDS 
     | 
|
| 
       2024 
2038 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       2025 
2039 
     | 
    
         
             
                #   The AWS KMS key identifier for an encrypted DB cluster.
         
     | 
| 
       2026 
2040 
     | 
    
         
             
                #
         
     | 
| 
       2027 
     | 
    
         
            -
                #   The KMS key identifier is the  
     | 
| 
       2028 
     | 
    
         
            -
                #    
     | 
| 
       2029 
     | 
    
         
            -
                #   account  
     | 
| 
       2030 
     | 
    
         
            -
                #   cluster, then you can use the KMS key alias instead of the ARN for the
         
     | 
| 
       2031 
     | 
    
         
            -
                #   KMS encryption key.
         
     | 
| 
      
 2041 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 2042 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK). To use a CMK in a
         
     | 
| 
      
 2043 
     | 
    
         
            +
                #   different AWS account, specify the key ARN or alias ARN.
         
     | 
| 
       2032 
2044 
     | 
    
         
             
                #
         
     | 
| 
       2033 
     | 
    
         
            -
                #    
     | 
| 
      
 2045 
     | 
    
         
            +
                #   When a CMK isn't specified in `KmsKeyId`\:
         
     | 
| 
       2034 
2046 
     | 
    
         
             
                #
         
     | 
| 
       2035 
2047 
     | 
    
         
             
                #   * If `ReplicationSourceIdentifier` identifies an encrypted source,
         
     | 
| 
       2036 
     | 
    
         
            -
                #     then Amazon RDS will use the  
     | 
| 
       2037 
     | 
    
         
            -
                #      
     | 
| 
      
 2048 
     | 
    
         
            +
                #     then Amazon RDS will use the CMK used to encrypt the source.
         
     | 
| 
      
 2049 
     | 
    
         
            +
                #     Otherwise, Amazon RDS will use your default CMK.
         
     | 
| 
       2038 
2050 
     | 
    
         
             
                #
         
     | 
| 
       2039 
2051 
     | 
    
         
             
                #   * If the `StorageEncrypted` parameter is enabled and
         
     | 
| 
       2040 
2052 
     | 
    
         
             
                #     `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
         
     | 
| 
       2041 
     | 
    
         
            -
                #     use your default  
     | 
| 
      
 2053 
     | 
    
         
            +
                #     use your default CMK.
         
     | 
| 
       2042 
2054 
     | 
    
         
             
                #
         
     | 
| 
       2043 
     | 
    
         
            -
                #    
     | 
| 
       2044 
     | 
    
         
            -
                #    
     | 
| 
       2045 
     | 
    
         
            -
                #   Region.
         
     | 
| 
      
 2055 
     | 
    
         
            +
                #   There is a default CMK for your AWS account. Your AWS account has a
         
     | 
| 
      
 2056 
     | 
    
         
            +
                #   different default CMK for each AWS Region.
         
     | 
| 
       2046 
2057 
     | 
    
         
             
                #
         
     | 
| 
       2047 
2058 
     | 
    
         
             
                #   If you create a read replica of an encrypted DB cluster in another AWS
         
     | 
| 
       2048 
     | 
    
         
            -
                #   Region, you must set `KmsKeyId` to a KMS key  
     | 
| 
       2049 
     | 
    
         
            -
                #   destination AWS Region. This  
     | 
| 
       2050 
     | 
    
         
            -
                #   in that AWS Region.
         
     | 
| 
      
 2059 
     | 
    
         
            +
                #   Region, you must set `KmsKeyId` to a AWS KMS key identifier that is
         
     | 
| 
      
 2060 
     | 
    
         
            +
                #   valid in the destination AWS Region. This CMK is used to encrypt the
         
     | 
| 
      
 2061 
     | 
    
         
            +
                #   read replica in that AWS Region.
         
     | 
| 
       2051 
2062 
     | 
    
         
             
                #
         
     | 
| 
       2052 
2063 
     | 
    
         
             
                # @option params [String] :pre_signed_url
         
     | 
| 
       2053 
2064 
     | 
    
         
             
                #   A URL that contains a Signature Version 4 signed request for the
         
     | 
| 
         @@ -2065,9 +2076,9 @@ module Aws::RDS 
     | 
|
| 
       2065 
2076 
     | 
    
         
             
                #
         
     | 
| 
       2066 
2077 
     | 
    
         
             
                #   * `KmsKeyId` - The AWS KMS key identifier for the key to use to
         
     | 
| 
       2067 
2078 
     | 
    
         
             
                #     encrypt the copy of the DB cluster in the destination AWS Region.
         
     | 
| 
       2068 
     | 
    
         
            -
                #     This should refer to the same KMS  
     | 
| 
       2069 
     | 
    
         
            -
                #     action that is called in the destination AWS 
     | 
| 
       2070 
     | 
    
         
            -
                #     contained in the pre-signed URL.
         
     | 
| 
      
 2079 
     | 
    
         
            +
                #     This should refer to the same AWS KMS CMK for both the
         
     | 
| 
      
 2080 
     | 
    
         
            +
                #     `CreateDBCluster` action that is called in the destination AWS
         
     | 
| 
      
 2081 
     | 
    
         
            +
                #     Region, and the action contained in the pre-signed URL.
         
     | 
| 
       2071 
2082 
     | 
    
         
             
                #
         
     | 
| 
       2072 
2083 
     | 
    
         
             
                #   * `DestinationRegion` - The name of the AWS Region that Aurora read
         
     | 
| 
       2073 
2084 
     | 
    
         
             
                #     replica will be created in.
         
     | 
| 
         @@ -2145,14 +2156,23 @@ module Aws::RDS 
     | 
|
| 
       2145 
2156 
     | 
    
         
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
         
     | 
| 
       2146 
2157 
     | 
    
         
             
                #
         
     | 
| 
       2147 
2158 
     | 
    
         
             
                # @option params [String] :engine_mode
         
     | 
| 
       2148 
     | 
    
         
            -
                #   The DB engine mode of the DB cluster, either `provisioned 
     | 
| 
      
 2159 
     | 
    
         
            +
                #   The DB engine mode of the DB cluster, either `provisioned`
         
     | 
| 
       2149 
2160 
     | 
    
         
             
                #   `serverless`, `parallelquery`, `global`, or `multimaster`.
         
     | 
| 
       2150 
2161 
     | 
    
         
             
                #
         
     | 
| 
       2151 
     | 
    
         
            -
                #    
     | 
| 
       2152 
     | 
    
         
            -
                #    
     | 
| 
       2153 
     | 
    
         
            -
                #    
     | 
| 
      
 2162 
     | 
    
         
            +
                #   The `parallelquery` engine mode isn't required for Aurora MySQL
         
     | 
| 
      
 2163 
     | 
    
         
            +
                #   version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
         
     | 
| 
      
 2164 
     | 
    
         
            +
                #   versions.
         
     | 
| 
       2154 
2165 
     | 
    
         
             
                #
         
     | 
| 
       2155 
     | 
    
         
            -
                # 
     | 
| 
      
 2166 
     | 
    
         
            +
                #   The `global` engine mode isn't required for Aurora MySQL version 1.22
         
     | 
| 
      
 2167 
     | 
    
         
            +
                #   and higher 1.x versions, and `global` engine mode isn't required for
         
     | 
| 
      
 2168 
     | 
    
         
            +
                #   any 2.x versions.
         
     | 
| 
      
 2169 
     | 
    
         
            +
                #
         
     | 
| 
      
 2170 
     | 
    
         
            +
                #   The `multimaster` engine mode only applies for DB clusters created
         
     | 
| 
      
 2171 
     | 
    
         
            +
                #   with Aurora MySQL version 5.6.10a.
         
     | 
| 
      
 2172 
     | 
    
         
            +
                #
         
     | 
| 
      
 2173 
     | 
    
         
            +
                #   For Aurora PostgreSQL, the `global` engine mode isn't required, and
         
     | 
| 
      
 2174 
     | 
    
         
            +
                #   both the `parallelquery` and the `multimaster` engine modes currently
         
     | 
| 
      
 2175 
     | 
    
         
            +
                #   aren't supported.
         
     | 
| 
       2156 
2176 
     | 
    
         
             
                #
         
     | 
| 
       2157 
2177 
     | 
    
         
             
                #   Limitations and requirements apply to some DB engine modes. For more
         
     | 
| 
       2158 
2178 
     | 
    
         
             
                #   information, see the following sections in the *Amazon Aurora User
         
     | 
| 
         @@ -2162,7 +2182,7 @@ module Aws::RDS 
     | 
|
| 
       2162 
2182 
     | 
    
         
             
                #
         
     | 
| 
       2163 
2183 
     | 
    
         
             
                #   * [ Limitations of Parallel Query][2]
         
     | 
| 
       2164 
2184 
     | 
    
         
             
                #
         
     | 
| 
       2165 
     | 
    
         
            -
                #   * [  
     | 
| 
      
 2185 
     | 
    
         
            +
                #   * [ Limitations of Aurora Global Databases][3]
         
     | 
| 
       2166 
2186 
     | 
    
         
             
                #
         
     | 
| 
       2167 
2187 
     | 
    
         
             
                #   * [ Limitations of Multi-Master Clusters][4]
         
     | 
| 
       2168 
2188 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2393,8 +2413,19 @@ module Aws::RDS 
     | 
|
| 
       2393 
2413 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       2394 
2414 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       2395 
2415 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 2416 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 2417 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 2418 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       2396 
2419 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       2397 
2420 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 2421 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 2422 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 2423 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 2424 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 2425 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 2426 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 2427 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 2428 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       2398 
2429 
     | 
    
         
             
                #
         
     | 
| 
       2399 
2430 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
         
     | 
| 
       2400 
2431 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2710,6 +2741,9 @@ module Aws::RDS 
     | 
|
| 
       2710 
2741 
     | 
    
         
             
                #   resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
         
     | 
| 
       2711 
2742 
     | 
    
         
             
                #   resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
         
     | 
| 
       2712 
2743 
     | 
    
         
             
                #   resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 2744 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list #=> Array
         
     | 
| 
      
 2745 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list[0].key #=> String
         
     | 
| 
      
 2746 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list[0].value #=> String
         
     | 
| 
       2713 
2747 
     | 
    
         
             
                #
         
     | 
| 
       2714 
2748 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
         
     | 
| 
       2715 
2749 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2759,8 +2793,8 @@ module Aws::RDS 
     | 
|
| 
       2759 
2793 
     | 
    
         
             
                #   **PostgreSQL**
         
     | 
| 
       2760 
2794 
     | 
    
         
             
                #
         
     | 
| 
       2761 
2795 
     | 
    
         
             
                #   The name of the database to create when the DB instance is created. If
         
     | 
| 
       2762 
     | 
    
         
            -
                #   this parameter isn't specified,  
     | 
| 
       2763 
     | 
    
         
            -
                #    
     | 
| 
      
 2796 
     | 
    
         
            +
                #   this parameter isn't specified, no database is created in the DB
         
     | 
| 
      
 2797 
     | 
    
         
            +
                #   instance.
         
     | 
| 
       2764 
2798 
     | 
    
         
             
                #
         
     | 
| 
       2765 
2799 
     | 
    
         
             
                #   Constraints:
         
     | 
| 
       2766 
2800 
     | 
    
         
             
                #
         
     | 
| 
         @@ -3393,22 +3427,19 @@ module Aws::RDS 
     | 
|
| 
       3393 
3427 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       3394 
3428 
     | 
    
         
             
                #   The AWS KMS key identifier for an encrypted DB instance.
         
     | 
| 
       3395 
3429 
     | 
    
         
             
                #
         
     | 
| 
       3396 
     | 
    
         
            -
                #   The KMS key identifier is the  
     | 
| 
       3397 
     | 
    
         
            -
                #    
     | 
| 
       3398 
     | 
    
         
            -
                #   account  
     | 
| 
       3399 
     | 
    
         
            -
                #   instance, then you can use the KMS key alias instead of the ARN for
         
     | 
| 
       3400 
     | 
    
         
            -
                #   the KM encryption key.
         
     | 
| 
      
 3430 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 3431 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK). To use a CMK in a
         
     | 
| 
      
 3432 
     | 
    
         
            +
                #   different AWS account, specify the key ARN or alias ARN.
         
     | 
| 
       3401 
3433 
     | 
    
         
             
                #
         
     | 
| 
       3402 
3434 
     | 
    
         
             
                #   **Amazon Aurora**
         
     | 
| 
       3403 
3435 
     | 
    
         
             
                #
         
     | 
| 
       3404 
     | 
    
         
            -
                #   Not applicable. The KMS key identifier is managed by the DB 
     | 
| 
       3405 
     | 
    
         
            -
                #   For more information, see `CreateDBCluster`.
         
     | 
| 
      
 3436 
     | 
    
         
            +
                #   Not applicable. The AWS KMS key identifier is managed by the DB
         
     | 
| 
      
 3437 
     | 
    
         
            +
                #   cluster. For more information, see `CreateDBCluster`.
         
     | 
| 
       3406 
3438 
     | 
    
         
             
                #
         
     | 
| 
       3407 
3439 
     | 
    
         
             
                #   If `StorageEncrypted` is enabled, and you do not specify a value for
         
     | 
| 
       3408 
     | 
    
         
            -
                #   the `KmsKeyId` parameter, then Amazon RDS  
     | 
| 
       3409 
     | 
    
         
            -
                #    
     | 
| 
       3410 
     | 
    
         
            -
                #    
     | 
| 
       3411 
     | 
    
         
            -
                #   for each AWS Region.
         
     | 
| 
      
 3440 
     | 
    
         
            +
                #   the `KmsKeyId` parameter, then Amazon RDS uses your default CMK. There
         
     | 
| 
      
 3441 
     | 
    
         
            +
                #   is a default CMK for your AWS account. Your AWS account has a
         
     | 
| 
      
 3442 
     | 
    
         
            +
                #   different default CMK for each AWS Region.
         
     | 
| 
       3412 
3443 
     | 
    
         
             
                #
         
     | 
| 
       3413 
3444 
     | 
    
         
             
                # @option params [String] :domain
         
     | 
| 
       3414 
3445 
     | 
    
         
             
                #   The Active Directory directory ID to create the DB instance in.
         
     | 
| 
         @@ -3487,29 +3518,8 @@ module Aws::RDS 
     | 
|
| 
       3487 
3518 
     | 
    
         
             
                #   Access Management (IAM) accounts to database accounts. By default,
         
     | 
| 
       3488 
3519 
     | 
    
         
             
                #   mapping is disabled.
         
     | 
| 
       3489 
3520 
     | 
    
         
             
                #
         
     | 
| 
       3490 
     | 
    
         
            -
                #    
     | 
| 
       3491 
     | 
    
         
            -
                #    
     | 
| 
       3492 
     | 
    
         
            -
                #
         
     | 
| 
       3493 
     | 
    
         
            -
                #   **Amazon Aurora**
         
     | 
| 
       3494 
     | 
    
         
            -
                #
         
     | 
| 
       3495 
     | 
    
         
            -
                #   Not applicable. Mapping AWS IAM accounts to database accounts is
         
     | 
| 
       3496 
     | 
    
         
            -
                #   managed by the DB cluster.
         
     | 
| 
       3497 
     | 
    
         
            -
                #
         
     | 
| 
       3498 
     | 
    
         
            -
                #   **MySQL**
         
     | 
| 
       3499 
     | 
    
         
            -
                #
         
     | 
| 
       3500 
     | 
    
         
            -
                #   * For MySQL 5.6, minor version 5.6.34 or higher
         
     | 
| 
       3501 
     | 
    
         
            -
                #
         
     | 
| 
       3502 
     | 
    
         
            -
                #   * For MySQL 5.7, minor version 5.7.16 or higher
         
     | 
| 
       3503 
     | 
    
         
            -
                #
         
     | 
| 
       3504 
     | 
    
         
            -
                #   * For MySQL 8.0, minor version 8.0.16 or higher
         
     | 
| 
       3505 
     | 
    
         
            -
                #
         
     | 
| 
       3506 
     | 
    
         
            -
                #   **PostgreSQL**
         
     | 
| 
       3507 
     | 
    
         
            -
                #
         
     | 
| 
       3508 
     | 
    
         
            -
                #   * For PostgreSQL 9.5, minor version 9.5.15 or higher
         
     | 
| 
       3509 
     | 
    
         
            -
                #
         
     | 
| 
       3510 
     | 
    
         
            -
                #   * For PostgreSQL 9.6, minor version 9.6.11 or higher
         
     | 
| 
       3511 
     | 
    
         
            -
                #
         
     | 
| 
       3512 
     | 
    
         
            -
                #   * PostgreSQL 10.6, 10.7, and 10.9
         
     | 
| 
      
 3521 
     | 
    
         
            +
                #   This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
         
     | 
| 
      
 3522 
     | 
    
         
            +
                #   to database accounts is managed by the DB cluster.
         
     | 
| 
       3513 
3523 
     | 
    
         
             
                #
         
     | 
| 
       3514 
3524 
     | 
    
         
             
                #   For more information, see [ IAM Database Authentication for MySQL and
         
     | 
| 
       3515 
3525 
     | 
    
         
             
                #   PostgreSQL][1] in the *Amazon RDS User Guide.*
         
     | 
| 
         @@ -3531,13 +3541,15 @@ module Aws::RDS 
     | 
|
| 
       3531 
3541 
     | 
    
         
             
                #
         
     | 
| 
       3532 
3542 
     | 
    
         
             
                # @option params [String] :performance_insights_kms_key_id
         
     | 
| 
       3533 
3543 
     | 
    
         
             
                #   The AWS KMS key identifier for encryption of Performance Insights
         
     | 
| 
       3534 
     | 
    
         
            -
                #   data. 
     | 
| 
       3535 
     | 
    
         
            -
                # 
     | 
| 
      
 3544 
     | 
    
         
            +
                #   data.
         
     | 
| 
      
 3545 
     | 
    
         
            +
                #
         
     | 
| 
      
 3546 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 3547 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK).
         
     | 
| 
       3536 
3548 
     | 
    
         
             
                #
         
     | 
| 
       3537 
3549 
     | 
    
         
             
                #   If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
         
     | 
| 
       3538 
     | 
    
         
            -
                #   Amazon RDS uses your default  
     | 
| 
       3539 
     | 
    
         
            -
                #    
     | 
| 
       3540 
     | 
    
         
            -
                #    
     | 
| 
      
 3550 
     | 
    
         
            +
                #   Amazon RDS uses your default CMK. There is a default CMK for your AWS
         
     | 
| 
      
 3551 
     | 
    
         
            +
                #   account. Your AWS account has a different default CMK for each AWS
         
     | 
| 
      
 3552 
     | 
    
         
            +
                #   Region.
         
     | 
| 
       3541 
3553 
     | 
    
         
             
                #
         
     | 
| 
       3542 
3554 
     | 
    
         
             
                # @option params [Integer] :performance_insights_retention_period
         
     | 
| 
       3543 
3555 
     | 
    
         
             
                #   The amount of time, in days, to retain Performance Insights data.
         
     | 
| 
         @@ -3745,6 +3757,7 @@ module Aws::RDS 
     | 
|
| 
       3745 
3757 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       3746 
3758 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       3747 
3759 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 3760 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       3748 
3761 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       3749 
3762 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       3750 
3763 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -3807,6 +3820,11 @@ module Aws::RDS 
     | 
|
| 
       3807 
3820 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       3808 
3821 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       3809 
3822 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 3823 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 3824 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 3825 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 3826 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 3827 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       3810 
3828 
     | 
    
         
             
                #
         
     | 
| 
       3811 
3829 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
         
     | 
| 
       3812 
3830 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4057,20 +4075,21 @@ module Aws::RDS 
     | 
|
| 
       4057 
4075 
     | 
    
         
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
         
     | 
| 
       4058 
4076 
     | 
    
         
             
                #
         
     | 
| 
       4059 
4077 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       4060 
     | 
    
         
            -
                #   The AWS KMS key  
     | 
| 
       4061 
     | 
    
         
            -
                # 
     | 
| 
       4062 
     | 
    
         
            -
                #    
     | 
| 
      
 4078 
     | 
    
         
            +
                #   The AWS KMS key identifier for an encrypted read replica.
         
     | 
| 
      
 4079 
     | 
    
         
            +
                #
         
     | 
| 
      
 4080 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 4081 
     | 
    
         
            +
                #   name for the AWS KMS CMK.
         
     | 
| 
       4063 
4082 
     | 
    
         
             
                #
         
     | 
| 
       4064 
4083 
     | 
    
         
             
                #   If you create an encrypted read replica in the same AWS Region as the
         
     | 
| 
       4065 
     | 
    
         
            -
                #   source DB instance, then  
     | 
| 
       4066 
     | 
    
         
            -
                #    
     | 
| 
       4067 
     | 
    
         
            -
                #   source DB instance.
         
     | 
| 
      
 4084 
     | 
    
         
            +
                #   source DB instance, then do not specify a value for this parameter. A
         
     | 
| 
      
 4085 
     | 
    
         
            +
                #   read replica in the same Region is always encrypted with the same AWS
         
     | 
| 
      
 4086 
     | 
    
         
            +
                #   KMS CMK as the source DB instance.
         
     | 
| 
       4068 
4087 
     | 
    
         
             
                #
         
     | 
| 
       4069 
4088 
     | 
    
         
             
                #   If you create an encrypted read replica in a different AWS Region,
         
     | 
| 
       4070 
     | 
    
         
            -
                #   then you must specify a KMS key for the destination AWS 
     | 
| 
       4071 
     | 
    
         
            -
                #    
     | 
| 
       4072 
     | 
    
         
            -
                #   in, and you can't use  
     | 
| 
       4073 
     | 
    
         
            -
                #    
     | 
| 
      
 4089 
     | 
    
         
            +
                #   then you must specify a AWS KMS key identifier for the destination AWS
         
     | 
| 
      
 4090 
     | 
    
         
            +
                #   Region. AWS KMS CMKs are specific to the AWS Region that they are
         
     | 
| 
      
 4091 
     | 
    
         
            +
                #   created in, and you can't use CMKs from one AWS Region in another AWS
         
     | 
| 
      
 4092 
     | 
    
         
            +
                #   Region.
         
     | 
| 
       4074 
4093 
     | 
    
         
             
                #
         
     | 
| 
       4075 
4094 
     | 
    
         
             
                #   You can't create an encrypted read replica from an unencrypted DB
         
     | 
| 
       4076 
4095 
     | 
    
         
             
                #   instance.
         
     | 
| 
         @@ -4140,8 +4159,7 @@ module Aws::RDS 
     | 
|
| 
       4140 
4159 
     | 
    
         
             
                # @option params [Boolean] :enable_iam_database_authentication
         
     | 
| 
       4141 
4160 
     | 
    
         
             
                #   A value that indicates whether to enable mapping of AWS Identity and
         
     | 
| 
       4142 
4161 
     | 
    
         
             
                #   Access Management (IAM) accounts to database accounts. By default,
         
     | 
| 
       4143 
     | 
    
         
            -
                #   mapping is disabled. 
     | 
| 
       4144 
     | 
    
         
            -
                #   see CreateDBInstance.
         
     | 
| 
      
 4162 
     | 
    
         
            +
                #   mapping is disabled.
         
     | 
| 
       4145 
4163 
     | 
    
         
             
                #
         
     | 
| 
       4146 
4164 
     | 
    
         
             
                #   For more information about IAM database authentication, see [ IAM
         
     | 
| 
       4147 
4165 
     | 
    
         
             
                #   Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
         
     | 
| 
         @@ -4164,13 +4182,15 @@ module Aws::RDS 
     | 
|
| 
       4164 
4182 
     | 
    
         
             
                #
         
     | 
| 
       4165 
4183 
     | 
    
         
             
                # @option params [String] :performance_insights_kms_key_id
         
     | 
| 
       4166 
4184 
     | 
    
         
             
                #   The AWS KMS key identifier for encryption of Performance Insights
         
     | 
| 
       4167 
     | 
    
         
            -
                #   data. 
     | 
| 
       4168 
     | 
    
         
            -
                # 
     | 
| 
      
 4185 
     | 
    
         
            +
                #   data.
         
     | 
| 
      
 4186 
     | 
    
         
            +
                #
         
     | 
| 
      
 4187 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 4188 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK).
         
     | 
| 
       4169 
4189 
     | 
    
         
             
                #
         
     | 
| 
       4170 
4190 
     | 
    
         
             
                #   If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
         
     | 
| 
       4171 
     | 
    
         
            -
                #   Amazon RDS uses your default  
     | 
| 
       4172 
     | 
    
         
            -
                #    
     | 
| 
       4173 
     | 
    
         
            -
                #    
     | 
| 
      
 4191 
     | 
    
         
            +
                #   Amazon RDS uses your default CMK. There is a default CMK for your AWS
         
     | 
| 
      
 4192 
     | 
    
         
            +
                #   account. Your AWS account has a different default CMK for each AWS
         
     | 
| 
      
 4193 
     | 
    
         
            +
                #   Region.
         
     | 
| 
       4174 
4194 
     | 
    
         
             
                #
         
     | 
| 
       4175 
4195 
     | 
    
         
             
                # @option params [Integer] :performance_insights_retention_period
         
     | 
| 
       4176 
4196 
     | 
    
         
             
                #   The amount of time, in days, to retain Performance Insights data.
         
     | 
| 
         @@ -4242,6 +4262,10 @@ module Aws::RDS 
     | 
|
| 
       4242 
4262 
     | 
    
         
             
                #
         
     | 
| 
       4243 
4263 
     | 
    
         
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
         
     | 
| 
       4244 
4264 
     | 
    
         
             
                #
         
     | 
| 
      
 4265 
     | 
    
         
            +
                # @option params [Integer] :max_allocated_storage
         
     | 
| 
      
 4266 
     | 
    
         
            +
                #   The upper limit to which Amazon RDS can automatically scale the
         
     | 
| 
      
 4267 
     | 
    
         
            +
                #   storage of the DB instance.
         
     | 
| 
      
 4268 
     | 
    
         
            +
                #
         
     | 
| 
       4245 
4269 
     | 
    
         
             
                # @option params [String] :source_region
         
     | 
| 
       4246 
4270 
     | 
    
         
             
                #   The source region of the snapshot. This is only needed when the
         
     | 
| 
       4247 
4271 
     | 
    
         
             
                #   shapshot is encrypted and in a different region.
         
     | 
| 
         @@ -4321,6 +4345,7 @@ module Aws::RDS 
     | 
|
| 
       4321 
4345 
     | 
    
         
             
                #     domain: "String",
         
     | 
| 
       4322 
4346 
     | 
    
         
             
                #     domain_iam_role_name: "String",
         
     | 
| 
       4323 
4347 
     | 
    
         
             
                #     replica_mode: "open-read-only", # accepts open-read-only, mounted
         
     | 
| 
      
 4348 
     | 
    
         
            +
                #     max_allocated_storage: 1,
         
     | 
| 
       4324 
4349 
     | 
    
         
             
                #     source_region: "String",
         
     | 
| 
       4325 
4350 
     | 
    
         
             
                #   })
         
     | 
| 
       4326 
4351 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4380,6 +4405,7 @@ module Aws::RDS 
     | 
|
| 
       4380 
4405 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       4381 
4406 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       4382 
4407 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 4408 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       4383 
4409 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       4384 
4410 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       4385 
4411 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -4442,6 +4468,11 @@ module Aws::RDS 
     | 
|
| 
       4442 
4468 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       4443 
4469 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       4444 
4470 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 4471 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 4472 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 4473 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 4474 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 4475 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       4445 
4476 
     | 
    
         
             
                #
         
     | 
| 
       4446 
4477 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
         
     | 
| 
       4447 
4478 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4772,8 +4803,8 @@ module Aws::RDS 
     | 
|
| 
       4772 
4803 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       4773 
4804 
     | 
    
         
             
                end
         
     | 
| 
       4774 
4805 
     | 
    
         | 
| 
       4775 
     | 
    
         
            -
                # Creates a  
     | 
| 
       4776 
     | 
    
         
            -
                # state.
         
     | 
| 
      
 4806 
     | 
    
         
            +
                # Creates a snapshot of a DB instance. The source DB instance must be in
         
     | 
| 
      
 4807 
     | 
    
         
            +
                # the `available` or `storage-optimization` state.
         
     | 
| 
       4777 
4808 
     | 
    
         
             
                #
         
     | 
| 
       4778 
4809 
     | 
    
         
             
                # @option params [required, String] :db_snapshot_identifier
         
     | 
| 
       4779 
4810 
     | 
    
         
             
                #   The identifier for the DB snapshot.
         
     | 
| 
         @@ -4873,6 +4904,9 @@ module Aws::RDS 
     | 
|
| 
       4873 
4904 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].name #=> String
         
     | 
| 
       4874 
4905 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].value #=> String
         
     | 
| 
       4875 
4906 
     | 
    
         
             
                #   resp.db_snapshot.dbi_resource_id #=> String
         
     | 
| 
      
 4907 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list #=> Array
         
     | 
| 
      
 4908 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].key #=> String
         
     | 
| 
      
 4909 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].value #=> String
         
     | 
| 
       4876 
4910 
     | 
    
         
             
                #
         
     | 
| 
       4877 
4911 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
         
     | 
| 
       4878 
4912 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5535,8 +5569,19 @@ module Aws::RDS 
     | 
|
| 
       5535 
5569 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       5536 
5570 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       5537 
5571 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 5572 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 5573 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 5574 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       5538 
5575 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       5539 
5576 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 5577 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 5578 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 5579 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 5580 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 5581 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 5582 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 5583 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 5584 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       5540 
5585 
     | 
    
         
             
                #
         
     | 
| 
       5541 
5586 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
         
     | 
| 
       5542 
5587 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5726,6 +5771,9 @@ module Aws::RDS 
     | 
|
| 
       5726 
5771 
     | 
    
         
             
                #   resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
         
     | 
| 
       5727 
5772 
     | 
    
         
             
                #   resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
         
     | 
| 
       5728 
5773 
     | 
    
         
             
                #   resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 5774 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list #=> Array
         
     | 
| 
      
 5775 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list[0].key #=> String
         
     | 
| 
      
 5776 
     | 
    
         
            +
                #   resp.db_cluster_snapshot.tag_list[0].value #=> String
         
     | 
| 
       5729 
5777 
     | 
    
         
             
                #
         
     | 
| 
       5730 
5778 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
         
     | 
| 
       5731 
5779 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5905,6 +5953,7 @@ module Aws::RDS 
     | 
|
| 
       5905 
5953 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       5906 
5954 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       5907 
5955 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 5956 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       5908 
5957 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       5909 
5958 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       5910 
5959 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -5967,6 +6016,11 @@ module Aws::RDS 
     | 
|
| 
       5967 
6016 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       5968 
6017 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       5969 
6018 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 6019 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 6020 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 6021 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 6022 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 6023 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       5970 
6024 
     | 
    
         
             
                #
         
     | 
| 
       5971 
6025 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
         
     | 
| 
       5972 
6026 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5977,13 +6031,19 @@ module Aws::RDS 
     | 
|
| 
       5977 
6031 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       5978 
6032 
     | 
    
         
             
                end
         
     | 
| 
       5979 
6033 
     | 
    
         | 
| 
       5980 
     | 
    
         
            -
                # Deletes automated backups  
     | 
| 
       5981 
     | 
    
         
            -
                #  
     | 
| 
      
 6034 
     | 
    
         
            +
                # Deletes automated backups using the `DbiResourceId` value of the
         
     | 
| 
      
 6035 
     | 
    
         
            +
                # source DB instance or the Amazon Resource Name (ARN) of the automated
         
     | 
| 
      
 6036 
     | 
    
         
            +
                # backups.
         
     | 
| 
       5982 
6037 
     | 
    
         
             
                #
         
     | 
| 
       5983 
     | 
    
         
            -
                # @option params [ 
     | 
| 
      
 6038 
     | 
    
         
            +
                # @option params [String] :dbi_resource_id
         
     | 
| 
       5984 
6039 
     | 
    
         
             
                #   The identifier for the source DB instance, which can't be changed and
         
     | 
| 
       5985 
6040 
     | 
    
         
             
                #   which is unique to an AWS Region.
         
     | 
| 
       5986 
6041 
     | 
    
         
             
                #
         
     | 
| 
      
 6042 
     | 
    
         
            +
                # @option params [String] :db_instance_automated_backups_arn
         
     | 
| 
      
 6043 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of the automated backups to delete, for
         
     | 
| 
      
 6044 
     | 
    
         
            +
                #   example,
         
     | 
| 
      
 6045 
     | 
    
         
            +
                #   `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
         
     | 
| 
      
 6046 
     | 
    
         
            +
                #
         
     | 
| 
       5987 
6047 
     | 
    
         
             
                # @return [Types::DeleteDBInstanceAutomatedBackupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
       5988 
6048 
     | 
    
         
             
                #
         
     | 
| 
       5989 
6049 
     | 
    
         
             
                #   * {Types::DeleteDBInstanceAutomatedBackupResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
         
     | 
| 
         @@ -5991,7 +6051,8 @@ module Aws::RDS 
     | 
|
| 
       5991 
6051 
     | 
    
         
             
                # @example Request syntax with placeholder values
         
     | 
| 
       5992 
6052 
     | 
    
         
             
                #
         
     | 
| 
       5993 
6053 
     | 
    
         
             
                #   resp = client.delete_db_instance_automated_backup({
         
     | 
| 
       5994 
     | 
    
         
            -
                #     dbi_resource_id: "String", 
     | 
| 
      
 6054 
     | 
    
         
            +
                #     dbi_resource_id: "String",
         
     | 
| 
      
 6055 
     | 
    
         
            +
                #     db_instance_automated_backups_arn: "String",
         
     | 
| 
       5995 
6056 
     | 
    
         
             
                #   })
         
     | 
| 
       5996 
6057 
     | 
    
         
             
                #
         
     | 
| 
       5997 
6058 
     | 
    
         
             
                # @example Response structure
         
     | 
| 
         @@ -6020,6 +6081,10 @@ module Aws::RDS 
     | 
|
| 
       6020 
6081 
     | 
    
         
             
                #   resp.db_instance_automated_backup.kms_key_id #=> String
         
     | 
| 
       6021 
6082 
     | 
    
         
             
                #   resp.db_instance_automated_backup.timezone #=> String
         
     | 
| 
       6022 
6083 
     | 
    
         
             
                #   resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 6084 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.backup_retention_period #=> Integer
         
     | 
| 
      
 6085 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
         
     | 
| 
      
 6086 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 6087 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       6023 
6088 
     | 
    
         
             
                #
         
     | 
| 
       6024 
6089 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
         
     | 
| 
       6025 
6090 
     | 
    
         
             
                #
         
     | 
| 
         @@ -6238,6 +6303,9 @@ module Aws::RDS 
     | 
|
| 
       6238 
6303 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].name #=> String
         
     | 
| 
       6239 
6304 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].value #=> String
         
     | 
| 
       6240 
6305 
     | 
    
         
             
                #   resp.db_snapshot.dbi_resource_id #=> String
         
     | 
| 
      
 6306 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list #=> Array
         
     | 
| 
      
 6307 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].key #=> String
         
     | 
| 
      
 6308 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].value #=> String
         
     | 
| 
       6241 
6309 
     | 
    
         
             
                #
         
     | 
| 
       6242 
6310 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
         
     | 
| 
       6243 
6311 
     | 
    
         
             
                #
         
     | 
| 
         @@ -7386,6 +7454,9 @@ module Aws::RDS 
     | 
|
| 
       7386 
7454 
     | 
    
         
             
                #   resp.db_cluster_snapshots[0].db_cluster_snapshot_arn #=> String
         
     | 
| 
       7387 
7455 
     | 
    
         
             
                #   resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
         
     | 
| 
       7388 
7456 
     | 
    
         
             
                #   resp.db_cluster_snapshots[0].iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 7457 
     | 
    
         
            +
                #   resp.db_cluster_snapshots[0].tag_list #=> Array
         
     | 
| 
      
 7458 
     | 
    
         
            +
                #   resp.db_cluster_snapshots[0].tag_list[0].key #=> String
         
     | 
| 
      
 7459 
     | 
    
         
            +
                #   resp.db_cluster_snapshots[0].tag_list[0].value #=> String
         
     | 
| 
       7389 
7460 
     | 
    
         
             
                #
         
     | 
| 
       7390 
7461 
     | 
    
         
             
                #
         
     | 
| 
       7391 
7462 
     | 
    
         
             
                # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
         
     | 
| 
         @@ -7573,8 +7644,19 @@ module Aws::RDS 
     | 
|
| 
       7573 
7644 
     | 
    
         
             
                #   resp.db_clusters[0].domain_memberships[0].status #=> String
         
     | 
| 
       7574 
7645 
     | 
    
         
             
                #   resp.db_clusters[0].domain_memberships[0].fqdn #=> String
         
     | 
| 
       7575 
7646 
     | 
    
         
             
                #   resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 7647 
     | 
    
         
            +
                #   resp.db_clusters[0].tag_list #=> Array
         
     | 
| 
      
 7648 
     | 
    
         
            +
                #   resp.db_clusters[0].tag_list[0].key #=> String
         
     | 
| 
      
 7649 
     | 
    
         
            +
                #   resp.db_clusters[0].tag_list[0].value #=> String
         
     | 
| 
       7576 
7650 
     | 
    
         
             
                #   resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       7577 
7651 
     | 
    
         
             
                #   resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 7652 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 7653 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 7654 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 7655 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 7656 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 7657 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 7658 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 7659 
     | 
    
         
            +
                #   resp.db_clusters[0].pending_modified_values.engine_version #=> String
         
     | 
| 
       7578 
7660 
     | 
    
         
             
                #
         
     | 
| 
       7579 
7661 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
         
     | 
| 
       7580 
7662 
     | 
    
         
             
                #
         
     | 
| 
         @@ -7795,6 +7877,11 @@ module Aws::RDS 
     | 
|
| 
       7795 
7877 
     | 
    
         
             
                #   parameter is specified the response includes only records beyond the
         
     | 
| 
       7796 
7878 
     | 
    
         
             
                #   marker, up to `MaxRecords`.
         
     | 
| 
       7797 
7879 
     | 
    
         
             
                #
         
     | 
| 
      
 7880 
     | 
    
         
            +
                # @option params [String] :db_instance_automated_backups_arn
         
     | 
| 
      
 7881 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of the replicated automated backups,
         
     | 
| 
      
 7882 
     | 
    
         
            +
                #   for example,
         
     | 
| 
      
 7883 
     | 
    
         
            +
                #   `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
         
     | 
| 
      
 7884 
     | 
    
         
            +
                #
         
     | 
| 
       7798 
7885 
     | 
    
         
             
                # @return [Types::DBInstanceAutomatedBackupMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
       7799 
7886 
     | 
    
         
             
                #
         
     | 
| 
       7800 
7887 
     | 
    
         
             
                #   * {Types::DBInstanceAutomatedBackupMessage#marker #marker} => String
         
     | 
| 
         @@ -7815,6 +7902,7 @@ module Aws::RDS 
     | 
|
| 
       7815 
7902 
     | 
    
         
             
                #     ],
         
     | 
| 
       7816 
7903 
     | 
    
         
             
                #     max_records: 1,
         
     | 
| 
       7817 
7904 
     | 
    
         
             
                #     marker: "String",
         
     | 
| 
      
 7905 
     | 
    
         
            +
                #     db_instance_automated_backups_arn: "String",
         
     | 
| 
       7818 
7906 
     | 
    
         
             
                #   })
         
     | 
| 
       7819 
7907 
     | 
    
         
             
                #
         
     | 
| 
       7820 
7908 
     | 
    
         
             
                # @example Response structure
         
     | 
| 
         @@ -7845,6 +7933,10 @@ module Aws::RDS 
     | 
|
| 
       7845 
7933 
     | 
    
         
             
                #   resp.db_instance_automated_backups[0].kms_key_id #=> String
         
     | 
| 
       7846 
7934 
     | 
    
         
             
                #   resp.db_instance_automated_backups[0].timezone #=> String
         
     | 
| 
       7847 
7935 
     | 
    
         
             
                #   resp.db_instance_automated_backups[0].iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 7936 
     | 
    
         
            +
                #   resp.db_instance_automated_backups[0].backup_retention_period #=> Integer
         
     | 
| 
      
 7937 
     | 
    
         
            +
                #   resp.db_instance_automated_backups[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
      
 7938 
     | 
    
         
            +
                #   resp.db_instance_automated_backups[0].db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 7939 
     | 
    
         
            +
                #   resp.db_instance_automated_backups[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       7848 
7940 
     | 
    
         
             
                #
         
     | 
| 
       7849 
7941 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
         
     | 
| 
       7850 
7942 
     | 
    
         
             
                #
         
     | 
| 
         @@ -8007,6 +8099,7 @@ module Aws::RDS 
     | 
|
| 
       8007 
8099 
     | 
    
         
             
                #   resp.db_instances[0].pending_modified_values.processor_features #=> Array
         
     | 
| 
       8008 
8100 
     | 
    
         
             
                #   resp.db_instances[0].pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       8009 
8101 
     | 
    
         
             
                #   resp.db_instances[0].pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 8102 
     | 
    
         
            +
                #   resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       8010 
8103 
     | 
    
         
             
                #   resp.db_instances[0].latest_restorable_time #=> Time
         
     | 
| 
       8011 
8104 
     | 
    
         
             
                #   resp.db_instances[0].multi_az #=> Boolean
         
     | 
| 
       8012 
8105 
     | 
    
         
             
                #   resp.db_instances[0].engine_version #=> String
         
     | 
| 
         @@ -8069,6 +8162,11 @@ module Aws::RDS 
     | 
|
| 
       8069 
8162 
     | 
    
         
             
                #   resp.db_instances[0].listener_endpoint.port #=> Integer
         
     | 
| 
       8070 
8163 
     | 
    
         
             
                #   resp.db_instances[0].listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       8071 
8164 
     | 
    
         
             
                #   resp.db_instances[0].max_allocated_storage #=> Integer
         
     | 
| 
      
 8165 
     | 
    
         
            +
                #   resp.db_instances[0].tag_list #=> Array
         
     | 
| 
      
 8166 
     | 
    
         
            +
                #   resp.db_instances[0].tag_list[0].key #=> String
         
     | 
| 
      
 8167 
     | 
    
         
            +
                #   resp.db_instances[0].tag_list[0].value #=> String
         
     | 
| 
      
 8168 
     | 
    
         
            +
                #   resp.db_instances[0].db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 8169 
     | 
    
         
            +
                #   resp.db_instances[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       8072 
8170 
     | 
    
         
             
                #
         
     | 
| 
       8073 
8171 
     | 
    
         
             
                #
         
     | 
| 
       8074 
8172 
     | 
    
         
             
                # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
         
     | 
| 
         @@ -8935,6 +9033,9 @@ module Aws::RDS 
     | 
|
| 
       8935 
9033 
     | 
    
         
             
                #   resp.db_snapshots[0].processor_features[0].name #=> String
         
     | 
| 
       8936 
9034 
     | 
    
         
             
                #   resp.db_snapshots[0].processor_features[0].value #=> String
         
     | 
| 
       8937 
9035 
     | 
    
         
             
                #   resp.db_snapshots[0].dbi_resource_id #=> String
         
     | 
| 
      
 9036 
     | 
    
         
            +
                #   resp.db_snapshots[0].tag_list #=> Array
         
     | 
| 
      
 9037 
     | 
    
         
            +
                #   resp.db_snapshots[0].tag_list[0].key #=> String
         
     | 
| 
      
 9038 
     | 
    
         
            +
                #   resp.db_snapshots[0].tag_list[0].value #=> String
         
     | 
| 
       8938 
9039 
     | 
    
         
             
                #
         
     | 
| 
       8939 
9040 
     | 
    
         
             
                #
         
     | 
| 
       8940 
9041 
     | 
    
         
             
                # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
         
     | 
| 
         @@ -10653,6 +10754,7 @@ module Aws::RDS 
     | 
|
| 
       10653 
10754 
     | 
    
         
             
                #   resp.source_regions[0].region_name #=> String
         
     | 
| 
       10654 
10755 
     | 
    
         
             
                #   resp.source_regions[0].endpoint #=> String
         
     | 
| 
       10655 
10756 
     | 
    
         
             
                #   resp.source_regions[0].status #=> String
         
     | 
| 
      
 10757 
     | 
    
         
            +
                #   resp.source_regions[0].supports_db_instance_automated_backups_replication #=> Boolean
         
     | 
| 
       10656 
10758 
     | 
    
         
             
                #
         
     | 
| 
       10657 
10759 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeSourceRegions AWS API Documentation
         
     | 
| 
       10658 
10760 
     | 
    
         
             
                #
         
     | 
| 
         @@ -10947,8 +11049,19 @@ module Aws::RDS 
     | 
|
| 
       10947 
11049 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       10948 
11050 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       10949 
11051 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 11052 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 11053 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 11054 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       10950 
11055 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       10951 
11056 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 11057 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 11058 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 11059 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 11060 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 11061 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 11062 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 11063 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 11064 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       10952 
11065 
     | 
    
         
             
                #
         
     | 
| 
       10953 
11066 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
         
     | 
| 
       10954 
11067 
     | 
    
         
             
                #
         
     | 
| 
         @@ -11725,8 +11838,19 @@ module Aws::RDS 
     | 
|
| 
       11725 
11838 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       11726 
11839 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       11727 
11840 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 11841 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 11842 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 11843 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       11728 
11844 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       11729 
11845 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 11846 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 11847 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 11848 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 11849 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 11850 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 11851 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 11852 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 11853 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       11730 
11854 
     | 
    
         
             
                #
         
     | 
| 
       11731 
11855 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
         
     | 
| 
       11732 
11856 
     | 
    
         
             
                #
         
     | 
| 
         @@ -12283,7 +12407,7 @@ module Aws::RDS 
     | 
|
| 
       12283 
12407 
     | 
    
         
             
                #   The version number of the database engine to upgrade to. Changing this
         
     | 
| 
       12284 
12408 
     | 
    
         
             
                #   parameter results in an outage and the change is applied during the
         
     | 
| 
       12285 
12409 
     | 
    
         
             
                #   next maintenance window unless the `ApplyImmediately` parameter is
         
     | 
| 
       12286 
     | 
    
         
            -
                #    
     | 
| 
      
 12410 
     | 
    
         
            +
                #   enabled for this request.
         
     | 
| 
       12287 
12411 
     | 
    
         
             
                #
         
     | 
| 
       12288 
12412 
     | 
    
         
             
                #   For major version upgrades, if a nondefault DB parameter group is
         
     | 
| 
       12289 
12413 
     | 
    
         
             
                #   currently in use, a new DB parameter group in the DB parameter group
         
     | 
| 
         @@ -12557,8 +12681,10 @@ module Aws::RDS 
     | 
|
| 
       12557 
12681 
     | 
    
         
             
                # @option params [Boolean] :enable_iam_database_authentication
         
     | 
| 
       12558 
12682 
     | 
    
         
             
                #   A value that indicates whether to enable mapping of AWS Identity and
         
     | 
| 
       12559 
12683 
     | 
    
         
             
                #   Access Management (IAM) accounts to database accounts. By default,
         
     | 
| 
       12560 
     | 
    
         
            -
                #   mapping is disabled. 
     | 
| 
       12561 
     | 
    
         
            -
                # 
     | 
| 
      
 12684 
     | 
    
         
            +
                #   mapping is disabled.
         
     | 
| 
      
 12685 
     | 
    
         
            +
                #
         
     | 
| 
      
 12686 
     | 
    
         
            +
                #   This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
         
     | 
| 
      
 12687 
     | 
    
         
            +
                #   to database accounts is managed by the DB cluster.
         
     | 
| 
       12562 
12688 
     | 
    
         
             
                #
         
     | 
| 
       12563 
12689 
     | 
    
         
             
                #   For more information about IAM database authentication, see [ IAM
         
     | 
| 
       12564 
12690 
     | 
    
         
             
                #   Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
         
     | 
| 
         @@ -12581,13 +12707,15 @@ module Aws::RDS 
     | 
|
| 
       12581 
12707 
     | 
    
         
             
                #
         
     | 
| 
       12582 
12708 
     | 
    
         
             
                # @option params [String] :performance_insights_kms_key_id
         
     | 
| 
       12583 
12709 
     | 
    
         
             
                #   The AWS KMS key identifier for encryption of Performance Insights
         
     | 
| 
       12584 
     | 
    
         
            -
                #   data. 
     | 
| 
       12585 
     | 
    
         
            -
                # 
     | 
| 
      
 12710 
     | 
    
         
            +
                #   data.
         
     | 
| 
      
 12711 
     | 
    
         
            +
                #
         
     | 
| 
      
 12712 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 12713 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK).
         
     | 
| 
       12586 
12714 
     | 
    
         
             
                #
         
     | 
| 
       12587 
12715 
     | 
    
         
             
                #   If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
         
     | 
| 
       12588 
     | 
    
         
            -
                #   Amazon RDS uses your default  
     | 
| 
       12589 
     | 
    
         
            -
                #    
     | 
| 
       12590 
     | 
    
         
            -
                #    
     | 
| 
      
 12716 
     | 
    
         
            +
                #   Amazon RDS uses your default CMK. There is a default CMK for your AWS
         
     | 
| 
      
 12717 
     | 
    
         
            +
                #   account. Your AWS account has a different default CMK for each AWS
         
     | 
| 
      
 12718 
     | 
    
         
            +
                #   Region.
         
     | 
| 
       12591 
12719 
     | 
    
         
             
                #
         
     | 
| 
       12592 
12720 
     | 
    
         
             
                # @option params [Integer] :performance_insights_retention_period
         
     | 
| 
       12593 
12721 
     | 
    
         
             
                #   The amount of time, in days, to retain Performance Insights data.
         
     | 
| 
         @@ -12809,6 +12937,7 @@ module Aws::RDS 
     | 
|
| 
       12809 
12937 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       12810 
12938 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       12811 
12939 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 12940 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       12812 
12941 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       12813 
12942 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       12814 
12943 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -12871,6 +13000,11 @@ module Aws::RDS 
     | 
|
| 
       12871 
13000 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       12872 
13001 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       12873 
13002 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 13003 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 13004 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 13005 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 13006 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 13007 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       12874 
13008 
     | 
    
         
             
                #
         
     | 
| 
       12875 
13009 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
         
     | 
| 
       12876 
13010 
     | 
    
         
             
                #
         
     | 
| 
         @@ -13245,6 +13379,9 @@ module Aws::RDS 
     | 
|
| 
       13245 
13379 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].name #=> String
         
     | 
| 
       13246 
13380 
     | 
    
         
             
                #   resp.db_snapshot.processor_features[0].value #=> String
         
     | 
| 
       13247 
13381 
     | 
    
         
             
                #   resp.db_snapshot.dbi_resource_id #=> String
         
     | 
| 
      
 13382 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list #=> Array
         
     | 
| 
      
 13383 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].key #=> String
         
     | 
| 
      
 13384 
     | 
    
         
            +
                #   resp.db_snapshot.tag_list[0].value #=> String
         
     | 
| 
       13248 
13385 
     | 
    
         
             
                #
         
     | 
| 
       13249 
13386 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
         
     | 
| 
       13250 
13387 
     | 
    
         
             
                #
         
     | 
| 
         @@ -13894,6 +14031,7 @@ module Aws::RDS 
     | 
|
| 
       13894 
14031 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       13895 
14032 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       13896 
14033 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 14034 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       13897 
14035 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       13898 
14036 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       13899 
14037 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -13956,6 +14094,11 @@ module Aws::RDS 
     | 
|
| 
       13956 
14094 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       13957 
14095 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       13958 
14096 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 14097 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 14098 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 14099 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 14100 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 14101 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       13959 
14102 
     | 
    
         
             
                #
         
     | 
| 
       13960 
14103 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
         
     | 
| 
       13961 
14104 
     | 
    
         
             
                #
         
     | 
| 
         @@ -14071,8 +14214,19 @@ module Aws::RDS 
     | 
|
| 
       14071 
14214 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       14072 
14215 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       14073 
14216 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 14217 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 14218 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 14219 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       14074 
14220 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       14075 
14221 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 14222 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 14223 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 14224 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 14225 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 14226 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 14227 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 14228 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 14229 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       14076 
14230 
     | 
    
         
             
                #
         
     | 
| 
       14077 
14231 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
         
     | 
| 
       14078 
14232 
     | 
    
         
             
                #
         
     | 
| 
         @@ -14288,6 +14442,7 @@ module Aws::RDS 
     | 
|
| 
       14288 
14442 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       14289 
14443 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       14290 
14444 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 14445 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       14291 
14446 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       14292 
14447 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       14293 
14448 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -14350,6 +14505,11 @@ module Aws::RDS 
     | 
|
| 
       14350 
14505 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       14351 
14506 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       14352 
14507 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 14508 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 14509 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 14510 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 14511 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 14512 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       14353 
14513 
     | 
    
         
             
                #
         
     | 
| 
       14354 
14514 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
         
     | 
| 
       14355 
14515 
     | 
    
         
             
                #
         
     | 
| 
         @@ -14519,7 +14679,7 @@ module Aws::RDS 
     | 
|
| 
       14519 
14679 
     | 
    
         
             
                #
         
     | 
| 
       14520 
14680 
     | 
    
         
             
                # @option params [required, String] :role_arn
         
     | 
| 
       14521 
14681 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) of the IAM role to disassociate from
         
     | 
| 
       14522 
     | 
    
         
            -
                #   the DB instance, for example
         
     | 
| 
      
 14682 
     | 
    
         
            +
                #   the DB instance, for example,
         
     | 
| 
       14523 
14683 
     | 
    
         
             
                #   `arn:aws:iam::123456789012:role/AccessRole`.
         
     | 
| 
       14524 
14684 
     | 
    
         
             
                #
         
     | 
| 
       14525 
14685 
     | 
    
         
             
                # @option params [required, String] :feature_name
         
     | 
| 
         @@ -15068,17 +15228,14 @@ module Aws::RDS 
     | 
|
| 
       15068 
15228 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       15069 
15229 
     | 
    
         
             
                #   The AWS KMS key identifier for an encrypted DB cluster.
         
     | 
| 
       15070 
15230 
     | 
    
         
             
                #
         
     | 
| 
       15071 
     | 
    
         
            -
                #   The KMS key identifier is the  
     | 
| 
       15072 
     | 
    
         
            -
                #    
     | 
| 
       15073 
     | 
    
         
            -
                #   account  
     | 
| 
       15074 
     | 
    
         
            -
                #   cluster, then you can use the KMS key alias instead of the ARN for the
         
     | 
| 
       15075 
     | 
    
         
            -
                #   KM encryption key.
         
     | 
| 
      
 15231 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 15232 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK). To use a CMK in a
         
     | 
| 
      
 15233 
     | 
    
         
            +
                #   different AWS account, specify the key ARN or alias ARN.
         
     | 
| 
       15076 
15234 
     | 
    
         
             
                #
         
     | 
| 
       15077 
15235 
     | 
    
         
             
                #   If the StorageEncrypted parameter is enabled, and you do not specify a
         
     | 
| 
       15078 
15236 
     | 
    
         
             
                #   value for the `KmsKeyId` parameter, then Amazon RDS will use your
         
     | 
| 
       15079 
     | 
    
         
            -
                #   default  
     | 
| 
       15080 
     | 
    
         
            -
                #    
     | 
| 
       15081 
     | 
    
         
            -
                #   key for each AWS Region.
         
     | 
| 
      
 15237 
     | 
    
         
            +
                #   default CMK. There is a default CMK for your AWS account. Your AWS
         
     | 
| 
      
 15238 
     | 
    
         
            +
                #   account has a different default CMK for each AWS Region.
         
     | 
| 
       15082 
15239 
     | 
    
         
             
                #
         
     | 
| 
       15083 
15240 
     | 
    
         
             
                # @option params [Boolean] :enable_iam_database_authentication
         
     | 
| 
       15084 
15241 
     | 
    
         
             
                #   A value that indicates whether to enable mapping of AWS Identity and
         
     | 
| 
         @@ -15296,8 +15453,19 @@ module Aws::RDS 
     | 
|
| 
       15296 
15453 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       15297 
15454 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       15298 
15455 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 15456 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 15457 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 15458 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       15299 
15459 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       15300 
15460 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 15461 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 15462 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 15463 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 15464 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 15465 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 15466 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 15467 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 15468 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       15301 
15469 
     | 
    
         
             
                #
         
     | 
| 
       15302 
15470 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
         
     | 
| 
       15303 
15471 
     | 
    
         
             
                #
         
     | 
| 
         @@ -15440,18 +15608,17 @@ module Aws::RDS 
     | 
|
| 
       15440 
15608 
     | 
    
         
             
                #   The AWS KMS key identifier to use when restoring an encrypted DB
         
     | 
| 
       15441 
15609 
     | 
    
         
             
                #   cluster from a DB snapshot or DB cluster snapshot.
         
     | 
| 
       15442 
15610 
     | 
    
         
             
                #
         
     | 
| 
       15443 
     | 
    
         
            -
                #   The KMS key identifier is the  
     | 
| 
       15444 
     | 
    
         
            -
                #    
     | 
| 
       15445 
     | 
    
         
            -
                #   account  
     | 
| 
       15446 
     | 
    
         
            -
                #   cluster, then you can use the KMS key alias instead of the ARN for the
         
     | 
| 
       15447 
     | 
    
         
            -
                #   KMS encryption key.
         
     | 
| 
      
 15611 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 15612 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK). To use a CMK in a
         
     | 
| 
      
 15613 
     | 
    
         
            +
                #   different AWS account, specify the key ARN or alias ARN.
         
     | 
| 
       15448 
15614 
     | 
    
         
             
                #
         
     | 
| 
       15449 
     | 
    
         
            -
                #    
     | 
| 
      
 15615 
     | 
    
         
            +
                #   When you don't specify a value for the `KmsKeyId` parameter, then the
         
     | 
| 
       15450 
15616 
     | 
    
         
             
                #   following occurs:
         
     | 
| 
       15451 
15617 
     | 
    
         
             
                #
         
     | 
| 
       15452 
15618 
     | 
    
         
             
                #   * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
         
     | 
| 
       15453 
     | 
    
         
            -
                #     encrypted, then the restored DB cluster is encrypted using the  
     | 
| 
       15454 
     | 
    
         
            -
                #      
     | 
| 
      
 15619 
     | 
    
         
            +
                #     encrypted, then the restored DB cluster is encrypted using the AWS
         
     | 
| 
      
 15620 
     | 
    
         
            +
                #     KMS CMK that was used to encrypt the DB snapshot or DB cluster
         
     | 
| 
      
 15621 
     | 
    
         
            +
                #     snapshot.
         
     | 
| 
       15455 
15622 
     | 
    
         
             
                #
         
     | 
| 
       15456 
15623 
     | 
    
         
             
                #   * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
         
     | 
| 
       15457 
15624 
     | 
    
         
             
                #     isn't encrypted, then the restored DB cluster isn't encrypted.
         
     | 
| 
         @@ -15499,6 +15666,12 @@ module Aws::RDS 
     | 
|
| 
       15499 
15666 
     | 
    
         
             
                #   The DB engine mode of the DB cluster, either `provisioned`,
         
     | 
| 
       15500 
15667 
     | 
    
         
             
                #   `serverless`, `parallelquery`, `global`, or `multimaster`.
         
     | 
| 
       15501 
15668 
     | 
    
         
             
                #
         
     | 
| 
      
 15669 
     | 
    
         
            +
                #   For more information, see [ CreateDBCluster][1].
         
     | 
| 
      
 15670 
     | 
    
         
            +
                #
         
     | 
| 
      
 15671 
     | 
    
         
            +
                #
         
     | 
| 
      
 15672 
     | 
    
         
            +
                #
         
     | 
| 
      
 15673 
     | 
    
         
            +
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
         
     | 
| 
      
 15674 
     | 
    
         
            +
                #
         
     | 
| 
       15502 
15675 
     | 
    
         
             
                # @option params [Types::ScalingConfiguration] :scaling_configuration
         
     | 
| 
       15503 
15676 
     | 
    
         
             
                #   For DB clusters in `serverless` DB engine mode, the scaling properties
         
     | 
| 
       15504 
15677 
     | 
    
         
             
                #   of the DB cluster.
         
     | 
| 
         @@ -15682,8 +15855,19 @@ module Aws::RDS 
     | 
|
| 
       15682 
15855 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       15683 
15856 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       15684 
15857 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 15858 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 15859 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 15860 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       15685 
15861 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       15686 
15862 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 15863 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 15864 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 15865 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 15866 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 15867 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 15868 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 15869 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 15870 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       15687 
15871 
     | 
    
         
             
                #
         
     | 
| 
       15688 
15872 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
         
     | 
| 
       15689 
15873 
     | 
    
         
             
                #
         
     | 
| 
         @@ -15819,23 +16003,21 @@ module Aws::RDS 
     | 
|
| 
       15819 
16003 
     | 
    
         
             
                #   The AWS KMS key identifier to use when restoring an encrypted DB
         
     | 
| 
       15820 
16004 
     | 
    
         
             
                #   cluster from an encrypted DB cluster.
         
     | 
| 
       15821 
16005 
     | 
    
         
             
                #
         
     | 
| 
       15822 
     | 
    
         
            -
                #   The KMS key identifier is the  
     | 
| 
       15823 
     | 
    
         
            -
                #    
     | 
| 
       15824 
     | 
    
         
            -
                #   account  
     | 
| 
       15825 
     | 
    
         
            -
                #   cluster, then you can use the KMS key alias instead of the ARN for the
         
     | 
| 
       15826 
     | 
    
         
            -
                #   KMS encryption key.
         
     | 
| 
      
 16006 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 16007 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK). To use a CMK in a
         
     | 
| 
      
 16008 
     | 
    
         
            +
                #   different AWS account, specify the key ARN or alias ARN.
         
     | 
| 
       15827 
16009 
     | 
    
         
             
                #
         
     | 
| 
       15828 
16010 
     | 
    
         
             
                #   You can restore to a new DB cluster and encrypt the new DB cluster
         
     | 
| 
       15829 
     | 
    
         
            -
                #   with a KMS  
     | 
| 
       15830 
     | 
    
         
            -
                #   source DB cluster. The new DB cluster is encrypted with 
     | 
| 
       15831 
     | 
    
         
            -
                #   identified by the `KmsKeyId` parameter.
         
     | 
| 
      
 16011 
     | 
    
         
            +
                #   with a AWS KMS CMK that is different than the AWS KMS key used to
         
     | 
| 
      
 16012 
     | 
    
         
            +
                #   encrypt the source DB cluster. The new DB cluster is encrypted with
         
     | 
| 
      
 16013 
     | 
    
         
            +
                #   the AWS KMS CMK identified by the `KmsKeyId` parameter.
         
     | 
| 
       15832 
16014 
     | 
    
         
             
                #
         
     | 
| 
       15833 
16015 
     | 
    
         
             
                #   If you don't specify a value for the `KmsKeyId` parameter, then the
         
     | 
| 
       15834 
16016 
     | 
    
         
             
                #   following occurs:
         
     | 
| 
       15835 
16017 
     | 
    
         
             
                #
         
     | 
| 
       15836 
16018 
     | 
    
         
             
                #   * If the DB cluster is encrypted, then the restored DB cluster is
         
     | 
| 
       15837 
     | 
    
         
            -
                #     encrypted using the KMS  
     | 
| 
       15838 
     | 
    
         
            -
                #     cluster.
         
     | 
| 
      
 16019 
     | 
    
         
            +
                #     encrypted using the AWS KMS CMK that was used to encrypt the source
         
     | 
| 
      
 16020 
     | 
    
         
            +
                #     DB cluster.
         
     | 
| 
       15839 
16021 
     | 
    
         
             
                #
         
     | 
| 
       15840 
16022 
     | 
    
         
             
                #   * If the DB cluster isn't encrypted, then the restored DB cluster
         
     | 
| 
       15841 
16023 
     | 
    
         
             
                #     isn't encrypted.
         
     | 
| 
         @@ -16052,8 +16234,19 @@ module Aws::RDS 
     | 
|
| 
       16052 
16234 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       16053 
16235 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       16054 
16236 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 16237 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 16238 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 16239 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       16055 
16240 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       16056 
16241 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 16242 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 16243 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 16244 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 16245 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 16246 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 16247 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 16248 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 16249 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       16057 
16250 
     | 
    
         
             
                #
         
     | 
| 
       16058 
16251 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
         
     | 
| 
       16059 
16252 
     | 
    
         
             
                #
         
     | 
| 
         @@ -16065,23 +16258,23 @@ module Aws::RDS 
     | 
|
| 
       16065 
16258 
     | 
    
         
             
                end
         
     | 
| 
       16066 
16259 
     | 
    
         | 
| 
       16067 
16260 
     | 
    
         
             
                # Creates a new DB instance from a DB snapshot. The target database is
         
     | 
| 
       16068 
     | 
    
         
            -
                # created from the source database restore point with  
     | 
| 
       16069 
     | 
    
         
            -
                # original configuration  
     | 
| 
       16070 
     | 
    
         
            -
                # DB parameter group. By default, the new DB instance is created as 
     | 
| 
       16071 
     | 
    
         
            -
                #  
     | 
| 
       16072 
     | 
    
         
            -
                # that has an option group  
     | 
| 
       16073 
     | 
    
         
            -
                # case, the instance becomes a  
     | 
| 
       16074 
     | 
    
         
            -
                #  
     | 
| 
      
 16261 
     | 
    
         
            +
                # created from the source database restore point with most of the
         
     | 
| 
      
 16262 
     | 
    
         
            +
                # source's original configuration, including the default security group
         
     | 
| 
      
 16263 
     | 
    
         
            +
                # and DB parameter group. By default, the new DB instance is created as
         
     | 
| 
      
 16264 
     | 
    
         
            +
                # a Single-AZ deployment, except when the instance is a SQL Server
         
     | 
| 
      
 16265 
     | 
    
         
            +
                # instance that has an option group associated with mirroring. In this
         
     | 
| 
      
 16266 
     | 
    
         
            +
                # case, the instance becomes a Multi-AZ deployment, not a Single-AZ
         
     | 
| 
      
 16267 
     | 
    
         
            +
                # deployment.
         
     | 
| 
       16075 
16268 
     | 
    
         
             
                #
         
     | 
| 
       16076 
     | 
    
         
            -
                # If  
     | 
| 
      
 16269 
     | 
    
         
            +
                # If you want to replace your original DB instance with the new,
         
     | 
| 
       16077 
16270 
     | 
    
         
             
                # restored DB instance, then rename your original DB instance before you
         
     | 
| 
       16078 
16271 
     | 
    
         
             
                # call the RestoreDBInstanceFromDBSnapshot action. RDS doesn't allow
         
     | 
| 
       16079 
     | 
    
         
            -
                # two DB instances with the same name.  
     | 
| 
      
 16272 
     | 
    
         
            +
                # two DB instances with the same name. After you have renamed your
         
     | 
| 
       16080 
16273 
     | 
    
         
             
                # original DB instance with a different identifier, then you can pass
         
     | 
| 
       16081 
16274 
     | 
    
         
             
                # the original name of the DB instance as the DBInstanceIdentifier in
         
     | 
| 
       16082 
16275 
     | 
    
         
             
                # the call to the RestoreDBInstanceFromDBSnapshot action. The result is
         
     | 
| 
       16083 
     | 
    
         
            -
                # that you  
     | 
| 
       16084 
     | 
    
         
            -
                #  
     | 
| 
      
 16276 
     | 
    
         
            +
                # that you replace the original DB instance with the DB instance created
         
     | 
| 
      
 16277 
     | 
    
         
            +
                # from the snapshot.
         
     | 
| 
       16085 
16278 
     | 
    
         
             
                #
         
     | 
| 
       16086 
16279 
     | 
    
         
             
                # If you are restoring from a shared manual DB snapshot, the
         
     | 
| 
       16087 
16280 
     | 
    
         
             
                # `DBSnapshotIdentifier` must be the ARN of the shared DB snapshot.
         
     | 
| 
         @@ -16312,8 +16505,7 @@ module Aws::RDS 
     | 
|
| 
       16312 
16505 
     | 
    
         
             
                # @option params [Boolean] :enable_iam_database_authentication
         
     | 
| 
       16313 
16506 
     | 
    
         
             
                #   A value that indicates whether to enable mapping of AWS Identity and
         
     | 
| 
       16314 
16507 
     | 
    
         
             
                #   Access Management (IAM) accounts to database accounts. By default,
         
     | 
| 
       16315 
     | 
    
         
            -
                #   mapping is disabled. 
     | 
| 
       16316 
     | 
    
         
            -
                #   see CreateDBInstance.
         
     | 
| 
      
 16508 
     | 
    
         
            +
                #   mapping is disabled.
         
     | 
| 
       16317 
16509 
     | 
    
         
             
                #
         
     | 
| 
       16318 
16510 
     | 
    
         
             
                #   For more information about IAM database authentication, see [ IAM
         
     | 
| 
       16319 
16511 
     | 
    
         
             
                #   Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
         
     | 
| 
         @@ -16565,6 +16757,7 @@ module Aws::RDS 
     | 
|
| 
       16565 
16757 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       16566 
16758 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       16567 
16759 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 16760 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       16568 
16761 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       16569 
16762 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       16570 
16763 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -16627,6 +16820,11 @@ module Aws::RDS 
     | 
|
| 
       16627 
16820 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       16628 
16821 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       16629 
16822 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 16823 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 16824 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 16825 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 16826 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 16827 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       16630 
16828 
     | 
    
         
             
                #
         
     | 
| 
       16631 
16829 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
         
     | 
| 
       16632 
16830 
     | 
    
         
             
                #
         
     | 
| 
         @@ -16875,17 +17073,14 @@ module Aws::RDS 
     | 
|
| 
       16875 
17073 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       16876 
17074 
     | 
    
         
             
                #   The AWS KMS key identifier for an encrypted DB instance.
         
     | 
| 
       16877 
17075 
     | 
    
         
             
                #
         
     | 
| 
       16878 
     | 
    
         
            -
                #   The KMS key identifier is the  
     | 
| 
       16879 
     | 
    
         
            -
                #    
     | 
| 
       16880 
     | 
    
         
            -
                #   account  
     | 
| 
       16881 
     | 
    
         
            -
                #   instance, then you can use the KMS key alias instead of the ARN for
         
     | 
| 
       16882 
     | 
    
         
            -
                #   the KM encryption key.
         
     | 
| 
      
 17076 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 17077 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK). To use a CMK in a
         
     | 
| 
      
 17078 
     | 
    
         
            +
                #   different AWS account, specify the key ARN or alias ARN.
         
     | 
| 
       16883 
17079 
     | 
    
         
             
                #
         
     | 
| 
       16884 
17080 
     | 
    
         
             
                #   If the `StorageEncrypted` parameter is enabled, and you do not specify
         
     | 
| 
       16885 
17081 
     | 
    
         
             
                #   a value for the `KmsKeyId` parameter, then Amazon RDS will use your
         
     | 
| 
       16886 
     | 
    
         
            -
                #   default  
     | 
| 
       16887 
     | 
    
         
            -
                #    
     | 
| 
       16888 
     | 
    
         
            -
                #   key for each AWS Region.
         
     | 
| 
      
 17082 
     | 
    
         
            +
                #   default CMK. There is a default CMK for your AWS account. Your AWS
         
     | 
| 
      
 17083 
     | 
    
         
            +
                #   account has a different default CMK for each AWS Region.
         
     | 
| 
       16889 
17084 
     | 
    
         
             
                #
         
     | 
| 
       16890 
17085 
     | 
    
         
             
                # @option params [Boolean] :copy_tags_to_snapshot
         
     | 
| 
       16891 
17086 
     | 
    
         
             
                #   A value that indicates whether to copy all tags from the DB instance
         
     | 
| 
         @@ -16920,8 +17115,7 @@ module Aws::RDS 
     | 
|
| 
       16920 
17115 
     | 
    
         
             
                # @option params [Boolean] :enable_iam_database_authentication
         
     | 
| 
       16921 
17116 
     | 
    
         
             
                #   A value that indicates whether to enable mapping of AWS Identity and
         
     | 
| 
       16922 
17117 
     | 
    
         
             
                #   Access Management (IAM) accounts to database accounts. By default,
         
     | 
| 
       16923 
     | 
    
         
            -
                #   mapping is disabled. 
     | 
| 
       16924 
     | 
    
         
            -
                #   see CreateDBInstance.
         
     | 
| 
      
 17118 
     | 
    
         
            +
                #   mapping is disabled.
         
     | 
| 
       16925 
17119 
     | 
    
         
             
                #
         
     | 
| 
       16926 
17120 
     | 
    
         
             
                #   For more information about IAM database authentication, see [ IAM
         
     | 
| 
       16927 
17121 
     | 
    
         
             
                #   Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
         
     | 
| 
         @@ -16967,13 +17161,15 @@ module Aws::RDS 
     | 
|
| 
       16967 
17161 
     | 
    
         
             
                #
         
     | 
| 
       16968 
17162 
     | 
    
         
             
                # @option params [String] :performance_insights_kms_key_id
         
     | 
| 
       16969 
17163 
     | 
    
         
             
                #   The AWS KMS key identifier for encryption of Performance Insights
         
     | 
| 
       16970 
     | 
    
         
            -
                #   data. 
     | 
| 
       16971 
     | 
    
         
            -
                # 
     | 
| 
      
 17164 
     | 
    
         
            +
                #   data.
         
     | 
| 
      
 17165 
     | 
    
         
            +
                #
         
     | 
| 
      
 17166 
     | 
    
         
            +
                #   The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
         
     | 
| 
      
 17167 
     | 
    
         
            +
                #   name for the AWS KMS customer master key (CMK).
         
     | 
| 
       16972 
17168 
     | 
    
         
             
                #
         
     | 
| 
       16973 
17169 
     | 
    
         
             
                #   If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
         
     | 
| 
       16974 
     | 
    
         
            -
                #   Amazon RDS uses your default  
     | 
| 
       16975 
     | 
    
         
            -
                #    
     | 
| 
       16976 
     | 
    
         
            -
                #    
     | 
| 
      
 17170 
     | 
    
         
            +
                #   Amazon RDS uses your default CMK. There is a default CMK for your AWS
         
     | 
| 
      
 17171 
     | 
    
         
            +
                #   account. Your AWS account has a different default CMK for each AWS
         
     | 
| 
      
 17172 
     | 
    
         
            +
                #   Region.
         
     | 
| 
       16977 
17173 
     | 
    
         
             
                #
         
     | 
| 
       16978 
17174 
     | 
    
         
             
                # @option params [Integer] :performance_insights_retention_period
         
     | 
| 
       16979 
17175 
     | 
    
         
             
                #   The amount of time, in days, to retain Performance Insights data.
         
     | 
| 
         @@ -17130,6 +17326,7 @@ module Aws::RDS 
     | 
|
| 
       17130 
17326 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       17131 
17327 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       17132 
17328 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 17329 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       17133 
17330 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       17134 
17331 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       17135 
17332 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -17192,6 +17389,11 @@ module Aws::RDS 
     | 
|
| 
       17192 
17389 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       17193 
17390 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       17194 
17391 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 17392 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 17393 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 17394 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 17395 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 17396 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       17195 
17397 
     | 
    
         
             
                #
         
     | 
| 
       17196 
17398 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
         
     | 
| 
       17197 
17399 
     | 
    
         
             
                #
         
     | 
| 
         @@ -17450,8 +17652,7 @@ module Aws::RDS 
     | 
|
| 
       17450 
17652 
     | 
    
         
             
                # @option params [Boolean] :enable_iam_database_authentication
         
     | 
| 
       17451 
17653 
     | 
    
         
             
                #   A value that indicates whether to enable mapping of AWS Identity and
         
     | 
| 
       17452 
17654 
     | 
    
         
             
                #   Access Management (IAM) accounts to database accounts. By default,
         
     | 
| 
       17453 
     | 
    
         
            -
                #   mapping is disabled. 
     | 
| 
       17454 
     | 
    
         
            -
                #   see CreateDBInstance.
         
     | 
| 
      
 17655 
     | 
    
         
            +
                #   mapping is disabled.
         
     | 
| 
       17455 
17656 
     | 
    
         
             
                #
         
     | 
| 
       17456 
17657 
     | 
    
         
             
                #   For more information about IAM database authentication, see [ IAM
         
     | 
| 
       17457 
17658 
     | 
    
         
             
                #   Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
         
     | 
| 
         @@ -17512,6 +17713,11 @@ module Aws::RDS 
     | 
|
| 
       17512 
17713 
     | 
    
         
             
                #   The upper limit to which Amazon RDS can automatically scale the
         
     | 
| 
       17513 
17714 
     | 
    
         
             
                #   storage of the DB instance.
         
     | 
| 
       17514 
17715 
     | 
    
         
             
                #
         
     | 
| 
      
 17716 
     | 
    
         
            +
                # @option params [String] :source_db_instance_automated_backups_arn
         
     | 
| 
      
 17717 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of the replicated automated backups
         
     | 
| 
      
 17718 
     | 
    
         
            +
                #   from which to restore, for example,
         
     | 
| 
      
 17719 
     | 
    
         
            +
                #   `arn:aws:rds:useast-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
         
     | 
| 
      
 17720 
     | 
    
         
            +
                #
         
     | 
| 
       17515 
17721 
     | 
    
         
             
                # @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
       17516 
17722 
     | 
    
         
             
                #
         
     | 
| 
       17517 
17723 
     | 
    
         
             
                #   * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
         
     | 
| 
         @@ -17657,6 +17863,7 @@ module Aws::RDS 
     | 
|
| 
       17657 
17863 
     | 
    
         
             
                #     deletion_protection: false,
         
     | 
| 
       17658 
17864 
     | 
    
         
             
                #     source_dbi_resource_id: "String",
         
     | 
| 
       17659 
17865 
     | 
    
         
             
                #     max_allocated_storage: 1,
         
     | 
| 
      
 17866 
     | 
    
         
            +
                #     source_db_instance_automated_backups_arn: "String",
         
     | 
| 
       17660 
17867 
     | 
    
         
             
                #   })
         
     | 
| 
       17661 
17868 
     | 
    
         
             
                #
         
     | 
| 
       17662 
17869 
     | 
    
         
             
                # @example Response structure
         
     | 
| 
         @@ -17715,6 +17922,7 @@ module Aws::RDS 
     | 
|
| 
       17715 
17922 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       17716 
17923 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       17717 
17924 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 17925 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       17718 
17926 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       17719 
17927 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       17720 
17928 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -17777,6 +17985,11 @@ module Aws::RDS 
     | 
|
| 
       17777 
17985 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       17778 
17986 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       17779 
17987 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 17988 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 17989 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 17990 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 17991 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 17992 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       17780 
17993 
     | 
    
         
             
                #
         
     | 
| 
       17781 
17994 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
         
     | 
| 
       17782 
17995 
     | 
    
         
             
                #
         
     | 
| 
         @@ -17885,7 +18098,7 @@ module Aws::RDS 
     | 
|
| 
       17885 
18098 
     | 
    
         
             
                # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html
         
     | 
| 
       17886 
18099 
     | 
    
         
             
                #
         
     | 
| 
       17887 
18100 
     | 
    
         
             
                # @option params [required, String] :resource_arn
         
     | 
| 
       17888 
     | 
    
         
            -
                #   The Amazon Resource Name (ARN) of the DB cluster, for example
         
     | 
| 
      
 18101 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of the DB cluster, for example,
         
     | 
| 
       17889 
18102 
     | 
    
         
             
                #   `arn:aws:rds:us-east-1:12345667890:cluster:das-cluster`.
         
     | 
| 
       17890 
18103 
     | 
    
         
             
                #
         
     | 
| 
       17891 
18104 
     | 
    
         
             
                # @option params [required, String] :mode
         
     | 
| 
         @@ -17896,8 +18109,8 @@ module Aws::RDS 
     | 
|
| 
       17896 
18109 
     | 
    
         
             
                #
         
     | 
| 
       17897 
18110 
     | 
    
         
             
                # @option params [required, String] :kms_key_id
         
     | 
| 
       17898 
18111 
     | 
    
         
             
                #   The AWS KMS key identifier for encrypting messages in the database
         
     | 
| 
       17899 
     | 
    
         
            -
                #   activity stream. The key identifier  
     | 
| 
       17900 
     | 
    
         
            -
                #   or  
     | 
| 
      
 18112 
     | 
    
         
            +
                #   activity stream. The AWS KMS key identifier is the key ARN, key ID,
         
     | 
| 
      
 18113 
     | 
    
         
            +
                #   alias ARN, or alias name for the AWS KMS customer master key (CMK).
         
     | 
| 
       17901 
18114 
     | 
    
         
             
                #
         
     | 
| 
       17902 
18115 
     | 
    
         
             
                # @option params [Boolean] :apply_immediately
         
     | 
| 
       17903 
18116 
     | 
    
         
             
                #   Specifies whether or not the database activity stream is to start as
         
     | 
| 
         @@ -18044,8 +18257,19 @@ module Aws::RDS 
     | 
|
| 
       18044 
18257 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       18045 
18258 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       18046 
18259 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 18260 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 18261 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 18262 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       18047 
18263 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       18048 
18264 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 18265 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 18266 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 18267 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 18268 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 18269 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 18270 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 18271 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 18272 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       18049 
18273 
     | 
    
         
             
                #
         
     | 
| 
       18050 
18274 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
         
     | 
| 
       18051 
18275 
     | 
    
         
             
                #
         
     | 
| 
         @@ -18141,6 +18365,7 @@ module Aws::RDS 
     | 
|
| 
       18141 
18365 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       18142 
18366 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       18143 
18367 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 18368 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       18144 
18369 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       18145 
18370 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       18146 
18371 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -18203,6 +18428,11 @@ module Aws::RDS 
     | 
|
| 
       18203 
18428 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       18204 
18429 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       18205 
18430 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 18431 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 18432 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 18433 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 18434 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 18435 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       18206 
18436 
     | 
    
         
             
                #
         
     | 
| 
       18207 
18437 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
         
     | 
| 
       18208 
18438 
     | 
    
         
             
                #
         
     | 
| 
         @@ -18213,6 +18443,95 @@ module Aws::RDS 
     | 
|
| 
       18213 
18443 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       18214 
18444 
     | 
    
         
             
                end
         
     | 
| 
       18215 
18445 
     | 
    
         | 
| 
      
 18446 
     | 
    
         
            +
                # Enables replication of automated backups to a different AWS Region.
         
     | 
| 
      
 18447 
     | 
    
         
            +
                #
         
     | 
| 
      
 18448 
     | 
    
         
            +
                # For more information, see [ Replicating Automated Backups to Another
         
     | 
| 
      
 18449 
     | 
    
         
            +
                # AWS Region][1] in the *Amazon RDS User Guide.*
         
     | 
| 
      
 18450 
     | 
    
         
            +
                #
         
     | 
| 
      
 18451 
     | 
    
         
            +
                #
         
     | 
| 
      
 18452 
     | 
    
         
            +
                #
         
     | 
| 
      
 18453 
     | 
    
         
            +
                # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html
         
     | 
| 
      
 18454 
     | 
    
         
            +
                #
         
     | 
| 
      
 18455 
     | 
    
         
            +
                # @option params [required, String] :source_db_instance_arn
         
     | 
| 
      
 18456 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of the source DB instance for the
         
     | 
| 
      
 18457 
     | 
    
         
            +
                #   replicated automated backups, for example,
         
     | 
| 
      
 18458 
     | 
    
         
            +
                #   `arn:aws:rds:us-west-2:123456789012:db:mydatabase`.
         
     | 
| 
      
 18459 
     | 
    
         
            +
                #
         
     | 
| 
      
 18460 
     | 
    
         
            +
                # @option params [Integer] :backup_retention_period
         
     | 
| 
      
 18461 
     | 
    
         
            +
                #   The retention period for the replicated automated backups.
         
     | 
| 
      
 18462 
     | 
    
         
            +
                #
         
     | 
| 
      
 18463 
     | 
    
         
            +
                # @option params [String] :kms_key_id
         
     | 
| 
      
 18464 
     | 
    
         
            +
                #   The AWS KMS key identifier for encryption of the replicated automated
         
     | 
| 
      
 18465 
     | 
    
         
            +
                #   backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS
         
     | 
| 
      
 18466 
     | 
    
         
            +
                #   encryption key in the destination AWS Region, for example,
         
     | 
| 
      
 18467 
     | 
    
         
            +
                #   `arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE`.
         
     | 
| 
      
 18468 
     | 
    
         
            +
                #
         
     | 
| 
      
 18469 
     | 
    
         
            +
                # @option params [String] :pre_signed_url
         
     | 
| 
      
 18470 
     | 
    
         
            +
                #   A URL that contains a Signature Version 4 signed request for the
         
     | 
| 
      
 18471 
     | 
    
         
            +
                #   StartDBInstanceAutomatedBackupsReplication action to be called in the
         
     | 
| 
      
 18472 
     | 
    
         
            +
                #   AWS Region of the source DB instance. The presigned URL must be a
         
     | 
| 
      
 18473 
     | 
    
         
            +
                #   valid request for the StartDBInstanceAutomatedBackupsReplication API
         
     | 
| 
      
 18474 
     | 
    
         
            +
                #   action that can be executed in the AWS Region that contains the source
         
     | 
| 
      
 18475 
     | 
    
         
            +
                #   DB instance.
         
     | 
| 
      
 18476 
     | 
    
         
            +
                #
         
     | 
| 
      
 18477 
     | 
    
         
            +
                # @option params [String] :source_region
         
     | 
| 
      
 18478 
     | 
    
         
            +
                #   The source region of the snapshot. This is only needed when the
         
     | 
| 
      
 18479 
     | 
    
         
            +
                #   shapshot is encrypted and in a different region.
         
     | 
| 
      
 18480 
     | 
    
         
            +
                #
         
     | 
| 
      
 18481 
     | 
    
         
            +
                # @return [Types::StartDBInstanceAutomatedBackupsReplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
      
 18482 
     | 
    
         
            +
                #
         
     | 
| 
      
 18483 
     | 
    
         
            +
                #   * {Types::StartDBInstanceAutomatedBackupsReplicationResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
         
     | 
| 
      
 18484 
     | 
    
         
            +
                #
         
     | 
| 
      
 18485 
     | 
    
         
            +
                # @example Request syntax with placeholder values
         
     | 
| 
      
 18486 
     | 
    
         
            +
                #
         
     | 
| 
      
 18487 
     | 
    
         
            +
                #   resp = client.start_db_instance_automated_backups_replication({
         
     | 
| 
      
 18488 
     | 
    
         
            +
                #     source_db_instance_arn: "String", # required
         
     | 
| 
      
 18489 
     | 
    
         
            +
                #     backup_retention_period: 1,
         
     | 
| 
      
 18490 
     | 
    
         
            +
                #     kms_key_id: "String",
         
     | 
| 
      
 18491 
     | 
    
         
            +
                #     pre_signed_url: "String",
         
     | 
| 
      
 18492 
     | 
    
         
            +
                #     source_region: "String",
         
     | 
| 
      
 18493 
     | 
    
         
            +
                #   })
         
     | 
| 
      
 18494 
     | 
    
         
            +
                #
         
     | 
| 
      
 18495 
     | 
    
         
            +
                # @example Response structure
         
     | 
| 
      
 18496 
     | 
    
         
            +
                #
         
     | 
| 
      
 18497 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_arn #=> String
         
     | 
| 
      
 18498 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.dbi_resource_id #=> String
         
     | 
| 
      
 18499 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.region #=> String
         
     | 
| 
      
 18500 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_identifier #=> String
         
     | 
| 
      
 18501 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.restore_window.earliest_time #=> Time
         
     | 
| 
      
 18502 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.restore_window.latest_time #=> Time
         
     | 
| 
      
 18503 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.allocated_storage #=> Integer
         
     | 
| 
      
 18504 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.status #=> String
         
     | 
| 
      
 18505 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.port #=> Integer
         
     | 
| 
      
 18506 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.availability_zone #=> String
         
     | 
| 
      
 18507 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.vpc_id #=> String
         
     | 
| 
      
 18508 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.instance_create_time #=> Time
         
     | 
| 
      
 18509 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.master_username #=> String
         
     | 
| 
      
 18510 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.engine #=> String
         
     | 
| 
      
 18511 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.engine_version #=> String
         
     | 
| 
      
 18512 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.license_model #=> String
         
     | 
| 
      
 18513 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.iops #=> Integer
         
     | 
| 
      
 18514 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.option_group_name #=> String
         
     | 
| 
      
 18515 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.tde_credential_arn #=> String
         
     | 
| 
      
 18516 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.encrypted #=> Boolean
         
     | 
| 
      
 18517 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.storage_type #=> String
         
     | 
| 
      
 18518 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.kms_key_id #=> String
         
     | 
| 
      
 18519 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.timezone #=> String
         
     | 
| 
      
 18520 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 18521 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.backup_retention_period #=> Integer
         
     | 
| 
      
 18522 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
         
     | 
| 
      
 18523 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 18524 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
      
 18525 
     | 
    
         
            +
                #
         
     | 
| 
      
 18526 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
         
     | 
| 
      
 18527 
     | 
    
         
            +
                #
         
     | 
| 
      
 18528 
     | 
    
         
            +
                # @overload start_db_instance_automated_backups_replication(params = {})
         
     | 
| 
      
 18529 
     | 
    
         
            +
                # @param [Hash] params ({})
         
     | 
| 
      
 18530 
     | 
    
         
            +
                def start_db_instance_automated_backups_replication(params = {}, options = {})
         
     | 
| 
      
 18531 
     | 
    
         
            +
                  req = build_request(:start_db_instance_automated_backups_replication, params)
         
     | 
| 
      
 18532 
     | 
    
         
            +
                  req.send_request(options)
         
     | 
| 
      
 18533 
     | 
    
         
            +
                end
         
     | 
| 
      
 18534 
     | 
    
         
            +
             
     | 
| 
       18216 
18535 
     | 
    
         
             
                # Starts an export of a snapshot to Amazon S3. The provided IAM role
         
     | 
| 
       18217 
18536 
     | 
    
         
             
                # must have access to the S3 bucket.
         
     | 
| 
       18218 
18537 
     | 
    
         
             
                #
         
     | 
| 
         @@ -18232,11 +18551,11 @@ module Aws::RDS 
     | 
|
| 
       18232 
18551 
     | 
    
         
             
                #   when exporting a snapshot.
         
     | 
| 
       18233 
18552 
     | 
    
         
             
                #
         
     | 
| 
       18234 
18553 
     | 
    
         
             
                # @option params [required, String] :kms_key_id
         
     | 
| 
       18235 
     | 
    
         
            -
                #   The ID of the AWS KMS key to use to encrypt the 
     | 
| 
       18236 
     | 
    
         
            -
                #   Amazon S3. The KMS key  
     | 
| 
       18237 
     | 
    
         
            -
                #   key  
     | 
| 
       18238 
     | 
    
         
            -
                #   caller of this operation must be authorized to execute 
     | 
| 
       18239 
     | 
    
         
            -
                #   operations. These can be set in the KMS key policy:
         
     | 
| 
      
 18554 
     | 
    
         
            +
                #   The ID of the AWS KMS customer master key (CMK) to use to encrypt the
         
     | 
| 
      
 18555 
     | 
    
         
            +
                #   snapshot exported to Amazon S3. The AWS KMS key identifier is the key
         
     | 
| 
      
 18556 
     | 
    
         
            +
                #   ARN, key ID, alias ARN, or alias name for the AWS KMS customer master
         
     | 
| 
      
 18557 
     | 
    
         
            +
                #   key (CMK). The caller of this operation must be authorized to execute
         
     | 
| 
      
 18558 
     | 
    
         
            +
                #   the following operations. These can be set in the AWS KMS key policy:
         
     | 
| 
       18240 
18559 
     | 
    
         
             
                #
         
     | 
| 
       18241 
18560 
     | 
    
         
             
                #   * GrantOperation.Encrypt
         
     | 
| 
       18242 
18561 
     | 
    
         
             
                #
         
     | 
| 
         @@ -18493,8 +18812,19 @@ module Aws::RDS 
     | 
|
| 
       18493 
18812 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].status #=> String
         
     | 
| 
       18494 
18813 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].fqdn #=> String
         
     | 
| 
       18495 
18814 
     | 
    
         
             
                #   resp.db_cluster.domain_memberships[0].iam_role_name #=> String
         
     | 
| 
      
 18815 
     | 
    
         
            +
                #   resp.db_cluster.tag_list #=> Array
         
     | 
| 
      
 18816 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].key #=> String
         
     | 
| 
      
 18817 
     | 
    
         
            +
                #   resp.db_cluster.tag_list[0].value #=> String
         
     | 
| 
       18496 
18818 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
         
     | 
| 
       18497 
18819 
     | 
    
         
             
                #   resp.db_cluster.global_write_forwarding_requested #=> Boolean
         
     | 
| 
      
 18820 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
         
     | 
| 
      
 18821 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
         
     | 
| 
      
 18822 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
         
     | 
| 
      
 18823 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
         
     | 
| 
      
 18824 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
         
     | 
| 
      
 18825 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.master_user_password #=> String
         
     | 
| 
      
 18826 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 18827 
     | 
    
         
            +
                #   resp.db_cluster.pending_modified_values.engine_version #=> String
         
     | 
| 
       18498 
18828 
     | 
    
         
             
                #
         
     | 
| 
       18499 
18829 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
         
     | 
| 
       18500 
18830 
     | 
    
         
             
                #
         
     | 
| 
         @@ -18597,6 +18927,7 @@ module Aws::RDS 
     | 
|
| 
       18597 
18927 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features #=> Array
         
     | 
| 
       18598 
18928 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].name #=> String
         
     | 
| 
       18599 
18929 
     | 
    
         
             
                #   resp.db_instance.pending_modified_values.processor_features[0].value #=> String
         
     | 
| 
      
 18930 
     | 
    
         
            +
                #   resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
       18600 
18931 
     | 
    
         
             
                #   resp.db_instance.latest_restorable_time #=> Time
         
     | 
| 
       18601 
18932 
     | 
    
         
             
                #   resp.db_instance.multi_az #=> Boolean
         
     | 
| 
       18602 
18933 
     | 
    
         
             
                #   resp.db_instance.engine_version #=> String
         
     | 
| 
         @@ -18659,6 +18990,11 @@ module Aws::RDS 
     | 
|
| 
       18659 
18990 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.port #=> Integer
         
     | 
| 
       18660 
18991 
     | 
    
         
             
                #   resp.db_instance.listener_endpoint.hosted_zone_id #=> String
         
     | 
| 
       18661 
18992 
     | 
    
         
             
                #   resp.db_instance.max_allocated_storage #=> Integer
         
     | 
| 
      
 18993 
     | 
    
         
            +
                #   resp.db_instance.tag_list #=> Array
         
     | 
| 
      
 18994 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].key #=> String
         
     | 
| 
      
 18995 
     | 
    
         
            +
                #   resp.db_instance.tag_list[0].value #=> String
         
     | 
| 
      
 18996 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 18997 
     | 
    
         
            +
                #   resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
       18662 
18998 
     | 
    
         
             
                #
         
     | 
| 
       18663 
18999 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
         
     | 
| 
       18664 
19000 
     | 
    
         
             
                #
         
     | 
| 
         @@ -18669,6 +19005,70 @@ module Aws::RDS 
     | 
|
| 
       18669 
19005 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       18670 
19006 
     | 
    
         
             
                end
         
     | 
| 
       18671 
19007 
     | 
    
         | 
| 
      
 19008 
     | 
    
         
            +
                # Stops automated backup replication for a DB instance.
         
     | 
| 
      
 19009 
     | 
    
         
            +
                #
         
     | 
| 
      
 19010 
     | 
    
         
            +
                # For more information, see [ Replicating Automated Backups to Another
         
     | 
| 
      
 19011 
     | 
    
         
            +
                # AWS Region][1] in the *Amazon RDS User Guide.*
         
     | 
| 
      
 19012 
     | 
    
         
            +
                #
         
     | 
| 
      
 19013 
     | 
    
         
            +
                #
         
     | 
| 
      
 19014 
     | 
    
         
            +
                #
         
     | 
| 
      
 19015 
     | 
    
         
            +
                # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html
         
     | 
| 
      
 19016 
     | 
    
         
            +
                #
         
     | 
| 
      
 19017 
     | 
    
         
            +
                # @option params [required, String] :source_db_instance_arn
         
     | 
| 
      
 19018 
     | 
    
         
            +
                #   The Amazon Resource Name (ARN) of the source DB instance for which to
         
     | 
| 
      
 19019 
     | 
    
         
            +
                #   stop replicating automated backups, for example,
         
     | 
| 
      
 19020 
     | 
    
         
            +
                #   `arn:aws:rds:us-west-2:123456789012:db:mydatabase`.
         
     | 
| 
      
 19021 
     | 
    
         
            +
                #
         
     | 
| 
      
 19022 
     | 
    
         
            +
                # @return [Types::StopDBInstanceAutomatedBackupsReplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
      
 19023 
     | 
    
         
            +
                #
         
     | 
| 
      
 19024 
     | 
    
         
            +
                #   * {Types::StopDBInstanceAutomatedBackupsReplicationResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
         
     | 
| 
      
 19025 
     | 
    
         
            +
                #
         
     | 
| 
      
 19026 
     | 
    
         
            +
                # @example Request syntax with placeholder values
         
     | 
| 
      
 19027 
     | 
    
         
            +
                #
         
     | 
| 
      
 19028 
     | 
    
         
            +
                #   resp = client.stop_db_instance_automated_backups_replication({
         
     | 
| 
      
 19029 
     | 
    
         
            +
                #     source_db_instance_arn: "String", # required
         
     | 
| 
      
 19030 
     | 
    
         
            +
                #   })
         
     | 
| 
      
 19031 
     | 
    
         
            +
                #
         
     | 
| 
      
 19032 
     | 
    
         
            +
                # @example Response structure
         
     | 
| 
      
 19033 
     | 
    
         
            +
                #
         
     | 
| 
      
 19034 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_arn #=> String
         
     | 
| 
      
 19035 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.dbi_resource_id #=> String
         
     | 
| 
      
 19036 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.region #=> String
         
     | 
| 
      
 19037 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_identifier #=> String
         
     | 
| 
      
 19038 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.restore_window.earliest_time #=> Time
         
     | 
| 
      
 19039 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.restore_window.latest_time #=> Time
         
     | 
| 
      
 19040 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.allocated_storage #=> Integer
         
     | 
| 
      
 19041 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.status #=> String
         
     | 
| 
      
 19042 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.port #=> Integer
         
     | 
| 
      
 19043 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.availability_zone #=> String
         
     | 
| 
      
 19044 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.vpc_id #=> String
         
     | 
| 
      
 19045 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.instance_create_time #=> Time
         
     | 
| 
      
 19046 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.master_username #=> String
         
     | 
| 
      
 19047 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.engine #=> String
         
     | 
| 
      
 19048 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.engine_version #=> String
         
     | 
| 
      
 19049 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.license_model #=> String
         
     | 
| 
      
 19050 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.iops #=> Integer
         
     | 
| 
      
 19051 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.option_group_name #=> String
         
     | 
| 
      
 19052 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.tde_credential_arn #=> String
         
     | 
| 
      
 19053 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.encrypted #=> Boolean
         
     | 
| 
      
 19054 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.storage_type #=> String
         
     | 
| 
      
 19055 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.kms_key_id #=> String
         
     | 
| 
      
 19056 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.timezone #=> String
         
     | 
| 
      
 19057 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
         
     | 
| 
      
 19058 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.backup_retention_period #=> Integer
         
     | 
| 
      
 19059 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
         
     | 
| 
      
 19060 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
         
     | 
| 
      
 19061 
     | 
    
         
            +
                #   resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
         
     | 
| 
      
 19062 
     | 
    
         
            +
                #
         
     | 
| 
      
 19063 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
         
     | 
| 
      
 19064 
     | 
    
         
            +
                #
         
     | 
| 
      
 19065 
     | 
    
         
            +
                # @overload stop_db_instance_automated_backups_replication(params = {})
         
     | 
| 
      
 19066 
     | 
    
         
            +
                # @param [Hash] params ({})
         
     | 
| 
      
 19067 
     | 
    
         
            +
                def stop_db_instance_automated_backups_replication(params = {}, options = {})
         
     | 
| 
      
 19068 
     | 
    
         
            +
                  req = build_request(:stop_db_instance_automated_backups_replication, params)
         
     | 
| 
      
 19069 
     | 
    
         
            +
                  req.send_request(options)
         
     | 
| 
      
 19070 
     | 
    
         
            +
                end
         
     | 
| 
      
 19071 
     | 
    
         
            +
             
     | 
| 
       18672 
19072 
     | 
    
         
             
                # @!endgroup
         
     | 
| 
       18673 
19073 
     | 
    
         | 
| 
       18674 
19074 
     | 
    
         
             
                # @param params ({})
         
     | 
| 
         @@ -18682,7 +19082,7 @@ module Aws::RDS 
     | 
|
| 
       18682 
19082 
     | 
    
         
             
                    params: params,
         
     | 
| 
       18683 
19083 
     | 
    
         
             
                    config: config)
         
     | 
| 
       18684 
19084 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-rds'
         
     | 
| 
       18685 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 19085 
     | 
    
         
            +
                  context[:gem_version] = '1.108.0'
         
     | 
| 
       18686 
19086 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       18687 
19087 
     | 
    
         
             
                end
         
     | 
| 
       18688 
19088 
     | 
    
         |