aws-sdk-rds 1.187.0 → 1.189.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +233 -9
- data/lib/aws-sdk-rds/client_api.rb +91 -1
- data/lib/aws-sdk-rds/db_cluster.rb +33 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +8 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +11 -0
- data/lib/aws-sdk-rds/endpoints.rb +28 -0
- data/lib/aws-sdk-rds/errors.rb +33 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-rds/resource.rb +7 -0
- data/lib/aws-sdk-rds/types.rb +378 -23
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
    
        data/lib/aws-sdk-rds/types.rb
    CHANGED
    
    | @@ -2787,6 +2787,14 @@ module Aws::RDS | |
| 2787 2787 | 
             
                #   Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
         | 
| 2788 2788 | 
             
                #   @return [String]
         | 
| 2789 2789 | 
             
                #
         | 
| 2790 | 
            +
                # @!attribute [rw] enable_local_write_forwarding
         | 
| 2791 | 
            +
                #   Specifies whether read replicas can forward write operations to the
         | 
| 2792 | 
            +
                #   writer DB instance in the DB cluster. By default, write operations
         | 
| 2793 | 
            +
                #   aren't allowed on reader DB instances.
         | 
| 2794 | 
            +
                #
         | 
| 2795 | 
            +
                #   Valid for: Aurora DB clusters only
         | 
| 2796 | 
            +
                #   @return [Boolean]
         | 
| 2797 | 
            +
                #
         | 
| 2790 2798 | 
             
                # @!attribute [rw] source_region
         | 
| 2791 2799 | 
             
                #   The source region of the snapshot. This is only needed when the
         | 
| 2792 2800 | 
             
                #   shapshot is encrypted and in a different region.
         | 
| @@ -2844,6 +2852,7 @@ module Aws::RDS | |
| 2844 2852 | 
             
                  :db_system_id,
         | 
| 2845 2853 | 
             
                  :manage_master_user_password,
         | 
| 2846 2854 | 
             
                  :master_user_secret_kms_key_id,
         | 
| 2855 | 
            +
                  :enable_local_write_forwarding,
         | 
| 2847 2856 | 
             
                  :source_region)
         | 
| 2848 2857 | 
             
                  SENSITIVE = []
         | 
| 2849 2858 | 
             
                  include Aws::Structure
         | 
| @@ -6413,6 +6422,12 @@ module Aws::RDS | |
| 6413 6422 | 
             
                #   This setting is only for Aurora DB clusters.
         | 
| 6414 6423 | 
             
                #   @return [Time]
         | 
| 6415 6424 | 
             
                #
         | 
| 6425 | 
            +
                # @!attribute [rw] local_write_forwarding_status
         | 
| 6426 | 
            +
                #   Specifies whether an Aurora DB cluster has in-cluster write
         | 
| 6427 | 
            +
                #   forwarding enabled, not enabled, requested, or is in the process of
         | 
| 6428 | 
            +
                #   enabling it.
         | 
| 6429 | 
            +
                #   @return [String]
         | 
| 6430 | 
            +
                #
         | 
| 6416 6431 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
         | 
| 6417 6432 | 
             
                #
         | 
| 6418 6433 | 
             
                class DBCluster < Struct.new(
         | 
| @@ -6487,7 +6502,8 @@ module Aws::RDS | |
| 6487 6502 | 
             
                  :network_type,
         | 
| 6488 6503 | 
             
                  :db_system_id,
         | 
| 6489 6504 | 
             
                  :master_user_secret,
         | 
| 6490 | 
            -
                  :io_optimized_next_allowed_modification_time | 
| 6505 | 
            +
                  :io_optimized_next_allowed_modification_time,
         | 
| 6506 | 
            +
                  :local_write_forwarding_status)
         | 
| 6491 6507 | 
             
                  SENSITIVE = []
         | 
| 6492 6508 | 
             
                  include Aws::Structure
         | 
| 6493 6509 | 
             
                end
         | 
| @@ -6498,6 +6514,195 @@ module Aws::RDS | |
| 6498 6514 | 
             
                #
         | 
| 6499 6515 | 
             
                class DBClusterAlreadyExistsFault < Aws::EmptyStructure; end
         | 
| 6500 6516 |  | 
| 6517 | 
            +
                # An automated backup of a DB cluster. It consists of system backups,
         | 
| 6518 | 
            +
                # transaction logs, and the database cluster properties that existed at
         | 
| 6519 | 
            +
                # the time you deleted the source cluster.
         | 
| 6520 | 
            +
                #
         | 
| 6521 | 
            +
                # @!attribute [rw] engine
         | 
| 6522 | 
            +
                #   The name of the database engine for this automated backup.
         | 
| 6523 | 
            +
                #   @return [String]
         | 
| 6524 | 
            +
                #
         | 
| 6525 | 
            +
                # @!attribute [rw] vpc_id
         | 
| 6526 | 
            +
                #   The VPC ID associated with the DB cluster.
         | 
| 6527 | 
            +
                #   @return [String]
         | 
| 6528 | 
            +
                #
         | 
| 6529 | 
            +
                # @!attribute [rw] db_cluster_automated_backups_arn
         | 
| 6530 | 
            +
                #   The Amazon Resource Name (ARN) for the automated backups.
         | 
| 6531 | 
            +
                #   @return [String]
         | 
| 6532 | 
            +
                #
         | 
| 6533 | 
            +
                # @!attribute [rw] db_cluster_identifier
         | 
| 6534 | 
            +
                #   The identifier for the source DB cluster, which can't be changed
         | 
| 6535 | 
            +
                #   and which is unique to an Amazon Web Services Region.
         | 
| 6536 | 
            +
                #   @return [String]
         | 
| 6537 | 
            +
                #
         | 
| 6538 | 
            +
                # @!attribute [rw] restore_window
         | 
| 6539 | 
            +
                #   Earliest and latest time an instance can be restored to:
         | 
| 6540 | 
            +
                #   @return [Types::RestoreWindow]
         | 
| 6541 | 
            +
                #
         | 
| 6542 | 
            +
                # @!attribute [rw] master_username
         | 
| 6543 | 
            +
                #   The master user name of the automated backup.
         | 
| 6544 | 
            +
                #   @return [String]
         | 
| 6545 | 
            +
                #
         | 
| 6546 | 
            +
                # @!attribute [rw] db_cluster_resource_id
         | 
| 6547 | 
            +
                #   The resource ID for the source DB cluster, which can't be changed
         | 
| 6548 | 
            +
                #   and which is unique to an Amazon Web Services Region.
         | 
| 6549 | 
            +
                #   @return [String]
         | 
| 6550 | 
            +
                #
         | 
| 6551 | 
            +
                # @!attribute [rw] region
         | 
| 6552 | 
            +
                #   The Amazon Web Services Region associated with the automated backup.
         | 
| 6553 | 
            +
                #   @return [String]
         | 
| 6554 | 
            +
                #
         | 
| 6555 | 
            +
                # @!attribute [rw] license_model
         | 
| 6556 | 
            +
                #   The license model information for this DB cluster automated backup.
         | 
| 6557 | 
            +
                #   @return [String]
         | 
| 6558 | 
            +
                #
         | 
| 6559 | 
            +
                # @!attribute [rw] status
         | 
| 6560 | 
            +
                #   A list of status information for an automated backup:
         | 
| 6561 | 
            +
                #
         | 
| 6562 | 
            +
                #   * `retained` - Automated backups for deleted clusters.
         | 
| 6563 | 
            +
                #
         | 
| 6564 | 
            +
                #   ^
         | 
| 6565 | 
            +
                #   @return [String]
         | 
| 6566 | 
            +
                #
         | 
| 6567 | 
            +
                # @!attribute [rw] iam_database_authentication_enabled
         | 
| 6568 | 
            +
                #   True if mapping of Amazon Web Services Identity and Access
         | 
| 6569 | 
            +
                #   Management (IAM) accounts to database accounts is enabled, and
         | 
| 6570 | 
            +
                #   otherwise false.
         | 
| 6571 | 
            +
                #   @return [Boolean]
         | 
| 6572 | 
            +
                #
         | 
| 6573 | 
            +
                # @!attribute [rw] cluster_create_time
         | 
| 6574 | 
            +
                #   The time when the DB cluster was created, in Universal Coordinated
         | 
| 6575 | 
            +
                #   Time (UTC).
         | 
| 6576 | 
            +
                #   @return [Time]
         | 
| 6577 | 
            +
                #
         | 
| 6578 | 
            +
                # @!attribute [rw] storage_encrypted
         | 
| 6579 | 
            +
                #   Specifies whether the source DB cluster is encrypted.
         | 
| 6580 | 
            +
                #   @return [Boolean]
         | 
| 6581 | 
            +
                #
         | 
| 6582 | 
            +
                # @!attribute [rw] allocated_storage
         | 
| 6583 | 
            +
                #   For all database engines except Amazon Aurora, `AllocatedStorage`
         | 
| 6584 | 
            +
                #   specifies the allocated storage size in gibibytes (GiB). For Aurora,
         | 
| 6585 | 
            +
                #   `AllocatedStorage` always returns 1, because Aurora DB cluster
         | 
| 6586 | 
            +
                #   storage size isn't fixed, but instead automatically adjusts as
         | 
| 6587 | 
            +
                #   needed.
         | 
| 6588 | 
            +
                #   @return [Integer]
         | 
| 6589 | 
            +
                #
         | 
| 6590 | 
            +
                # @!attribute [rw] engine_version
         | 
| 6591 | 
            +
                #   The version of the database engine for the automated backup.
         | 
| 6592 | 
            +
                #   @return [String]
         | 
| 6593 | 
            +
                #
         | 
| 6594 | 
            +
                # @!attribute [rw] db_cluster_arn
         | 
| 6595 | 
            +
                #   The Amazon Resource Name (ARN) for the source DB cluster.
         | 
| 6596 | 
            +
                #   @return [String]
         | 
| 6597 | 
            +
                #
         | 
| 6598 | 
            +
                # @!attribute [rw] backup_retention_period
         | 
| 6599 | 
            +
                #   The retention period for the automated backups.
         | 
| 6600 | 
            +
                #   @return [Integer]
         | 
| 6601 | 
            +
                #
         | 
| 6602 | 
            +
                # @!attribute [rw] engine_mode
         | 
| 6603 | 
            +
                #   The engine mode of the database engine for the automated backup.
         | 
| 6604 | 
            +
                #   @return [String]
         | 
| 6605 | 
            +
                #
         | 
| 6606 | 
            +
                # @!attribute [rw] availability_zones
         | 
| 6607 | 
            +
                #   The Availability Zones where instances in the DB cluster can be
         | 
| 6608 | 
            +
                #   created. For information on Amazon Web Services Regions and
         | 
| 6609 | 
            +
                #   Availability Zones, see [Regions and Availability Zones][1].
         | 
| 6610 | 
            +
                #
         | 
| 6611 | 
            +
                #
         | 
| 6612 | 
            +
                #
         | 
| 6613 | 
            +
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
         | 
| 6614 | 
            +
                #   @return [Array<String>]
         | 
| 6615 | 
            +
                #
         | 
| 6616 | 
            +
                # @!attribute [rw] port
         | 
| 6617 | 
            +
                #   The port number that the automated backup used for connections.
         | 
| 6618 | 
            +
                #
         | 
| 6619 | 
            +
                #   Default: Inherits from the source DB cluster
         | 
| 6620 | 
            +
                #
         | 
| 6621 | 
            +
                #   Valid Values: `1150-65535`
         | 
| 6622 | 
            +
                #   @return [Integer]
         | 
| 6623 | 
            +
                #
         | 
| 6624 | 
            +
                # @!attribute [rw] kms_key_id
         | 
| 6625 | 
            +
                #   The Amazon Web Services KMS key ID for an automated backup.
         | 
| 6626 | 
            +
                #
         | 
| 6627 | 
            +
                #   The Amazon Web Services KMS key identifier is the key ARN, key ID,
         | 
| 6628 | 
            +
                #   alias ARN, or alias name for the KMS key.
         | 
| 6629 | 
            +
                #   @return [String]
         | 
| 6630 | 
            +
                #
         | 
| 6631 | 
            +
                # @!attribute [rw] storage_type
         | 
| 6632 | 
            +
                #   The storage type associated with the DB cluster.
         | 
| 6633 | 
            +
                #
         | 
| 6634 | 
            +
                #   This setting is only for non-Aurora Multi-AZ DB clusters.
         | 
| 6635 | 
            +
                #   @return [String]
         | 
| 6636 | 
            +
                #
         | 
| 6637 | 
            +
                # @!attribute [rw] iops
         | 
| 6638 | 
            +
                #   The IOPS (I/O operations per second) value for the automated backup.
         | 
| 6639 | 
            +
                #
         | 
| 6640 | 
            +
                #   This setting is only for non-Aurora Multi-AZ DB clusters.
         | 
| 6641 | 
            +
                #   @return [Integer]
         | 
| 6642 | 
            +
                #
         | 
| 6643 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
         | 
| 6644 | 
            +
                #
         | 
| 6645 | 
            +
                class DBClusterAutomatedBackup < Struct.new(
         | 
| 6646 | 
            +
                  :engine,
         | 
| 6647 | 
            +
                  :vpc_id,
         | 
| 6648 | 
            +
                  :db_cluster_automated_backups_arn,
         | 
| 6649 | 
            +
                  :db_cluster_identifier,
         | 
| 6650 | 
            +
                  :restore_window,
         | 
| 6651 | 
            +
                  :master_username,
         | 
| 6652 | 
            +
                  :db_cluster_resource_id,
         | 
| 6653 | 
            +
                  :region,
         | 
| 6654 | 
            +
                  :license_model,
         | 
| 6655 | 
            +
                  :status,
         | 
| 6656 | 
            +
                  :iam_database_authentication_enabled,
         | 
| 6657 | 
            +
                  :cluster_create_time,
         | 
| 6658 | 
            +
                  :storage_encrypted,
         | 
| 6659 | 
            +
                  :allocated_storage,
         | 
| 6660 | 
            +
                  :engine_version,
         | 
| 6661 | 
            +
                  :db_cluster_arn,
         | 
| 6662 | 
            +
                  :backup_retention_period,
         | 
| 6663 | 
            +
                  :engine_mode,
         | 
| 6664 | 
            +
                  :availability_zones,
         | 
| 6665 | 
            +
                  :port,
         | 
| 6666 | 
            +
                  :kms_key_id,
         | 
| 6667 | 
            +
                  :storage_type,
         | 
| 6668 | 
            +
                  :iops)
         | 
| 6669 | 
            +
                  SENSITIVE = []
         | 
| 6670 | 
            +
                  include Aws::Structure
         | 
| 6671 | 
            +
                end
         | 
| 6672 | 
            +
             | 
| 6673 | 
            +
                # @!attribute [rw] marker
         | 
| 6674 | 
            +
                #   The pagination token provided in the previous request. If this
         | 
| 6675 | 
            +
                #   parameter is specified the response includes only records beyond the
         | 
| 6676 | 
            +
                #   marker, up to `MaxRecords`.
         | 
| 6677 | 
            +
                #   @return [String]
         | 
| 6678 | 
            +
                #
         | 
| 6679 | 
            +
                # @!attribute [rw] db_cluster_automated_backups
         | 
| 6680 | 
            +
                #   A list of `DBClusterAutomatedBackup` backups.
         | 
| 6681 | 
            +
                #   @return [Array<Types::DBClusterAutomatedBackup>]
         | 
| 6682 | 
            +
                #
         | 
| 6683 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackupMessage AWS API Documentation
         | 
| 6684 | 
            +
                #
         | 
| 6685 | 
            +
                class DBClusterAutomatedBackupMessage < Struct.new(
         | 
| 6686 | 
            +
                  :marker,
         | 
| 6687 | 
            +
                  :db_cluster_automated_backups)
         | 
| 6688 | 
            +
                  SENSITIVE = []
         | 
| 6689 | 
            +
                  include Aws::Structure
         | 
| 6690 | 
            +
                end
         | 
| 6691 | 
            +
             | 
| 6692 | 
            +
                # No automated backup for this DB cluster was found.
         | 
| 6693 | 
            +
                #
         | 
| 6694 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackupNotFoundFault AWS API Documentation
         | 
| 6695 | 
            +
                #
         | 
| 6696 | 
            +
                class DBClusterAutomatedBackupNotFoundFault < Aws::EmptyStructure; end
         | 
| 6697 | 
            +
             | 
| 6698 | 
            +
                # The quota for retained automated backups was exceeded. This prevents
         | 
| 6699 | 
            +
                # you from retaining any additional automated backups. The retained
         | 
| 6700 | 
            +
                # automated backups quota is the same as your DB cluster quota.
         | 
| 6701 | 
            +
                #
         | 
| 6702 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackupQuotaExceededFault AWS API Documentation
         | 
| 6703 | 
            +
                #
         | 
| 6704 | 
            +
                class DBClusterAutomatedBackupQuotaExceededFault < Aws::EmptyStructure; end
         | 
| 6705 | 
            +
             | 
| 6501 6706 | 
             
                # This data type is used as a response element in the
         | 
| 6502 6707 | 
             
                # `DescribeDBClusterBacktracks` action.
         | 
| 6503 6708 | 
             
                #
         | 
| @@ -7096,7 +7301,8 @@ module Aws::RDS | |
| 7096 7301 | 
             
                #   @return [String]
         | 
| 7097 7302 | 
             
                #
         | 
| 7098 7303 | 
             
                # @!attribute [rw] db_cluster_snapshot_arn
         | 
| 7099 | 
            -
                #    | 
| 7304 | 
            +
                #   Specifies the Amazon Resource Name (ARN) for the DB cluster
         | 
| 7305 | 
            +
                #   snapshot.
         | 
| 7100 7306 | 
             
                #   @return [String]
         | 
| 7101 7307 | 
             
                #
         | 
| 7102 7308 | 
             
                # @!attribute [rw] source_db_cluster_snapshot_arn
         | 
| @@ -7130,6 +7336,11 @@ module Aws::RDS | |
| 7130 7336 | 
             
                #   This setting is only for Aurora DB clusters.
         | 
| 7131 7337 | 
             
                #   @return [String]
         | 
| 7132 7338 | 
             
                #
         | 
| 7339 | 
            +
                # @!attribute [rw] db_cluster_resource_id
         | 
| 7340 | 
            +
                #   Specifies the resource ID of the DB cluster that this DB cluster
         | 
| 7341 | 
            +
                #   snapshot was created from.
         | 
| 7342 | 
            +
                #   @return [String]
         | 
| 7343 | 
            +
                #
         | 
| 7133 7344 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
         | 
| 7134 7345 | 
             
                #
         | 
| 7135 7346 | 
             
                class DBClusterSnapshot < Struct.new(
         | 
| @@ -7156,7 +7367,8 @@ module Aws::RDS | |
| 7156 7367 | 
             
                  :iam_database_authentication_enabled,
         | 
| 7157 7368 | 
             
                  :tag_list,
         | 
| 7158 7369 | 
             
                  :db_system_id,
         | 
| 7159 | 
            -
                  :storage_type | 
| 7370 | 
            +
                  :storage_type,
         | 
| 7371 | 
            +
                  :db_cluster_resource_id)
         | 
| 7160 7372 | 
             
                  SENSITIVE = []
         | 
| 7161 7373 | 
             
                  include Aws::Structure
         | 
| 7162 7374 | 
             
                end
         | 
| @@ -7450,6 +7662,15 @@ module Aws::RDS | |
| 7450 7662 | 
             
                #   [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
         | 
| 7451 7663 | 
             
                #   @return [Array<String>]
         | 
| 7452 7664 | 
             
                #
         | 
| 7665 | 
            +
                # @!attribute [rw] supports_local_write_forwarding
         | 
| 7666 | 
            +
                #   A value that indicates whether the DB engine version supports
         | 
| 7667 | 
            +
                #   forwarding write operations from reader DB instances to the writer
         | 
| 7668 | 
            +
                #   DB instance in the DB cluster. By default, write operations aren't
         | 
| 7669 | 
            +
                #   allowed on reader DB instances.
         | 
| 7670 | 
            +
                #
         | 
| 7671 | 
            +
                #   Valid for: Aurora DB clusters only
         | 
| 7672 | 
            +
                #   @return [Boolean]
         | 
| 7673 | 
            +
                #
         | 
| 7453 7674 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
         | 
| 7454 7675 | 
             
                #
         | 
| 7455 7676 | 
             
                class DBEngineVersion < Struct.new(
         | 
| @@ -7483,7 +7704,8 @@ module Aws::RDS | |
| 7483 7704 | 
             
                  :supports_babelfish,
         | 
| 7484 7705 | 
             
                  :custom_db_engine_version_manifest,
         | 
| 7485 7706 | 
             
                  :supports_certificate_rotation_without_restart,
         | 
| 7486 | 
            -
                  :supported_ca_certificate_identifiers | 
| 7707 | 
            +
                  :supported_ca_certificate_identifiers,
         | 
| 7708 | 
            +
                  :supports_local_write_forwarding)
         | 
| 7487 7709 | 
             
                  SENSITIVE = []
         | 
| 7488 7710 | 
             
                  include Aws::Structure
         | 
| 7489 7711 | 
             
                end
         | 
| @@ -8194,7 +8416,7 @@ module Aws::RDS | |
| 8194 8416 | 
             
                #   @return [String]
         | 
| 8195 8417 | 
             
                #
         | 
| 8196 8418 | 
             
                # @!attribute [rw] dbi_resource_id
         | 
| 8197 | 
            -
                #   The  | 
| 8419 | 
            +
                #   The resource ID for the source DB instance, which can't be changed
         | 
| 8198 8420 | 
             
                #   and which is unique to an Amazon Web Services Region.
         | 
| 8199 8421 | 
             
                #   @return [String]
         | 
| 8200 8422 | 
             
                #
         | 
| @@ -8203,8 +8425,8 @@ module Aws::RDS | |
| 8203 8425 | 
             
                #   @return [String]
         | 
| 8204 8426 | 
             
                #
         | 
| 8205 8427 | 
             
                # @!attribute [rw] db_instance_identifier
         | 
| 8206 | 
            -
                #   The  | 
| 8207 | 
            -
                #    | 
| 8428 | 
            +
                #   The identifier for the source DB instance, which can't be changed
         | 
| 8429 | 
            +
                #   and which is unique to an Amazon Web Services Region.
         | 
| 8208 8430 | 
             
                #   @return [String]
         | 
| 8209 8431 | 
             
                #
         | 
| 8210 8432 | 
             
                # @!attribute [rw] restore_window
         | 
| @@ -8218,11 +8440,11 @@ module Aws::RDS | |
| 8218 8440 | 
             
                # @!attribute [rw] status
         | 
| 8219 8441 | 
             
                #   Provides a list of status information for an automated backup:
         | 
| 8220 8442 | 
             
                #
         | 
| 8221 | 
            -
                #   * `active` -  | 
| 8443 | 
            +
                #   * `active` - Automated backups for current instances.
         | 
| 8222 8444 | 
             
                #
         | 
| 8223 | 
            -
                #   * `retained` -  | 
| 8445 | 
            +
                #   * `retained` - Automated backups for deleted instances.
         | 
| 8224 8446 | 
             
                #
         | 
| 8225 | 
            -
                #   * `creating` -  | 
| 8447 | 
            +
                #   * `creating` - Automated backups that are waiting for the first
         | 
| 8226 8448 | 
             
                #     automated snapshot to be available.
         | 
| 8227 8449 | 
             
                #   @return [String]
         | 
| 8228 8450 | 
             
                #
         | 
| @@ -8253,7 +8475,7 @@ module Aws::RDS | |
| 8253 8475 | 
             
                #   @return [Time]
         | 
| 8254 8476 | 
             
                #
         | 
| 8255 8477 | 
             
                # @!attribute [rw] master_username
         | 
| 8256 | 
            -
                #   The  | 
| 8478 | 
            +
                #   The master user name of an automated backup.
         | 
| 8257 8479 | 
             
                #   @return [String]
         | 
| 8258 8480 | 
             
                #
         | 
| 8259 8481 | 
             
                # @!attribute [rw] engine
         | 
| @@ -8396,7 +8618,7 @@ module Aws::RDS | |
| 8396 8618 |  | 
| 8397 8619 | 
             
                # The quota for retained automated backups was exceeded. This prevents
         | 
| 8398 8620 | 
             
                # you from retaining any additional automated backups. The retained
         | 
| 8399 | 
            -
                # automated backups quota is the same as your DB  | 
| 8621 | 
            +
                # automated backups quota is the same as your DB instance quota.
         | 
| 8400 8622 | 
             
                #
         | 
| 8401 8623 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackupQuotaExceededFault AWS API Documentation
         | 
| 8402 8624 | 
             
                #
         | 
| @@ -9728,6 +9950,33 @@ module Aws::RDS | |
| 9728 9950 | 
             
                  include Aws::Structure
         | 
| 9729 9951 | 
             
                end
         | 
| 9730 9952 |  | 
| 9953 | 
            +
                # @!attribute [rw] db_cluster_resource_id
         | 
| 9954 | 
            +
                #   The identifier for the source DB cluster, which can't be changed
         | 
| 9955 | 
            +
                #   and which is unique to an Amazon Web Services Region.
         | 
| 9956 | 
            +
                #   @return [String]
         | 
| 9957 | 
            +
                #
         | 
| 9958 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackupMessage AWS API Documentation
         | 
| 9959 | 
            +
                #
         | 
| 9960 | 
            +
                class DeleteDBClusterAutomatedBackupMessage < Struct.new(
         | 
| 9961 | 
            +
                  :db_cluster_resource_id)
         | 
| 9962 | 
            +
                  SENSITIVE = []
         | 
| 9963 | 
            +
                  include Aws::Structure
         | 
| 9964 | 
            +
                end
         | 
| 9965 | 
            +
             | 
| 9966 | 
            +
                # @!attribute [rw] db_cluster_automated_backup
         | 
| 9967 | 
            +
                #   An automated backup of a DB cluster. It consists of system backups,
         | 
| 9968 | 
            +
                #   transaction logs, and the database cluster properties that existed
         | 
| 9969 | 
            +
                #   at the time you deleted the source cluster.
         | 
| 9970 | 
            +
                #   @return [Types::DBClusterAutomatedBackup]
         | 
| 9971 | 
            +
                #
         | 
| 9972 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackupResult AWS API Documentation
         | 
| 9973 | 
            +
                #
         | 
| 9974 | 
            +
                class DeleteDBClusterAutomatedBackupResult < Struct.new(
         | 
| 9975 | 
            +
                  :db_cluster_automated_backup)
         | 
| 9976 | 
            +
                  SENSITIVE = []
         | 
| 9977 | 
            +
                  include Aws::Structure
         | 
| 9978 | 
            +
                end
         | 
| 9979 | 
            +
             | 
| 9731 9980 | 
             
                # @!attribute [rw] db_cluster_endpoint_identifier
         | 
| 9732 9981 | 
             
                #   The identifier associated with the custom endpoint. This parameter
         | 
| 9733 9982 | 
             
                #   is stored as a lowercase string.
         | 
| @@ -9785,12 +10034,20 @@ module Aws::RDS | |
| 9785 10034 | 
             
                #   * Can't end with a hyphen or contain two consecutive hyphens
         | 
| 9786 10035 | 
             
                #   @return [String]
         | 
| 9787 10036 | 
             
                #
         | 
| 10037 | 
            +
                # @!attribute [rw] delete_automated_backups
         | 
| 10038 | 
            +
                #   A value that indicates whether to remove automated backups
         | 
| 10039 | 
            +
                #   immediately after the DB cluster is deleted. This parameter isn't
         | 
| 10040 | 
            +
                #   case-sensitive. The default is to remove automated backups
         | 
| 10041 | 
            +
                #   immediately after the DB cluster is deleted.
         | 
| 10042 | 
            +
                #   @return [Boolean]
         | 
| 10043 | 
            +
                #
         | 
| 9788 10044 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterMessage AWS API Documentation
         | 
| 9789 10045 | 
             
                #
         | 
| 9790 10046 | 
             
                class DeleteDBClusterMessage < Struct.new(
         | 
| 9791 10047 | 
             
                  :db_cluster_identifier,
         | 
| 9792 10048 | 
             
                  :skip_final_snapshot,
         | 
| 9793 | 
            -
                  :final_db_snapshot_identifier | 
| 10049 | 
            +
                  :final_db_snapshot_identifier,
         | 
| 10050 | 
            +
                  :delete_automated_backups)
         | 
| 9794 10051 | 
             
                  SENSITIVE = []
         | 
| 9795 10052 | 
             
                  include Aws::Structure
         | 
| 9796 10053 | 
             
                end
         | 
| @@ -10400,6 +10657,68 @@ module Aws::RDS | |
| 10400 10657 | 
             
                  include Aws::Structure
         | 
| 10401 10658 | 
             
                end
         | 
| 10402 10659 |  | 
| 10660 | 
            +
                # @!attribute [rw] db_cluster_resource_id
         | 
| 10661 | 
            +
                #   The resource ID of the DB cluster that is the source of the
         | 
| 10662 | 
            +
                #   automated backup. This parameter isn't case-sensitive.
         | 
| 10663 | 
            +
                #   @return [String]
         | 
| 10664 | 
            +
                #
         | 
| 10665 | 
            +
                # @!attribute [rw] db_cluster_identifier
         | 
| 10666 | 
            +
                #   (Optional) The user-supplied DB cluster identifier. If this
         | 
| 10667 | 
            +
                #   parameter is specified, it must match the identifier of an existing
         | 
| 10668 | 
            +
                #   DB cluster. It returns information from the specific DB cluster's
         | 
| 10669 | 
            +
                #   automated backup. This parameter isn't case-sensitive.
         | 
| 10670 | 
            +
                #   @return [String]
         | 
| 10671 | 
            +
                #
         | 
| 10672 | 
            +
                # @!attribute [rw] filters
         | 
| 10673 | 
            +
                #   A filter that specifies which resources to return based on status.
         | 
| 10674 | 
            +
                #
         | 
| 10675 | 
            +
                #   Supported filters are the following:
         | 
| 10676 | 
            +
                #
         | 
| 10677 | 
            +
                #   * `status`
         | 
| 10678 | 
            +
                #
         | 
| 10679 | 
            +
                #     * `retained` - Automated backups for deleted clusters and after
         | 
| 10680 | 
            +
                #       backup replication is stopped.
         | 
| 10681 | 
            +
                #
         | 
| 10682 | 
            +
                #     ^
         | 
| 10683 | 
            +
                #
         | 
| 10684 | 
            +
                #   * `db-cluster-id` - Accepts DB cluster identifiers and Amazon
         | 
| 10685 | 
            +
                #     Resource Names (ARNs). The results list includes only information
         | 
| 10686 | 
            +
                #     about the DB cluster automated backups identified by these ARNs.
         | 
| 10687 | 
            +
                #
         | 
| 10688 | 
            +
                #   * `db-cluster-resource-id` - Accepts DB resource identifiers and
         | 
| 10689 | 
            +
                #     Amazon Resource Names (ARNs). The results list includes only
         | 
| 10690 | 
            +
                #     information about the DB cluster resources identified by these
         | 
| 10691 | 
            +
                #     ARNs.
         | 
| 10692 | 
            +
                #
         | 
| 10693 | 
            +
                #   Returns all resources by default. The status for each resource is
         | 
| 10694 | 
            +
                #   specified in the response.
         | 
| 10695 | 
            +
                #   @return [Array<Types::Filter>]
         | 
| 10696 | 
            +
                #
         | 
| 10697 | 
            +
                # @!attribute [rw] max_records
         | 
| 10698 | 
            +
                #   The maximum number of records to include in the response. If more
         | 
| 10699 | 
            +
                #   records exist than the specified `MaxRecords` value, a pagination
         | 
| 10700 | 
            +
                #   token called a marker is included in the response so that you can
         | 
| 10701 | 
            +
                #   retrieve the remaining results.
         | 
| 10702 | 
            +
                #   @return [Integer]
         | 
| 10703 | 
            +
                #
         | 
| 10704 | 
            +
                # @!attribute [rw] marker
         | 
| 10705 | 
            +
                #   The pagination token provided in the previous request. If this
         | 
| 10706 | 
            +
                #   parameter is specified the response includes only records beyond the
         | 
| 10707 | 
            +
                #   marker, up to `MaxRecords`.
         | 
| 10708 | 
            +
                #   @return [String]
         | 
| 10709 | 
            +
                #
         | 
| 10710 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackupsMessage AWS API Documentation
         | 
| 10711 | 
            +
                #
         | 
| 10712 | 
            +
                class DescribeDBClusterAutomatedBackupsMessage < Struct.new(
         | 
| 10713 | 
            +
                  :db_cluster_resource_id,
         | 
| 10714 | 
            +
                  :db_cluster_identifier,
         | 
| 10715 | 
            +
                  :filters,
         | 
| 10716 | 
            +
                  :max_records,
         | 
| 10717 | 
            +
                  :marker)
         | 
| 10718 | 
            +
                  SENSITIVE = []
         | 
| 10719 | 
            +
                  include Aws::Structure
         | 
| 10720 | 
            +
                end
         | 
| 10721 | 
            +
             | 
| 10403 10722 | 
             
                # @!attribute [rw] db_cluster_identifier
         | 
| 10404 10723 | 
             
                #   The DB cluster identifier of the DB cluster to be described. This
         | 
| 10405 10724 | 
             
                #   parameter is stored as a lowercase string.
         | 
| @@ -10785,6 +11104,10 @@ module Aws::RDS | |
| 10785 11104 | 
             
                #   ModifyDBClusterSnapshotAttribute API action.
         | 
| 10786 11105 | 
             
                #   @return [Boolean]
         | 
| 10787 11106 | 
             
                #
         | 
| 11107 | 
            +
                # @!attribute [rw] db_cluster_resource_id
         | 
| 11108 | 
            +
                #   A specific DB cluster resource ID to describe.
         | 
| 11109 | 
            +
                #   @return [String]
         | 
| 11110 | 
            +
                #
         | 
| 10788 11111 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshotsMessage AWS API Documentation
         | 
| 10789 11112 | 
             
                #
         | 
| 10790 11113 | 
             
                class DescribeDBClusterSnapshotsMessage < Struct.new(
         | 
| @@ -10795,7 +11118,8 @@ module Aws::RDS | |
| 10795 11118 | 
             
                  :max_records,
         | 
| 10796 11119 | 
             
                  :marker,
         | 
| 10797 11120 | 
             
                  :include_shared,
         | 
| 10798 | 
            -
                  :include_public | 
| 11121 | 
            +
                  :include_public,
         | 
| 11122 | 
            +
                  :db_cluster_resource_id)
         | 
| 10799 11123 | 
             
                  SENSITIVE = []
         | 
| 10800 11124 | 
             
                  include Aws::Structure
         | 
| 10801 11125 | 
             
                end
         | 
| @@ -11046,7 +11370,7 @@ module Aws::RDS | |
| 11046 11370 | 
             
                # @!attribute [rw] db_instance_identifier
         | 
| 11047 11371 | 
             
                #   (Optional) The user-supplied instance identifier. If this parameter
         | 
| 11048 11372 | 
             
                #   is specified, it must match the identifier of an existing DB
         | 
| 11049 | 
            -
                #   instance. It returns information from the specific DB instance'
         | 
| 11373 | 
            +
                #   instance. It returns information from the specific DB instance's
         | 
| 11050 11374 | 
             
                #   automated backup. This parameter isn't case-sensitive.
         | 
| 11051 11375 | 
             
                #   @return [String]
         | 
| 11052 11376 | 
             
                #
         | 
| @@ -11057,13 +11381,13 @@ module Aws::RDS | |
| 11057 11381 | 
             
                #
         | 
| 11058 11382 | 
             
                #   * `status`
         | 
| 11059 11383 | 
             
                #
         | 
| 11060 | 
            -
                #     * `active` -  | 
| 11384 | 
            +
                #     * `active` - Automated backups for current instances.
         | 
| 11061 11385 | 
             
                #
         | 
| 11062 | 
            -
                #     * ` | 
| 11063 | 
            -
                #        | 
| 11386 | 
            +
                #     * `creating` - Automated backups that are waiting for the first
         | 
| 11387 | 
            +
                #       automated snapshot to be available.
         | 
| 11064 11388 | 
             
                #
         | 
| 11065 | 
            -
                #     * ` | 
| 11066 | 
            -
                #        | 
| 11389 | 
            +
                #     * `retained` - Automated backups for deleted instances and after
         | 
| 11390 | 
            +
                #       backup replication is stopped.
         | 
| 11067 11391 | 
             
                #
         | 
| 11068 11392 | 
             
                #   * `db-instance-id` - Accepts DB instance identifiers and Amazon
         | 
| 11069 11393 | 
             
                #     Resource Names (ARNs). The results list includes only information
         | 
| @@ -13967,6 +14291,13 @@ module Aws::RDS | |
| 13967 14291 | 
             
                #
         | 
| 13968 14292 | 
             
                class InvalidCustomDBEngineVersionStateFault < Aws::EmptyStructure; end
         | 
| 13969 14293 |  | 
| 14294 | 
            +
                # The automated backup is in an invalid state. For example, this
         | 
| 14295 | 
            +
                # automated backup is associated with an active cluster.
         | 
| 14296 | 
            +
                #
         | 
| 14297 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidDBClusterAutomatedBackupStateFault AWS API Documentation
         | 
| 14298 | 
            +
                #
         | 
| 14299 | 
            +
                class InvalidDBClusterAutomatedBackupStateFault < Aws::EmptyStructure; end
         | 
| 14300 | 
            +
             | 
| 13970 14301 | 
             
                # `Capacity` isn't a valid Aurora Serverless DB cluster capacity. Valid
         | 
| 13971 14302 | 
             
                # capacity values are `2`, `4`, `8`, `16`, `32`, `64`, `128`, and `256`.
         | 
| 13972 14303 | 
             
                #
         | 
| @@ -15180,6 +15511,14 @@ module Aws::RDS | |
| 15180 15511 | 
             
                #   ^
         | 
| 15181 15512 | 
             
                #   @return [Boolean]
         | 
| 15182 15513 | 
             
                #
         | 
| 15514 | 
            +
                # @!attribute [rw] enable_local_write_forwarding
         | 
| 15515 | 
            +
                #   Specifies whether read replicas can forward write operations to the
         | 
| 15516 | 
            +
                #   writer DB instance in the DB cluster. By default, write operations
         | 
| 15517 | 
            +
                #   aren't allowed on reader DB instances.
         | 
| 15518 | 
            +
                #
         | 
| 15519 | 
            +
                #   Valid for: Aurora DB clusters only
         | 
| 15520 | 
            +
                #   @return [Boolean]
         | 
| 15521 | 
            +
                #
         | 
| 15183 15522 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
         | 
| 15184 15523 | 
             
                #
         | 
| 15185 15524 | 
             
                class ModifyDBClusterMessage < Struct.new(
         | 
| @@ -15223,7 +15562,8 @@ module Aws::RDS | |
| 15223 15562 | 
             
                  :rotate_master_user_password,
         | 
| 15224 15563 | 
             
                  :master_user_secret_kms_key_id,
         | 
| 15225 15564 | 
             
                  :engine_mode,
         | 
| 15226 | 
            -
                  :allow_engine_mode_change | 
| 15565 | 
            +
                  :allow_engine_mode_change,
         | 
| 15566 | 
            +
                  :enable_local_write_forwarding)
         | 
| 15227 15567 | 
             
                  SENSITIVE = []
         | 
| 15228 15568 | 
             
                  include Aws::Structure
         | 
| 15229 15569 | 
             
                end
         | 
| @@ -20596,6 +20936,10 @@ module Aws::RDS | |
| 20596 20936 | 
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
         | 
| 20597 20937 | 
             
                #   @return [String]
         | 
| 20598 20938 | 
             
                #
         | 
| 20939 | 
            +
                # @!attribute [rw] source_db_cluster_resource_id
         | 
| 20940 | 
            +
                #   The resource ID of the source DB cluster from which to restore.
         | 
| 20941 | 
            +
                #   @return [String]
         | 
| 20942 | 
            +
                #
         | 
| 20599 20943 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
         | 
| 20600 20944 | 
             
                #
         | 
| 20601 20945 | 
             
                class RestoreDBClusterToPointInTimeMessage < Struct.new(
         | 
| @@ -20625,7 +20969,8 @@ module Aws::RDS | |
| 20625 20969 | 
             
                  :publicly_accessible,
         | 
| 20626 20970 | 
             
                  :iops,
         | 
| 20627 20971 | 
             
                  :serverless_v2_scaling_configuration,
         | 
| 20628 | 
            -
                  :network_type | 
| 20972 | 
            +
                  :network_type,
         | 
| 20973 | 
            +
                  :source_db_cluster_resource_id)
         | 
| 20629 20974 | 
             
                  SENSITIVE = []
         | 
| 20630 20975 | 
             
                  include Aws::Structure
         | 
| 20631 20976 | 
             
                end
         | 
| @@ -23799,6 +24144,15 @@ module Aws::RDS | |
| 23799 24144 | 
             
                #   PostgreSQL with the target engine version.
         | 
| 23800 24145 | 
             
                #   @return [Boolean]
         | 
| 23801 24146 | 
             
                #
         | 
| 24147 | 
            +
                # @!attribute [rw] supports_local_write_forwarding
         | 
| 24148 | 
            +
                #   A value that indicates whether the target engine version supports
         | 
| 24149 | 
            +
                #   forwarding write operations from reader DB instances to the writer
         | 
| 24150 | 
            +
                #   DB instance in the DB cluster. By default, write operations aren't
         | 
| 24151 | 
            +
                #   allowed on reader DB instances.
         | 
| 24152 | 
            +
                #
         | 
| 24153 | 
            +
                #   Valid for: Aurora DB clusters only
         | 
| 24154 | 
            +
                #   @return [Boolean]
         | 
| 24155 | 
            +
                #
         | 
| 23802 24156 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
         | 
| 23803 24157 | 
             
                #
         | 
| 23804 24158 | 
             
                class UpgradeTarget < Struct.new(
         | 
| @@ -23810,7 +24164,8 @@ module Aws::RDS | |
| 23810 24164 | 
             
                  :supported_engine_modes,
         | 
| 23811 24165 | 
             
                  :supports_parallel_query,
         | 
| 23812 24166 | 
             
                  :supports_global_databases,
         | 
| 23813 | 
            -
                  :supports_babelfish | 
| 24167 | 
            +
                  :supports_babelfish,
         | 
| 24168 | 
            +
                  :supports_local_write_forwarding)
         | 
| 23814 24169 | 
             
                  SENSITIVE = []
         | 
| 23815 24170 | 
             
                  include Aws::Structure
         | 
| 23816 24171 | 
             
                end
         | 
    
        data/lib/aws-sdk-rds.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-rds
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.189.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Amazon Web Services
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2023- | 
| 11 | 
            +
            date: 2023-08-01 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sigv4
         |