lib/aws-sdk-rds/resource.rb in aws-sdk-rds-1.110.0 vs lib/aws-sdk-rds/resource.rb in aws-sdk-rds-1.111.0
- old
+ new
@@ -369,11 +369,11 @@
#
#
#
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
# @option options [String] :engine_mode
- # The DB engine mode of the DB cluster, either `provisioned`
+ # The DB engine mode of the DB cluster, either `provisioned`,
# `serverless`, `parallelquery`, `global`, or `multimaster`.
#
# The `parallelquery` engine mode isn't required for Aurora MySQL
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
# versions.
@@ -622,12 +622,12 @@
# * Can't be a word reserved by the specified database engine
#
# **PostgreSQL**
#
# The name of the database to create when the DB instance is created. If
- # this parameter isn't specified, no database is created in the DB
- # instance.
+ # this parameter isn't specified, a database named `postgres` is
+ # created in the DB instance.
#
# Constraints:
#
# * Must contain 1 to 63 letters, numbers, or underscores.
#
@@ -652,21 +652,38 @@
#
# **SQL Server**
#
# Not applicable. Must be null.
#
- # **Amazon Aurora**
+ # **Amazon Aurora MySQL**
#
- # The name of the database to create when the primary instance of the DB
- # cluster is created. If this parameter isn't specified, no database is
- # created in the DB instance.
+ # The name of the database to create when the primary DB instance of the
+ # Aurora MySQL DB cluster is created. If this parameter isn't specified
+ # for an Aurora MySQL DB cluster, no database is created in the DB
+ # cluster.
#
# Constraints:
#
- # * Must contain 1 to 64 letters or numbers.
+ # * It must contain 1 to 64 alphanumeric characters.
#
- # * Can't be a word reserved by the specified database engine
+ # * It can't be a word reserved by the database engine.
+ #
+ # **Amazon Aurora PostgreSQL**
+ #
+ # The name of the database to create when the primary DB instance of the
+ # Aurora PostgreSQL DB cluster is created. If this parameter isn't
+ # specified for an Aurora PostgreSQL DB cluster, a database named
+ # `postgres` is created in the DB cluster.
+ #
+ # Constraints:
+ #
+ # * It must contain 1 to 63 alphanumeric characters.
+ #
+ # * It must begin with a letter or an underscore. Subsequent characters
+ # can be letters, underscores, or digits (0 to 9).
+ #
+ # * It can't be a word reserved by the database engine.
# @option options [required, String] :db_instance_identifier
# The DB instance identifier. This parameter is stored as a lowercase
# string.
#
# Constraints:
@@ -1398,10 +1415,18 @@
#
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
# @option options [Integer] :max_allocated_storage
# The upper limit to which Amazon RDS can automatically scale the
# storage of the DB instance.
+ #
+ # For more information about this setting, including limitations that
+ # apply to it, see [ Managing capacity automatically with Amazon RDS
+ # storage autoscaling][1] in the *Amazon RDS User Guide*.
+ #
+ #
+ #
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
# @option options [Boolean] :enable_customer_owned_ip
# A value that indicates whether to enable a customer-owned IP address
# (CoIP) for an RDS on Outposts DB instance.
#
# A *CoIP* provides local or external connectivity to resources in your
@@ -1686,10 +1711,34 @@
#
# Example: `myoptiongroup`
# @option options [required, String] :engine_name
# Specifies the name of the engine that this option group should be
# associated with.
+ #
+ # Valid Values:
+ #
+ # * `mariadb`
+ #
+ # * `mysql`
+ #
+ # * `oracle-ee`
+ #
+ # * `oracle-se2`
+ #
+ # * `oracle-se1`
+ #
+ # * `oracle-se`
+ #
+ # * `postgres`
+ #
+ # * `sqlserver-ee`
+ #
+ # * `sqlserver-se`
+ #
+ # * `sqlserver-ex`
+ #
+ # * `sqlserver-web`
# @option options [required, String] :major_engine_version
# Specifies the major version of the engine that this option group
# should be associated with.
# @option options [required, String] :option_group_description
# The description of the option group.
@@ -1934,10 +1983,40 @@
# include_all: false,
# })
# @param [Hash] options ({})
# @option options [String] :engine
# The database engine to return.
+ #
+ # Valid Values:
+ #
+ # * `aurora` (for MySQL 5.6-compatible Aurora)
+ #
+ # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
+ #
+ # * `aurora-postgresql`
+ #
+ # * `mariadb`
+ #
+ # * `mysql`
+ #
+ # * `oracle-ee`
+ #
+ # * `oracle-se2`
+ #
+ # * `oracle-se1`
+ #
+ # * `oracle-se`
+ #
+ # * `postgres`
+ #
+ # * `sqlserver-ee`
+ #
+ # * `sqlserver-se`
+ #
+ # * `sqlserver-ex`
+ #
+ # * `sqlserver-web`
# @option options [String] :engine_version
# The database engine version to return.
#
# Example: `5.1.49`
# @option options [String] :db_parameter_group_family
@@ -2560,9 +2639,33 @@
# @option options [Array<Types::Filter>] :filters
# This parameter isn't currently supported.
# @option options [String] :engine_name
# Filters the list of option groups to only include groups associated
# with a specific database engine.
+ #
+ # Valid Values:
+ #
+ # * `mariadb`
+ #
+ # * `mysql`
+ #
+ # * `oracle-ee`
+ #
+ # * `oracle-se2`
+ #
+ # * `oracle-se1`
+ #
+ # * `oracle-se`
+ #
+ # * `postgres`
+ #
+ # * `sqlserver-ee`
+ #
+ # * `sqlserver-se`
+ #
+ # * `sqlserver-ex`
+ #
+ # * `sqlserver-web`
# @option options [String] :major_engine_version
# Filters the list of option groups to only include groups associated
# with a specific database engine version. If specified, then EngineName
# must also be specified.
# @return [OptionGroup::Collection]