lib/aws-sdk-rds/resource.rb in aws-sdk-rds-1.130.0 vs lib/aws-sdk-rds/resource.rb in aws-sdk-rds-1.131.0
- old
+ new
@@ -625,10 +625,11 @@
# ],
# deletion_protection: false,
# max_allocated_storage: 1,
# enable_customer_owned_ip: false,
# custom_iam_instance_profile: "String",
+ # backup_target: "String",
# })
# @param [Hash] options ({})
# @option options [String] :db_name
# The meaning of this parameter differs according to the database engine
# you use.
@@ -904,67 +905,21 @@
# **Amazon Aurora**
#
# Not applicable. The name for the master user is managed by the DB
# cluster.
#
- # **MariaDB**
+ # **Amazon RDS**
#
# Constraints:
#
- # * Required for MariaDB.
+ # * Required.
#
- # * Must be 1 to 16 letters or numbers.
+ # * Must be 1 to 16 letters, numbers, or underscores.
#
- # * Can't be a reserved word for the chosen database engine.
- #
- # **Microsoft SQL Server**
- #
- # Constraints:
- #
- # * Required for SQL Server.
- #
- # * Must be 1 to 128 letters or numbers.
- #
- # * The first character must be a letter.
- #
- # * Can't be a reserved word for the chosen database engine.
- #
- # **MySQL**
- #
- # Constraints:
- #
- # * Required for MySQL.
- #
- # * Must be 1 to 16 letters or numbers.
- #
# * First character must be a letter.
#
# * Can't be a reserved word for the chosen database engine.
- #
- # **Oracle**
- #
- # Constraints:
- #
- # * Required for Oracle.
- #
- # * Must be 1 to 30 letters or numbers.
- #
- # * First character must be a letter.
- #
- # * Can't be a reserved word for the chosen database engine.
- #
- # **PostgreSQL**
- #
- # Constraints:
- #
- # * Required for PostgreSQL.
- #
- # * Must be 1 to 63 letters or numbers.
- #
- # * First character must be a letter.
- #
- # * Can't be a reserved word for the chosen database engine.
# @option options [String] :master_user_password
# The password for the master user. The password can include any
# printable ASCII character except "/", """, or "@".
#
# **Amazon Aurora**
@@ -1603,9 +1558,21 @@
# This setting is required for RDS Custom.
#
#
#
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
+ # @option options [String] :backup_target
+ # Specifies where automated backups and manual snapshots are stored.
+ #
+ # Possible values are `outposts` (Amazon Web Services Outposts) and
+ # `region` (Amazon Web Services Region). The default is `region`.
+ #
+ # For more information, see [Working with Amazon RDS on Amazon Web
+ # Services Outposts][1] in the *Amazon RDS User Guide*.
+ #
+ #
+ #
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
# @return [DBInstance]
def create_db_instance(options = {})
resp = @client.create_db_instance(options)
DBInstance.new(
id: resp.data.db_instance.db_instance_identifier,