aws-sdk-rds 1.131.0 → 1.132.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1429 -297
- data/lib/aws-sdk-rds/client_api.rb +59 -0
- data/lib/aws-sdk-rds/db_cluster.rb +727 -65
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +12 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +166 -14
- data/lib/aws-sdk-rds/db_instance.rb +76 -69
- data/lib/aws-sdk-rds/db_snapshot.rb +12 -11
- data/lib/aws-sdk-rds/resource.rb +345 -57
- data/lib/aws-sdk-rds/types.rb +1652 -258
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -648,10 +648,10 @@ module Aws::RDS
|
|
648
648
|
# Example: `my-snapshot-id`
|
649
649
|
# @option options [String] :db_instance_class
|
650
650
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
651
|
-
# example
|
652
|
-
#
|
653
|
-
#
|
654
|
-
#
|
651
|
+
# example db.m4.large. Not all DB instance classes are available in all
|
652
|
+
# Amazon Web Services Regions, or for all database engines. For the full
|
653
|
+
# list of DB instance classes, and availability for your engine, see [DB
|
654
|
+
# Instance Class][1] in the *Amazon RDS User Guide.*
|
655
655
|
#
|
656
656
|
# Default: The same DBInstanceClass as the original DB instance.
|
657
657
|
#
|
@@ -691,12 +691,13 @@ module Aws::RDS
|
|
691
691
|
# @option options [Boolean] :publicly_accessible
|
692
692
|
# A value that indicates whether the DB instance is publicly accessible.
|
693
693
|
#
|
694
|
-
# When the DB instance is publicly accessible, its
|
695
|
-
# to the private IP address from within the DB
|
696
|
-
#
|
697
|
-
#
|
698
|
-
#
|
699
|
-
#
|
694
|
+
# When the DB instance is publicly accessible, its Domain Name System
|
695
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
696
|
+
# instance's virtual private cloud (VPC). It resolves to the public IP
|
697
|
+
# address from outside of the DB instance's VPC. Access to the DB
|
698
|
+
# instance is ultimately controlled by the security group it uses. That
|
699
|
+
# public access is not permitted if the security group assigned to the
|
700
|
+
# DB instance doesn't permit it.
|
700
701
|
#
|
701
702
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
702
703
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -892,7 +893,7 @@ module Aws::RDS
|
|
892
893
|
# @option options [Boolean] :deletion_protection
|
893
894
|
# A value that indicates whether the DB instance has deletion protection
|
894
895
|
# enabled. The database can't be deleted when deletion protection is
|
895
|
-
# enabled. By default, deletion protection
|
896
|
+
# enabled. By default, deletion protection isn't enabled. For more
|
896
897
|
# information, see [ Deleting a DB Instance][1].
|
897
898
|
#
|
898
899
|
#
|