aws-sdk-rds 1.277.0 → 1.300.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 +115 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1790 -1463
- data/lib/aws-sdk-rds/client_api.rb +244 -156
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +404 -335
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +55 -55
- data/lib/aws-sdk-rds/db_instance.rb +452 -353
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +91 -66
- data/lib/aws-sdk-rds/db_subnet_group.rb +4 -1
- data/lib/aws-sdk-rds/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-rds/errors.rb +11 -1
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +257 -236
- data/lib/aws-sdk-rds/types.rb +1559 -1153
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +115 -102
- data/sig/db_cluster.rbs +72 -61
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +50 -44
- data/sig/db_snapshot.rbs +17 -12
- data/sig/errors.rbs +2 -0
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +24 -21
- data/sig/types.rbs +140 -115
- metadata +4 -4
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -960,6 +960,10 @@ module Aws::RDS
|
|
|
960
960
|
# The number of days for which automatic DB snapshots are retained.
|
|
961
961
|
# @return [Integer]
|
|
962
962
|
#
|
|
963
|
+
# @!attribute [rw] storage_type
|
|
964
|
+
# The storage type for the DB cluster.
|
|
965
|
+
# @return [String]
|
|
966
|
+
#
|
|
963
967
|
# @!attribute [rw] allocated_storage
|
|
964
968
|
# The allocated storage size in gibibytes (GiB) for all database
|
|
965
969
|
# engines except Amazon Aurora. For Aurora, `AllocatedStorage` always
|
|
@@ -976,10 +980,6 @@ module Aws::RDS
|
|
|
976
980
|
# is only for non-Aurora Multi-AZ DB clusters.
|
|
977
981
|
# @return [Integer]
|
|
978
982
|
#
|
|
979
|
-
# @!attribute [rw] storage_type
|
|
980
|
-
# The storage type for the DB cluster.
|
|
981
|
-
# @return [String]
|
|
982
|
-
#
|
|
983
983
|
# @!attribute [rw] certificate_details
|
|
984
984
|
# The details of the DB instance’s server certificate.
|
|
985
985
|
#
|
|
@@ -1003,12 +1003,12 @@ module Aws::RDS
|
|
|
1003
1003
|
:iam_database_authentication_enabled,
|
|
1004
1004
|
:engine_version,
|
|
1005
1005
|
:backup_retention_period,
|
|
1006
|
+
:storage_type,
|
|
1006
1007
|
:allocated_storage,
|
|
1007
1008
|
:rds_custom_cluster_configuration,
|
|
1008
1009
|
:iops,
|
|
1009
|
-
:storage_type,
|
|
1010
1010
|
:certificate_details)
|
|
1011
|
-
SENSITIVE = []
|
|
1011
|
+
SENSITIVE = [:master_user_password]
|
|
1012
1012
|
include Aws::Structure
|
|
1013
1013
|
end
|
|
1014
1014
|
|
|
@@ -1070,7 +1070,7 @@ module Aws::RDS
|
|
|
1070
1070
|
#
|
|
1071
1071
|
# Constraints:
|
|
1072
1072
|
#
|
|
1073
|
-
# * Must be between 0 and
|
|
1073
|
+
# * Must be between 0 and 300.
|
|
1074
1074
|
#
|
|
1075
1075
|
# ^
|
|
1076
1076
|
# @return [Integer]
|
|
@@ -1090,15 +1090,20 @@ module Aws::RDS
|
|
|
1090
1090
|
# specify one or more SQL statements for the proxy to run when opening
|
|
1091
1091
|
# each new database connection. The setting is typically used with
|
|
1092
1092
|
# `SET` statements to make sure that each connection has identical
|
|
1093
|
-
# settings. Make sure
|
|
1094
|
-
#
|
|
1095
|
-
#
|
|
1093
|
+
# settings. Make sure the query added here is valid. This is an
|
|
1094
|
+
# optional field, so you can choose to leave it empty. For including
|
|
1095
|
+
# multiple variables in a single SET statement, use a comma separator.
|
|
1096
1096
|
#
|
|
1097
1097
|
# For example: `SET variable1=value1, variable2=value2`
|
|
1098
1098
|
#
|
|
1099
|
-
# For multiple statements, use semicolons as the separator.
|
|
1100
|
-
#
|
|
1101
1099
|
# Default: no initialization query
|
|
1100
|
+
#
|
|
1101
|
+
# Since you can access initialization query as part of target group
|
|
1102
|
+
# configuration, it is not protected by authentication or
|
|
1103
|
+
# cryptographic methods. Anyone with access to view or manage your
|
|
1104
|
+
# proxy target group configuration can view the initialization query.
|
|
1105
|
+
# You should not add sensitive data, such as passwords or long-lived
|
|
1106
|
+
# encryption keys, to this option.
|
|
1102
1107
|
# @return [String]
|
|
1103
1108
|
#
|
|
1104
1109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfiguration AWS API Documentation
|
|
@@ -1152,12 +1157,20 @@ module Aws::RDS
|
|
|
1152
1157
|
#
|
|
1153
1158
|
# @!attribute [rw] init_query
|
|
1154
1159
|
# One or more SQL statements for the proxy to run when opening each
|
|
1155
|
-
# new database connection.
|
|
1156
|
-
# make sure that each connection has identical settings
|
|
1157
|
-
#
|
|
1158
|
-
#
|
|
1159
|
-
#
|
|
1160
|
-
#
|
|
1160
|
+
# new database connection. The setting is typically used with `SET`
|
|
1161
|
+
# statements to make sure that each connection has identical settings.
|
|
1162
|
+
# The query added here must be valid. For including multiple variables
|
|
1163
|
+
# in a single SET statement, use a comma separator. This is an
|
|
1164
|
+
# optional field.
|
|
1165
|
+
#
|
|
1166
|
+
# For example: `SET variable1=value1, variable2=value2`
|
|
1167
|
+
#
|
|
1168
|
+
# Since you can access initialization query as part of target group
|
|
1169
|
+
# configuration, it is not protected by authentication or
|
|
1170
|
+
# cryptographic methods. Anyone with access to view or manage your
|
|
1171
|
+
# proxy target group configuration can view the initialization query.
|
|
1172
|
+
# You should not add sensitive data, such as passwords or long-lived
|
|
1173
|
+
# encryption keys, to this option.
|
|
1161
1174
|
# @return [String]
|
|
1162
1175
|
#
|
|
1163
1176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfigurationInfo AWS API Documentation
|
|
@@ -1271,20 +1284,19 @@ module Aws::RDS
|
|
|
1271
1284
|
# The identifier of the DB cluster snapshot to copy. This parameter
|
|
1272
1285
|
# isn't case-sensitive.
|
|
1273
1286
|
#
|
|
1274
|
-
# You can't copy an encrypted, shared DB cluster snapshot from one
|
|
1275
|
-
# Amazon Web Services Region to another.
|
|
1276
|
-
#
|
|
1277
1287
|
# Constraints:
|
|
1278
1288
|
#
|
|
1279
|
-
# * Must specify a valid
|
|
1289
|
+
# * Must specify a valid source snapshot in the "available" state.
|
|
1280
1290
|
#
|
|
1281
1291
|
# * If the source snapshot is in the same Amazon Web Services Region
|
|
1282
1292
|
# as the copy, specify a valid DB snapshot identifier.
|
|
1283
1293
|
#
|
|
1284
1294
|
# * If the source snapshot is in a different Amazon Web Services
|
|
1285
|
-
# Region than the copy, specify a valid DB cluster snapshot ARN.
|
|
1286
|
-
#
|
|
1287
|
-
#
|
|
1295
|
+
# Region than the copy, specify a valid DB cluster snapshot ARN. You
|
|
1296
|
+
# can also specify an ARN of a snapshot that is in a different
|
|
1297
|
+
# account and a different Amazon Web Services Region. For more
|
|
1298
|
+
# information, go to [ Copying Snapshots Across Amazon Web Services
|
|
1299
|
+
# Regions][1] in the *Amazon Aurora User Guide*.
|
|
1288
1300
|
#
|
|
1289
1301
|
# Example: `my-cluster-snapshot1`
|
|
1290
1302
|
#
|
|
@@ -1428,7 +1440,7 @@ module Aws::RDS
|
|
|
1428
1440
|
:copy_tags,
|
|
1429
1441
|
:tags,
|
|
1430
1442
|
:source_region)
|
|
1431
|
-
SENSITIVE = []
|
|
1443
|
+
SENSITIVE = [:pre_signed_url]
|
|
1432
1444
|
include Aws::Structure
|
|
1433
1445
|
end
|
|
1434
1446
|
|
|
@@ -1529,20 +1541,18 @@ module Aws::RDS
|
|
|
1529
1541
|
# the copy, specify a valid DB snapshot identifier. For example, you
|
|
1530
1542
|
# might specify `rds:mysql-instance1-snapshot-20130805`.
|
|
1531
1543
|
#
|
|
1532
|
-
# If the source snapshot is in a different Amazon Web Services Region
|
|
1533
|
-
# than the copy, specify a valid DB snapshot ARN. For example, you
|
|
1534
|
-
# might specify
|
|
1535
|
-
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
|
1536
|
-
#
|
|
1537
1544
|
# If you are copying from a shared manual DB snapshot, this parameter
|
|
1538
1545
|
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
|
1539
1546
|
#
|
|
1540
|
-
# If
|
|
1541
|
-
# the
|
|
1547
|
+
# If the source snapshot is in a different Amazon Web Services Region
|
|
1548
|
+
# than the copy, specify a valid DB snapshot ARN. You can also specify
|
|
1549
|
+
# an ARN of a snapshot that is in a different account and a different
|
|
1550
|
+
# Amazon Web Services Region. For example, you might specify
|
|
1551
|
+
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
|
1542
1552
|
#
|
|
1543
1553
|
# Constraints:
|
|
1544
1554
|
#
|
|
1545
|
-
# * Must specify a valid
|
|
1555
|
+
# * Must specify a valid source snapshot in the "available" state.
|
|
1546
1556
|
#
|
|
1547
1557
|
# ^
|
|
1548
1558
|
#
|
|
@@ -1705,6 +1715,18 @@ module Aws::RDS
|
|
|
1705
1715
|
# Example: `rds-caz-aiqhTgQv`.
|
|
1706
1716
|
# @return [String]
|
|
1707
1717
|
#
|
|
1718
|
+
# @!attribute [rw] snapshot_target
|
|
1719
|
+
# Configures the location where RDS will store copied snapshots.
|
|
1720
|
+
#
|
|
1721
|
+
# Valid Values:
|
|
1722
|
+
#
|
|
1723
|
+
# * `local` (Dedicated Local Zone)
|
|
1724
|
+
#
|
|
1725
|
+
# * `outposts` (Amazon Web Services Outposts)
|
|
1726
|
+
#
|
|
1727
|
+
# * `region` (Amazon Web Services Region)
|
|
1728
|
+
# @return [String]
|
|
1729
|
+
#
|
|
1708
1730
|
# @!attribute [rw] copy_option_group
|
|
1709
1731
|
# Specifies whether to copy the DB option group associated with the
|
|
1710
1732
|
# source DB snapshot to the target Amazon Web Services account and
|
|
@@ -1712,6 +1734,12 @@ module Aws::RDS
|
|
|
1712
1734
|
# can be copied only with cross-account snapshot copy calls.
|
|
1713
1735
|
# @return [Boolean]
|
|
1714
1736
|
#
|
|
1737
|
+
# @!attribute [rw] snapshot_availability_zone
|
|
1738
|
+
# Specifies the name of the Availability Zone where RDS stores the DB
|
|
1739
|
+
# snapshot. This value is valid only for snapshots that RDS stores on
|
|
1740
|
+
# a Dedicated Local Zone.
|
|
1741
|
+
# @return [String]
|
|
1742
|
+
#
|
|
1715
1743
|
# @!attribute [rw] source_region
|
|
1716
1744
|
# The source region of the snapshot. This is only needed when the
|
|
1717
1745
|
# shapshot is encrypted and in a different region.
|
|
@@ -1728,9 +1756,11 @@ module Aws::RDS
|
|
|
1728
1756
|
:pre_signed_url,
|
|
1729
1757
|
:option_group_name,
|
|
1730
1758
|
:target_custom_availability_zone,
|
|
1759
|
+
:snapshot_target,
|
|
1731
1760
|
:copy_option_group,
|
|
1761
|
+
:snapshot_availability_zone,
|
|
1732
1762
|
:source_region)
|
|
1733
|
-
SENSITIVE = []
|
|
1763
|
+
SENSITIVE = [:pre_signed_url]
|
|
1734
1764
|
include Aws::Structure
|
|
1735
1765
|
end
|
|
1736
1766
|
|
|
@@ -2036,6 +2066,20 @@ module Aws::RDS
|
|
|
2036
2066
|
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html#create-symmetric-cmk
|
|
2037
2067
|
# @return [String]
|
|
2038
2068
|
#
|
|
2069
|
+
# @!attribute [rw] source_custom_db_engine_version_identifier
|
|
2070
|
+
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
|
2071
|
+
# specify a different Amazon Machine Imagine (AMI) by using either
|
|
2072
|
+
# `Source` or `UseAwsProvidedLatestImage`. You can't specify a
|
|
2073
|
+
# different JSON manifest when you specify
|
|
2074
|
+
# `SourceCustomDbEngineVersionIdentifier`.
|
|
2075
|
+
# @return [String]
|
|
2076
|
+
#
|
|
2077
|
+
# @!attribute [rw] use_aws_provided_latest_image
|
|
2078
|
+
# Specifies whether to use the latest service-provided Amazon Machine
|
|
2079
|
+
# Image (AMI) for the CEV. If you specify `UseAwsProvidedLatestImage`,
|
|
2080
|
+
# you can't also specify `ImageId`.
|
|
2081
|
+
# @return [Boolean]
|
|
2082
|
+
#
|
|
2039
2083
|
# @!attribute [rw] description
|
|
2040
2084
|
# An optional description of your CEV.
|
|
2041
2085
|
# @return [String]
|
|
@@ -2091,20 +2135,6 @@ module Aws::RDS
|
|
|
2091
2135
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
2092
2136
|
# @return [Array<Types::Tag>]
|
|
2093
2137
|
#
|
|
2094
|
-
# @!attribute [rw] source_custom_db_engine_version_identifier
|
|
2095
|
-
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
|
2096
|
-
# specify a different Amazon Machine Imagine (AMI) by using either
|
|
2097
|
-
# `Source` or `UseAwsProvidedLatestImage`. You can't specify a
|
|
2098
|
-
# different JSON manifest when you specify
|
|
2099
|
-
# `SourceCustomDbEngineVersionIdentifier`.
|
|
2100
|
-
# @return [String]
|
|
2101
|
-
#
|
|
2102
|
-
# @!attribute [rw] use_aws_provided_latest_image
|
|
2103
|
-
# Specifies whether to use the latest service-provided Amazon Machine
|
|
2104
|
-
# Image (AMI) for the CEV. If you specify `UseAwsProvidedLatestImage`,
|
|
2105
|
-
# you can't also specify `ImageId`.
|
|
2106
|
-
# @return [Boolean]
|
|
2107
|
-
#
|
|
2108
2138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersionMessage AWS API Documentation
|
|
2109
2139
|
#
|
|
2110
2140
|
class CreateCustomDBEngineVersionMessage < Struct.new(
|
|
@@ -2114,11 +2144,11 @@ module Aws::RDS
|
|
|
2114
2144
|
:database_installation_files_s3_prefix,
|
|
2115
2145
|
:image_id,
|
|
2116
2146
|
:kms_key_id,
|
|
2147
|
+
:source_custom_db_engine_version_identifier,
|
|
2148
|
+
:use_aws_provided_latest_image,
|
|
2117
2149
|
:description,
|
|
2118
2150
|
:manifest,
|
|
2119
|
-
:tags
|
|
2120
|
-
:source_custom_db_engine_version_identifier,
|
|
2121
|
-
:use_aws_provided_latest_image)
|
|
2151
|
+
:tags)
|
|
2122
2152
|
SENSITIVE = []
|
|
2123
2153
|
include Aws::Structure
|
|
2124
2154
|
end
|
|
@@ -2170,8 +2200,18 @@ module Aws::RDS
|
|
|
2170
2200
|
# A list of Availability Zones (AZs) where you specifically want to
|
|
2171
2201
|
# create DB instances in the DB cluster.
|
|
2172
2202
|
#
|
|
2173
|
-
# For
|
|
2174
|
-
#
|
|
2203
|
+
# For the first three DB instances that you create, RDS distributes
|
|
2204
|
+
# each DB instance to a different AZ that you specify. For additional
|
|
2205
|
+
# DB instances that you create, RDS randomly distributes them to the
|
|
2206
|
+
# AZs that you specified. For example, if you create a DB cluster with
|
|
2207
|
+
# one writer instance and three reader instances, RDS might distribute
|
|
2208
|
+
# the writer instance to AZ 1, the first reader instance to AZ 2, the
|
|
2209
|
+
# second reader instance to AZ 3, and the third reader instance to
|
|
2210
|
+
# either AZ 1, AZ 2, or AZ 3.
|
|
2211
|
+
#
|
|
2212
|
+
# For more information, see [Availability Zones][1] and [High
|
|
2213
|
+
# availability for Aurora DB instances][2] in the *Amazon Aurora User
|
|
2214
|
+
# Guide*.
|
|
2175
2215
|
#
|
|
2176
2216
|
# Valid for Cluster Type: Aurora DB clusters only
|
|
2177
2217
|
#
|
|
@@ -2184,6 +2224,7 @@ module Aws::RDS
|
|
|
2184
2224
|
#
|
|
2185
2225
|
#
|
|
2186
2226
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
|
2227
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Concepts.AuroraHighAvailability.Instances
|
|
2187
2228
|
# @return [Array<String>]
|
|
2188
2229
|
#
|
|
2189
2230
|
# @!attribute [rw] backup_retention_period
|
|
@@ -2656,87 +2697,6 @@ module Aws::RDS
|
|
|
2656
2697
|
# Reserved for future use.
|
|
2657
2698
|
# @return [Types::RdsCustomClusterConfiguration]
|
|
2658
2699
|
#
|
|
2659
|
-
# @!attribute [rw] deletion_protection
|
|
2660
|
-
# Specifies whether the DB cluster has deletion protection enabled.
|
|
2661
|
-
# The database can't be deleted when deletion protection is enabled.
|
|
2662
|
-
# By default, deletion protection isn't enabled.
|
|
2663
|
-
#
|
|
2664
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2665
|
-
# @return [Boolean]
|
|
2666
|
-
#
|
|
2667
|
-
# @!attribute [rw] global_cluster_identifier
|
|
2668
|
-
# The global cluster ID of an Aurora cluster that becomes the primary
|
|
2669
|
-
# cluster in the new global database cluster.
|
|
2670
|
-
#
|
|
2671
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2672
|
-
# @return [String]
|
|
2673
|
-
#
|
|
2674
|
-
# @!attribute [rw] enable_http_endpoint
|
|
2675
|
-
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
|
2676
|
-
# default, the HTTP endpoint isn't enabled.
|
|
2677
|
-
#
|
|
2678
|
-
# When enabled, the HTTP endpoint provides a connectionless web
|
|
2679
|
-
# service API (RDS Data API) for running SQL queries on the DB
|
|
2680
|
-
# cluster. You can also query your database from inside the RDS
|
|
2681
|
-
# console with the RDS query editor.
|
|
2682
|
-
#
|
|
2683
|
-
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
2684
|
-
# Aurora User Guide*.
|
|
2685
|
-
#
|
|
2686
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2687
|
-
#
|
|
2688
|
-
#
|
|
2689
|
-
#
|
|
2690
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
|
2691
|
-
# @return [Boolean]
|
|
2692
|
-
#
|
|
2693
|
-
# @!attribute [rw] copy_tags_to_snapshot
|
|
2694
|
-
# Specifies whether to copy all tags from the DB cluster to snapshots
|
|
2695
|
-
# of the DB cluster. The default is not to copy them.
|
|
2696
|
-
#
|
|
2697
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2698
|
-
# @return [Boolean]
|
|
2699
|
-
#
|
|
2700
|
-
# @!attribute [rw] domain
|
|
2701
|
-
# The Active Directory directory ID to create the DB cluster in.
|
|
2702
|
-
#
|
|
2703
|
-
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
|
2704
|
-
# authentication to authenticate users that connect to the DB cluster.
|
|
2705
|
-
#
|
|
2706
|
-
# For more information, see [Kerberos authentication][1] in the
|
|
2707
|
-
# *Amazon Aurora User Guide*.
|
|
2708
|
-
#
|
|
2709
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2710
|
-
#
|
|
2711
|
-
#
|
|
2712
|
-
#
|
|
2713
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
|
2714
|
-
# @return [String]
|
|
2715
|
-
#
|
|
2716
|
-
# @!attribute [rw] domain_iam_role_name
|
|
2717
|
-
# The name of the IAM role to use when making API calls to the
|
|
2718
|
-
# Directory Service.
|
|
2719
|
-
#
|
|
2720
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2721
|
-
# @return [String]
|
|
2722
|
-
#
|
|
2723
|
-
# @!attribute [rw] enable_global_write_forwarding
|
|
2724
|
-
# Specifies whether to enable this DB cluster to forward write
|
|
2725
|
-
# operations to the primary cluster of a global cluster (Aurora global
|
|
2726
|
-
# database). By default, write operations are not allowed on Aurora DB
|
|
2727
|
-
# clusters that are secondary clusters in an Aurora global database.
|
|
2728
|
-
#
|
|
2729
|
-
# You can set this value only on Aurora DB clusters that are members
|
|
2730
|
-
# of an Aurora global database. With this parameter enabled, a
|
|
2731
|
-
# secondary cluster can forward writes to the current primary cluster,
|
|
2732
|
-
# and the resulting changes are replicated back to this cluster. For
|
|
2733
|
-
# the primary DB cluster of an Aurora global database, this value is
|
|
2734
|
-
# used immediately if the primary is demoted by a global cluster API
|
|
2735
|
-
# operation, but it does nothing until then.
|
|
2736
|
-
#
|
|
2737
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2738
|
-
# @return [Boolean]
|
|
2739
|
-
#
|
|
2740
2700
|
# @!attribute [rw] db_cluster_instance_class
|
|
2741
2701
|
# The compute and memory capacity of each DB instance in the Multi-AZ
|
|
2742
2702
|
# DB cluster, for example `db.m6gd.xlarge`. Not all DB instance
|
|
@@ -2830,40 +2790,31 @@ module Aws::RDS
|
|
|
2830
2790
|
# @!attribute [rw] publicly_accessible
|
|
2831
2791
|
# Specifies whether the DB cluster is publicly accessible.
|
|
2832
2792
|
#
|
|
2793
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
|
2794
|
+
#
|
|
2833
2795
|
# When the DB cluster is publicly accessible and you connect from
|
|
2834
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
|
2835
|
-
#
|
|
2796
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
|
2797
|
+
# name system (DNS) endpoint resolves to the public IP address. When
|
|
2836
2798
|
# you connect from within the same VPC as the DB cluster, the endpoint
|
|
2837
2799
|
# resolves to the private IP address. Access to the DB cluster is
|
|
2838
|
-
#
|
|
2839
|
-
# access isn't permitted if the security group assigned to the DB
|
|
2840
|
-
# cluster doesn't permit it.
|
|
2800
|
+
# controlled by its security group settings.
|
|
2841
2801
|
#
|
|
2842
2802
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
|
2843
2803
|
# cluster with a DNS name that resolves to a private IP address.
|
|
2844
2804
|
#
|
|
2845
|
-
#
|
|
2846
|
-
#
|
|
2847
|
-
# Default: The default behavior varies depending on whether
|
|
2848
|
-
# `DBSubnetGroupName` is specified.
|
|
2849
|
-
#
|
|
2850
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
|
2851
|
-
# isn't specified, the following applies:
|
|
2852
|
-
#
|
|
2853
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
|
2854
|
-
# gateway attached to it, the DB cluster is private.
|
|
2855
|
-
#
|
|
2856
|
-
# * If the default VPC in the target Region has an internet gateway
|
|
2857
|
-
# attached to it, the DB cluster is public.
|
|
2805
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
2806
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
2858
2807
|
#
|
|
2859
|
-
# If `
|
|
2860
|
-
#
|
|
2808
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
|
2809
|
+
# to `true`.
|
|
2861
2810
|
#
|
|
2862
|
-
#
|
|
2863
|
-
#
|
|
2811
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
2812
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
2813
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
2864
2814
|
#
|
|
2865
|
-
#
|
|
2866
|
-
#
|
|
2815
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
2816
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
2817
|
+
# returns an error.
|
|
2867
2818
|
# @return [Boolean]
|
|
2868
2819
|
#
|
|
2869
2820
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
@@ -2881,70 +2832,182 @@ module Aws::RDS
|
|
|
2881
2832
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
|
2882
2833
|
# @return [Boolean]
|
|
2883
2834
|
#
|
|
2884
|
-
# @!attribute [rw]
|
|
2885
|
-
#
|
|
2886
|
-
#
|
|
2887
|
-
#
|
|
2888
|
-
#
|
|
2889
|
-
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval`
|
|
2890
|
-
# to a value other than `0`.
|
|
2835
|
+
# @!attribute [rw] deletion_protection
|
|
2836
|
+
# Specifies whether the DB cluster has deletion protection enabled.
|
|
2837
|
+
# The database can't be deleted when deletion protection is enabled.
|
|
2838
|
+
# By default, deletion protection isn't enabled.
|
|
2891
2839
|
#
|
|
2892
2840
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2841
|
+
# @return [Boolean]
|
|
2893
2842
|
#
|
|
2894
|
-
#
|
|
2843
|
+
# @!attribute [rw] global_cluster_identifier
|
|
2844
|
+
# The global cluster ID of an Aurora cluster that becomes the primary
|
|
2845
|
+
# cluster in the new global database cluster.
|
|
2895
2846
|
#
|
|
2896
|
-
#
|
|
2897
|
-
# @return [
|
|
2847
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2848
|
+
# @return [String]
|
|
2898
2849
|
#
|
|
2899
|
-
# @!attribute [rw]
|
|
2900
|
-
#
|
|
2901
|
-
#
|
|
2902
|
-
# example is `arn:aws:iam:123456789012:role/emaccess`. For information
|
|
2903
|
-
# on creating a monitoring role, see [Setting up and enabling Enhanced
|
|
2904
|
-
# Monitoring][1] in the *Amazon RDS User Guide*.
|
|
2850
|
+
# @!attribute [rw] enable_http_endpoint
|
|
2851
|
+
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
|
2852
|
+
# default, the HTTP endpoint isn't enabled.
|
|
2905
2853
|
#
|
|
2906
|
-
#
|
|
2907
|
-
#
|
|
2854
|
+
# When enabled, the HTTP endpoint provides a connectionless web
|
|
2855
|
+
# service API (RDS Data API) for running SQL queries on the DB
|
|
2856
|
+
# cluster. You can also query your database from inside the RDS
|
|
2857
|
+
# console with the RDS query editor.
|
|
2908
2858
|
#
|
|
2909
|
-
#
|
|
2859
|
+
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
2860
|
+
# Aurora User Guide*.
|
|
2910
2861
|
#
|
|
2862
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2911
2863
|
#
|
|
2912
2864
|
#
|
|
2913
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
2914
|
-
# @return [String]
|
|
2915
2865
|
#
|
|
2916
|
-
#
|
|
2917
|
-
#
|
|
2866
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
|
2867
|
+
# @return [Boolean]
|
|
2918
2868
|
#
|
|
2919
|
-
#
|
|
2920
|
-
#
|
|
2921
|
-
#
|
|
2869
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
|
2870
|
+
# Specifies whether to copy all tags from the DB cluster to snapshots
|
|
2871
|
+
# of the DB cluster. The default is not to copy them.
|
|
2922
2872
|
#
|
|
2923
2873
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2924
|
-
# @return [
|
|
2925
|
-
#
|
|
2926
|
-
# @!attribute [rw] enable_performance_insights
|
|
2927
|
-
# Specifies whether to turn on Performance Insights for the DB
|
|
2928
|
-
# cluster.
|
|
2874
|
+
# @return [Boolean]
|
|
2929
2875
|
#
|
|
2930
|
-
#
|
|
2931
|
-
# the
|
|
2876
|
+
# @!attribute [rw] domain
|
|
2877
|
+
# The Active Directory directory ID to create the DB cluster in.
|
|
2932
2878
|
#
|
|
2933
|
-
#
|
|
2879
|
+
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
|
2880
|
+
# authentication to authenticate users that connect to the DB cluster.
|
|
2934
2881
|
#
|
|
2882
|
+
# For more information, see [Kerberos authentication][1] in the
|
|
2883
|
+
# *Amazon Aurora User Guide*.
|
|
2935
2884
|
#
|
|
2885
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2936
2886
|
#
|
|
2937
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
|
2938
|
-
# @return [Boolean]
|
|
2939
2887
|
#
|
|
2940
|
-
# @!attribute [rw] performance_insights_kms_key_id
|
|
2941
|
-
# The Amazon Web Services KMS key identifier for encryption of
|
|
2942
|
-
# Performance Insights data.
|
|
2943
2888
|
#
|
|
2944
|
-
#
|
|
2945
|
-
#
|
|
2889
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
|
2890
|
+
# @return [String]
|
|
2946
2891
|
#
|
|
2947
|
-
#
|
|
2892
|
+
# @!attribute [rw] domain_iam_role_name
|
|
2893
|
+
# The name of the IAM role to use when making API calls to the
|
|
2894
|
+
# Directory Service.
|
|
2895
|
+
#
|
|
2896
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2897
|
+
# @return [String]
|
|
2898
|
+
#
|
|
2899
|
+
# @!attribute [rw] enable_global_write_forwarding
|
|
2900
|
+
# Specifies whether to enable this DB cluster to forward write
|
|
2901
|
+
# operations to the primary cluster of a global cluster (Aurora global
|
|
2902
|
+
# database). By default, write operations are not allowed on Aurora DB
|
|
2903
|
+
# clusters that are secondary clusters in an Aurora global database.
|
|
2904
|
+
#
|
|
2905
|
+
# You can set this value only on Aurora DB clusters that are members
|
|
2906
|
+
# of an Aurora global database. With this parameter enabled, a
|
|
2907
|
+
# secondary cluster can forward writes to the current primary cluster,
|
|
2908
|
+
# and the resulting changes are replicated back to this cluster. For
|
|
2909
|
+
# the primary DB cluster of an Aurora global database, this value is
|
|
2910
|
+
# used immediately if the primary is demoted by a global cluster API
|
|
2911
|
+
# operation, but it does nothing until then.
|
|
2912
|
+
#
|
|
2913
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2914
|
+
# @return [Boolean]
|
|
2915
|
+
#
|
|
2916
|
+
# @!attribute [rw] network_type
|
|
2917
|
+
# The network type of the DB cluster.
|
|
2918
|
+
#
|
|
2919
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
2920
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
2921
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
2922
|
+
#
|
|
2923
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
2924
|
+
# in the *Amazon Aurora User Guide.*
|
|
2925
|
+
#
|
|
2926
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2927
|
+
#
|
|
2928
|
+
# Valid Values: `IPV4 | DUAL`
|
|
2929
|
+
#
|
|
2930
|
+
#
|
|
2931
|
+
#
|
|
2932
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
2933
|
+
# @return [String]
|
|
2934
|
+
#
|
|
2935
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
2936
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
2937
|
+
# cluster.
|
|
2938
|
+
#
|
|
2939
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
2940
|
+
# the *Amazon Aurora User Guide*.
|
|
2941
|
+
#
|
|
2942
|
+
#
|
|
2943
|
+
#
|
|
2944
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
2945
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
2946
|
+
#
|
|
2947
|
+
# @!attribute [rw] monitoring_interval
|
|
2948
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
|
2949
|
+
# metrics are collected for the DB cluster. To turn off collecting
|
|
2950
|
+
# Enhanced Monitoring metrics, specify `0`.
|
|
2951
|
+
#
|
|
2952
|
+
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval`
|
|
2953
|
+
# to a value other than `0`.
|
|
2954
|
+
#
|
|
2955
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2956
|
+
#
|
|
2957
|
+
# Valid Values: `0 | 1 | 5 | 10 | 15 | 30 | 60`
|
|
2958
|
+
#
|
|
2959
|
+
# Default: `0`
|
|
2960
|
+
# @return [Integer]
|
|
2961
|
+
#
|
|
2962
|
+
# @!attribute [rw] monitoring_role_arn
|
|
2963
|
+
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
|
2964
|
+
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An
|
|
2965
|
+
# example is `arn:aws:iam:123456789012:role/emaccess`. For information
|
|
2966
|
+
# on creating a monitoring role, see [Setting up and enabling Enhanced
|
|
2967
|
+
# Monitoring][1] in the *Amazon RDS User Guide*.
|
|
2968
|
+
#
|
|
2969
|
+
# If `MonitoringInterval` is set to a value other than `0`, supply a
|
|
2970
|
+
# `MonitoringRoleArn` value.
|
|
2971
|
+
#
|
|
2972
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2973
|
+
#
|
|
2974
|
+
#
|
|
2975
|
+
#
|
|
2976
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
2977
|
+
# @return [String]
|
|
2978
|
+
#
|
|
2979
|
+
# @!attribute [rw] database_insights_mode
|
|
2980
|
+
# The mode of Database Insights to enable for the DB cluster.
|
|
2981
|
+
#
|
|
2982
|
+
# If you set this value to `advanced`, you must also set the
|
|
2983
|
+
# `PerformanceInsightsEnabled` parameter to `true` and the
|
|
2984
|
+
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
|
2985
|
+
#
|
|
2986
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2987
|
+
# @return [String]
|
|
2988
|
+
#
|
|
2989
|
+
# @!attribute [rw] enable_performance_insights
|
|
2990
|
+
# Specifies whether to turn on Performance Insights for the DB
|
|
2991
|
+
# cluster.
|
|
2992
|
+
#
|
|
2993
|
+
# For more information, see [ Using Amazon Performance Insights][1] in
|
|
2994
|
+
# the *Amazon RDS User Guide*.
|
|
2995
|
+
#
|
|
2996
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2997
|
+
#
|
|
2998
|
+
#
|
|
2999
|
+
#
|
|
3000
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
|
3001
|
+
# @return [Boolean]
|
|
3002
|
+
#
|
|
3003
|
+
# @!attribute [rw] performance_insights_kms_key_id
|
|
3004
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
|
3005
|
+
# Performance Insights data.
|
|
3006
|
+
#
|
|
3007
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
|
3008
|
+
# alias ARN, or alias name for the KMS key.
|
|
3009
|
+
#
|
|
3010
|
+
# If you don't specify a value for `PerformanceInsightsKMSKeyId`,
|
|
2948
3011
|
# then Amazon RDS uses your default KMS key. There is a default KMS
|
|
2949
3012
|
# key for your Amazon Web Services account. Your Amazon Web Services
|
|
2950
3013
|
# account has a different default KMS key for each Amazon Web Services
|
|
@@ -2986,37 +3049,6 @@ module Aws::RDS
|
|
|
2986
3049
|
# </note>
|
|
2987
3050
|
# @return [Boolean]
|
|
2988
3051
|
#
|
|
2989
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
2990
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
2991
|
-
# cluster.
|
|
2992
|
-
#
|
|
2993
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
2994
|
-
# the *Amazon Aurora User Guide*.
|
|
2995
|
-
#
|
|
2996
|
-
#
|
|
2997
|
-
#
|
|
2998
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
2999
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
3000
|
-
#
|
|
3001
|
-
# @!attribute [rw] network_type
|
|
3002
|
-
# The network type of the DB cluster.
|
|
3003
|
-
#
|
|
3004
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
3005
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
3006
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
3007
|
-
#
|
|
3008
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
3009
|
-
# in the *Amazon Aurora User Guide.*
|
|
3010
|
-
#
|
|
3011
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
3012
|
-
#
|
|
3013
|
-
# Valid Values: `IPV4 | DUAL`
|
|
3014
|
-
#
|
|
3015
|
-
#
|
|
3016
|
-
#
|
|
3017
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
3018
|
-
# @return [String]
|
|
3019
|
-
#
|
|
3020
3052
|
# @!attribute [rw] cluster_scalability_type
|
|
3021
3053
|
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
|
3022
3054
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
|
@@ -3058,6 +3090,14 @@ module Aws::RDS
|
|
|
3058
3090
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
|
3059
3091
|
# @return [Boolean]
|
|
3060
3092
|
#
|
|
3093
|
+
# @!attribute [rw] enable_local_write_forwarding
|
|
3094
|
+
# Specifies whether read replicas can forward write operations to the
|
|
3095
|
+
# writer DB instance in the DB cluster. By default, write operations
|
|
3096
|
+
# aren't allowed on reader DB instances.
|
|
3097
|
+
#
|
|
3098
|
+
# Valid for: Aurora DB clusters only
|
|
3099
|
+
# @return [Boolean]
|
|
3100
|
+
#
|
|
3061
3101
|
# @!attribute [rw] master_user_secret_kms_key_id
|
|
3062
3102
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
|
3063
3103
|
# is automatically generated and managed in Amazon Web Services
|
|
@@ -3084,14 +3124,6 @@ module Aws::RDS
|
|
|
3084
3124
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
3085
3125
|
# @return [String]
|
|
3086
3126
|
#
|
|
3087
|
-
# @!attribute [rw] enable_local_write_forwarding
|
|
3088
|
-
# Specifies whether read replicas can forward write operations to the
|
|
3089
|
-
# writer DB instance in the DB cluster. By default, write operations
|
|
3090
|
-
# aren't allowed on reader DB instances.
|
|
3091
|
-
#
|
|
3092
|
-
# Valid for: Aurora DB clusters only
|
|
3093
|
-
# @return [Boolean]
|
|
3094
|
-
#
|
|
3095
3127
|
# @!attribute [rw] ca_certificate_identifier
|
|
3096
3128
|
# The CA certificate identifier to use for the DB cluster's server
|
|
3097
3129
|
# certificate.
|
|
@@ -3144,6 +3176,24 @@ module Aws::RDS
|
|
|
3144
3176
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3145
3177
|
# @return [String]
|
|
3146
3178
|
#
|
|
3179
|
+
# @!attribute [rw] master_user_authentication_type
|
|
3180
|
+
# Specifies the authentication type for the master user. With IAM
|
|
3181
|
+
# master user authentication, you can configure the master DB user
|
|
3182
|
+
# with IAM database authentication when you create a DB cluster.
|
|
3183
|
+
#
|
|
3184
|
+
# You can specify one of the following values:
|
|
3185
|
+
#
|
|
3186
|
+
# * `password` - Use standard database authentication with a password.
|
|
3187
|
+
#
|
|
3188
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
3189
|
+
# user.
|
|
3190
|
+
#
|
|
3191
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
3192
|
+
#
|
|
3193
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
3194
|
+
# PostgreSQL engines.
|
|
3195
|
+
# @return [String]
|
|
3196
|
+
#
|
|
3147
3197
|
# @!attribute [rw] source_region
|
|
3148
3198
|
# The source region of the snapshot. This is only needed when the
|
|
3149
3199
|
# shapshot is encrypted and in a different region.
|
|
@@ -3179,6 +3229,12 @@ module Aws::RDS
|
|
|
3179
3229
|
:engine_mode,
|
|
3180
3230
|
:scaling_configuration,
|
|
3181
3231
|
:rds_custom_cluster_configuration,
|
|
3232
|
+
:db_cluster_instance_class,
|
|
3233
|
+
:allocated_storage,
|
|
3234
|
+
:storage_type,
|
|
3235
|
+
:iops,
|
|
3236
|
+
:publicly_accessible,
|
|
3237
|
+
:auto_minor_version_upgrade,
|
|
3182
3238
|
:deletion_protection,
|
|
3183
3239
|
:global_cluster_identifier,
|
|
3184
3240
|
:enable_http_endpoint,
|
|
@@ -3186,12 +3242,8 @@ module Aws::RDS
|
|
|
3186
3242
|
:domain,
|
|
3187
3243
|
:domain_iam_role_name,
|
|
3188
3244
|
:enable_global_write_forwarding,
|
|
3189
|
-
:
|
|
3190
|
-
:
|
|
3191
|
-
:storage_type,
|
|
3192
|
-
:iops,
|
|
3193
|
-
:publicly_accessible,
|
|
3194
|
-
:auto_minor_version_upgrade,
|
|
3245
|
+
:network_type,
|
|
3246
|
+
:serverless_v2_scaling_configuration,
|
|
3195
3247
|
:monitoring_interval,
|
|
3196
3248
|
:monitoring_role_arn,
|
|
3197
3249
|
:database_insights_mode,
|
|
@@ -3199,17 +3251,16 @@ module Aws::RDS
|
|
|
3199
3251
|
:performance_insights_kms_key_id,
|
|
3200
3252
|
:performance_insights_retention_period,
|
|
3201
3253
|
:enable_limitless_database,
|
|
3202
|
-
:serverless_v2_scaling_configuration,
|
|
3203
|
-
:network_type,
|
|
3204
3254
|
:cluster_scalability_type,
|
|
3205
3255
|
:db_system_id,
|
|
3206
3256
|
:manage_master_user_password,
|
|
3207
|
-
:master_user_secret_kms_key_id,
|
|
3208
3257
|
:enable_local_write_forwarding,
|
|
3258
|
+
:master_user_secret_kms_key_id,
|
|
3209
3259
|
:ca_certificate_identifier,
|
|
3210
3260
|
:engine_lifecycle_support,
|
|
3261
|
+
:master_user_authentication_type,
|
|
3211
3262
|
:source_region)
|
|
3212
|
-
SENSITIVE = []
|
|
3263
|
+
SENSITIVE = [:master_user_password, :pre_signed_url]
|
|
3213
3264
|
include Aws::Structure
|
|
3214
3265
|
end
|
|
3215
3266
|
|
|
@@ -3979,12 +4030,8 @@ module Aws::RDS
|
|
|
3979
4030
|
# can't set the `AvailabilityZone` parameter if the DB instance is a
|
|
3980
4031
|
# Multi-AZ deployment.
|
|
3981
4032
|
#
|
|
3982
|
-
# This setting doesn't apply to the
|
|
3983
|
-
#
|
|
3984
|
-
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
|
3985
|
-
# the DB cluster.)
|
|
3986
|
-
#
|
|
3987
|
-
# * RDS Custom
|
|
4033
|
+
# This setting doesn't apply to Amazon Aurora because the DB instance
|
|
4034
|
+
# Availability Zones (AZs) are managed by the DB cluster.
|
|
3988
4035
|
# @return [Boolean]
|
|
3989
4036
|
#
|
|
3990
4037
|
# @!attribute [rw] engine_version
|
|
@@ -4077,7 +4124,7 @@ module Aws::RDS
|
|
|
4077
4124
|
# The license model information for this DB instance.
|
|
4078
4125
|
#
|
|
4079
4126
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
|
4080
|
-
#
|
|
4127
|
+
# bring your own license (BYOL) model requires a custom parameter
|
|
4081
4128
|
# group and an Amazon Web Services License Manager self-managed
|
|
4082
4129
|
# license. The Db2 license through Amazon Web Services Marketplace
|
|
4083
4130
|
# model requires an Amazon Web Services Marketplace subscription. For
|
|
@@ -4133,6 +4180,16 @@ module Aws::RDS
|
|
|
4133
4180
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
|
4134
4181
|
# @return [Integer]
|
|
4135
4182
|
#
|
|
4183
|
+
# @!attribute [rw] storage_throughput
|
|
4184
|
+
# The storage throughput value, in mebibyte per second (MiBps), for
|
|
4185
|
+
# the DB instance.
|
|
4186
|
+
#
|
|
4187
|
+
# This setting applies only to the `gp3` storage type.
|
|
4188
|
+
#
|
|
4189
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
|
4190
|
+
# instances.
|
|
4191
|
+
# @return [Integer]
|
|
4192
|
+
#
|
|
4136
4193
|
# @!attribute [rw] option_group_name
|
|
4137
4194
|
# The option group to associate the DB instance with.
|
|
4138
4195
|
#
|
|
@@ -4169,36 +4226,27 @@ module Aws::RDS
|
|
|
4169
4226
|
#
|
|
4170
4227
|
# When the DB instance is publicly accessible and you connect from
|
|
4171
4228
|
# outside of the DB instance's virtual private cloud (VPC), its
|
|
4172
|
-
#
|
|
4229
|
+
# domain name system (DNS) endpoint resolves to the public IP address.
|
|
4173
4230
|
# When you connect from within the same VPC as the DB instance, the
|
|
4174
4231
|
# endpoint resolves to the private IP address. Access to the DB
|
|
4175
|
-
# instance is
|
|
4176
|
-
# That public access is not permitted if the security group assigned
|
|
4177
|
-
# to the DB instance doesn't permit it.
|
|
4232
|
+
# instance is controlled by its security group settings.
|
|
4178
4233
|
#
|
|
4179
4234
|
# When the DB instance isn't publicly accessible, it is an internal
|
|
4180
4235
|
# DB instance with a DNS name that resolves to a private IP address.
|
|
4181
4236
|
#
|
|
4182
|
-
#
|
|
4183
|
-
# `
|
|
4184
|
-
#
|
|
4185
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
|
4186
|
-
# isn't specified, the following applies:
|
|
4187
|
-
#
|
|
4188
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
|
4189
|
-
# gateway attached to it, the DB instance is private.
|
|
4190
|
-
#
|
|
4191
|
-
# * If the default VPC in the target Region has an internet gateway
|
|
4192
|
-
# attached to it, the DB instance is public.
|
|
4237
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
4238
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
4193
4239
|
#
|
|
4194
|
-
# If `
|
|
4195
|
-
#
|
|
4240
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
|
4241
|
+
# to `false` for Aurora instances and `true` for non-Aurora instances.
|
|
4196
4242
|
#
|
|
4197
|
-
#
|
|
4198
|
-
#
|
|
4243
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
4244
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
4245
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
4199
4246
|
#
|
|
4200
|
-
#
|
|
4201
|
-
#
|
|
4247
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
4248
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
4249
|
+
# returns an error.
|
|
4202
4250
|
# @return [Boolean]
|
|
4203
4251
|
#
|
|
4204
4252
|
# @!attribute [rw] tags
|
|
@@ -4606,28 +4654,21 @@ module Aws::RDS
|
|
|
4606
4654
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
4607
4655
|
# @return [Boolean]
|
|
4608
4656
|
#
|
|
4609
|
-
# @!attribute [rw]
|
|
4610
|
-
# The
|
|
4611
|
-
# instance of an RDS Custom DB instance.
|
|
4612
|
-
#
|
|
4613
|
-
# This setting is required for RDS Custom.
|
|
4614
|
-
#
|
|
4615
|
-
# Constraints:
|
|
4616
|
-
#
|
|
4617
|
-
# * The profile must exist in your account.
|
|
4657
|
+
# @!attribute [rw] network_type
|
|
4658
|
+
# The network type of the DB instance.
|
|
4618
4659
|
#
|
|
4619
|
-
#
|
|
4620
|
-
#
|
|
4660
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
4661
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
4662
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
4621
4663
|
#
|
|
4622
|
-
#
|
|
4623
|
-
#
|
|
4664
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
4665
|
+
# in the *Amazon RDS User Guide.*
|
|
4624
4666
|
#
|
|
4625
|
-
#
|
|
4626
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
4667
|
+
# Valid Values: `IPV4 | DUAL`
|
|
4627
4668
|
#
|
|
4628
4669
|
#
|
|
4629
4670
|
#
|
|
4630
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
4671
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
4631
4672
|
# @return [String]
|
|
4632
4673
|
#
|
|
4633
4674
|
# @!attribute [rw] backup_target
|
|
@@ -4635,6 +4676,8 @@ module Aws::RDS
|
|
|
4635
4676
|
#
|
|
4636
4677
|
# Valid Values:
|
|
4637
4678
|
#
|
|
4679
|
+
# * `local` (Dedicated Local Zone)
|
|
4680
|
+
#
|
|
4638
4681
|
# * `outposts` (Amazon Web Services Outposts)
|
|
4639
4682
|
#
|
|
4640
4683
|
# * `region` (Amazon Web Services Region)
|
|
@@ -4649,32 +4692,55 @@ module Aws::RDS
|
|
|
4649
4692
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
4650
4693
|
# @return [String]
|
|
4651
4694
|
#
|
|
4652
|
-
# @!attribute [rw]
|
|
4653
|
-
# The
|
|
4695
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
4696
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
4697
|
+
# instance of an RDS Custom DB instance.
|
|
4654
4698
|
#
|
|
4655
|
-
#
|
|
4656
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
4657
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
4699
|
+
# This setting is required for RDS Custom.
|
|
4658
4700
|
#
|
|
4659
|
-
#
|
|
4660
|
-
# in the *Amazon RDS User Guide.*
|
|
4701
|
+
# Constraints:
|
|
4661
4702
|
#
|
|
4662
|
-
#
|
|
4703
|
+
# * The profile must exist in your account.
|
|
4663
4704
|
#
|
|
4705
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
4706
|
+
# to assume.
|
|
4664
4707
|
#
|
|
4708
|
+
# * The instance profile name and the associated IAM role name must
|
|
4709
|
+
# start with the prefix `AWSRDSCustom`.
|
|
4665
4710
|
#
|
|
4666
|
-
# [
|
|
4711
|
+
# For the list of permissions required for the IAM role, see [
|
|
4712
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
4713
|
+
#
|
|
4714
|
+
#
|
|
4715
|
+
#
|
|
4716
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
4667
4717
|
# @return [String]
|
|
4668
4718
|
#
|
|
4669
|
-
# @!attribute [rw]
|
|
4670
|
-
# The
|
|
4671
|
-
#
|
|
4719
|
+
# @!attribute [rw] db_system_id
|
|
4720
|
+
# The Oracle system identifier (SID), which is the name of the Oracle
|
|
4721
|
+
# database instance that manages your database files. In this context,
|
|
4722
|
+
# the term "Oracle database instance" refers exclusively to the
|
|
4723
|
+
# system global area (SGA) and Oracle background processes. If you
|
|
4724
|
+
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
|
4725
|
+
# is also the name of your CDB.
|
|
4726
|
+
# @return [String]
|
|
4727
|
+
#
|
|
4728
|
+
# @!attribute [rw] ca_certificate_identifier
|
|
4729
|
+
# The CA certificate identifier to use for the DB instance's server
|
|
4730
|
+
# certificate.
|
|
4731
|
+
#
|
|
4732
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
|
4733
|
+
#
|
|
4734
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
|
4735
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
|
4736
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
|
4737
|
+
# User Guide*.
|
|
4672
4738
|
#
|
|
4673
|
-
# This setting applies only to the `gp3` storage type.
|
|
4674
4739
|
#
|
|
4675
|
-
#
|
|
4676
|
-
#
|
|
4677
|
-
#
|
|
4740
|
+
#
|
|
4741
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
4742
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
4743
|
+
# @return [String]
|
|
4678
4744
|
#
|
|
4679
4745
|
# @!attribute [rw] manage_master_user_password
|
|
4680
4746
|
# Specifies whether to manage the master user password with Amazon Web
|
|
@@ -4719,37 +4785,6 @@ module Aws::RDS
|
|
|
4719
4785
|
# each Amazon Web Services Region.
|
|
4720
4786
|
# @return [String]
|
|
4721
4787
|
#
|
|
4722
|
-
# @!attribute [rw] ca_certificate_identifier
|
|
4723
|
-
# The CA certificate identifier to use for the DB instance's server
|
|
4724
|
-
# certificate.
|
|
4725
|
-
#
|
|
4726
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
|
4727
|
-
#
|
|
4728
|
-
# For more information, see [Using SSL/TLS to encrypt a connection to
|
|
4729
|
-
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
|
4730
|
-
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
|
4731
|
-
# User Guide*.
|
|
4732
|
-
#
|
|
4733
|
-
#
|
|
4734
|
-
#
|
|
4735
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
4736
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
4737
|
-
# @return [String]
|
|
4738
|
-
#
|
|
4739
|
-
# @!attribute [rw] db_system_id
|
|
4740
|
-
# The Oracle system identifier (SID), which is the name of the Oracle
|
|
4741
|
-
# database instance that manages your database files. In this context,
|
|
4742
|
-
# the term "Oracle database instance" refers exclusively to the
|
|
4743
|
-
# system global area (SGA) and Oracle background processes. If you
|
|
4744
|
-
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
|
4745
|
-
# is also the name of your CDB.
|
|
4746
|
-
# @return [String]
|
|
4747
|
-
#
|
|
4748
|
-
# @!attribute [rw] dedicated_log_volume
|
|
4749
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
4750
|
-
# enabled.
|
|
4751
|
-
# @return [Boolean]
|
|
4752
|
-
#
|
|
4753
4788
|
# @!attribute [rw] multi_tenant
|
|
4754
4789
|
# Specifies whether to use the multi-tenant configuration or the
|
|
4755
4790
|
# single-tenant configuration (default). This parameter only applies
|
|
@@ -4767,6 +4802,11 @@ module Aws::RDS
|
|
|
4767
4802
|
# single-tenant configuration.
|
|
4768
4803
|
# @return [Boolean]
|
|
4769
4804
|
#
|
|
4805
|
+
# @!attribute [rw] dedicated_log_volume
|
|
4806
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
4807
|
+
# enabled.
|
|
4808
|
+
# @return [Boolean]
|
|
4809
|
+
#
|
|
4770
4810
|
# @!attribute [rw] engine_lifecycle_support
|
|
4771
4811
|
# The life cycle type for this DB instance.
|
|
4772
4812
|
#
|
|
@@ -4801,6 +4841,22 @@ module Aws::RDS
|
|
|
4801
4841
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
4802
4842
|
# @return [String]
|
|
4803
4843
|
#
|
|
4844
|
+
# @!attribute [rw] master_user_authentication_type
|
|
4845
|
+
# Specifies the authentication type for the master user. With IAM
|
|
4846
|
+
# master user authentication, you can configure the master DB user
|
|
4847
|
+
# with IAM database authentication when you create a DB instance.
|
|
4848
|
+
#
|
|
4849
|
+
# You can specify one of the following values:
|
|
4850
|
+
#
|
|
4851
|
+
# * `password` - Use standard database authentication with a password.
|
|
4852
|
+
#
|
|
4853
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
4854
|
+
# user.
|
|
4855
|
+
#
|
|
4856
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
4857
|
+
# PostgreSQL engines.
|
|
4858
|
+
# @return [String]
|
|
4859
|
+
#
|
|
4804
4860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
|
4805
4861
|
#
|
|
4806
4862
|
class CreateDBInstanceMessage < Struct.new(
|
|
@@ -4825,6 +4881,7 @@ module Aws::RDS
|
|
|
4825
4881
|
:auto_minor_version_upgrade,
|
|
4826
4882
|
:license_model,
|
|
4827
4883
|
:iops,
|
|
4884
|
+
:storage_throughput,
|
|
4828
4885
|
:option_group_name,
|
|
4829
4886
|
:character_set_name,
|
|
4830
4887
|
:nchar_character_set_name,
|
|
@@ -4857,18 +4914,18 @@ module Aws::RDS
|
|
|
4857
4914
|
:deletion_protection,
|
|
4858
4915
|
:max_allocated_storage,
|
|
4859
4916
|
:enable_customer_owned_ip,
|
|
4860
|
-
:custom_iam_instance_profile,
|
|
4861
|
-
:backup_target,
|
|
4862
4917
|
:network_type,
|
|
4863
|
-
:
|
|
4918
|
+
:backup_target,
|
|
4919
|
+
:custom_iam_instance_profile,
|
|
4920
|
+
:db_system_id,
|
|
4921
|
+
:ca_certificate_identifier,
|
|
4864
4922
|
:manage_master_user_password,
|
|
4865
4923
|
:master_user_secret_kms_key_id,
|
|
4866
|
-
:ca_certificate_identifier,
|
|
4867
|
-
:db_system_id,
|
|
4868
|
-
:dedicated_log_volume,
|
|
4869
4924
|
:multi_tenant,
|
|
4870
|
-
:
|
|
4871
|
-
|
|
4925
|
+
:dedicated_log_volume,
|
|
4926
|
+
:engine_lifecycle_support,
|
|
4927
|
+
:master_user_authentication_type)
|
|
4928
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
4872
4929
|
include Aws::Structure
|
|
4873
4930
|
end
|
|
4874
4931
|
|
|
@@ -4881,8 +4938,13 @@ module Aws::RDS
|
|
|
4881
4938
|
# @!attribute [rw] source_db_instance_identifier
|
|
4882
4939
|
# The identifier of the DB instance that will act as the source for
|
|
4883
4940
|
# the read replica. Each DB instance can have up to 15 read replicas,
|
|
4884
|
-
#
|
|
4885
|
-
#
|
|
4941
|
+
# except for the following engines:
|
|
4942
|
+
#
|
|
4943
|
+
# * Db2 - Can have up to three replicas.
|
|
4944
|
+
#
|
|
4945
|
+
# * Oracle - Can have up to five read replicas.
|
|
4946
|
+
#
|
|
4947
|
+
# * SQL Server - Can have up to five read replicas.
|
|
4886
4948
|
#
|
|
4887
4949
|
# Constraints:
|
|
4888
4950
|
#
|
|
@@ -4983,6 +5045,13 @@ module Aws::RDS
|
|
|
4983
5045
|
# to initially allocate for the DB instance.
|
|
4984
5046
|
# @return [Integer]
|
|
4985
5047
|
#
|
|
5048
|
+
# @!attribute [rw] storage_throughput
|
|
5049
|
+
# Specifies the storage throughput value for the read replica.
|
|
5050
|
+
#
|
|
5051
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
|
5052
|
+
# instances.
|
|
5053
|
+
# @return [Integer]
|
|
5054
|
+
#
|
|
4986
5055
|
# @!attribute [rw] option_group_name
|
|
4987
5056
|
# The option group to associate the DB instance with. If not
|
|
4988
5057
|
# specified, RDS uses the option group associated with the source DB
|
|
@@ -5000,6 +5069,16 @@ module Aws::RDS
|
|
|
5000
5069
|
# The name of the DB parameter group to associate with this read
|
|
5001
5070
|
# replica DB instance.
|
|
5002
5071
|
#
|
|
5072
|
+
# For the Db2 DB engine, if your source DB instance uses the bring
|
|
5073
|
+
# your own license (BYOL) model, then a custom parameter group must be
|
|
5074
|
+
# associated with the replica. For a same Amazon Web Services Region
|
|
5075
|
+
# replica, if you don't specify a custom parameter group, Amazon RDS
|
|
5076
|
+
# associates the custom parameter group associated with the source DB
|
|
5077
|
+
# instance. For a cross-Region replica, you must specify a custom
|
|
5078
|
+
# parameter group. This custom parameter group must include your IBM
|
|
5079
|
+
# Site ID and IBM Customer ID. For more information, see [IBM IDs for
|
|
5080
|
+
# bring your own license (BYOL) for Db2][1].
|
|
5081
|
+
#
|
|
5003
5082
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
|
5004
5083
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
|
5005
5084
|
# uses the `DBParameterGroup` of the source DB instance for a same
|
|
@@ -5012,9 +5091,9 @@ module Aws::RDS
|
|
|
5012
5091
|
#
|
|
5013
5092
|
# Specifying a parameter group for this operation is only supported
|
|
5014
5093
|
# for MySQL DB instances for cross-Region read replicas, for Multi-AZ
|
|
5015
|
-
# DB cluster read replica instances,
|
|
5016
|
-
# isn't supported for MySQL DB instances for
|
|
5017
|
-
# replicas or for RDS Custom.
|
|
5094
|
+
# DB cluster read replica instances, for Db2 DB instances, and for
|
|
5095
|
+
# Oracle DB instances. It isn't supported for MySQL DB instances for
|
|
5096
|
+
# same Region read replicas or for RDS Custom.
|
|
5018
5097
|
#
|
|
5019
5098
|
# Constraints:
|
|
5020
5099
|
#
|
|
@@ -5023,6 +5102,10 @@ module Aws::RDS
|
|
|
5023
5102
|
# * First character must be a letter.
|
|
5024
5103
|
#
|
|
5025
5104
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
|
5105
|
+
#
|
|
5106
|
+
#
|
|
5107
|
+
#
|
|
5108
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
|
|
5026
5109
|
# @return [String]
|
|
5027
5110
|
#
|
|
5028
5111
|
# @!attribute [rw] publicly_accessible
|
|
@@ -5432,68 +5515,72 @@ module Aws::RDS
|
|
|
5432
5515
|
# @return [Array<String>]
|
|
5433
5516
|
#
|
|
5434
5517
|
# @!attribute [rw] replica_mode
|
|
5435
|
-
# The open mode of the replica database
|
|
5436
|
-
#
|
|
5437
|
-
# <note markdown="1"> This parameter is only supported for Oracle DB instances.
|
|
5438
|
-
#
|
|
5439
|
-
# </note>
|
|
5440
|
-
#
|
|
5441
|
-
# Mounted DB replicas are included in Oracle Database Enterprise
|
|
5442
|
-
# Edition. The main use case for mounted replicas is cross-Region
|
|
5443
|
-
# disaster recovery. The primary database doesn't use Active Data
|
|
5444
|
-
# Guard to transmit information to the mounted replica. Because it
|
|
5445
|
-
# doesn't accept user connections, a mounted replica can't serve a
|
|
5446
|
-
# read-only workload.
|
|
5518
|
+
# The open mode of the replica database.
|
|
5447
5519
|
#
|
|
5448
|
-
#
|
|
5449
|
-
#
|
|
5450
|
-
# with Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
|
|
5451
|
-
# Guide*.
|
|
5520
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
|
5521
|
+
# instances.
|
|
5452
5522
|
#
|
|
5453
|
-
#
|
|
5454
|
-
# `mounted`. The value won't be set by default. After replica
|
|
5455
|
-
# creation, you can manage the open mode manually.
|
|
5523
|
+
# Db2
|
|
5456
5524
|
#
|
|
5525
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
|
5526
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas
|
|
5527
|
+
# is cross-Region disaster recovery. Because it doesn't accept user
|
|
5528
|
+
# connections, a standby replica can't serve a read-only workload.
|
|
5457
5529
|
#
|
|
5530
|
+
# You can create a combination of standby and read-only DB replicas
|
|
5531
|
+
# for the same primary DB instance. For more information, see
|
|
5532
|
+
# [Working with replicas for Amazon RDS for Db2][1] in the *Amazon
|
|
5533
|
+
# RDS User Guide*.
|
|
5458
5534
|
#
|
|
5459
|
-
#
|
|
5460
|
-
#
|
|
5535
|
+
# To create standby DB replicas for RDS for Db2, set this parameter
|
|
5536
|
+
# to `mounted`.
|
|
5461
5537
|
#
|
|
5462
|
-
#
|
|
5463
|
-
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
5464
|
-
# automatically scale the storage of the DB instance.
|
|
5538
|
+
# Oracle
|
|
5465
5539
|
#
|
|
5466
|
-
#
|
|
5467
|
-
#
|
|
5468
|
-
#
|
|
5540
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
|
5541
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
|
5542
|
+
# disaster recovery. The primary database doesn't use Active Data
|
|
5543
|
+
# Guard to transmit information to the mounted replica. Because it
|
|
5544
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
|
5545
|
+
# read-only workload.
|
|
5469
5546
|
#
|
|
5547
|
+
# You can create a combination of mounted and read-only DB replicas
|
|
5548
|
+
# for the same primary DB instance. For more information, see
|
|
5549
|
+
# [Working with read replicas for Amazon RDS for Oracle][2] in the
|
|
5550
|
+
# *Amazon RDS User Guide*.
|
|
5470
5551
|
#
|
|
5552
|
+
# For RDS Custom, you must specify this parameter and set it to
|
|
5553
|
+
# `mounted`. The value won't be set by default. After replica
|
|
5554
|
+
# creation, you can manage the open mode manually.
|
|
5471
5555
|
#
|
|
5472
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
|
5473
|
-
# @return [Integer]
|
|
5474
5556
|
#
|
|
5475
|
-
# @!attribute [rw] custom_iam_instance_profile
|
|
5476
|
-
# The instance profile associated with the underlying Amazon EC2
|
|
5477
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
|
5478
|
-
# meet the following requirements:
|
|
5479
5557
|
#
|
|
5480
|
-
#
|
|
5558
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
|
5559
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
5560
|
+
# @return [String]
|
|
5481
5561
|
#
|
|
5482
|
-
#
|
|
5483
|
-
#
|
|
5562
|
+
# @!attribute [rw] enable_customer_owned_ip
|
|
5563
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
|
5564
|
+
# an RDS on Outposts read replica.
|
|
5484
5565
|
#
|
|
5485
|
-
# *
|
|
5486
|
-
#
|
|
5566
|
+
# A *CoIP* provides local or external connectivity to resources in
|
|
5567
|
+
# your Outpost subnets through your on-premises network. For some use
|
|
5568
|
+
# cases, a CoIP can provide lower latency for connections to the read
|
|
5569
|
+
# replica from outside of its virtual private cloud (VPC) on your
|
|
5570
|
+
# local network.
|
|
5487
5571
|
#
|
|
5488
|
-
# For
|
|
5489
|
-
#
|
|
5572
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
|
5573
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
|
5574
|
+
# Guide*.
|
|
5490
5575
|
#
|
|
5491
|
-
#
|
|
5576
|
+
# For more information about CoIPs, see [Customer-owned IP
|
|
5577
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
|
5492
5578
|
#
|
|
5493
5579
|
#
|
|
5494
5580
|
#
|
|
5495
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
5496
|
-
#
|
|
5581
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
5582
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
5583
|
+
# @return [Boolean]
|
|
5497
5584
|
#
|
|
5498
5585
|
# @!attribute [rw] network_type
|
|
5499
5586
|
# The network type of the DB instance.
|
|
@@ -5516,35 +5603,52 @@ module Aws::RDS
|
|
|
5516
5603
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
5517
5604
|
# @return [String]
|
|
5518
5605
|
#
|
|
5519
|
-
# @!attribute [rw]
|
|
5520
|
-
#
|
|
5606
|
+
# @!attribute [rw] max_allocated_storage
|
|
5607
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
5608
|
+
# automatically scale the storage of the DB instance.
|
|
5521
5609
|
#
|
|
5522
|
-
#
|
|
5523
|
-
#
|
|
5610
|
+
# For more information about this setting, including limitations that
|
|
5611
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
5612
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
|
5613
|
+
#
|
|
5614
|
+
#
|
|
5615
|
+
#
|
|
5616
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
|
5524
5617
|
# @return [Integer]
|
|
5525
5618
|
#
|
|
5526
|
-
# @!attribute [rw]
|
|
5527
|
-
#
|
|
5528
|
-
#
|
|
5619
|
+
# @!attribute [rw] backup_target
|
|
5620
|
+
# The location where RDS stores automated backups and manual
|
|
5621
|
+
# snapshots.
|
|
5529
5622
|
#
|
|
5530
|
-
#
|
|
5531
|
-
# your Outpost subnets through your on-premises network. For some use
|
|
5532
|
-
# cases, a CoIP can provide lower latency for connections to the read
|
|
5533
|
-
# replica from outside of its virtual private cloud (VPC) on your
|
|
5534
|
-
# local network.
|
|
5623
|
+
# Valid Values:
|
|
5535
5624
|
#
|
|
5536
|
-
#
|
|
5537
|
-
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
|
5538
|
-
# Guide*.
|
|
5625
|
+
# * `local` for Dedicated Local Zones
|
|
5539
5626
|
#
|
|
5540
|
-
#
|
|
5541
|
-
#
|
|
5627
|
+
# * `region` for Amazon Web Services Region
|
|
5628
|
+
# @return [String]
|
|
5542
5629
|
#
|
|
5630
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
5631
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
5632
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
|
5633
|
+
# meet the following requirements:
|
|
5543
5634
|
#
|
|
5635
|
+
# * The profile must exist in your account.
|
|
5544
5636
|
#
|
|
5545
|
-
#
|
|
5546
|
-
#
|
|
5547
|
-
#
|
|
5637
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
5638
|
+
# to assume.
|
|
5639
|
+
#
|
|
5640
|
+
# * The instance profile name and the associated IAM role name must
|
|
5641
|
+
# start with the prefix `AWSRDSCustom`.
|
|
5642
|
+
#
|
|
5643
|
+
# For the list of permissions required for the IAM role, see [
|
|
5644
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
5645
|
+
#
|
|
5646
|
+
# This setting is required for RDS Custom DB instances.
|
|
5647
|
+
#
|
|
5648
|
+
#
|
|
5649
|
+
#
|
|
5650
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
5651
|
+
# @return [String]
|
|
5548
5652
|
#
|
|
5549
5653
|
# @!attribute [rw] allocated_storage
|
|
5550
5654
|
# The amount of storage (in gibibytes) to allocate initially for the
|
|
@@ -5624,6 +5728,7 @@ module Aws::RDS
|
|
|
5624
5728
|
:multi_az,
|
|
5625
5729
|
:auto_minor_version_upgrade,
|
|
5626
5730
|
:iops,
|
|
5731
|
+
:storage_throughput,
|
|
5627
5732
|
:option_group_name,
|
|
5628
5733
|
:db_parameter_group_name,
|
|
5629
5734
|
:publicly_accessible,
|
|
@@ -5652,18 +5757,18 @@ module Aws::RDS
|
|
|
5652
5757
|
:domain_auth_secret_arn,
|
|
5653
5758
|
:domain_dns_ips,
|
|
5654
5759
|
:replica_mode,
|
|
5760
|
+
:enable_customer_owned_ip,
|
|
5761
|
+
:network_type,
|
|
5655
5762
|
:max_allocated_storage,
|
|
5763
|
+
:backup_target,
|
|
5656
5764
|
:custom_iam_instance_profile,
|
|
5657
|
-
:network_type,
|
|
5658
|
-
:storage_throughput,
|
|
5659
|
-
:enable_customer_owned_ip,
|
|
5660
5765
|
:allocated_storage,
|
|
5661
5766
|
:source_db_cluster_identifier,
|
|
5662
5767
|
:dedicated_log_volume,
|
|
5663
5768
|
:upgrade_storage_config,
|
|
5664
5769
|
:ca_certificate_identifier,
|
|
5665
5770
|
:source_region)
|
|
5666
|
-
SENSITIVE = []
|
|
5771
|
+
SENSITIVE = [:pre_signed_url]
|
|
5667
5772
|
include Aws::Structure
|
|
5668
5773
|
end
|
|
5669
5774
|
|
|
@@ -5852,6 +5957,29 @@ module Aws::RDS
|
|
|
5852
5957
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
5853
5958
|
# @return [Array<Types::Tag>]
|
|
5854
5959
|
#
|
|
5960
|
+
# @!attribute [rw] endpoint_network_type
|
|
5961
|
+
# The network type of the DB proxy endpoint. The network type
|
|
5962
|
+
# determines the IP version that the proxy endpoint supports.
|
|
5963
|
+
#
|
|
5964
|
+
# Valid values:
|
|
5965
|
+
#
|
|
5966
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
5967
|
+
#
|
|
5968
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
5969
|
+
#
|
|
5970
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
5971
|
+
#
|
|
5972
|
+
# Default: `IPV4`
|
|
5973
|
+
#
|
|
5974
|
+
# Constraints:
|
|
5975
|
+
#
|
|
5976
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
|
5977
|
+
# an IPv6 CIDR block.
|
|
5978
|
+
#
|
|
5979
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
|
5980
|
+
# `dedicated`.
|
|
5981
|
+
# @return [String]
|
|
5982
|
+
#
|
|
5855
5983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpointRequest AWS API Documentation
|
|
5856
5984
|
#
|
|
5857
5985
|
class CreateDBProxyEndpointRequest < Struct.new(
|
|
@@ -5860,7 +5988,8 @@ module Aws::RDS
|
|
|
5860
5988
|
:vpc_subnet_ids,
|
|
5861
5989
|
:vpc_security_group_ids,
|
|
5862
5990
|
:target_role,
|
|
5863
|
-
:tags
|
|
5991
|
+
:tags,
|
|
5992
|
+
:endpoint_network_type)
|
|
5864
5993
|
SENSITIVE = []
|
|
5865
5994
|
include Aws::Structure
|
|
5866
5995
|
end
|
|
@@ -5898,6 +6027,16 @@ module Aws::RDS
|
|
|
5898
6027
|
# `SQLSERVER`.
|
|
5899
6028
|
# @return [String]
|
|
5900
6029
|
#
|
|
6030
|
+
# @!attribute [rw] default_auth_scheme
|
|
6031
|
+
# The default authentication scheme that the proxy uses for client
|
|
6032
|
+
# connections to the proxy and connections from the proxy to the
|
|
6033
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
|
6034
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
|
6035
|
+
# connect to the database. If you don't specify `DefaultAuthScheme`
|
|
6036
|
+
# or specify this parameter as `NONE`, you must specify the `Auth`
|
|
6037
|
+
# option.
|
|
6038
|
+
# @return [String]
|
|
6039
|
+
#
|
|
5901
6040
|
# @!attribute [rw] auth
|
|
5902
6041
|
# The authorization mechanism that the proxy uses.
|
|
5903
6042
|
# @return [Array<Types::UserAuthConfig>]
|
|
@@ -5928,14 +6067,12 @@ module Aws::RDS
|
|
|
5928
6067
|
# @return [Integer]
|
|
5929
6068
|
#
|
|
5930
6069
|
# @!attribute [rw] debug_logging
|
|
5931
|
-
# Specifies whether the proxy
|
|
5932
|
-
#
|
|
5933
|
-
#
|
|
5934
|
-
#
|
|
5935
|
-
#
|
|
5936
|
-
#
|
|
5937
|
-
# measures in place to safeguard any sensitive information that
|
|
5938
|
-
# appears in the logs.
|
|
6070
|
+
# Specifies whether the proxy logs detailed connection and query
|
|
6071
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
|
6072
|
+
# connection details and connection pool behavior from your queries.
|
|
6073
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
|
6074
|
+
# performance. Enable this option only when you need to troubleshoot
|
|
6075
|
+
# connection or performance issues.
|
|
5939
6076
|
# @return [Boolean]
|
|
5940
6077
|
#
|
|
5941
6078
|
# @!attribute [rw] tags
|
|
@@ -5943,11 +6080,57 @@ module Aws::RDS
|
|
|
5943
6080
|
# your choosing with the proxy.
|
|
5944
6081
|
# @return [Array<Types::Tag>]
|
|
5945
6082
|
#
|
|
6083
|
+
# @!attribute [rw] endpoint_network_type
|
|
6084
|
+
# The network type of the DB proxy endpoint. The network type
|
|
6085
|
+
# determines the IP version that the proxy endpoint supports.
|
|
6086
|
+
#
|
|
6087
|
+
# Valid values:
|
|
6088
|
+
#
|
|
6089
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
6090
|
+
#
|
|
6091
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
6092
|
+
#
|
|
6093
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
6094
|
+
#
|
|
6095
|
+
# Default: `IPV4`
|
|
6096
|
+
#
|
|
6097
|
+
# Constraints:
|
|
6098
|
+
#
|
|
6099
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
|
6100
|
+
# an IPv6 CIDR block.
|
|
6101
|
+
#
|
|
6102
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
|
6103
|
+
# `dedicated`.
|
|
6104
|
+
# @return [String]
|
|
6105
|
+
#
|
|
6106
|
+
# @!attribute [rw] target_connection_network_type
|
|
6107
|
+
# The network type that the proxy uses to connect to the target
|
|
6108
|
+
# database. The network type determines the IP version that the proxy
|
|
6109
|
+
# uses for connections to the database.
|
|
6110
|
+
#
|
|
6111
|
+
# Valid values:
|
|
6112
|
+
#
|
|
6113
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
|
6114
|
+
#
|
|
6115
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
|
6116
|
+
#
|
|
6117
|
+
# Default: `IPV4`
|
|
6118
|
+
#
|
|
6119
|
+
# Constraints:
|
|
6120
|
+
#
|
|
6121
|
+
# * If you specify `IPV6`, the database must support dual-stack mode.
|
|
6122
|
+
# RDS doesn't support IPv6-only databases.
|
|
6123
|
+
#
|
|
6124
|
+
# * All targets registered with the proxy must be compatible with the
|
|
6125
|
+
# specified network type.
|
|
6126
|
+
# @return [String]
|
|
6127
|
+
#
|
|
5946
6128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyRequest AWS API Documentation
|
|
5947
6129
|
#
|
|
5948
6130
|
class CreateDBProxyRequest < Struct.new(
|
|
5949
6131
|
:db_proxy_name,
|
|
5950
6132
|
:engine_family,
|
|
6133
|
+
:default_auth_scheme,
|
|
5951
6134
|
:auth,
|
|
5952
6135
|
:role_arn,
|
|
5953
6136
|
:vpc_subnet_ids,
|
|
@@ -5955,7 +6138,9 @@ module Aws::RDS
|
|
|
5955
6138
|
:require_tls,
|
|
5956
6139
|
:idle_client_timeout,
|
|
5957
6140
|
:debug_logging,
|
|
5958
|
-
:tags
|
|
6141
|
+
:tags,
|
|
6142
|
+
:endpoint_network_type,
|
|
6143
|
+
:target_connection_network_type)
|
|
5959
6144
|
SENSITIVE = []
|
|
5960
6145
|
include Aws::Structure
|
|
5961
6146
|
end
|
|
@@ -6031,17 +6216,17 @@ module Aws::RDS
|
|
|
6031
6216
|
# @return [String]
|
|
6032
6217
|
#
|
|
6033
6218
|
# @!attribute [rw] compute_redundancy
|
|
6034
|
-
# Specifies whether to create standby DB shard
|
|
6035
|
-
# group. Valid values are the following:
|
|
6219
|
+
# Specifies whether to create standby standby DB data access shard for
|
|
6220
|
+
# the DB shard group. Valid values are the following:
|
|
6036
6221
|
#
|
|
6037
|
-
# * 0 - Creates a DB shard group without a standby DB
|
|
6038
|
-
# This is the default value.
|
|
6222
|
+
# * 0 - Creates a DB shard group without a standby DB data access
|
|
6223
|
+
# shard. This is the default value.
|
|
6039
6224
|
#
|
|
6040
|
-
# * 1 - Creates a DB shard group with a standby DB
|
|
6041
|
-
# different Availability Zone (AZ).
|
|
6225
|
+
# * 1 - Creates a DB shard group with a standby DB data access shard
|
|
6226
|
+
# in a different Availability Zone (AZ).
|
|
6042
6227
|
#
|
|
6043
|
-
# * 2 - Creates a DB shard group with two standby DB
|
|
6044
|
-
# two different AZs.
|
|
6228
|
+
# * 2 - Creates a DB shard group with two standby DB data access shard
|
|
6229
|
+
# in two different AZs.
|
|
6045
6230
|
# @return [Integer]
|
|
6046
6231
|
#
|
|
6047
6232
|
# @!attribute [rw] max_acu
|
|
@@ -6920,10 +7105,6 @@ module Aws::RDS
|
|
|
6920
7105
|
# The current state of this DB cluster.
|
|
6921
7106
|
# @return [String]
|
|
6922
7107
|
#
|
|
6923
|
-
# @!attribute [rw] automatic_restart_time
|
|
6924
|
-
# The time when a stopped DB cluster is restarted automatically.
|
|
6925
|
-
# @return [Time]
|
|
6926
|
-
#
|
|
6927
7108
|
# @!attribute [rw] percent_progress
|
|
6928
7109
|
# The progress of the operation as a percentage.
|
|
6929
7110
|
# @return [String]
|
|
@@ -6998,6 +7179,19 @@ module Aws::RDS
|
|
|
6998
7179
|
# Universal Coordinated Time (UTC).
|
|
6999
7180
|
# @return [String]
|
|
7000
7181
|
#
|
|
7182
|
+
# @!attribute [rw] upgrade_rollout_order
|
|
7183
|
+
# This data type represents the order in which the clusters are
|
|
7184
|
+
# upgraded.
|
|
7185
|
+
#
|
|
7186
|
+
# * \[first\] - Typically used for development or testing
|
|
7187
|
+
# environments.
|
|
7188
|
+
#
|
|
7189
|
+
# * \[second\] - Default order for resources not specifically
|
|
7190
|
+
# configured.
|
|
7191
|
+
#
|
|
7192
|
+
# * \[last\] - Usually reserved for production environments.
|
|
7193
|
+
# @return [String]
|
|
7194
|
+
#
|
|
7001
7195
|
# @!attribute [rw] replication_source_identifier
|
|
7002
7196
|
# The identifier of the source DB cluster if this DB cluster is a read
|
|
7003
7197
|
# replica.
|
|
@@ -7119,6 +7313,12 @@ module Aws::RDS
|
|
|
7119
7313
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
|
7120
7314
|
# @return [Integer]
|
|
7121
7315
|
#
|
|
7316
|
+
# @!attribute [rw] pending_modified_values
|
|
7317
|
+
# Information about pending changes to the DB cluster. This
|
|
7318
|
+
# information is returned only when there are pending changes.
|
|
7319
|
+
# Specific changes are identified by subelements.
|
|
7320
|
+
# @return [Types::ClusterPendingModifiedValues]
|
|
7321
|
+
#
|
|
7122
7322
|
# @!attribute [rw] engine_mode
|
|
7123
7323
|
# The DB engine mode of the DB cluster, either `provisioned` or
|
|
7124
7324
|
# `serverless`.
|
|
@@ -7134,17 +7334,82 @@ module Aws::RDS
|
|
|
7134
7334
|
# The scaling configuration for an Aurora DB cluster in `serverless`
|
|
7135
7335
|
# DB engine mode.
|
|
7136
7336
|
#
|
|
7137
|
-
# For more information, see [Using Amazon Aurora Serverless v1][1] in
|
|
7138
|
-
# the *Amazon Aurora User Guide*.
|
|
7337
|
+
# For more information, see [Using Amazon Aurora Serverless v1][1] in
|
|
7338
|
+
# the *Amazon Aurora User Guide*.
|
|
7339
|
+
#
|
|
7340
|
+
#
|
|
7341
|
+
#
|
|
7342
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
|
7343
|
+
# @return [Types::ScalingConfigurationInfo]
|
|
7344
|
+
#
|
|
7345
|
+
# @!attribute [rw] rds_custom_cluster_configuration
|
|
7346
|
+
# Reserved for future use.
|
|
7347
|
+
# @return [Types::RdsCustomClusterConfiguration]
|
|
7348
|
+
#
|
|
7349
|
+
# @!attribute [rw] db_cluster_instance_class
|
|
7350
|
+
# The name of the compute and memory capacity class of the DB
|
|
7351
|
+
# instance.
|
|
7352
|
+
#
|
|
7353
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7354
|
+
# @return [String]
|
|
7355
|
+
#
|
|
7356
|
+
# @!attribute [rw] storage_type
|
|
7357
|
+
# The storage type associated with the DB cluster.
|
|
7358
|
+
# @return [String]
|
|
7359
|
+
#
|
|
7360
|
+
# @!attribute [rw] iops
|
|
7361
|
+
# The Provisioned IOPS (I/O operations per second) value.
|
|
7362
|
+
#
|
|
7363
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7364
|
+
# @return [Integer]
|
|
7365
|
+
#
|
|
7366
|
+
# @!attribute [rw] storage_throughput
|
|
7367
|
+
# The storage throughput for the DB cluster. The throughput is
|
|
7368
|
+
# automatically set based on the IOPS that you provision, and is not
|
|
7369
|
+
# configurable.
|
|
7370
|
+
#
|
|
7371
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7372
|
+
# @return [Integer]
|
|
7373
|
+
#
|
|
7374
|
+
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
|
7375
|
+
# The next time you can modify the DB cluster to use the
|
|
7376
|
+
# `aurora-iopt1` storage type.
|
|
7377
|
+
#
|
|
7378
|
+
# This setting is only for Aurora DB clusters.
|
|
7379
|
+
# @return [Time]
|
|
7380
|
+
#
|
|
7381
|
+
# @!attribute [rw] publicly_accessible
|
|
7382
|
+
# Indicates whether the DB cluster is publicly accessible.
|
|
7383
|
+
#
|
|
7384
|
+
# When the DB cluster is publicly accessible and you connect from
|
|
7385
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
|
7386
|
+
# Name System (DNS) endpoint resolves to the public IP address. When
|
|
7387
|
+
# you connect from within the same VPC as the DB cluster, the endpoint
|
|
7388
|
+
# resolves to the private IP address. Access to the DB cluster is
|
|
7389
|
+
# ultimately controlled by the security group it uses. That public
|
|
7390
|
+
# access isn't permitted if the security group assigned to the DB
|
|
7391
|
+
# cluster doesn't permit it.
|
|
7392
|
+
#
|
|
7393
|
+
# When the DB cluster isn't publicly accessible, it is an internal DB
|
|
7394
|
+
# cluster with a DNS name that resolves to a private IP address.
|
|
7395
|
+
#
|
|
7396
|
+
# For more information, see CreateDBCluster.
|
|
7397
|
+
#
|
|
7398
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7399
|
+
# @return [Boolean]
|
|
7400
|
+
#
|
|
7401
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
|
7402
|
+
# Indicates whether minor version patches are applied automatically.
|
|
7403
|
+
#
|
|
7404
|
+
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
|
7139
7405
|
#
|
|
7406
|
+
# For more information about automatic minor version upgrades, see
|
|
7407
|
+
# [Automatically upgrading the minor engine version][1].
|
|
7140
7408
|
#
|
|
7141
7409
|
#
|
|
7142
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
|
7143
|
-
# @return [Types::ScalingConfigurationInfo]
|
|
7144
7410
|
#
|
|
7145
|
-
#
|
|
7146
|
-
#
|
|
7147
|
-
# @return [Types::RdsCustomClusterConfiguration]
|
|
7411
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
|
7412
|
+
# @return [Boolean]
|
|
7148
7413
|
#
|
|
7149
7414
|
# @!attribute [rw] deletion_protection
|
|
7150
7415
|
# Indicates whether the DB cluster has deletion protection enabled.
|
|
@@ -7220,6 +7485,12 @@ module Aws::RDS
|
|
|
7220
7485
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
7221
7486
|
# @return [Array<Types::Tag>]
|
|
7222
7487
|
#
|
|
7488
|
+
# @!attribute [rw] global_cluster_identifier
|
|
7489
|
+
# Contains a user-supplied global database cluster identifier. This
|
|
7490
|
+
# identifier is the unique key that identifies a global database
|
|
7491
|
+
# cluster.
|
|
7492
|
+
# @return [String]
|
|
7493
|
+
#
|
|
7223
7494
|
# @!attribute [rw] global_write_forwarding_status
|
|
7224
7495
|
# The status of write forwarding for a secondary cluster in an Aurora
|
|
7225
7496
|
# global database.
|
|
@@ -7233,61 +7504,49 @@ module Aws::RDS
|
|
|
7233
7504
|
# forwarding feature for this cluster.
|
|
7234
7505
|
# @return [Boolean]
|
|
7235
7506
|
#
|
|
7236
|
-
# @!attribute [rw]
|
|
7237
|
-
#
|
|
7238
|
-
# information is returned only when there are pending changes.
|
|
7239
|
-
# Specific changes are identified by subelements.
|
|
7240
|
-
# @return [Types::ClusterPendingModifiedValues]
|
|
7507
|
+
# @!attribute [rw] network_type
|
|
7508
|
+
# The network type of the DB instance.
|
|
7241
7509
|
#
|
|
7242
|
-
#
|
|
7243
|
-
#
|
|
7244
|
-
#
|
|
7510
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
7511
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
7512
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
7245
7513
|
#
|
|
7246
|
-
#
|
|
7247
|
-
#
|
|
7514
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
7515
|
+
# in the *Amazon Aurora User Guide.*
|
|
7248
7516
|
#
|
|
7249
|
-
#
|
|
7250
|
-
# The storage type associated with the DB cluster.
|
|
7251
|
-
# @return [String]
|
|
7517
|
+
# This setting is only for Aurora DB clusters.
|
|
7252
7518
|
#
|
|
7253
|
-
#
|
|
7254
|
-
# The Provisioned IOPS (I/O operations per second) value.
|
|
7519
|
+
# Valid Values: `IPV4 | DUAL`
|
|
7255
7520
|
#
|
|
7256
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7257
|
-
# @return [Integer]
|
|
7258
7521
|
#
|
|
7259
|
-
# @!attribute [rw] publicly_accessible
|
|
7260
|
-
# Indicates whether the DB cluster is publicly accessible.
|
|
7261
7522
|
#
|
|
7262
|
-
#
|
|
7263
|
-
#
|
|
7264
|
-
# Name System (DNS) endpoint resolves to the public IP address. When
|
|
7265
|
-
# you connect from within the same VPC as the DB cluster, the endpoint
|
|
7266
|
-
# resolves to the private IP address. Access to the DB cluster is
|
|
7267
|
-
# ultimately controlled by the security group it uses. That public
|
|
7268
|
-
# access isn't permitted if the security group assigned to the DB
|
|
7269
|
-
# cluster doesn't permit it.
|
|
7523
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
7524
|
+
# @return [String]
|
|
7270
7525
|
#
|
|
7271
|
-
#
|
|
7272
|
-
#
|
|
7526
|
+
# @!attribute [rw] automatic_restart_time
|
|
7527
|
+
# The time when a stopped DB cluster is restarted automatically.
|
|
7528
|
+
# @return [Time]
|
|
7273
7529
|
#
|
|
7274
|
-
#
|
|
7530
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
7531
|
+
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
|
7275
7532
|
#
|
|
7276
|
-
#
|
|
7277
|
-
#
|
|
7533
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
7534
|
+
# the *Amazon Aurora User Guide*.
|
|
7278
7535
|
#
|
|
7279
|
-
# @!attribute [rw] auto_minor_version_upgrade
|
|
7280
|
-
# Indicates whether minor version patches are applied automatically.
|
|
7281
7536
|
#
|
|
7282
|
-
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
|
7283
7537
|
#
|
|
7284
|
-
#
|
|
7285
|
-
#
|
|
7538
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
7539
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
|
7540
|
+
#
|
|
7541
|
+
# @!attribute [rw] serverless_v2_platform_version
|
|
7542
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
|
7543
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
|
7544
|
+
# in the *Amazon Aurora User Guide*.
|
|
7286
7545
|
#
|
|
7287
7546
|
#
|
|
7288
7547
|
#
|
|
7289
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
|
7290
|
-
# @return [
|
|
7548
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
7549
|
+
# @return [String]
|
|
7291
7550
|
#
|
|
7292
7551
|
# @!attribute [rw] monitoring_interval
|
|
7293
7552
|
# The interval, in seconds, between points when Enhanced Monitoring
|
|
@@ -7347,36 +7606,6 @@ module Aws::RDS
|
|
|
7347
7606
|
# Default: `7` days
|
|
7348
7607
|
# @return [Integer]
|
|
7349
7608
|
#
|
|
7350
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
7351
|
-
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
|
7352
|
-
#
|
|
7353
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
7354
|
-
# the *Amazon Aurora User Guide*.
|
|
7355
|
-
#
|
|
7356
|
-
#
|
|
7357
|
-
#
|
|
7358
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
7359
|
-
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
|
7360
|
-
#
|
|
7361
|
-
# @!attribute [rw] network_type
|
|
7362
|
-
# The network type of the DB instance.
|
|
7363
|
-
#
|
|
7364
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
7365
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
7366
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
7367
|
-
#
|
|
7368
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
7369
|
-
# in the *Amazon Aurora User Guide.*
|
|
7370
|
-
#
|
|
7371
|
-
# This setting is only for Aurora DB clusters.
|
|
7372
|
-
#
|
|
7373
|
-
# Valid Values: `IPV4 | DUAL`
|
|
7374
|
-
#
|
|
7375
|
-
#
|
|
7376
|
-
#
|
|
7377
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
7378
|
-
# @return [String]
|
|
7379
|
-
#
|
|
7380
7609
|
# @!attribute [rw] db_system_id
|
|
7381
7610
|
# Reserved for future use.
|
|
7382
7611
|
# @return [String]
|
|
@@ -7396,13 +7625,6 @@ module Aws::RDS
|
|
|
7396
7625
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
|
7397
7626
|
# @return [Types::MasterUserSecret]
|
|
7398
7627
|
#
|
|
7399
|
-
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
|
7400
|
-
# The next time you can modify the DB cluster to use the
|
|
7401
|
-
# `aurora-iopt1` storage type.
|
|
7402
|
-
#
|
|
7403
|
-
# This setting is only for Aurora DB clusters.
|
|
7404
|
-
# @return [Time]
|
|
7405
|
-
#
|
|
7406
7628
|
# @!attribute [rw] local_write_forwarding_status
|
|
7407
7629
|
# Indicates whether an Aurora DB cluster has in-cluster write
|
|
7408
7630
|
# forwarding enabled, not enabled, requested, or is in the process of
|
|
@@ -7418,14 +7640,6 @@ module Aws::RDS
|
|
|
7418
7640
|
# The details for Aurora Limitless Database.
|
|
7419
7641
|
# @return [Types::LimitlessDatabase]
|
|
7420
7642
|
#
|
|
7421
|
-
# @!attribute [rw] storage_throughput
|
|
7422
|
-
# The storage throughput for the DB cluster. The throughput is
|
|
7423
|
-
# automatically set based on the IOPS that you provision, and is not
|
|
7424
|
-
# configurable.
|
|
7425
|
-
#
|
|
7426
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7427
|
-
# @return [Integer]
|
|
7428
|
-
#
|
|
7429
7643
|
# @!attribute [rw] cluster_scalability_type
|
|
7430
7644
|
# The scalability mode of the Aurora DB cluster. When set to
|
|
7431
7645
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
|
@@ -7465,7 +7679,6 @@ module Aws::RDS
|
|
|
7465
7679
|
:db_cluster_parameter_group,
|
|
7466
7680
|
:db_subnet_group,
|
|
7467
7681
|
:status,
|
|
7468
|
-
:automatic_restart_time,
|
|
7469
7682
|
:percent_progress,
|
|
7470
7683
|
:earliest_restorable_time,
|
|
7471
7684
|
:endpoint,
|
|
@@ -7480,6 +7693,7 @@ module Aws::RDS
|
|
|
7480
7693
|
:db_cluster_option_group_memberships,
|
|
7481
7694
|
:preferred_backup_window,
|
|
7482
7695
|
:preferred_maintenance_window,
|
|
7696
|
+
:upgrade_rollout_order,
|
|
7483
7697
|
:replication_source_identifier,
|
|
7484
7698
|
:read_replica_identifiers,
|
|
7485
7699
|
:status_infos,
|
|
@@ -7499,9 +7713,17 @@ module Aws::RDS
|
|
|
7499
7713
|
:backtrack_consumed_change_records,
|
|
7500
7714
|
:enabled_cloudwatch_logs_exports,
|
|
7501
7715
|
:capacity,
|
|
7716
|
+
:pending_modified_values,
|
|
7502
7717
|
:engine_mode,
|
|
7503
7718
|
:scaling_configuration_info,
|
|
7504
7719
|
:rds_custom_cluster_configuration,
|
|
7720
|
+
:db_cluster_instance_class,
|
|
7721
|
+
:storage_type,
|
|
7722
|
+
:iops,
|
|
7723
|
+
:storage_throughput,
|
|
7724
|
+
:io_optimized_next_allowed_modification_time,
|
|
7725
|
+
:publicly_accessible,
|
|
7726
|
+
:auto_minor_version_upgrade,
|
|
7505
7727
|
:deletion_protection,
|
|
7506
7728
|
:http_endpoint_enabled,
|
|
7507
7729
|
:activity_stream_mode,
|
|
@@ -7512,29 +7734,24 @@ module Aws::RDS
|
|
|
7512
7734
|
:cross_account_clone,
|
|
7513
7735
|
:domain_memberships,
|
|
7514
7736
|
:tag_list,
|
|
7737
|
+
:global_cluster_identifier,
|
|
7515
7738
|
:global_write_forwarding_status,
|
|
7516
7739
|
:global_write_forwarding_requested,
|
|
7517
|
-
:
|
|
7518
|
-
:
|
|
7519
|
-
:
|
|
7520
|
-
:
|
|
7521
|
-
:publicly_accessible,
|
|
7522
|
-
:auto_minor_version_upgrade,
|
|
7740
|
+
:network_type,
|
|
7741
|
+
:automatic_restart_time,
|
|
7742
|
+
:serverless_v2_scaling_configuration,
|
|
7743
|
+
:serverless_v2_platform_version,
|
|
7523
7744
|
:monitoring_interval,
|
|
7524
7745
|
:monitoring_role_arn,
|
|
7525
7746
|
:database_insights_mode,
|
|
7526
7747
|
:performance_insights_enabled,
|
|
7527
7748
|
:performance_insights_kms_key_id,
|
|
7528
7749
|
:performance_insights_retention_period,
|
|
7529
|
-
:serverless_v2_scaling_configuration,
|
|
7530
|
-
:network_type,
|
|
7531
7750
|
:db_system_id,
|
|
7532
7751
|
:master_user_secret,
|
|
7533
|
-
:io_optimized_next_allowed_modification_time,
|
|
7534
7752
|
:local_write_forwarding_status,
|
|
7535
7753
|
:aws_backup_recovery_point_arn,
|
|
7536
7754
|
:limitless_database,
|
|
7537
|
-
:storage_throughput,
|
|
7538
7755
|
:cluster_scalability_type,
|
|
7539
7756
|
:certificate_details,
|
|
7540
7757
|
:engine_lifecycle_support)
|
|
@@ -7673,11 +7890,6 @@ module Aws::RDS
|
|
|
7673
7890
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7674
7891
|
# @return [Integer]
|
|
7675
7892
|
#
|
|
7676
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
7677
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
7678
|
-
# Services Backup.
|
|
7679
|
-
# @return [String]
|
|
7680
|
-
#
|
|
7681
7893
|
# @!attribute [rw] storage_throughput
|
|
7682
7894
|
# The storage throughput for the automated backup. The throughput is
|
|
7683
7895
|
# automatically set based on the IOPS that you provision, and is not
|
|
@@ -7686,6 +7898,11 @@ module Aws::RDS
|
|
|
7686
7898
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7687
7899
|
# @return [Integer]
|
|
7688
7900
|
#
|
|
7901
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
7902
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
7903
|
+
# Services Backup.
|
|
7904
|
+
# @return [String]
|
|
7905
|
+
#
|
|
7689
7906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
|
|
7690
7907
|
#
|
|
7691
7908
|
class DBClusterAutomatedBackup < Struct.new(
|
|
@@ -7712,8 +7929,8 @@ module Aws::RDS
|
|
|
7712
7929
|
:kms_key_id,
|
|
7713
7930
|
:storage_type,
|
|
7714
7931
|
:iops,
|
|
7715
|
-
:
|
|
7716
|
-
:
|
|
7932
|
+
:storage_throughput,
|
|
7933
|
+
:aws_backup_recovery_point_arn)
|
|
7717
7934
|
SENSITIVE = []
|
|
7718
7935
|
include Aws::Structure
|
|
7719
7936
|
end
|
|
@@ -8373,21 +8590,12 @@ module Aws::RDS
|
|
|
8373
8590
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
8374
8591
|
# @return [Array<Types::Tag>]
|
|
8375
8592
|
#
|
|
8376
|
-
# @!attribute [rw] db_system_id
|
|
8377
|
-
# Reserved for future use.
|
|
8378
|
-
# @return [String]
|
|
8379
|
-
#
|
|
8380
8593
|
# @!attribute [rw] storage_type
|
|
8381
8594
|
# The storage type associated with the DB cluster snapshot.
|
|
8382
8595
|
#
|
|
8383
8596
|
# This setting is only for Aurora DB clusters.
|
|
8384
8597
|
# @return [String]
|
|
8385
8598
|
#
|
|
8386
|
-
# @!attribute [rw] db_cluster_resource_id
|
|
8387
|
-
# The resource ID of the DB cluster that this DB cluster snapshot was
|
|
8388
|
-
# created from.
|
|
8389
|
-
# @return [String]
|
|
8390
|
-
#
|
|
8391
8599
|
# @!attribute [rw] storage_throughput
|
|
8392
8600
|
# The storage throughput for the DB cluster snapshot. The throughput
|
|
8393
8601
|
# is automatically set based on the IOPS that you provision, and is
|
|
@@ -8396,6 +8604,15 @@ module Aws::RDS
|
|
|
8396
8604
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
8397
8605
|
# @return [Integer]
|
|
8398
8606
|
#
|
|
8607
|
+
# @!attribute [rw] db_cluster_resource_id
|
|
8608
|
+
# The resource ID of the DB cluster that this DB cluster snapshot was
|
|
8609
|
+
# created from.
|
|
8610
|
+
# @return [String]
|
|
8611
|
+
#
|
|
8612
|
+
# @!attribute [rw] db_system_id
|
|
8613
|
+
# Reserved for future use.
|
|
8614
|
+
# @return [String]
|
|
8615
|
+
#
|
|
8399
8616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
|
8400
8617
|
#
|
|
8401
8618
|
class DBClusterSnapshot < Struct.new(
|
|
@@ -8421,10 +8638,10 @@ module Aws::RDS
|
|
|
8421
8638
|
:source_db_cluster_snapshot_arn,
|
|
8422
8639
|
:iam_database_authentication_enabled,
|
|
8423
8640
|
:tag_list,
|
|
8424
|
-
:db_system_id,
|
|
8425
8641
|
:storage_type,
|
|
8642
|
+
:storage_throughput,
|
|
8426
8643
|
:db_cluster_resource_id,
|
|
8427
|
-
:
|
|
8644
|
+
:db_system_id)
|
|
8428
8645
|
SENSITIVE = []
|
|
8429
8646
|
include Aws::Structure
|
|
8430
8647
|
end
|
|
@@ -8565,10 +8782,38 @@ module Aws::RDS
|
|
|
8565
8782
|
# The name of the database engine.
|
|
8566
8783
|
# @return [String]
|
|
8567
8784
|
#
|
|
8785
|
+
# @!attribute [rw] major_engine_version
|
|
8786
|
+
# The major engine version of the CEV.
|
|
8787
|
+
# @return [String]
|
|
8788
|
+
#
|
|
8568
8789
|
# @!attribute [rw] engine_version
|
|
8569
8790
|
# The version number of the database engine.
|
|
8570
8791
|
# @return [String]
|
|
8571
8792
|
#
|
|
8793
|
+
# @!attribute [rw] database_installation_files_s3_bucket_name
|
|
8794
|
+
# The name of the Amazon S3 bucket that contains your database
|
|
8795
|
+
# installation files.
|
|
8796
|
+
# @return [String]
|
|
8797
|
+
#
|
|
8798
|
+
# @!attribute [rw] database_installation_files_s3_prefix
|
|
8799
|
+
# The Amazon S3 directory that contains the database installation
|
|
8800
|
+
# files. If not specified, then no prefix is assumed.
|
|
8801
|
+
# @return [String]
|
|
8802
|
+
#
|
|
8803
|
+
# @!attribute [rw] custom_db_engine_version_manifest
|
|
8804
|
+
# JSON string that lists the installation files and parameters that
|
|
8805
|
+
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
|
8806
|
+
# applies the patches in the order in which they're listed in the
|
|
8807
|
+
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
|
8808
|
+
# user and group using the installation parameters. For more
|
|
8809
|
+
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
|
8810
|
+
# RDS User Guide*.
|
|
8811
|
+
#
|
|
8812
|
+
#
|
|
8813
|
+
#
|
|
8814
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
|
8815
|
+
# @return [String]
|
|
8816
|
+
#
|
|
8572
8817
|
# @!attribute [rw] db_parameter_group_family
|
|
8573
8818
|
# The name of the DB parameter group family for the database engine.
|
|
8574
8819
|
# @return [String]
|
|
@@ -8577,6 +8822,10 @@ module Aws::RDS
|
|
|
8577
8822
|
# The description of the database engine.
|
|
8578
8823
|
# @return [String]
|
|
8579
8824
|
#
|
|
8825
|
+
# @!attribute [rw] db_engine_version_arn
|
|
8826
|
+
# The ARN of the custom engine version.
|
|
8827
|
+
# @return [String]
|
|
8828
|
+
#
|
|
8580
8829
|
# @!attribute [rw] db_engine_version_description
|
|
8581
8830
|
# The description of the database engine version.
|
|
8582
8831
|
# @return [String]
|
|
@@ -8596,6 +8845,16 @@ module Aws::RDS
|
|
|
8596
8845
|
# the usage operation. Applicable for RDS Custom for SQL Server.
|
|
8597
8846
|
# @return [String]
|
|
8598
8847
|
#
|
|
8848
|
+
# @!attribute [rw] kms_key_id
|
|
8849
|
+
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
|
8850
|
+
# This parameter is required for RDS Custom, but optional for Amazon
|
|
8851
|
+
# RDS.
|
|
8852
|
+
# @return [String]
|
|
8853
|
+
#
|
|
8854
|
+
# @!attribute [rw] create_time
|
|
8855
|
+
# The creation time of the DB engine version.
|
|
8856
|
+
# @return [Time]
|
|
8857
|
+
#
|
|
8599
8858
|
# @!attribute [rw] supported_character_sets
|
|
8600
8859
|
# A list of the character sets supported by this engine for the
|
|
8601
8860
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
|
@@ -8662,43 +8921,15 @@ module Aws::RDS
|
|
|
8662
8921
|
# `deprecated`.
|
|
8663
8922
|
# @return [String]
|
|
8664
8923
|
#
|
|
8665
|
-
# @!attribute [rw] supports_parallel_query
|
|
8666
|
-
# Indicates whether you can use Aurora parallel query with a specific
|
|
8667
|
-
# DB engine version.
|
|
8668
|
-
# @return [Boolean]
|
|
8669
|
-
#
|
|
8670
|
-
# @!attribute [rw] supports_global_databases
|
|
8671
|
-
# Indicates whether you can use Aurora global databases with a
|
|
8672
|
-
# specific DB engine version.
|
|
8673
|
-
# @return [Boolean]
|
|
8674
|
-
#
|
|
8675
|
-
# @!attribute [rw] major_engine_version
|
|
8676
|
-
# The major engine version of the CEV.
|
|
8677
|
-
# @return [String]
|
|
8678
|
-
#
|
|
8679
|
-
# @!attribute [rw] database_installation_files_s3_bucket_name
|
|
8680
|
-
# The name of the Amazon S3 bucket that contains your database
|
|
8681
|
-
# installation files.
|
|
8682
|
-
# @return [String]
|
|
8683
|
-
#
|
|
8684
|
-
# @!attribute [rw] database_installation_files_s3_prefix
|
|
8685
|
-
# The Amazon S3 directory that contains the database installation
|
|
8686
|
-
# files. If not specified, then no prefix is assumed.
|
|
8687
|
-
# @return [String]
|
|
8688
|
-
#
|
|
8689
|
-
# @!attribute [rw] db_engine_version_arn
|
|
8690
|
-
# The ARN of the custom engine version.
|
|
8691
|
-
# @return [String]
|
|
8692
|
-
#
|
|
8693
|
-
# @!attribute [rw] kms_key_id
|
|
8694
|
-
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
|
8695
|
-
# This parameter is required for RDS Custom, but optional for Amazon
|
|
8696
|
-
# RDS.
|
|
8697
|
-
# @return [String]
|
|
8924
|
+
# @!attribute [rw] supports_parallel_query
|
|
8925
|
+
# Indicates whether you can use Aurora parallel query with a specific
|
|
8926
|
+
# DB engine version.
|
|
8927
|
+
# @return [Boolean]
|
|
8698
8928
|
#
|
|
8699
|
-
# @!attribute [rw]
|
|
8700
|
-
#
|
|
8701
|
-
#
|
|
8929
|
+
# @!attribute [rw] supports_global_databases
|
|
8930
|
+
# Indicates whether you can use Aurora global databases with a
|
|
8931
|
+
# specific DB engine version.
|
|
8932
|
+
# @return [Boolean]
|
|
8702
8933
|
#
|
|
8703
8934
|
# @!attribute [rw] tag_list
|
|
8704
8935
|
# A list of tags.
|
|
@@ -8718,20 +8949,6 @@ module Aws::RDS
|
|
|
8718
8949
|
# PostgreSQL.
|
|
8719
8950
|
# @return [Boolean]
|
|
8720
8951
|
#
|
|
8721
|
-
# @!attribute [rw] custom_db_engine_version_manifest
|
|
8722
|
-
# JSON string that lists the installation files and parameters that
|
|
8723
|
-
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
|
8724
|
-
# applies the patches in the order in which they're listed in the
|
|
8725
|
-
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
|
8726
|
-
# user and group using the installation parameters. For more
|
|
8727
|
-
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
|
8728
|
-
# RDS User Guide*.
|
|
8729
|
-
#
|
|
8730
|
-
#
|
|
8731
|
-
#
|
|
8732
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
|
8733
|
-
# @return [String]
|
|
8734
|
-
#
|
|
8735
8952
|
# @!attribute [rw] supports_limitless_database
|
|
8736
8953
|
# Indicates whether the DB engine version supports Aurora Limitless
|
|
8737
8954
|
# Database.
|
|
@@ -8784,13 +9001,20 @@ module Aws::RDS
|
|
|
8784
9001
|
#
|
|
8785
9002
|
class DBEngineVersion < Struct.new(
|
|
8786
9003
|
:engine,
|
|
9004
|
+
:major_engine_version,
|
|
8787
9005
|
:engine_version,
|
|
9006
|
+
:database_installation_files_s3_bucket_name,
|
|
9007
|
+
:database_installation_files_s3_prefix,
|
|
9008
|
+
:custom_db_engine_version_manifest,
|
|
8788
9009
|
:db_parameter_group_family,
|
|
8789
9010
|
:db_engine_description,
|
|
9011
|
+
:db_engine_version_arn,
|
|
8790
9012
|
:db_engine_version_description,
|
|
8791
9013
|
:default_character_set,
|
|
8792
9014
|
:image,
|
|
8793
9015
|
:db_engine_media_type,
|
|
9016
|
+
:kms_key_id,
|
|
9017
|
+
:create_time,
|
|
8794
9018
|
:supported_character_sets,
|
|
8795
9019
|
:supported_nchar_character_sets,
|
|
8796
9020
|
:valid_upgrade_target,
|
|
@@ -8803,15 +9027,8 @@ module Aws::RDS
|
|
|
8803
9027
|
:status,
|
|
8804
9028
|
:supports_parallel_query,
|
|
8805
9029
|
:supports_global_databases,
|
|
8806
|
-
:major_engine_version,
|
|
8807
|
-
:database_installation_files_s3_bucket_name,
|
|
8808
|
-
:database_installation_files_s3_prefix,
|
|
8809
|
-
:db_engine_version_arn,
|
|
8810
|
-
:kms_key_id,
|
|
8811
|
-
:create_time,
|
|
8812
9030
|
:tag_list,
|
|
8813
9031
|
:supports_babelfish,
|
|
8814
|
-
:custom_db_engine_version_manifest,
|
|
8815
9032
|
:supports_limitless_database,
|
|
8816
9033
|
:supports_certificate_rotation_without_restart,
|
|
8817
9034
|
:supported_ca_certificate_identifiers,
|
|
@@ -8878,10 +9095,6 @@ module Aws::RDS
|
|
|
8878
9095
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
|
8879
9096
|
# @return [String]
|
|
8880
9097
|
#
|
|
8881
|
-
# @!attribute [rw] automatic_restart_time
|
|
8882
|
-
# The time when a stopped DB instance is restarted automatically.
|
|
8883
|
-
# @return [Time]
|
|
8884
|
-
#
|
|
8885
9098
|
# @!attribute [rw] master_username
|
|
8886
9099
|
# The master username for the DB instance.
|
|
8887
9100
|
# @return [String]
|
|
@@ -8949,6 +9162,19 @@ module Aws::RDS
|
|
|
8949
9162
|
# Universal Coordinated Time (UTC).
|
|
8950
9163
|
# @return [String]
|
|
8951
9164
|
#
|
|
9165
|
+
# @!attribute [rw] upgrade_rollout_order
|
|
9166
|
+
# This data type represents the order in which the instances are
|
|
9167
|
+
# upgraded.
|
|
9168
|
+
#
|
|
9169
|
+
# * \[first\] - Typically used for development or testing
|
|
9170
|
+
# environments.
|
|
9171
|
+
#
|
|
9172
|
+
# * \[second\] - Default order for resources not specifically
|
|
9173
|
+
# configured.
|
|
9174
|
+
#
|
|
9175
|
+
# * \[last\] - Usually reserved for production environments.
|
|
9176
|
+
# @return [String]
|
|
9177
|
+
#
|
|
8952
9178
|
# @!attribute [rw] pending_modified_values
|
|
8953
9179
|
# Information about pending changes to the DB instance. This
|
|
8954
9180
|
# information is returned only when there are pending changes.
|
|
@@ -9005,17 +9231,20 @@ module Aws::RDS
|
|
|
9005
9231
|
# @return [Array<String>]
|
|
9006
9232
|
#
|
|
9007
9233
|
# @!attribute [rw] replica_mode
|
|
9008
|
-
# The open mode of an Oracle read replica. The default is
|
|
9009
|
-
# `open-read-only`. For more information, see [Working with
|
|
9010
|
-
#
|
|
9234
|
+
# The open mode of a Db2 or an Oracle read replica. The default is
|
|
9235
|
+
# `open-read-only`. For more information, see [Working with replicas
|
|
9236
|
+
# for Amazon RDS for Db2][1] and [Working with read replicas for
|
|
9237
|
+
# Amazon RDS for Oracle][2] in the *Amazon RDS User Guide*.
|
|
9011
9238
|
#
|
|
9012
|
-
# <note markdown="1"> This attribute is only supported in RDS for Oracle
|
|
9239
|
+
# <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
|
|
9240
|
+
# RDS Custom for Oracle.
|
|
9013
9241
|
#
|
|
9014
9242
|
# </note>
|
|
9015
9243
|
#
|
|
9016
9244
|
#
|
|
9017
9245
|
#
|
|
9018
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
9246
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
|
9247
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
9019
9248
|
# @return [String]
|
|
9020
9249
|
#
|
|
9021
9250
|
# @!attribute [rw] license_model
|
|
@@ -9028,6 +9257,12 @@ module Aws::RDS
|
|
|
9028
9257
|
# instance.
|
|
9029
9258
|
# @return [Integer]
|
|
9030
9259
|
#
|
|
9260
|
+
# @!attribute [rw] storage_throughput
|
|
9261
|
+
# The storage throughput for the DB instance.
|
|
9262
|
+
#
|
|
9263
|
+
# This setting applies only to the `gp3` storage type.
|
|
9264
|
+
# @return [Integer]
|
|
9265
|
+
#
|
|
9031
9266
|
# @!attribute [rw] option_group_memberships
|
|
9032
9267
|
# The list of option group memberships for this DB instance.
|
|
9033
9268
|
# @return [Array<Types::OptionGroupMembership>]
|
|
@@ -9281,10 +9516,18 @@ module Aws::RDS
|
|
|
9281
9516
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
9282
9517
|
# @return [Array<Types::Tag>]
|
|
9283
9518
|
#
|
|
9284
|
-
# @!attribute [rw]
|
|
9285
|
-
# The
|
|
9286
|
-
# instance
|
|
9287
|
-
#
|
|
9519
|
+
# @!attribute [rw] automation_mode
|
|
9520
|
+
# The automation mode of the RDS Custom DB instance: `full` or `all
|
|
9521
|
+
# paused`. If `full`, the DB instance automates monitoring and
|
|
9522
|
+
# instance recovery. If `all paused`, the instance pauses automation
|
|
9523
|
+
# for the duration set by `--resume-full-automation-mode-minutes`.
|
|
9524
|
+
# @return [String]
|
|
9525
|
+
#
|
|
9526
|
+
# @!attribute [rw] resume_full_automation_mode_time
|
|
9527
|
+
# The number of minutes to pause the automation. When the time period
|
|
9528
|
+
# ends, RDS Custom resumes full automation. The minimum value is 60
|
|
9529
|
+
# (default). The maximum value is 1,440.
|
|
9530
|
+
# @return [Time]
|
|
9288
9531
|
#
|
|
9289
9532
|
# @!attribute [rw] customer_owned_ip_enabled
|
|
9290
9533
|
# Indicates whether a customer-owned IP address (CoIP) is enabled for
|
|
@@ -9309,9 +9552,23 @@ module Aws::RDS
|
|
|
9309
9552
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
9310
9553
|
# @return [Boolean]
|
|
9311
9554
|
#
|
|
9312
|
-
# @!attribute [rw]
|
|
9313
|
-
# The
|
|
9314
|
-
#
|
|
9555
|
+
# @!attribute [rw] network_type
|
|
9556
|
+
# The network type of the DB instance.
|
|
9557
|
+
#
|
|
9558
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
9559
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
9560
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
9561
|
+
#
|
|
9562
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
9563
|
+
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
|
9564
|
+
# VPC][2] in the *Amazon Aurora User Guide.*
|
|
9565
|
+
#
|
|
9566
|
+
# Valid Values: `IPV4 | DUAL`
|
|
9567
|
+
#
|
|
9568
|
+
#
|
|
9569
|
+
#
|
|
9570
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9571
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9315
9572
|
# @return [String]
|
|
9316
9573
|
#
|
|
9317
9574
|
# @!attribute [rw] activity_stream_status
|
|
@@ -9341,17 +9598,24 @@ module Aws::RDS
|
|
|
9341
9598
|
# database activity stream.
|
|
9342
9599
|
# @return [Boolean]
|
|
9343
9600
|
#
|
|
9344
|
-
# @!attribute [rw]
|
|
9345
|
-
# The
|
|
9346
|
-
#
|
|
9347
|
-
# instance recovery. If `all paused`, the instance pauses automation
|
|
9348
|
-
# for the duration set by `--resume-full-automation-mode-minutes`.
|
|
9601
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
9602
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
9603
|
+
# Services Backup.
|
|
9349
9604
|
# @return [String]
|
|
9350
9605
|
#
|
|
9351
|
-
# @!attribute [rw]
|
|
9352
|
-
# The
|
|
9353
|
-
#
|
|
9354
|
-
#
|
|
9606
|
+
# @!attribute [rw] db_instance_automated_backups_replications
|
|
9607
|
+
# The list of replicated automated backups associated with the DB
|
|
9608
|
+
# instance.
|
|
9609
|
+
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
|
9610
|
+
#
|
|
9611
|
+
# @!attribute [rw] backup_target
|
|
9612
|
+
# The location where automated backups and manual snapshots are
|
|
9613
|
+
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
|
9614
|
+
# Amazon Web Services Region.
|
|
9615
|
+
# @return [String]
|
|
9616
|
+
#
|
|
9617
|
+
# @!attribute [rw] automatic_restart_time
|
|
9618
|
+
# The time when a stopped DB instance is restarted automatically.
|
|
9355
9619
|
# @return [Time]
|
|
9356
9620
|
#
|
|
9357
9621
|
# @!attribute [rw] custom_iam_instance_profile
|
|
@@ -9375,40 +9639,13 @@ module Aws::RDS
|
|
|
9375
9639
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
9376
9640
|
# @return [String]
|
|
9377
9641
|
#
|
|
9378
|
-
# @!attribute [rw] backup_target
|
|
9379
|
-
# The location where automated backups and manual snapshots are
|
|
9380
|
-
# stored: Amazon Web Services Outposts or the Amazon Web Services
|
|
9381
|
-
# Region.
|
|
9382
|
-
# @return [String]
|
|
9383
|
-
#
|
|
9384
|
-
# @!attribute [rw] network_type
|
|
9385
|
-
# The network type of the DB instance.
|
|
9386
|
-
#
|
|
9387
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
9388
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
9389
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
9390
|
-
#
|
|
9391
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
9392
|
-
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
|
9393
|
-
# VPC][2] in the *Amazon Aurora User Guide.*
|
|
9394
|
-
#
|
|
9395
|
-
# Valid Values: `IPV4 | DUAL`
|
|
9396
|
-
#
|
|
9397
|
-
#
|
|
9398
|
-
#
|
|
9399
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9400
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9401
|
-
# @return [String]
|
|
9402
|
-
#
|
|
9403
9642
|
# @!attribute [rw] activity_stream_policy_status
|
|
9404
9643
|
# The status of the policy state of the activity stream.
|
|
9405
9644
|
# @return [String]
|
|
9406
9645
|
#
|
|
9407
|
-
# @!attribute [rw]
|
|
9408
|
-
# The
|
|
9409
|
-
#
|
|
9410
|
-
# This setting applies only to the `gp3` storage type.
|
|
9411
|
-
# @return [Integer]
|
|
9646
|
+
# @!attribute [rw] certificate_details
|
|
9647
|
+
# The details of the DB instance's server certificate.
|
|
9648
|
+
# @return [Types::CertificateDetails]
|
|
9412
9649
|
#
|
|
9413
9650
|
# @!attribute [rw] db_system_id
|
|
9414
9651
|
# The Oracle system ID (Oracle SID) for a container database (CDB).
|
|
@@ -9428,10 +9665,6 @@ module Aws::RDS
|
|
|
9428
9665
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
|
9429
9666
|
# @return [Types::MasterUserSecret]
|
|
9430
9667
|
#
|
|
9431
|
-
# @!attribute [rw] certificate_details
|
|
9432
|
-
# The details of the DB instance's server certificate.
|
|
9433
|
-
# @return [Types::CertificateDetails]
|
|
9434
|
-
#
|
|
9435
9668
|
# @!attribute [rw] read_replica_source_db_cluster_identifier
|
|
9436
9669
|
# The identifier of the source DB cluster if this DB instance is a
|
|
9437
9670
|
# read replica.
|
|
@@ -9441,6 +9674,11 @@ module Aws::RDS
|
|
|
9441
9674
|
# The progress of the storage optimization operation as a percentage.
|
|
9442
9675
|
# @return [String]
|
|
9443
9676
|
#
|
|
9677
|
+
# @!attribute [rw] multi_tenant
|
|
9678
|
+
# Specifies whether the DB instance is in the multi-tenant
|
|
9679
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
|
9680
|
+
# @return [Boolean]
|
|
9681
|
+
#
|
|
9444
9682
|
# @!attribute [rw] dedicated_log_volume
|
|
9445
9683
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
9446
9684
|
# enabled.
|
|
@@ -9458,11 +9696,6 @@ module Aws::RDS
|
|
|
9458
9696
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
|
9459
9697
|
# @return [Boolean]
|
|
9460
9698
|
#
|
|
9461
|
-
# @!attribute [rw] multi_tenant
|
|
9462
|
-
# Specifies whether the DB instance is in the multi-tenant
|
|
9463
|
-
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
|
9464
|
-
# @return [Boolean]
|
|
9465
|
-
#
|
|
9466
9699
|
# @!attribute [rw] engine_lifecycle_support
|
|
9467
9700
|
# The lifecycle type for the DB instance.
|
|
9468
9701
|
#
|
|
@@ -9476,7 +9709,6 @@ module Aws::RDS
|
|
|
9476
9709
|
:db_instance_class,
|
|
9477
9710
|
:engine,
|
|
9478
9711
|
:db_instance_status,
|
|
9479
|
-
:automatic_restart_time,
|
|
9480
9712
|
:master_username,
|
|
9481
9713
|
:db_name,
|
|
9482
9714
|
:endpoint,
|
|
@@ -9490,6 +9722,7 @@ module Aws::RDS
|
|
|
9490
9722
|
:availability_zone,
|
|
9491
9723
|
:db_subnet_group,
|
|
9492
9724
|
:preferred_maintenance_window,
|
|
9725
|
+
:upgrade_rollout_order,
|
|
9493
9726
|
:pending_modified_values,
|
|
9494
9727
|
:latest_restorable_time,
|
|
9495
9728
|
:multi_az,
|
|
@@ -9501,6 +9734,7 @@ module Aws::RDS
|
|
|
9501
9734
|
:replica_mode,
|
|
9502
9735
|
:license_model,
|
|
9503
9736
|
:iops,
|
|
9737
|
+
:storage_throughput,
|
|
9504
9738
|
:option_group_memberships,
|
|
9505
9739
|
:character_set_name,
|
|
9506
9740
|
:nchar_character_set_name,
|
|
@@ -9535,29 +9769,29 @@ module Aws::RDS
|
|
|
9535
9769
|
:listener_endpoint,
|
|
9536
9770
|
:max_allocated_storage,
|
|
9537
9771
|
:tag_list,
|
|
9538
|
-
:
|
|
9772
|
+
:automation_mode,
|
|
9773
|
+
:resume_full_automation_mode_time,
|
|
9539
9774
|
:customer_owned_ip_enabled,
|
|
9540
|
-
:
|
|
9775
|
+
:network_type,
|
|
9541
9776
|
:activity_stream_status,
|
|
9542
9777
|
:activity_stream_kms_key_id,
|
|
9543
9778
|
:activity_stream_kinesis_stream_name,
|
|
9544
9779
|
:activity_stream_mode,
|
|
9545
9780
|
:activity_stream_engine_native_audit_fields_included,
|
|
9546
|
-
:
|
|
9547
|
-
:
|
|
9548
|
-
:custom_iam_instance_profile,
|
|
9781
|
+
:aws_backup_recovery_point_arn,
|
|
9782
|
+
:db_instance_automated_backups_replications,
|
|
9549
9783
|
:backup_target,
|
|
9550
|
-
:
|
|
9784
|
+
:automatic_restart_time,
|
|
9785
|
+
:custom_iam_instance_profile,
|
|
9551
9786
|
:activity_stream_policy_status,
|
|
9552
|
-
:
|
|
9787
|
+
:certificate_details,
|
|
9553
9788
|
:db_system_id,
|
|
9554
9789
|
:master_user_secret,
|
|
9555
|
-
:certificate_details,
|
|
9556
9790
|
:read_replica_source_db_cluster_identifier,
|
|
9557
9791
|
:percent_progress,
|
|
9792
|
+
:multi_tenant,
|
|
9558
9793
|
:dedicated_log_volume,
|
|
9559
9794
|
:is_storage_config_upgrade_available,
|
|
9560
|
-
:multi_tenant,
|
|
9561
9795
|
:engine_lifecycle_support)
|
|
9562
9796
|
SENSITIVE = []
|
|
9563
9797
|
include Aws::Structure
|
|
@@ -9657,6 +9891,10 @@ module Aws::RDS
|
|
|
9657
9891
|
# The IOPS (I/O operations per second) value for the automated backup.
|
|
9658
9892
|
# @return [Integer]
|
|
9659
9893
|
#
|
|
9894
|
+
# @!attribute [rw] storage_throughput
|
|
9895
|
+
# The storage throughput for the automated backup.
|
|
9896
|
+
# @return [Integer]
|
|
9897
|
+
#
|
|
9660
9898
|
# @!attribute [rw] option_group_name
|
|
9661
9899
|
# The option group the automated backup is associated with. If
|
|
9662
9900
|
# omitted, the default option group for the engine specified is used.
|
|
@@ -9708,13 +9946,16 @@ module Aws::RDS
|
|
|
9708
9946
|
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
|
9709
9947
|
#
|
|
9710
9948
|
# @!attribute [rw] backup_target
|
|
9711
|
-
# The location where automated backups are stored:
|
|
9712
|
-
# Outposts or the Amazon Web Services
|
|
9949
|
+
# The location where automated backups are stored: Dedicated Local
|
|
9950
|
+
# Zones, Amazon Web Services Outposts or the Amazon Web Services
|
|
9951
|
+
# Region.
|
|
9713
9952
|
# @return [String]
|
|
9714
9953
|
#
|
|
9715
|
-
# @!attribute [rw]
|
|
9716
|
-
#
|
|
9717
|
-
#
|
|
9954
|
+
# @!attribute [rw] multi_tenant
|
|
9955
|
+
# Specifies whether the automatic backup is for a DB instance in the
|
|
9956
|
+
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
|
9957
|
+
# (FALSE).
|
|
9958
|
+
# @return [Boolean]
|
|
9718
9959
|
#
|
|
9719
9960
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
9720
9961
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
@@ -9726,12 +9967,6 @@ module Aws::RDS
|
|
|
9726
9967
|
# enabled.
|
|
9727
9968
|
# @return [Boolean]
|
|
9728
9969
|
#
|
|
9729
|
-
# @!attribute [rw] multi_tenant
|
|
9730
|
-
# Specifies whether the automatic backup is for a DB instance in the
|
|
9731
|
-
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
|
9732
|
-
# (FALSE).
|
|
9733
|
-
# @return [Boolean]
|
|
9734
|
-
#
|
|
9735
9970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
|
9736
9971
|
#
|
|
9737
9972
|
class DBInstanceAutomatedBackup < Struct.new(
|
|
@@ -9751,6 +9986,7 @@ module Aws::RDS
|
|
|
9751
9986
|
:engine_version,
|
|
9752
9987
|
:license_model,
|
|
9753
9988
|
:iops,
|
|
9989
|
+
:storage_throughput,
|
|
9754
9990
|
:option_group_name,
|
|
9755
9991
|
:tde_credential_arn,
|
|
9756
9992
|
:encrypted,
|
|
@@ -9762,10 +9998,9 @@ module Aws::RDS
|
|
|
9762
9998
|
:db_instance_automated_backups_arn,
|
|
9763
9999
|
:db_instance_automated_backups_replications,
|
|
9764
10000
|
:backup_target,
|
|
9765
|
-
:
|
|
10001
|
+
:multi_tenant,
|
|
9766
10002
|
:aws_backup_recovery_point_arn,
|
|
9767
|
-
:dedicated_log_volume
|
|
9768
|
-
:multi_tenant)
|
|
10003
|
+
:dedicated_log_volume)
|
|
9769
10004
|
SENSITIVE = []
|
|
9770
10005
|
include Aws::Structure
|
|
9771
10006
|
end
|
|
@@ -10189,6 +10424,14 @@ module Aws::RDS
|
|
|
10189
10424
|
# The EC2 subnet IDs for the proxy.
|
|
10190
10425
|
# @return [Array<String>]
|
|
10191
10426
|
#
|
|
10427
|
+
# @!attribute [rw] default_auth_scheme
|
|
10428
|
+
# The default authentication scheme that the proxy uses for client
|
|
10429
|
+
# connections to the proxy and connections from the proxy to the
|
|
10430
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
|
10431
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
|
10432
|
+
# connect to the database.
|
|
10433
|
+
# @return [String]
|
|
10434
|
+
#
|
|
10192
10435
|
# @!attribute [rw] auth
|
|
10193
10436
|
# One or more data structures specifying the authorization mechanism
|
|
10194
10437
|
# to connect to the associated RDS DB instance or Aurora DB cluster.
|
|
@@ -10222,14 +10465,12 @@ module Aws::RDS
|
|
|
10222
10465
|
# @return [Integer]
|
|
10223
10466
|
#
|
|
10224
10467
|
# @!attribute [rw] debug_logging
|
|
10225
|
-
#
|
|
10226
|
-
#
|
|
10227
|
-
#
|
|
10228
|
-
#
|
|
10229
|
-
#
|
|
10230
|
-
#
|
|
10231
|
-
# measures in place to safeguard any sensitive information that
|
|
10232
|
-
# appears in the logs.
|
|
10468
|
+
# Specifies whether the proxy logs detailed connection and query
|
|
10469
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
|
10470
|
+
# connection details and connection pool behavior from your queries.
|
|
10471
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
|
10472
|
+
# performance. Enable this option only when you need to troubleshoot
|
|
10473
|
+
# connection or performance issues.
|
|
10233
10474
|
# @return [Boolean]
|
|
10234
10475
|
#
|
|
10235
10476
|
# @!attribute [rw] created_date
|
|
@@ -10240,6 +10481,31 @@ module Aws::RDS
|
|
|
10240
10481
|
# The date and time when the proxy was last updated.
|
|
10241
10482
|
# @return [Time]
|
|
10242
10483
|
#
|
|
10484
|
+
# @!attribute [rw] endpoint_network_type
|
|
10485
|
+
# The network type of the DB proxy endpoint. The network type
|
|
10486
|
+
# determines the IP version that the proxy endpoint supports.
|
|
10487
|
+
#
|
|
10488
|
+
# Valid values:
|
|
10489
|
+
#
|
|
10490
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
10491
|
+
#
|
|
10492
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
10493
|
+
#
|
|
10494
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
10495
|
+
# @return [String]
|
|
10496
|
+
#
|
|
10497
|
+
# @!attribute [rw] target_connection_network_type
|
|
10498
|
+
# The network type that the proxy uses to connect to the target
|
|
10499
|
+
# database. The network type determines the IP version that the proxy
|
|
10500
|
+
# uses for connections to the database.
|
|
10501
|
+
#
|
|
10502
|
+
# Valid values:
|
|
10503
|
+
#
|
|
10504
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
|
10505
|
+
#
|
|
10506
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
|
10507
|
+
# @return [String]
|
|
10508
|
+
#
|
|
10243
10509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxy AWS API Documentation
|
|
10244
10510
|
#
|
|
10245
10511
|
class DBProxy < Struct.new(
|
|
@@ -10250,6 +10516,7 @@ module Aws::RDS
|
|
|
10250
10516
|
:vpc_id,
|
|
10251
10517
|
:vpc_security_group_ids,
|
|
10252
10518
|
:vpc_subnet_ids,
|
|
10519
|
+
:default_auth_scheme,
|
|
10253
10520
|
:auth,
|
|
10254
10521
|
:role_arn,
|
|
10255
10522
|
:endpoint,
|
|
@@ -10257,7 +10524,9 @@ module Aws::RDS
|
|
|
10257
10524
|
:idle_client_timeout,
|
|
10258
10525
|
:debug_logging,
|
|
10259
10526
|
:created_date,
|
|
10260
|
-
:updated_date
|
|
10527
|
+
:updated_date,
|
|
10528
|
+
:endpoint_network_type,
|
|
10529
|
+
:target_connection_network_type)
|
|
10261
10530
|
SENSITIVE = []
|
|
10262
10531
|
include Aws::Structure
|
|
10263
10532
|
end
|
|
@@ -10336,6 +10605,19 @@ module Aws::RDS
|
|
|
10336
10605
|
# DB proxy can be either read/write or read-only.
|
|
10337
10606
|
# @return [Boolean]
|
|
10338
10607
|
#
|
|
10608
|
+
# @!attribute [rw] endpoint_network_type
|
|
10609
|
+
# The network type of the DB proxy endpoint. The network type
|
|
10610
|
+
# determines the IP version that the proxy endpoint supports.
|
|
10611
|
+
#
|
|
10612
|
+
# Valid values:
|
|
10613
|
+
#
|
|
10614
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
10615
|
+
#
|
|
10616
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
10617
|
+
#
|
|
10618
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
10619
|
+
# @return [String]
|
|
10620
|
+
#
|
|
10339
10621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpoint AWS API Documentation
|
|
10340
10622
|
#
|
|
10341
10623
|
class DBProxyEndpoint < Struct.new(
|
|
@@ -10349,7 +10631,8 @@ module Aws::RDS
|
|
|
10349
10631
|
:endpoint,
|
|
10350
10632
|
:created_date,
|
|
10351
10633
|
:target_role,
|
|
10352
|
-
:is_default
|
|
10634
|
+
:is_default,
|
|
10635
|
+
:endpoint_network_type)
|
|
10353
10636
|
SENSITIVE = []
|
|
10354
10637
|
include Aws::Structure
|
|
10355
10638
|
end
|
|
@@ -11038,6 +11321,10 @@ module Aws::RDS
|
|
|
11038
11321
|
# the DB instance at the time of the snapshot.
|
|
11039
11322
|
# @return [Integer]
|
|
11040
11323
|
#
|
|
11324
|
+
# @!attribute [rw] storage_throughput
|
|
11325
|
+
# Specifies the storage throughput for the DB snapshot.
|
|
11326
|
+
# @return [Integer]
|
|
11327
|
+
#
|
|
11041
11328
|
# @!attribute [rw] option_group_name
|
|
11042
11329
|
# Provides the option group name for the DB snapshot.
|
|
11043
11330
|
# @return [String]
|
|
@@ -11118,6 +11405,11 @@ module Aws::RDS
|
|
|
11118
11405
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
11119
11406
|
# @return [Array<Types::Tag>]
|
|
11120
11407
|
#
|
|
11408
|
+
# @!attribute [rw] snapshot_target
|
|
11409
|
+
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
|
11410
|
+
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
|
11411
|
+
# @return [String]
|
|
11412
|
+
#
|
|
11121
11413
|
# @!attribute [rw] original_snapshot_create_time
|
|
11122
11414
|
# Specifies the time of the CreateDBSnapshot operation in Coordinated
|
|
11123
11415
|
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
|
@@ -11136,32 +11428,29 @@ module Aws::RDS
|
|
|
11136
11428
|
# SnapshotDatabaseTime, then the replica lag is two hours.
|
|
11137
11429
|
# @return [Time]
|
|
11138
11430
|
#
|
|
11139
|
-
# @!attribute [rw] snapshot_target
|
|
11140
|
-
# Specifies where manual snapshots are stored: Amazon Web Services
|
|
11141
|
-
# Outposts or the Amazon Web Services Region.
|
|
11142
|
-
# @return [String]
|
|
11143
|
-
#
|
|
11144
|
-
# @!attribute [rw] storage_throughput
|
|
11145
|
-
# Specifies the storage throughput for the DB snapshot.
|
|
11146
|
-
# @return [Integer]
|
|
11147
|
-
#
|
|
11148
11431
|
# @!attribute [rw] db_system_id
|
|
11149
11432
|
# The Oracle system identifier (SID), which is the name of the Oracle
|
|
11150
11433
|
# database instance that manages your database files. The Oracle SID
|
|
11151
11434
|
# is also the name of your CDB.
|
|
11152
11435
|
# @return [String]
|
|
11153
11436
|
#
|
|
11154
|
-
# @!attribute [rw] dedicated_log_volume
|
|
11155
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
11156
|
-
# enabled.
|
|
11157
|
-
# @return [Boolean]
|
|
11158
|
-
#
|
|
11159
11437
|
# @!attribute [rw] multi_tenant
|
|
11160
11438
|
# Indicates whether the snapshot is of a DB instance using the
|
|
11161
11439
|
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
|
11162
11440
|
# (FALSE).
|
|
11163
11441
|
# @return [Boolean]
|
|
11164
11442
|
#
|
|
11443
|
+
# @!attribute [rw] dedicated_log_volume
|
|
11444
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
11445
|
+
# enabled.
|
|
11446
|
+
# @return [Boolean]
|
|
11447
|
+
#
|
|
11448
|
+
# @!attribute [rw] snapshot_availability_zone
|
|
11449
|
+
# Specifies the name of the Availability Zone where RDS stores the DB
|
|
11450
|
+
# snapshot. This value is valid only for snapshots that RDS stores on
|
|
11451
|
+
# a Dedicated Local Zone.
|
|
11452
|
+
# @return [String]
|
|
11453
|
+
#
|
|
11165
11454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
|
11166
11455
|
#
|
|
11167
11456
|
class DBSnapshot < Struct.new(
|
|
@@ -11180,6 +11469,7 @@ module Aws::RDS
|
|
|
11180
11469
|
:license_model,
|
|
11181
11470
|
:snapshot_type,
|
|
11182
11471
|
:iops,
|
|
11472
|
+
:storage_throughput,
|
|
11183
11473
|
:option_group_name,
|
|
11184
11474
|
:percent_progress,
|
|
11185
11475
|
:source_region,
|
|
@@ -11194,13 +11484,13 @@ module Aws::RDS
|
|
|
11194
11484
|
:processor_features,
|
|
11195
11485
|
:dbi_resource_id,
|
|
11196
11486
|
:tag_list,
|
|
11487
|
+
:snapshot_target,
|
|
11197
11488
|
:original_snapshot_create_time,
|
|
11198
11489
|
:snapshot_database_time,
|
|
11199
|
-
:snapshot_target,
|
|
11200
|
-
:storage_throughput,
|
|
11201
11490
|
:db_system_id,
|
|
11491
|
+
:multi_tenant,
|
|
11202
11492
|
:dedicated_log_volume,
|
|
11203
|
-
:
|
|
11493
|
+
:snapshot_availability_zone)
|
|
11204
11494
|
SENSITIVE = []
|
|
11205
11495
|
include Aws::Structure
|
|
11206
11496
|
end
|
|
@@ -11432,7 +11722,10 @@ module Aws::RDS
|
|
|
11432
11722
|
# @return [String]
|
|
11433
11723
|
#
|
|
11434
11724
|
# @!attribute [rw] subnets
|
|
11435
|
-
# Contains a list of `Subnet` elements.
|
|
11725
|
+
# Contains a list of `Subnet` elements. The list of subnets shown here
|
|
11726
|
+
# might not reflect the current state of your VPC. For the most
|
|
11727
|
+
# up-to-date information, we recommend checking your VPC configuration
|
|
11728
|
+
# directly.
|
|
11436
11729
|
# @return [Array<Types::Subnet>]
|
|
11437
11730
|
#
|
|
11438
11731
|
# @!attribute [rw] db_subnet_group_arn
|
|
@@ -15664,7 +15957,7 @@ module Aws::RDS
|
|
|
15664
15957
|
:log_file_data,
|
|
15665
15958
|
:marker,
|
|
15666
15959
|
:additional_data_pending)
|
|
15667
|
-
SENSITIVE = []
|
|
15960
|
+
SENSITIVE = [:log_file_data]
|
|
15668
15961
|
include Aws::Structure
|
|
15669
15962
|
end
|
|
15670
15963
|
|
|
@@ -16478,10 +16771,14 @@ module Aws::RDS
|
|
|
16478
16771
|
# @return [String]
|
|
16479
16772
|
#
|
|
16480
16773
|
# @!attribute [rw] global_cluster_resource_id
|
|
16481
|
-
# The Amazon Web Services
|
|
16482
|
-
# global database cluster. This identifier is found in Amazon
|
|
16483
|
-
# Services CloudTrail log entries whenever the Amazon Web Services
|
|
16484
|
-
# key for the DB cluster is accessed.
|
|
16774
|
+
# The Amazon Web Services [partition][1]-unique, immutable identifier
|
|
16775
|
+
# for the global database cluster. This identifier is found in Amazon
|
|
16776
|
+
# Web Services CloudTrail log entries whenever the Amazon Web Services
|
|
16777
|
+
# KMS key for the DB cluster is accessed.
|
|
16778
|
+
#
|
|
16779
|
+
#
|
|
16780
|
+
#
|
|
16781
|
+
# [1]: https://docs.aws.amazon.com/glossary/latest/reference/glos-chap.html?id=docs_gateway#partition
|
|
16485
16782
|
# @return [String]
|
|
16486
16783
|
#
|
|
16487
16784
|
# @!attribute [rw] global_cluster_arn
|
|
@@ -16778,15 +17075,6 @@ module Aws::RDS
|
|
|
16778
17075
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
16779
17076
|
# @return [Array<Types::Tag>]
|
|
16780
17077
|
#
|
|
16781
|
-
# @!attribute [rw] create_time
|
|
16782
|
-
# The time when the integration was created, in Universal Coordinated
|
|
16783
|
-
# Time (UTC).
|
|
16784
|
-
# @return [Time]
|
|
16785
|
-
#
|
|
16786
|
-
# @!attribute [rw] errors
|
|
16787
|
-
# Any errors associated with the integration.
|
|
16788
|
-
# @return [Array<Types::IntegrationError>]
|
|
16789
|
-
#
|
|
16790
17078
|
# @!attribute [rw] data_filter
|
|
16791
17079
|
# Data filters for the integration. These filters determine which
|
|
16792
17080
|
# tables from the source database are sent to the target Amazon
|
|
@@ -16797,6 +17085,15 @@ module Aws::RDS
|
|
|
16797
17085
|
# A description of the integration.
|
|
16798
17086
|
# @return [String]
|
|
16799
17087
|
#
|
|
17088
|
+
# @!attribute [rw] create_time
|
|
17089
|
+
# The time when the integration was created, in Universal Coordinated
|
|
17090
|
+
# Time (UTC).
|
|
17091
|
+
# @return [Time]
|
|
17092
|
+
#
|
|
17093
|
+
# @!attribute [rw] errors
|
|
17094
|
+
# Any errors associated with the integration.
|
|
17095
|
+
# @return [Array<Types::IntegrationError>]
|
|
17096
|
+
#
|
|
16800
17097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
|
|
16801
17098
|
#
|
|
16802
17099
|
class Integration < Struct.new(
|
|
@@ -16808,10 +17105,10 @@ module Aws::RDS
|
|
|
16808
17105
|
:additional_encryption_context,
|
|
16809
17106
|
:status,
|
|
16810
17107
|
:tags,
|
|
16811
|
-
:create_time,
|
|
16812
|
-
:errors,
|
|
16813
17108
|
:data_filter,
|
|
16814
|
-
:description
|
|
17109
|
+
:description,
|
|
17110
|
+
:create_time,
|
|
17111
|
+
:errors)
|
|
16815
17112
|
SENSITIVE = []
|
|
16816
17113
|
include Aws::Structure
|
|
16817
17114
|
end
|
|
@@ -18009,6 +18306,37 @@ module Aws::RDS
|
|
|
18009
18306
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
|
18010
18307
|
# @return [Boolean]
|
|
18011
18308
|
#
|
|
18309
|
+
# @!attribute [rw] network_type
|
|
18310
|
+
# The network type of the DB cluster.
|
|
18311
|
+
#
|
|
18312
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
18313
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
18314
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
18315
|
+
#
|
|
18316
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
18317
|
+
# in the *Amazon Aurora User Guide.*
|
|
18318
|
+
#
|
|
18319
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
18320
|
+
#
|
|
18321
|
+
# Valid Values: `IPV4 | DUAL`
|
|
18322
|
+
#
|
|
18323
|
+
#
|
|
18324
|
+
#
|
|
18325
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
18326
|
+
# @return [String]
|
|
18327
|
+
#
|
|
18328
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
18329
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
18330
|
+
# cluster.
|
|
18331
|
+
#
|
|
18332
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
18333
|
+
# the *Amazon Aurora User Guide*.
|
|
18334
|
+
#
|
|
18335
|
+
#
|
|
18336
|
+
#
|
|
18337
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
18338
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
18339
|
+
#
|
|
18012
18340
|
# @!attribute [rw] monitoring_interval
|
|
18013
18341
|
# The interval, in seconds, between points when Enhanced Monitoring
|
|
18014
18342
|
# metrics are collected for the DB cluster. To turn off collecting
|
|
@@ -18049,8 +18377,9 @@ module Aws::RDS
|
|
|
18049
18377
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
|
18050
18378
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
|
18051
18379
|
#
|
|
18052
|
-
# If you change the value from `advanced` to `standard`, you
|
|
18053
|
-
# the `PerformanceInsightsEnabled` parameter to `
|
|
18380
|
+
# If you change the value from `advanced` to `standard`, you can set
|
|
18381
|
+
# the `PerformanceInsightsEnabled` parameter to `true` to collect
|
|
18382
|
+
# detailed database counter and per-query metrics.
|
|
18054
18383
|
#
|
|
18055
18384
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
18056
18385
|
# @return [String]
|
|
@@ -18106,37 +18435,6 @@ module Aws::RDS
|
|
|
18106
18435
|
# Amazon RDS issues an error.
|
|
18107
18436
|
# @return [Integer]
|
|
18108
18437
|
#
|
|
18109
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
18110
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
18111
|
-
# cluster.
|
|
18112
|
-
#
|
|
18113
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
18114
|
-
# the *Amazon Aurora User Guide*.
|
|
18115
|
-
#
|
|
18116
|
-
#
|
|
18117
|
-
#
|
|
18118
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
18119
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
18120
|
-
#
|
|
18121
|
-
# @!attribute [rw] network_type
|
|
18122
|
-
# The network type of the DB cluster.
|
|
18123
|
-
#
|
|
18124
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
18125
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
18126
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
18127
|
-
#
|
|
18128
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
18129
|
-
# in the *Amazon Aurora User Guide.*
|
|
18130
|
-
#
|
|
18131
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
18132
|
-
#
|
|
18133
|
-
# Valid Values: `IPV4 | DUAL`
|
|
18134
|
-
#
|
|
18135
|
-
#
|
|
18136
|
-
#
|
|
18137
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
18138
|
-
# @return [String]
|
|
18139
|
-
#
|
|
18140
18438
|
# @!attribute [rw] manage_master_user_password
|
|
18141
18439
|
# Specifies whether to manage the master user password with Amazon Web
|
|
18142
18440
|
# Services Secrets Manager.
|
|
@@ -18193,6 +18491,14 @@ module Aws::RDS
|
|
|
18193
18491
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
|
18194
18492
|
# @return [Boolean]
|
|
18195
18493
|
#
|
|
18494
|
+
# @!attribute [rw] enable_local_write_forwarding
|
|
18495
|
+
# Specifies whether read replicas can forward write operations to the
|
|
18496
|
+
# writer DB instance in the DB cluster. By default, write operations
|
|
18497
|
+
# aren't allowed on reader DB instances.
|
|
18498
|
+
#
|
|
18499
|
+
# Valid for: Aurora DB clusters only
|
|
18500
|
+
# @return [Boolean]
|
|
18501
|
+
#
|
|
18196
18502
|
# @!attribute [rw] master_user_secret_kms_key_id
|
|
18197
18503
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
|
18198
18504
|
# is automatically generated and managed in Amazon Web Services
|
|
@@ -18263,14 +18569,6 @@ module Aws::RDS
|
|
|
18263
18569
|
# ^
|
|
18264
18570
|
# @return [Boolean]
|
|
18265
18571
|
#
|
|
18266
|
-
# @!attribute [rw] enable_local_write_forwarding
|
|
18267
|
-
# Specifies whether read replicas can forward write operations to the
|
|
18268
|
-
# writer DB instance in the DB cluster. By default, write operations
|
|
18269
|
-
# aren't allowed on reader DB instances.
|
|
18270
|
-
#
|
|
18271
|
-
# Valid for: Aurora DB clusters only
|
|
18272
|
-
# @return [Boolean]
|
|
18273
|
-
#
|
|
18274
18572
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
18275
18573
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
18276
18574
|
# Services Backup.
|
|
@@ -18303,6 +18601,24 @@ module Aws::RDS
|
|
|
18303
18601
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
18304
18602
|
# @return [String]
|
|
18305
18603
|
#
|
|
18604
|
+
# @!attribute [rw] master_user_authentication_type
|
|
18605
|
+
# Specifies the authentication type for the master user. With IAM
|
|
18606
|
+
# master user authentication, you can change the master DB user to use
|
|
18607
|
+
# IAM database authentication.
|
|
18608
|
+
#
|
|
18609
|
+
# You can specify one of the following values:
|
|
18610
|
+
#
|
|
18611
|
+
# * `password` - Use standard database authentication with a password.
|
|
18612
|
+
#
|
|
18613
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
18614
|
+
# user.
|
|
18615
|
+
#
|
|
18616
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
18617
|
+
#
|
|
18618
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
18619
|
+
# PostgreSQL engines.
|
|
18620
|
+
# @return [String]
|
|
18621
|
+
#
|
|
18306
18622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
18307
18623
|
#
|
|
18308
18624
|
class ModifyDBClusterMessage < Struct.new(
|
|
@@ -18335,24 +18651,25 @@ module Aws::RDS
|
|
|
18335
18651
|
:storage_type,
|
|
18336
18652
|
:iops,
|
|
18337
18653
|
:auto_minor_version_upgrade,
|
|
18654
|
+
:network_type,
|
|
18655
|
+
:serverless_v2_scaling_configuration,
|
|
18338
18656
|
:monitoring_interval,
|
|
18339
18657
|
:monitoring_role_arn,
|
|
18340
18658
|
:database_insights_mode,
|
|
18341
18659
|
:enable_performance_insights,
|
|
18342
18660
|
:performance_insights_kms_key_id,
|
|
18343
18661
|
:performance_insights_retention_period,
|
|
18344
|
-
:serverless_v2_scaling_configuration,
|
|
18345
|
-
:network_type,
|
|
18346
18662
|
:manage_master_user_password,
|
|
18347
18663
|
:rotate_master_user_password,
|
|
18664
|
+
:enable_local_write_forwarding,
|
|
18348
18665
|
:master_user_secret_kms_key_id,
|
|
18349
18666
|
:engine_mode,
|
|
18350
18667
|
:allow_engine_mode_change,
|
|
18351
|
-
:enable_local_write_forwarding,
|
|
18352
18668
|
:aws_backup_recovery_point_arn,
|
|
18353
18669
|
:enable_limitless_database,
|
|
18354
|
-
:ca_certificate_identifier
|
|
18355
|
-
|
|
18670
|
+
:ca_certificate_identifier,
|
|
18671
|
+
:master_user_authentication_type)
|
|
18672
|
+
SENSITIVE = [:master_user_password]
|
|
18356
18673
|
include Aws::Structure
|
|
18357
18674
|
end
|
|
18358
18675
|
|
|
@@ -18973,6 +19290,15 @@ module Aws::RDS
|
|
|
18973
19290
|
# Default: Uses existing setting
|
|
18974
19291
|
# @return [Integer]
|
|
18975
19292
|
#
|
|
19293
|
+
# @!attribute [rw] storage_throughput
|
|
19294
|
+
# The storage throughput value for the DB instance.
|
|
19295
|
+
#
|
|
19296
|
+
# This setting applies only to the `gp3` storage type.
|
|
19297
|
+
#
|
|
19298
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
|
19299
|
+
# instances.
|
|
19300
|
+
# @return [Integer]
|
|
19301
|
+
#
|
|
18976
19302
|
# @!attribute [rw] option_group_name
|
|
18977
19303
|
# The option group to associate the DB instance with.
|
|
18978
19304
|
#
|
|
@@ -19110,7 +19436,7 @@ module Aws::RDS
|
|
|
19110
19436
|
#
|
|
19111
19437
|
# * Must be in the distinguished name format.
|
|
19112
19438
|
#
|
|
19113
|
-
#
|
|
19439
|
+
# ^
|
|
19114
19440
|
#
|
|
19115
19441
|
# Example:
|
|
19116
19442
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
|
@@ -19139,6 +19465,11 @@ module Aws::RDS
|
|
|
19139
19465
|
# Example: `123.124.125.126,234.235.236.237`
|
|
19140
19466
|
# @return [Array<String>]
|
|
19141
19467
|
#
|
|
19468
|
+
# @!attribute [rw] disable_domain
|
|
19469
|
+
# Specifies whether to remove the DB instance from the Active
|
|
19470
|
+
# Directory domain.
|
|
19471
|
+
# @return [Boolean]
|
|
19472
|
+
#
|
|
19142
19473
|
# @!attribute [rw] copy_tags_to_snapshot
|
|
19143
19474
|
# Specifies whether to copy all tags from the DB instance to snapshots
|
|
19144
19475
|
# of the DB instance. By default, tags aren't copied.
|
|
@@ -19250,11 +19581,6 @@ module Aws::RDS
|
|
|
19250
19581
|
# This setting doesn't apply to RDS Custom DB instances.
|
|
19251
19582
|
# @return [String]
|
|
19252
19583
|
#
|
|
19253
|
-
# @!attribute [rw] disable_domain
|
|
19254
|
-
# Specifies whether to remove the DB instance from the Active
|
|
19255
|
-
# Directory domain.
|
|
19256
|
-
# @return [Boolean]
|
|
19257
|
-
#
|
|
19258
19584
|
# @!attribute [rw] promotion_tier
|
|
19259
19585
|
# The order of priority in which an Aurora Replica is promoted to the
|
|
19260
19586
|
# primary instance after a failure of the existing primary instance.
|
|
@@ -19466,56 +19792,48 @@ module Aws::RDS
|
|
|
19466
19792
|
# @return [Boolean]
|
|
19467
19793
|
#
|
|
19468
19794
|
# @!attribute [rw] replica_mode
|
|
19469
|
-
#
|
|
19470
|
-
# mounted or read-only.
|
|
19471
|
-
#
|
|
19472
|
-
# <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
|
|
19473
|
-
#
|
|
19474
|
-
# </note>
|
|
19475
|
-
#
|
|
19476
|
-
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
|
19477
|
-
# main use case for mounted replicas is cross-Region disaster
|
|
19478
|
-
# recovery. The primary database doesn't use Active Data Guard to
|
|
19479
|
-
# transmit information to the mounted replica. Because it doesn't
|
|
19480
|
-
# accept user connections, a mounted replica can't serve a read-only
|
|
19481
|
-
# workload. For more information, see [Working with Oracle Read
|
|
19482
|
-
# Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
|
|
19483
|
-
#
|
|
19484
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
|
19795
|
+
# The open mode of a replica database.
|
|
19485
19796
|
#
|
|
19797
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
|
19798
|
+
# instances.
|
|
19486
19799
|
#
|
|
19800
|
+
# Db2
|
|
19487
19801
|
#
|
|
19488
|
-
#
|
|
19489
|
-
#
|
|
19802
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
|
19803
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas
|
|
19804
|
+
# is cross-Region disaster recovery. Because it doesn't accept user
|
|
19805
|
+
# connections, a standby replica can't serve a read-only workload.
|
|
19490
19806
|
#
|
|
19491
|
-
#
|
|
19492
|
-
#
|
|
19493
|
-
#
|
|
19807
|
+
# You can create a combination of standby and read-only DB replicas
|
|
19808
|
+
# for the same primary DB instance. For more information, see
|
|
19809
|
+
# [Working with replicas for Amazon RDS for Db2][1] in the *Amazon
|
|
19810
|
+
# RDS User Guide*.
|
|
19494
19811
|
#
|
|
19495
|
-
#
|
|
19496
|
-
#
|
|
19497
|
-
# cases, a CoIP can provide lower latency for connections to the DB
|
|
19498
|
-
# instance from outside of its virtual private cloud (VPC) on your
|
|
19499
|
-
# local network.
|
|
19812
|
+
# To create standby DB replicas for RDS for Db2, set this parameter
|
|
19813
|
+
# to `mounted`.
|
|
19500
19814
|
#
|
|
19501
|
-
#
|
|
19502
|
-
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
|
19503
|
-
# Guide*.
|
|
19815
|
+
# Oracle
|
|
19504
19816
|
#
|
|
19505
|
-
#
|
|
19506
|
-
#
|
|
19817
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
|
19818
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
|
19819
|
+
# disaster recovery. The primary database doesn't use Active Data
|
|
19820
|
+
# Guard to transmit information to the mounted replica. Because it
|
|
19821
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
|
19822
|
+
# read-only workload.
|
|
19507
19823
|
#
|
|
19824
|
+
# You can create a combination of mounted and read-only DB replicas
|
|
19825
|
+
# for the same primary DB instance. For more information, see
|
|
19826
|
+
# [Working with read replicas for Amazon RDS for Oracle][2] in the
|
|
19827
|
+
# *Amazon RDS User Guide*.
|
|
19508
19828
|
#
|
|
19829
|
+
# For RDS Custom, you must specify this parameter and set it to
|
|
19830
|
+
# `mounted`. The value won't be set by default. After replica
|
|
19831
|
+
# creation, you can manage the open mode manually.
|
|
19509
19832
|
#
|
|
19510
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
19511
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
19512
|
-
# @return [Boolean]
|
|
19513
19833
|
#
|
|
19514
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
19515
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
19516
|
-
# Services Backup.
|
|
19517
19834
|
#
|
|
19518
|
-
#
|
|
19835
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
|
19836
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
19519
19837
|
# @return [String]
|
|
19520
19838
|
#
|
|
19521
19839
|
# @!attribute [rw] automation_mode
|
|
@@ -19538,6 +19856,29 @@ module Aws::RDS
|
|
|
19538
19856
|
# * Must be no more than 1,440.
|
|
19539
19857
|
# @return [Integer]
|
|
19540
19858
|
#
|
|
19859
|
+
# @!attribute [rw] enable_customer_owned_ip
|
|
19860
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
|
19861
|
+
# an RDS on Outposts DB instance.
|
|
19862
|
+
#
|
|
19863
|
+
# A *CoIP* provides local or external connectivity to resources in
|
|
19864
|
+
# your Outpost subnets through your on-premises network. For some use
|
|
19865
|
+
# cases, a CoIP can provide lower latency for connections to the DB
|
|
19866
|
+
# instance from outside of its virtual private cloud (VPC) on your
|
|
19867
|
+
# local network.
|
|
19868
|
+
#
|
|
19869
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
|
19870
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
|
19871
|
+
# Guide*.
|
|
19872
|
+
#
|
|
19873
|
+
# For more information about CoIPs, see [Customer-owned IP
|
|
19874
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
|
19875
|
+
#
|
|
19876
|
+
#
|
|
19877
|
+
#
|
|
19878
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
19879
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
19880
|
+
# @return [Boolean]
|
|
19881
|
+
#
|
|
19541
19882
|
# @!attribute [rw] network_type
|
|
19542
19883
|
# The network type of the DB instance.
|
|
19543
19884
|
#
|
|
@@ -19555,14 +19896,12 @@ module Aws::RDS
|
|
|
19555
19896
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
19556
19897
|
# @return [String]
|
|
19557
19898
|
#
|
|
19558
|
-
# @!attribute [rw]
|
|
19559
|
-
# The
|
|
19560
|
-
#
|
|
19561
|
-
# This setting applies only to the `gp3` storage type.
|
|
19899
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
19900
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
19901
|
+
# Services Backup.
|
|
19562
19902
|
#
|
|
19563
|
-
# This setting doesn't apply to
|
|
19564
|
-
#
|
|
19565
|
-
# @return [Integer]
|
|
19903
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
|
19904
|
+
# @return [String]
|
|
19566
19905
|
#
|
|
19567
19906
|
# @!attribute [rw] manage_master_user_password
|
|
19568
19907
|
# Specifies whether to manage the master user password with Amazon Web
|
|
@@ -19656,6 +19995,29 @@ module Aws::RDS
|
|
|
19656
19995
|
# each Amazon Web Services Region.
|
|
19657
19996
|
# @return [String]
|
|
19658
19997
|
#
|
|
19998
|
+
# @!attribute [rw] multi_tenant
|
|
19999
|
+
# Specifies whether the to convert your DB instance from the
|
|
20000
|
+
# single-tenant configuration to the multi-tenant configuration. This
|
|
20001
|
+
# parameter is supported only for RDS for Oracle CDB instances.
|
|
20002
|
+
#
|
|
20003
|
+
# During the conversion, RDS creates an initial tenant database and
|
|
20004
|
+
# associates the DB name, master user name, character set, and
|
|
20005
|
+
# national character set metadata with this database. The tags
|
|
20006
|
+
# associated with the instance also propagate to the initial tenant
|
|
20007
|
+
# database. You can add more tenant databases to your DB instance by
|
|
20008
|
+
# using the `CreateTenantDatabase` operation.
|
|
20009
|
+
#
|
|
20010
|
+
# The conversion to the multi-tenant configuration is permanent and
|
|
20011
|
+
# irreversible, so you can't later convert back to the single-tenant
|
|
20012
|
+
# configuration. When you specify this parameter, you must also
|
|
20013
|
+
# specify `ApplyImmediately`.
|
|
20014
|
+
# @return [Boolean]
|
|
20015
|
+
#
|
|
20016
|
+
# @!attribute [rw] dedicated_log_volume
|
|
20017
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
20018
|
+
# enabled.
|
|
20019
|
+
# @return [Boolean]
|
|
20020
|
+
#
|
|
19659
20021
|
# @!attribute [rw] engine
|
|
19660
20022
|
# The target Oracle DB engine when you convert a non-CDB to a CDB.
|
|
19661
20023
|
# This intermediate step is necessary to upgrade an Oracle Database
|
|
@@ -19686,28 +20048,21 @@ module Aws::RDS
|
|
|
19686
20048
|
# `--option-group-name`.
|
|
19687
20049
|
# @return [String]
|
|
19688
20050
|
#
|
|
19689
|
-
# @!attribute [rw]
|
|
19690
|
-
#
|
|
19691
|
-
#
|
|
19692
|
-
#
|
|
20051
|
+
# @!attribute [rw] master_user_authentication_type
|
|
20052
|
+
# Specifies the authentication type for the master user. With IAM
|
|
20053
|
+
# master user authentication, you can change the master DB user to use
|
|
20054
|
+
# IAM database authentication.
|
|
19693
20055
|
#
|
|
19694
|
-
#
|
|
19695
|
-
# Specifies whether the to convert your DB instance from the
|
|
19696
|
-
# single-tenant configuration to the multi-tenant configuration. This
|
|
19697
|
-
# parameter is supported only for RDS for Oracle CDB instances.
|
|
20056
|
+
# You can specify one of the following values:
|
|
19698
20057
|
#
|
|
19699
|
-
#
|
|
19700
|
-
# associates the DB name, master user name, character set, and
|
|
19701
|
-
# national character set metadata with this database. The tags
|
|
19702
|
-
# associated with the instance also propagate to the initial tenant
|
|
19703
|
-
# database. You can add more tenant databases to your DB instance by
|
|
19704
|
-
# using the `CreateTenantDatabase` operation.
|
|
20058
|
+
# * `password` - Use standard database authentication with a password.
|
|
19705
20059
|
#
|
|
19706
|
-
#
|
|
19707
|
-
#
|
|
19708
|
-
#
|
|
19709
|
-
#
|
|
19710
|
-
#
|
|
20060
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
20061
|
+
# user.
|
|
20062
|
+
#
|
|
20063
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
20064
|
+
# PostgreSQL engines.
|
|
20065
|
+
# @return [String]
|
|
19711
20066
|
#
|
|
19712
20067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
|
19713
20068
|
#
|
|
@@ -19730,6 +20085,7 @@ module Aws::RDS
|
|
|
19730
20085
|
:auto_minor_version_upgrade,
|
|
19731
20086
|
:license_model,
|
|
19732
20087
|
:iops,
|
|
20088
|
+
:storage_throughput,
|
|
19733
20089
|
:option_group_name,
|
|
19734
20090
|
:new_db_instance_identifier,
|
|
19735
20091
|
:storage_type,
|
|
@@ -19741,13 +20097,13 @@ module Aws::RDS
|
|
|
19741
20097
|
:domain_ou,
|
|
19742
20098
|
:domain_auth_secret_arn,
|
|
19743
20099
|
:domain_dns_ips,
|
|
20100
|
+
:disable_domain,
|
|
19744
20101
|
:copy_tags_to_snapshot,
|
|
19745
20102
|
:monitoring_interval,
|
|
19746
20103
|
:db_port_number,
|
|
19747
20104
|
:publicly_accessible,
|
|
19748
20105
|
:monitoring_role_arn,
|
|
19749
20106
|
:domain_iam_role_name,
|
|
19750
|
-
:disable_domain,
|
|
19751
20107
|
:promotion_tier,
|
|
19752
20108
|
:enable_iam_database_authentication,
|
|
19753
20109
|
:database_insights_mode,
|
|
@@ -19761,19 +20117,19 @@ module Aws::RDS
|
|
|
19761
20117
|
:max_allocated_storage,
|
|
19762
20118
|
:certificate_rotation_restart,
|
|
19763
20119
|
:replica_mode,
|
|
19764
|
-
:enable_customer_owned_ip,
|
|
19765
|
-
:aws_backup_recovery_point_arn,
|
|
19766
20120
|
:automation_mode,
|
|
19767
20121
|
:resume_full_automation_mode_minutes,
|
|
20122
|
+
:enable_customer_owned_ip,
|
|
19768
20123
|
:network_type,
|
|
19769
|
-
:
|
|
20124
|
+
:aws_backup_recovery_point_arn,
|
|
19770
20125
|
:manage_master_user_password,
|
|
19771
20126
|
:rotate_master_user_password,
|
|
19772
20127
|
:master_user_secret_kms_key_id,
|
|
19773
|
-
:
|
|
20128
|
+
:multi_tenant,
|
|
19774
20129
|
:dedicated_log_volume,
|
|
19775
|
-
:
|
|
19776
|
-
|
|
20130
|
+
:engine,
|
|
20131
|
+
:master_user_authentication_type)
|
|
20132
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
19777
20133
|
include Aws::Structure
|
|
19778
20134
|
end
|
|
19779
20135
|
|
|
@@ -19903,6 +20259,14 @@ module Aws::RDS
|
|
|
19903
20259
|
# it can't end with a hyphen or contain two consecutive hyphens.
|
|
19904
20260
|
# @return [String]
|
|
19905
20261
|
#
|
|
20262
|
+
# @!attribute [rw] default_auth_scheme
|
|
20263
|
+
# The default authentication scheme that the proxy uses for client
|
|
20264
|
+
# connections to the proxy and connections from the proxy to the
|
|
20265
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
|
20266
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
|
20267
|
+
# connect to the database.
|
|
20268
|
+
# @return [String]
|
|
20269
|
+
#
|
|
19906
20270
|
# @!attribute [rw] auth
|
|
19907
20271
|
# The new authentication settings for the `DBProxy`.
|
|
19908
20272
|
# @return [Array<Types::UserAuthConfig>]
|
|
@@ -19921,14 +20285,12 @@ module Aws::RDS
|
|
|
19921
20285
|
# @return [Integer]
|
|
19922
20286
|
#
|
|
19923
20287
|
# @!attribute [rw] debug_logging
|
|
19924
|
-
#
|
|
19925
|
-
#
|
|
19926
|
-
#
|
|
19927
|
-
#
|
|
19928
|
-
#
|
|
19929
|
-
#
|
|
19930
|
-
# measures in place to safeguard any sensitive information that
|
|
19931
|
-
# appears in the logs.
|
|
20288
|
+
# Specifies whether the proxy logs detailed connection and query
|
|
20289
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
|
20290
|
+
# connection details and connection pool behavior from your queries.
|
|
20291
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
|
20292
|
+
# performance. Enable this option only when you need to troubleshoot
|
|
20293
|
+
# connection or performance issues.
|
|
19932
20294
|
# @return [Boolean]
|
|
19933
20295
|
#
|
|
19934
20296
|
# @!attribute [rw] role_arn
|
|
@@ -19945,6 +20307,7 @@ module Aws::RDS
|
|
|
19945
20307
|
class ModifyDBProxyRequest < Struct.new(
|
|
19946
20308
|
:db_proxy_name,
|
|
19947
20309
|
:new_db_proxy_name,
|
|
20310
|
+
:default_auth_scheme,
|
|
19948
20311
|
:auth,
|
|
19949
20312
|
:require_tls,
|
|
19950
20313
|
:idle_client_timeout,
|
|
@@ -20164,14 +20527,33 @@ module Aws::RDS
|
|
|
20164
20527
|
# The following are the database engines and engine versions that are
|
|
20165
20528
|
# available when you upgrade a DB snapshot.
|
|
20166
20529
|
#
|
|
20530
|
+
# **MariaDB**
|
|
20531
|
+
#
|
|
20532
|
+
# For the list of engine versions that are available for upgrading a
|
|
20533
|
+
# DB snapshot, see [ Upgrading a MariaDB DB snapshot engine
|
|
20534
|
+
# version][1] in the *Amazon RDS User Guide.*
|
|
20535
|
+
#
|
|
20167
20536
|
# **MySQL**
|
|
20168
20537
|
#
|
|
20169
20538
|
# For the list of engine versions that are available for upgrading a
|
|
20170
|
-
# DB snapshot, see [ Upgrading a MySQL DB snapshot engine version][
|
|
20539
|
+
# DB snapshot, see [ Upgrading a MySQL DB snapshot engine version][2]
|
|
20171
20540
|
# in the *Amazon RDS User Guide.*
|
|
20172
20541
|
#
|
|
20173
20542
|
# **Oracle**
|
|
20174
20543
|
#
|
|
20544
|
+
# * `21.0.0.0.ru-2025-04.rur-2025-04.r1` (supported for
|
|
20545
|
+
# 21.0.0.0.ru-2022-01.rur-2022-01.r1,
|
|
20546
|
+
# 21.0.0.0.ru-2022-04.rur-2022-04.r1,
|
|
20547
|
+
# 21.0.0.0.ru-2022-07.rur-2022-07.r1,
|
|
20548
|
+
# 21.0.0.0.ru-2022-10.rur-2022-10.r1,
|
|
20549
|
+
# 21.0.0.0.ru-2023-01.rur-2023-01.r1 and
|
|
20550
|
+
# 21.0.0.0.ru-2023-01.rur-2023-01.r2 DB snapshots)
|
|
20551
|
+
#
|
|
20552
|
+
# * `19.0.0.0.ru-2025-04.rur-2025-04.r1` (supported for
|
|
20553
|
+
# 19.0.0.0.ru-2019-07.rur-2019-07.r1,
|
|
20554
|
+
# 19.0.0.0.ru-2019-10.rur-2019-10.r1 and
|
|
20555
|
+
# 0.0.0.ru-2020-01.rur-2020-01.r1 DB snapshots)
|
|
20556
|
+
#
|
|
20175
20557
|
# * `19.0.0.0.ru-2022-01.rur-2022-01.r1` (supported for 12.2.0.1 DB
|
|
20176
20558
|
# snapshots)
|
|
20177
20559
|
#
|
|
@@ -20188,12 +20570,13 @@ module Aws::RDS
|
|
|
20188
20570
|
#
|
|
20189
20571
|
# For the list of engine versions that are available for upgrading a
|
|
20190
20572
|
# DB snapshot, see [ Upgrading a PostgreSQL DB snapshot engine
|
|
20191
|
-
# version][
|
|
20573
|
+
# version][3] in the *Amazon RDS User Guide.*
|
|
20192
20574
|
#
|
|
20193
20575
|
#
|
|
20194
20576
|
#
|
|
20195
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
20196
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
20577
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mariadb-upgrade-snapshot.html
|
|
20578
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-upgrade-snapshot.html
|
|
20579
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBSnapshot.PostgreSQL.html
|
|
20197
20580
|
# @return [String]
|
|
20198
20581
|
#
|
|
20199
20582
|
# @!attribute [rw] option_group_name
|
|
@@ -21164,7 +21547,7 @@ module Aws::RDS
|
|
|
21164
21547
|
:allowed_values,
|
|
21165
21548
|
:is_modifiable,
|
|
21166
21549
|
:is_collection)
|
|
21167
|
-
SENSITIVE = []
|
|
21550
|
+
SENSITIVE = [:value]
|
|
21168
21551
|
include Aws::Structure
|
|
21169
21552
|
end
|
|
21170
21553
|
|
|
@@ -21241,6 +21624,10 @@ module Aws::RDS
|
|
|
21241
21624
|
# Indicates whether a DB instance supports provisioned IOPS.
|
|
21242
21625
|
# @return [Boolean]
|
|
21243
21626
|
#
|
|
21627
|
+
# @!attribute [rw] supports_storage_throughput
|
|
21628
|
+
# Indicates whether a DB instance supports storage throughput.
|
|
21629
|
+
# @return [Boolean]
|
|
21630
|
+
#
|
|
21244
21631
|
# @!attribute [rw] supports_enhanced_monitoring
|
|
21245
21632
|
# Indicates whether a DB instance supports Enhanced Monitoring at
|
|
21246
21633
|
# intervals from 1 to 60 seconds.
|
|
@@ -21279,6 +21666,24 @@ module Aws::RDS
|
|
|
21279
21666
|
# Maximum provisioned IOPS per GiB for a DB instance.
|
|
21280
21667
|
# @return [Float]
|
|
21281
21668
|
#
|
|
21669
|
+
# @!attribute [rw] min_storage_throughput_per_db_instance
|
|
21670
|
+
# Minimum storage throughput for a DB instance.
|
|
21671
|
+
# @return [Integer]
|
|
21672
|
+
#
|
|
21673
|
+
# @!attribute [rw] max_storage_throughput_per_db_instance
|
|
21674
|
+
# Maximum storage throughput for a DB instance.
|
|
21675
|
+
# @return [Integer]
|
|
21676
|
+
#
|
|
21677
|
+
# @!attribute [rw] min_storage_throughput_per_iops
|
|
21678
|
+
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
|
21679
|
+
# instance.
|
|
21680
|
+
# @return [Float]
|
|
21681
|
+
#
|
|
21682
|
+
# @!attribute [rw] max_storage_throughput_per_iops
|
|
21683
|
+
# Maximum storage throughput to provisioned IOPS ratio for a DB
|
|
21684
|
+
# instance.
|
|
21685
|
+
# @return [Float]
|
|
21686
|
+
#
|
|
21282
21687
|
# @!attribute [rw] available_processor_features
|
|
21283
21688
|
# A list of the available processor features for the DB instance class
|
|
21284
21689
|
# of a DB instance.
|
|
@@ -21320,19 +21725,6 @@ module Aws::RDS
|
|
|
21320
21725
|
# specific combination of other DB engine attributes.
|
|
21321
21726
|
# @return [Boolean]
|
|
21322
21727
|
#
|
|
21323
|
-
# @!attribute [rw] supports_clusters
|
|
21324
|
-
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
|
21325
|
-
# cluster.
|
|
21326
|
-
#
|
|
21327
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
21328
|
-
# deployments with two readable standby DB instances][1] in the
|
|
21329
|
-
# *Amazon RDS User Guide.*
|
|
21330
|
-
#
|
|
21331
|
-
#
|
|
21332
|
-
#
|
|
21333
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
|
21334
|
-
# @return [Boolean]
|
|
21335
|
-
#
|
|
21336
21728
|
# @!attribute [rw] supported_network_types
|
|
21337
21729
|
# The network types supported by the DB instance (`IPV4` or `DUAL`).
|
|
21338
21730
|
#
|
|
@@ -21347,33 +21739,28 @@ module Aws::RDS
|
|
|
21347
21739
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
21348
21740
|
# @return [Array<String>]
|
|
21349
21741
|
#
|
|
21350
|
-
# @!attribute [rw]
|
|
21351
|
-
# Indicates whether
|
|
21352
|
-
#
|
|
21742
|
+
# @!attribute [rw] supports_clusters
|
|
21743
|
+
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
|
21744
|
+
# cluster.
|
|
21353
21745
|
#
|
|
21354
|
-
#
|
|
21355
|
-
#
|
|
21356
|
-
#
|
|
21746
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
21747
|
+
# deployments with two readable standby DB instances][1] in the
|
|
21748
|
+
# *Amazon RDS User Guide.*
|
|
21357
21749
|
#
|
|
21358
|
-
# @!attribute [rw] max_storage_throughput_per_db_instance
|
|
21359
|
-
# Maximum storage throughput for a DB instance.
|
|
21360
|
-
# @return [Integer]
|
|
21361
21750
|
#
|
|
21362
|
-
# @!attribute [rw] min_storage_throughput_per_iops
|
|
21363
|
-
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
|
21364
|
-
# instance.
|
|
21365
|
-
# @return [Float]
|
|
21366
21751
|
#
|
|
21367
|
-
#
|
|
21368
|
-
#
|
|
21369
|
-
# instance.
|
|
21370
|
-
# @return [Float]
|
|
21752
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
|
21753
|
+
# @return [Boolean]
|
|
21371
21754
|
#
|
|
21372
21755
|
# @!attribute [rw] supports_dedicated_log_volume
|
|
21373
21756
|
# Indicates whether a DB instance supports using a dedicated log
|
|
21374
21757
|
# volume (DLV).
|
|
21375
21758
|
# @return [Boolean]
|
|
21376
21759
|
#
|
|
21760
|
+
# @!attribute [rw] supports_http_endpoint
|
|
21761
|
+
# Indicates whether a DB instance supports HTTP endpoints.
|
|
21762
|
+
# @return [Boolean]
|
|
21763
|
+
#
|
|
21377
21764
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
|
21378
21765
|
#
|
|
21379
21766
|
class OrderableDBInstanceOption < Struct.new(
|
|
@@ -21389,6 +21776,7 @@ module Aws::RDS
|
|
|
21389
21776
|
:supports_storage_encryption,
|
|
21390
21777
|
:storage_type,
|
|
21391
21778
|
:supports_iops,
|
|
21779
|
+
:supports_storage_throughput,
|
|
21392
21780
|
:supports_enhanced_monitoring,
|
|
21393
21781
|
:supports_iam_database_authentication,
|
|
21394
21782
|
:supports_performance_insights,
|
|
@@ -21398,6 +21786,10 @@ module Aws::RDS
|
|
|
21398
21786
|
:max_iops_per_db_instance,
|
|
21399
21787
|
:min_iops_per_gib,
|
|
21400
21788
|
:max_iops_per_gib,
|
|
21789
|
+
:min_storage_throughput_per_db_instance,
|
|
21790
|
+
:max_storage_throughput_per_db_instance,
|
|
21791
|
+
:min_storage_throughput_per_iops,
|
|
21792
|
+
:max_storage_throughput_per_iops,
|
|
21401
21793
|
:available_processor_features,
|
|
21402
21794
|
:supported_engine_modes,
|
|
21403
21795
|
:supports_storage_autoscaling,
|
|
@@ -21405,14 +21797,10 @@ module Aws::RDS
|
|
|
21405
21797
|
:outpost_capable,
|
|
21406
21798
|
:supported_activity_stream_modes,
|
|
21407
21799
|
:supports_global_databases,
|
|
21408
|
-
:supports_clusters,
|
|
21409
21800
|
:supported_network_types,
|
|
21410
|
-
:
|
|
21411
|
-
:
|
|
21412
|
-
:
|
|
21413
|
-
:min_storage_throughput_per_iops,
|
|
21414
|
-
:max_storage_throughput_per_iops,
|
|
21415
|
-
:supports_dedicated_log_volume)
|
|
21801
|
+
:supports_clusters,
|
|
21802
|
+
:supports_dedicated_log_volume,
|
|
21803
|
+
:supports_http_endpoint)
|
|
21416
21804
|
SENSITIVE = []
|
|
21417
21805
|
include Aws::Structure
|
|
21418
21806
|
end
|
|
@@ -21702,6 +22090,10 @@ module Aws::RDS
|
|
|
21702
22090
|
# The Provisioned IOPS value for the DB instance.
|
|
21703
22091
|
# @return [Integer]
|
|
21704
22092
|
#
|
|
22093
|
+
# @!attribute [rw] storage_throughput
|
|
22094
|
+
# The storage throughput of the DB instance.
|
|
22095
|
+
# @return [Integer]
|
|
22096
|
+
#
|
|
21705
22097
|
# @!attribute [rw] db_instance_identifier
|
|
21706
22098
|
# The database identifier for the DB instance.
|
|
21707
22099
|
# @return [String]
|
|
@@ -21739,11 +22131,6 @@ module Aws::RDS
|
|
|
21739
22131
|
# DB instance class of the DB instance.
|
|
21740
22132
|
# @return [Array<Types::ProcessorFeature>]
|
|
21741
22133
|
#
|
|
21742
|
-
# @!attribute [rw] iam_database_authentication_enabled
|
|
21743
|
-
# Indicates whether mapping of Amazon Web Services Identity and Access
|
|
21744
|
-
# Management (IAM) accounts to database accounts is enabled.
|
|
21745
|
-
# @return [Boolean]
|
|
21746
|
-
#
|
|
21747
22134
|
# @!attribute [rw] automation_mode
|
|
21748
22135
|
# The automation mode of the RDS Custom DB instance: `full` or
|
|
21749
22136
|
# `all-paused`. If `full`, the DB instance automates monitoring and
|
|
@@ -21757,23 +22144,24 @@ module Aws::RDS
|
|
|
21757
22144
|
# (default). The maximum value is 1,440.
|
|
21758
22145
|
# @return [Time]
|
|
21759
22146
|
#
|
|
21760
|
-
# @!attribute [rw]
|
|
21761
|
-
#
|
|
21762
|
-
#
|
|
22147
|
+
# @!attribute [rw] multi_tenant
|
|
22148
|
+
# Indicates whether the DB instance will change to the multi-tenant
|
|
22149
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
|
22150
|
+
# @return [Boolean]
|
|
21763
22151
|
#
|
|
21764
|
-
# @!attribute [rw]
|
|
21765
|
-
#
|
|
21766
|
-
#
|
|
22152
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
|
22153
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
|
22154
|
+
# Management (IAM) accounts to database accounts is enabled.
|
|
22155
|
+
# @return [Boolean]
|
|
21767
22156
|
#
|
|
21768
22157
|
# @!attribute [rw] dedicated_log_volume
|
|
21769
22158
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
21770
22159
|
# enabled.>
|
|
21771
22160
|
# @return [Boolean]
|
|
21772
22161
|
#
|
|
21773
|
-
# @!attribute [rw]
|
|
21774
|
-
#
|
|
21775
|
-
#
|
|
21776
|
-
# @return [Boolean]
|
|
22162
|
+
# @!attribute [rw] engine
|
|
22163
|
+
# The database engine of the DB instance.
|
|
22164
|
+
# @return [String]
|
|
21777
22165
|
#
|
|
21778
22166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
|
21779
22167
|
#
|
|
@@ -21787,20 +22175,20 @@ module Aws::RDS
|
|
|
21787
22175
|
:engine_version,
|
|
21788
22176
|
:license_model,
|
|
21789
22177
|
:iops,
|
|
22178
|
+
:storage_throughput,
|
|
21790
22179
|
:db_instance_identifier,
|
|
21791
22180
|
:storage_type,
|
|
21792
22181
|
:ca_certificate_identifier,
|
|
21793
22182
|
:db_subnet_group_name,
|
|
21794
22183
|
:pending_cloudwatch_logs_exports,
|
|
21795
22184
|
:processor_features,
|
|
21796
|
-
:iam_database_authentication_enabled,
|
|
21797
22185
|
:automation_mode,
|
|
21798
22186
|
:resume_full_automation_mode_time,
|
|
21799
|
-
:
|
|
21800
|
-
:
|
|
22187
|
+
:multi_tenant,
|
|
22188
|
+
:iam_database_authentication_enabled,
|
|
21801
22189
|
:dedicated_log_volume,
|
|
21802
|
-
:
|
|
21803
|
-
SENSITIVE = []
|
|
22190
|
+
:engine)
|
|
22191
|
+
SENSITIVE = [:master_user_password]
|
|
21804
22192
|
include Aws::Structure
|
|
21805
22193
|
end
|
|
21806
22194
|
|
|
@@ -23390,17 +23778,15 @@ module Aws::RDS
|
|
|
23390
23778
|
# the Directory Service.
|
|
23391
23779
|
# @return [String]
|
|
23392
23780
|
#
|
|
23393
|
-
# @!attribute [rw]
|
|
23394
|
-
#
|
|
23395
|
-
# cluster.
|
|
23396
|
-
#
|
|
23397
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
23398
|
-
# the *Amazon Aurora User Guide*.
|
|
23781
|
+
# @!attribute [rw] storage_type
|
|
23782
|
+
# Specifies the storage type to be associated with the DB cluster.
|
|
23399
23783
|
#
|
|
23784
|
+
# Valid Values: `aurora`, `aurora-iopt1`
|
|
23400
23785
|
#
|
|
23786
|
+
# Default: `aurora`
|
|
23401
23787
|
#
|
|
23402
|
-
#
|
|
23403
|
-
# @return [
|
|
23788
|
+
# Valid for: Aurora DB clusters only
|
|
23789
|
+
# @return [String]
|
|
23404
23790
|
#
|
|
23405
23791
|
# @!attribute [rw] network_type
|
|
23406
23792
|
# The network type of the DB cluster.
|
|
@@ -23423,6 +23809,18 @@ module Aws::RDS
|
|
|
23423
23809
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
23424
23810
|
# @return [String]
|
|
23425
23811
|
#
|
|
23812
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
23813
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
23814
|
+
# cluster.
|
|
23815
|
+
#
|
|
23816
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
23817
|
+
# the *Amazon Aurora User Guide*.
|
|
23818
|
+
#
|
|
23819
|
+
#
|
|
23820
|
+
#
|
|
23821
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
23822
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
23823
|
+
#
|
|
23426
23824
|
# @!attribute [rw] manage_master_user_password
|
|
23427
23825
|
# Specifies whether to manage the master user password with Amazon Web
|
|
23428
23826
|
# Services Secrets Manager.
|
|
@@ -23469,16 +23867,6 @@ module Aws::RDS
|
|
|
23469
23867
|
# each Amazon Web Services Region.
|
|
23470
23868
|
# @return [String]
|
|
23471
23869
|
#
|
|
23472
|
-
# @!attribute [rw] storage_type
|
|
23473
|
-
# Specifies the storage type to be associated with the DB cluster.
|
|
23474
|
-
#
|
|
23475
|
-
# Valid Values: `aurora`, `aurora-iopt1`
|
|
23476
|
-
#
|
|
23477
|
-
# Default: `aurora`
|
|
23478
|
-
#
|
|
23479
|
-
# Valid for: Aurora DB clusters only
|
|
23480
|
-
# @return [String]
|
|
23481
|
-
#
|
|
23482
23870
|
# @!attribute [rw] engine_lifecycle_support
|
|
23483
23871
|
# The life cycle type for this DB cluster.
|
|
23484
23872
|
#
|
|
@@ -23552,13 +23940,13 @@ module Aws::RDS
|
|
|
23552
23940
|
:copy_tags_to_snapshot,
|
|
23553
23941
|
:domain,
|
|
23554
23942
|
:domain_iam_role_name,
|
|
23555
|
-
:
|
|
23943
|
+
:storage_type,
|
|
23556
23944
|
:network_type,
|
|
23945
|
+
:serverless_v2_scaling_configuration,
|
|
23557
23946
|
:manage_master_user_password,
|
|
23558
23947
|
:master_user_secret_kms_key_id,
|
|
23559
|
-
:storage_type,
|
|
23560
23948
|
:engine_lifecycle_support)
|
|
23561
|
-
SENSITIVE = []
|
|
23949
|
+
SENSITIVE = [:master_user_password]
|
|
23562
23950
|
include Aws::Structure
|
|
23563
23951
|
end
|
|
23564
23952
|
|
|
@@ -24022,18 +24410,6 @@ module Aws::RDS
|
|
|
24022
24410
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
24023
24411
|
# @return [Boolean]
|
|
24024
24412
|
#
|
|
24025
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
24026
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
24027
|
-
# cluster.
|
|
24028
|
-
#
|
|
24029
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
24030
|
-
# the *Amazon Aurora User Guide*.
|
|
24031
|
-
#
|
|
24032
|
-
#
|
|
24033
|
-
#
|
|
24034
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
24035
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
24036
|
-
#
|
|
24037
24413
|
# @!attribute [rw] network_type
|
|
24038
24414
|
# The network type of the DB cluster.
|
|
24039
24415
|
#
|
|
@@ -24057,6 +24433,18 @@ module Aws::RDS
|
|
|
24057
24433
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
24058
24434
|
# @return [String]
|
|
24059
24435
|
#
|
|
24436
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
24437
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
24438
|
+
# cluster.
|
|
24439
|
+
#
|
|
24440
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
24441
|
+
# the *Amazon Aurora User Guide*.
|
|
24442
|
+
#
|
|
24443
|
+
#
|
|
24444
|
+
#
|
|
24445
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
24446
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
24447
|
+
#
|
|
24060
24448
|
# @!attribute [rw] rds_custom_cluster_configuration
|
|
24061
24449
|
# Reserved for future use.
|
|
24062
24450
|
# @return [Types::RdsCustomClusterConfiguration]
|
|
@@ -24189,8 +24577,8 @@ module Aws::RDS
|
|
|
24189
24577
|
:storage_type,
|
|
24190
24578
|
:iops,
|
|
24191
24579
|
:publicly_accessible,
|
|
24192
|
-
:serverless_v2_scaling_configuration,
|
|
24193
24580
|
:network_type,
|
|
24581
|
+
:serverless_v2_scaling_configuration,
|
|
24194
24582
|
:rds_custom_cluster_configuration,
|
|
24195
24583
|
:monitoring_interval,
|
|
24196
24584
|
:monitoring_role_arn,
|
|
@@ -24529,26 +24917,6 @@ module Aws::RDS
|
|
|
24529
24917
|
# Valid for: Aurora DB clusters only
|
|
24530
24918
|
# @return [String]
|
|
24531
24919
|
#
|
|
24532
|
-
# @!attribute [rw] scaling_configuration
|
|
24533
|
-
# For DB clusters in `serverless` DB engine mode, the scaling
|
|
24534
|
-
# properties of the DB cluster.
|
|
24535
|
-
#
|
|
24536
|
-
# Valid for: Aurora DB clusters only
|
|
24537
|
-
# @return [Types::ScalingConfiguration]
|
|
24538
|
-
#
|
|
24539
|
-
# @!attribute [rw] engine_mode
|
|
24540
|
-
# The engine mode of the new cluster. Specify `provisioned` or
|
|
24541
|
-
# `serverless`, depending on the type of the cluster you are creating.
|
|
24542
|
-
# You can create an Aurora Serverless v1 clone from a provisioned
|
|
24543
|
-
# cluster, or a provisioned clone from an Aurora Serverless v1
|
|
24544
|
-
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
|
24545
|
-
# the original cluster must be an Aurora Serverless v1 cluster or an
|
|
24546
|
-
# encrypted provisioned cluster. To create a full copy that is an
|
|
24547
|
-
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
|
24548
|
-
#
|
|
24549
|
-
# Valid for: Aurora DB clusters only
|
|
24550
|
-
# @return [String]
|
|
24551
|
-
#
|
|
24552
24920
|
# @!attribute [rw] db_cluster_instance_class
|
|
24553
24921
|
# The compute and memory capacity of the each DB instance in the
|
|
24554
24922
|
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
|
@@ -24635,18 +25003,6 @@ module Aws::RDS
|
|
|
24635
25003
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
|
24636
25004
|
# @return [Integer]
|
|
24637
25005
|
#
|
|
24638
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
24639
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
24640
|
-
# cluster.
|
|
24641
|
-
#
|
|
24642
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
24643
|
-
# the *Amazon Aurora User Guide*.
|
|
24644
|
-
#
|
|
24645
|
-
#
|
|
24646
|
-
#
|
|
24647
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
24648
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
24649
|
-
#
|
|
24650
25006
|
# @!attribute [rw] network_type
|
|
24651
25007
|
# The network type of the DB cluster.
|
|
24652
25008
|
#
|
|
@@ -24656,22 +25012,54 @@ module Aws::RDS
|
|
|
24656
25012
|
#
|
|
24657
25013
|
# * `DUAL`
|
|
24658
25014
|
#
|
|
24659
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
24660
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
24661
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
25015
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
25016
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
25017
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
25018
|
+
#
|
|
25019
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
25020
|
+
# in the *Amazon Aurora User Guide.*
|
|
25021
|
+
#
|
|
25022
|
+
# Valid for: Aurora DB clusters only
|
|
25023
|
+
#
|
|
25024
|
+
#
|
|
25025
|
+
#
|
|
25026
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
25027
|
+
# @return [String]
|
|
25028
|
+
#
|
|
25029
|
+
# @!attribute [rw] source_db_cluster_resource_id
|
|
25030
|
+
# The resource ID of the source DB cluster from which to restore.
|
|
25031
|
+
# @return [String]
|
|
25032
|
+
#
|
|
25033
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
25034
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
25035
|
+
# cluster.
|
|
25036
|
+
#
|
|
25037
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
25038
|
+
# the *Amazon Aurora User Guide*.
|
|
25039
|
+
#
|
|
24662
25040
|
#
|
|
24663
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
24664
|
-
# in the *Amazon Aurora User Guide.*
|
|
24665
25041
|
#
|
|
24666
|
-
#
|
|
25042
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
25043
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
24667
25044
|
#
|
|
25045
|
+
# @!attribute [rw] scaling_configuration
|
|
25046
|
+
# For DB clusters in `serverless` DB engine mode, the scaling
|
|
25047
|
+
# properties of the DB cluster.
|
|
24668
25048
|
#
|
|
25049
|
+
# Valid for: Aurora DB clusters only
|
|
25050
|
+
# @return [Types::ScalingConfiguration]
|
|
24669
25051
|
#
|
|
24670
|
-
#
|
|
24671
|
-
#
|
|
25052
|
+
# @!attribute [rw] engine_mode
|
|
25053
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
|
25054
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
|
25055
|
+
# You can create an Aurora Serverless v1 clone from a provisioned
|
|
25056
|
+
# cluster, or a provisioned clone from an Aurora Serverless v1
|
|
25057
|
+
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
|
25058
|
+
# the original cluster must be an Aurora Serverless v1 cluster or an
|
|
25059
|
+
# encrypted provisioned cluster. To create a full copy that is an
|
|
25060
|
+
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
|
24672
25061
|
#
|
|
24673
|
-
#
|
|
24674
|
-
# The resource ID of the source DB cluster from which to restore.
|
|
25062
|
+
# Valid for: Aurora DB clusters only
|
|
24675
25063
|
# @return [String]
|
|
24676
25064
|
#
|
|
24677
25065
|
# @!attribute [rw] rds_custom_cluster_configuration
|
|
@@ -24799,15 +25187,15 @@ module Aws::RDS
|
|
|
24799
25187
|
:copy_tags_to_snapshot,
|
|
24800
25188
|
:domain,
|
|
24801
25189
|
:domain_iam_role_name,
|
|
24802
|
-
:scaling_configuration,
|
|
24803
|
-
:engine_mode,
|
|
24804
25190
|
:db_cluster_instance_class,
|
|
24805
25191
|
:storage_type,
|
|
24806
25192
|
:publicly_accessible,
|
|
24807
25193
|
:iops,
|
|
24808
|
-
:serverless_v2_scaling_configuration,
|
|
24809
25194
|
:network_type,
|
|
24810
25195
|
:source_db_cluster_resource_id,
|
|
25196
|
+
:serverless_v2_scaling_configuration,
|
|
25197
|
+
:scaling_configuration,
|
|
25198
|
+
:engine_mode,
|
|
24811
25199
|
:rds_custom_cluster_configuration,
|
|
24812
25200
|
:monitoring_interval,
|
|
24813
25201
|
:monitoring_role_arn,
|
|
@@ -24980,7 +25368,7 @@ module Aws::RDS
|
|
|
24980
25368
|
# License model information for the restored DB instance.
|
|
24981
25369
|
#
|
|
24982
25370
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
|
24983
|
-
#
|
|
25371
|
+
# bring your own license (BYOL) model requires a custom parameter
|
|
24984
25372
|
# group and an Amazon Web Services License Manager self-managed
|
|
24985
25373
|
# license. The Db2 license through Amazon Web Services Marketplace
|
|
24986
25374
|
# model requires an Amazon Web Services Marketplace subscription. For
|
|
@@ -25080,6 +25468,12 @@ module Aws::RDS
|
|
|
25080
25468
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
|
25081
25469
|
# @return [Integer]
|
|
25082
25470
|
#
|
|
25471
|
+
# @!attribute [rw] storage_throughput
|
|
25472
|
+
# Specifies the storage throughput value for the DB instance.
|
|
25473
|
+
#
|
|
25474
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
25475
|
+
# @return [Integer]
|
|
25476
|
+
#
|
|
25083
25477
|
# @!attribute [rw] option_group_name
|
|
25084
25478
|
# The name of the option group to be used for the restored DB
|
|
25085
25479
|
# instance.
|
|
@@ -25336,35 +25730,34 @@ module Aws::RDS
|
|
|
25336
25730
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
25337
25731
|
# @return [Boolean]
|
|
25338
25732
|
#
|
|
25339
|
-
# @!attribute [rw]
|
|
25340
|
-
# The
|
|
25341
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
|
25342
|
-
# meet the following requirements:
|
|
25733
|
+
# @!attribute [rw] network_type
|
|
25734
|
+
# The network type of the DB instance.
|
|
25343
25735
|
#
|
|
25344
|
-
#
|
|
25736
|
+
# Valid Values:
|
|
25345
25737
|
#
|
|
25346
|
-
# *
|
|
25347
|
-
# to assume.
|
|
25738
|
+
# * `IPV4`
|
|
25348
25739
|
#
|
|
25349
|
-
# *
|
|
25350
|
-
# start with the prefix `AWSRDSCustom`.
|
|
25740
|
+
# * `DUAL`
|
|
25351
25741
|
#
|
|
25352
|
-
#
|
|
25353
|
-
#
|
|
25742
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
25743
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
25744
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
25354
25745
|
#
|
|
25355
|
-
#
|
|
25746
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
25747
|
+
# in the *Amazon RDS User Guide.*
|
|
25356
25748
|
#
|
|
25357
25749
|
#
|
|
25358
25750
|
#
|
|
25359
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
25751
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
25360
25752
|
# @return [String]
|
|
25361
25753
|
#
|
|
25362
25754
|
# @!attribute [rw] backup_target
|
|
25363
25755
|
# Specifies where automated backups and manual snapshots are stored
|
|
25364
25756
|
# for the restored DB instance.
|
|
25365
25757
|
#
|
|
25366
|
-
# Possible values are `
|
|
25367
|
-
#
|
|
25758
|
+
# Possible values are `local` (Dedicated Local Zone), `outposts`
|
|
25759
|
+
# (Amazon Web Services Outposts), and `region` (Amazon Web Services
|
|
25760
|
+
# Region). The default is `region`.
|
|
25368
25761
|
#
|
|
25369
25762
|
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
25370
25763
|
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
@@ -25374,31 +25767,41 @@ module Aws::RDS
|
|
|
25374
25767
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
25375
25768
|
# @return [String]
|
|
25376
25769
|
#
|
|
25377
|
-
# @!attribute [rw]
|
|
25378
|
-
# The
|
|
25770
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
25771
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
25772
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
|
25773
|
+
# meet the following requirements:
|
|
25379
25774
|
#
|
|
25380
|
-
#
|
|
25775
|
+
# * The profile must exist in your account.
|
|
25381
25776
|
#
|
|
25382
|
-
# *
|
|
25777
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
25778
|
+
# to assume.
|
|
25383
25779
|
#
|
|
25384
|
-
# *
|
|
25780
|
+
# * The instance profile name and the associated IAM role name must
|
|
25781
|
+
# start with the prefix `AWSRDSCustom`.
|
|
25385
25782
|
#
|
|
25386
|
-
#
|
|
25387
|
-
#
|
|
25388
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
25783
|
+
# For the list of permissions required for the IAM role, see [
|
|
25784
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
25389
25785
|
#
|
|
25390
|
-
#
|
|
25391
|
-
# in the *Amazon RDS User Guide.*
|
|
25786
|
+
# This setting is required for RDS Custom.
|
|
25392
25787
|
#
|
|
25393
25788
|
#
|
|
25394
25789
|
#
|
|
25395
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
25790
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
25396
25791
|
# @return [String]
|
|
25397
25792
|
#
|
|
25398
|
-
# @!attribute [rw]
|
|
25399
|
-
#
|
|
25793
|
+
# @!attribute [rw] allocated_storage
|
|
25794
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
|
25795
|
+
# DB instance. Follow the allocation rules specified in
|
|
25796
|
+
# CreateDBInstance.
|
|
25400
25797
|
#
|
|
25401
|
-
# This setting
|
|
25798
|
+
# This setting isn't valid for RDS for SQL Server.
|
|
25799
|
+
#
|
|
25800
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
25801
|
+
# the restore operation can succeed. You can also allocate additional
|
|
25802
|
+
# storage for future growth.
|
|
25803
|
+
#
|
|
25804
|
+
# </note>
|
|
25402
25805
|
# @return [Integer]
|
|
25403
25806
|
#
|
|
25404
25807
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
|
@@ -25427,20 +25830,6 @@ module Aws::RDS
|
|
|
25427
25830
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
|
25428
25831
|
# @return [String]
|
|
25429
25832
|
#
|
|
25430
|
-
# @!attribute [rw] allocated_storage
|
|
25431
|
-
# The amount of storage (in gibibytes) to allocate initially for the
|
|
25432
|
-
# DB instance. Follow the allocation rules specified in
|
|
25433
|
-
# CreateDBInstance.
|
|
25434
|
-
#
|
|
25435
|
-
# This setting isn't valid for RDS for SQL Server.
|
|
25436
|
-
#
|
|
25437
|
-
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
25438
|
-
# the restore operation can succeed. You can also allocate additional
|
|
25439
|
-
# storage for future growth.
|
|
25440
|
-
#
|
|
25441
|
-
# </note>
|
|
25442
|
-
# @return [Integer]
|
|
25443
|
-
#
|
|
25444
25833
|
# @!attribute [rw] dedicated_log_volume
|
|
25445
25834
|
# Specifies whether to enable a dedicated log volume (DLV) for the DB
|
|
25446
25835
|
# instance.
|
|
@@ -25556,6 +25945,7 @@ module Aws::RDS
|
|
|
25556
25945
|
:db_name,
|
|
25557
25946
|
:engine,
|
|
25558
25947
|
:iops,
|
|
25948
|
+
:storage_throughput,
|
|
25559
25949
|
:option_group_name,
|
|
25560
25950
|
:tags,
|
|
25561
25951
|
:storage_type,
|
|
@@ -25576,18 +25966,17 @@ module Aws::RDS
|
|
|
25576
25966
|
:db_parameter_group_name,
|
|
25577
25967
|
:deletion_protection,
|
|
25578
25968
|
:enable_customer_owned_ip,
|
|
25579
|
-
:custom_iam_instance_profile,
|
|
25580
|
-
:backup_target,
|
|
25581
25969
|
:network_type,
|
|
25582
|
-
:
|
|
25583
|
-
:
|
|
25970
|
+
:backup_target,
|
|
25971
|
+
:custom_iam_instance_profile,
|
|
25584
25972
|
:allocated_storage,
|
|
25973
|
+
:db_cluster_snapshot_identifier,
|
|
25585
25974
|
:dedicated_log_volume,
|
|
25586
25975
|
:ca_certificate_identifier,
|
|
25587
25976
|
:engine_lifecycle_support,
|
|
25588
25977
|
:manage_master_user_password,
|
|
25589
25978
|
:master_user_secret_kms_key_id)
|
|
25590
|
-
SENSITIVE = []
|
|
25979
|
+
SENSITIVE = [:tde_credential_password]
|
|
25591
25980
|
include Aws::Structure
|
|
25592
25981
|
end
|
|
25593
25982
|
|
|
@@ -25853,6 +26242,12 @@ module Aws::RDS
|
|
|
25853
26242
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
|
25854
26243
|
# @return [Integer]
|
|
25855
26244
|
#
|
|
26245
|
+
# @!attribute [rw] storage_throughput
|
|
26246
|
+
# Specifies the storage throughput value for the DB instance.
|
|
26247
|
+
#
|
|
26248
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
26249
|
+
# @return [Integer]
|
|
26250
|
+
#
|
|
25856
26251
|
# @!attribute [rw] option_group_name
|
|
25857
26252
|
# The name of the option group to associate with this DB instance. If
|
|
25858
26253
|
# this argument is omitted, the default option group for the specified
|
|
@@ -26125,12 +26520,6 @@ module Aws::RDS
|
|
|
26125
26520
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
26126
26521
|
# @return [String]
|
|
26127
26522
|
#
|
|
26128
|
-
# @!attribute [rw] storage_throughput
|
|
26129
|
-
# Specifies the storage throughput value for the DB instance.
|
|
26130
|
-
#
|
|
26131
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
26132
|
-
# @return [Integer]
|
|
26133
|
-
#
|
|
26134
26523
|
# @!attribute [rw] manage_master_user_password
|
|
26135
26524
|
# Specifies whether to manage the master user password with Amazon Web
|
|
26136
26525
|
# Services Secrets Manager.
|
|
@@ -26255,6 +26644,7 @@ module Aws::RDS
|
|
|
26255
26644
|
:auto_minor_version_upgrade,
|
|
26256
26645
|
:license_model,
|
|
26257
26646
|
:iops,
|
|
26647
|
+
:storage_throughput,
|
|
26258
26648
|
:option_group_name,
|
|
26259
26649
|
:publicly_accessible,
|
|
26260
26650
|
:tags,
|
|
@@ -26280,13 +26670,12 @@ module Aws::RDS
|
|
|
26280
26670
|
:deletion_protection,
|
|
26281
26671
|
:max_allocated_storage,
|
|
26282
26672
|
:network_type,
|
|
26283
|
-
:storage_throughput,
|
|
26284
26673
|
:manage_master_user_password,
|
|
26285
26674
|
:master_user_secret_kms_key_id,
|
|
26286
26675
|
:dedicated_log_volume,
|
|
26287
26676
|
:ca_certificate_identifier,
|
|
26288
26677
|
:engine_lifecycle_support)
|
|
26289
|
-
SENSITIVE = []
|
|
26678
|
+
SENSITIVE = [:master_user_password]
|
|
26290
26679
|
include Aws::Structure
|
|
26291
26680
|
end
|
|
26292
26681
|
|
|
@@ -26460,7 +26849,7 @@ module Aws::RDS
|
|
|
26460
26849
|
# The license model information for the restored DB instance.
|
|
26461
26850
|
#
|
|
26462
26851
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
|
26463
|
-
#
|
|
26852
|
+
# bring your own license (BYOL) model requires a custom parameter
|
|
26464
26853
|
# group and an Amazon Web Services License Manager self-managed
|
|
26465
26854
|
# license. The Db2 license through Amazon Web Services Marketplace
|
|
26466
26855
|
# model requires an Amazon Web Services Marketplace subscription. For
|
|
@@ -26562,6 +26951,12 @@ module Aws::RDS
|
|
|
26562
26951
|
# ^
|
|
26563
26952
|
# @return [Integer]
|
|
26564
26953
|
#
|
|
26954
|
+
# @!attribute [rw] storage_throughput
|
|
26955
|
+
# The storage throughput value for the DB instance.
|
|
26956
|
+
#
|
|
26957
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
26958
|
+
# @return [Integer]
|
|
26959
|
+
#
|
|
26565
26960
|
# @!attribute [rw] option_group_name
|
|
26566
26961
|
# The name of the option group to use for the restored DB instance.
|
|
26567
26962
|
#
|
|
@@ -26802,14 +27197,6 @@ module Aws::RDS
|
|
|
26802
27197
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
|
26803
27198
|
# @return [Integer]
|
|
26804
27199
|
#
|
|
26805
|
-
# @!attribute [rw] source_db_instance_automated_backups_arn
|
|
26806
|
-
# The Amazon Resource Name (ARN) of the replicated automated backups
|
|
26807
|
-
# from which to restore, for example,
|
|
26808
|
-
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
|
26809
|
-
#
|
|
26810
|
-
# This setting doesn't apply to RDS Custom.
|
|
26811
|
-
# @return [String]
|
|
26812
|
-
#
|
|
26813
27200
|
# @!attribute [rw] enable_customer_owned_ip
|
|
26814
27201
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
|
26815
27202
|
# an RDS on Outposts DB instance.
|
|
@@ -26835,27 +27222,33 @@ module Aws::RDS
|
|
|
26835
27222
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
26836
27223
|
# @return [Boolean]
|
|
26837
27224
|
#
|
|
26838
|
-
# @!attribute [rw]
|
|
26839
|
-
# The
|
|
26840
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
|
26841
|
-
# meet the following requirements:
|
|
27225
|
+
# @!attribute [rw] network_type
|
|
27226
|
+
# The network type of the DB instance.
|
|
26842
27227
|
#
|
|
26843
|
-
#
|
|
27228
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
27229
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
27230
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
26844
27231
|
#
|
|
26845
|
-
#
|
|
26846
|
-
#
|
|
27232
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
27233
|
+
# in the *Amazon RDS User Guide.*
|
|
26847
27234
|
#
|
|
26848
|
-
#
|
|
26849
|
-
# start with the prefix `AWSRDSCustom`.
|
|
27235
|
+
# Valid Values:
|
|
26850
27236
|
#
|
|
26851
|
-
#
|
|
26852
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
27237
|
+
# * `IPV4`
|
|
26853
27238
|
#
|
|
26854
|
-
#
|
|
27239
|
+
# * `DUAL`
|
|
26855
27240
|
#
|
|
26856
27241
|
#
|
|
26857
27242
|
#
|
|
26858
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
27243
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
27244
|
+
# @return [String]
|
|
27245
|
+
#
|
|
27246
|
+
# @!attribute [rw] source_db_instance_automated_backups_arn
|
|
27247
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups
|
|
27248
|
+
# from which to restore, for example,
|
|
27249
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
|
27250
|
+
#
|
|
27251
|
+
# This setting doesn't apply to RDS Custom.
|
|
26859
27252
|
# @return [String]
|
|
26860
27253
|
#
|
|
26861
27254
|
# @!attribute [rw] backup_target
|
|
@@ -26864,6 +27257,8 @@ module Aws::RDS
|
|
|
26864
27257
|
#
|
|
26865
27258
|
# Valid Values:
|
|
26866
27259
|
#
|
|
27260
|
+
# * `local` (Dedicated Local Zone)
|
|
27261
|
+
#
|
|
26867
27262
|
# * `outposts` (Amazon Web Services Outposts)
|
|
26868
27263
|
#
|
|
26869
27264
|
# * `region` (Amazon Web Services Region)
|
|
@@ -26878,33 +27273,29 @@ module Aws::RDS
|
|
|
26878
27273
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
26879
27274
|
# @return [String]
|
|
26880
27275
|
#
|
|
26881
|
-
# @!attribute [rw]
|
|
26882
|
-
# The
|
|
27276
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
27277
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
27278
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
|
27279
|
+
# meet the following requirements:
|
|
26883
27280
|
#
|
|
26884
|
-
# The
|
|
26885
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
26886
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
27281
|
+
# * The profile must exist in your account.
|
|
26887
27282
|
#
|
|
26888
|
-
#
|
|
26889
|
-
#
|
|
27283
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
27284
|
+
# to assume.
|
|
26890
27285
|
#
|
|
26891
|
-
#
|
|
27286
|
+
# * The instance profile name and the associated IAM role name must
|
|
27287
|
+
# start with the prefix `AWSRDSCustom`.
|
|
26892
27288
|
#
|
|
26893
|
-
#
|
|
27289
|
+
# For the list of permissions required for the IAM role, see [
|
|
27290
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
26894
27291
|
#
|
|
26895
|
-
#
|
|
27292
|
+
# This setting is required for RDS Custom.
|
|
26896
27293
|
#
|
|
26897
27294
|
#
|
|
26898
27295
|
#
|
|
26899
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
27296
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
26900
27297
|
# @return [String]
|
|
26901
27298
|
#
|
|
26902
|
-
# @!attribute [rw] storage_throughput
|
|
26903
|
-
# The storage throughput value for the DB instance.
|
|
26904
|
-
#
|
|
26905
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
26906
|
-
# @return [Integer]
|
|
26907
|
-
#
|
|
26908
27299
|
# @!attribute [rw] allocated_storage
|
|
26909
27300
|
# The amount of storage (in gibibytes) to allocate initially for the
|
|
26910
27301
|
# DB instance. Follow the allocation rules specified in
|
|
@@ -27036,6 +27427,7 @@ module Aws::RDS
|
|
|
27036
27427
|
:db_name,
|
|
27037
27428
|
:engine,
|
|
27038
27429
|
:iops,
|
|
27430
|
+
:storage_throughput,
|
|
27039
27431
|
:option_group_name,
|
|
27040
27432
|
:copy_tags_to_snapshot,
|
|
27041
27433
|
:tags,
|
|
@@ -27057,19 +27449,18 @@ module Aws::RDS
|
|
|
27057
27449
|
:deletion_protection,
|
|
27058
27450
|
:source_dbi_resource_id,
|
|
27059
27451
|
:max_allocated_storage,
|
|
27060
|
-
:source_db_instance_automated_backups_arn,
|
|
27061
27452
|
:enable_customer_owned_ip,
|
|
27062
|
-
:custom_iam_instance_profile,
|
|
27063
|
-
:backup_target,
|
|
27064
27453
|
:network_type,
|
|
27065
|
-
:
|
|
27454
|
+
:source_db_instance_automated_backups_arn,
|
|
27455
|
+
:backup_target,
|
|
27456
|
+
:custom_iam_instance_profile,
|
|
27066
27457
|
:allocated_storage,
|
|
27067
27458
|
:dedicated_log_volume,
|
|
27068
27459
|
:ca_certificate_identifier,
|
|
27069
27460
|
:engine_lifecycle_support,
|
|
27070
27461
|
:manage_master_user_password,
|
|
27071
27462
|
:master_user_secret_kms_key_id)
|
|
27072
|
-
SENSITIVE = []
|
|
27463
|
+
SENSITIVE = [:tde_credential_password]
|
|
27073
27464
|
include Aws::Structure
|
|
27074
27465
|
end
|
|
27075
27466
|
|
|
@@ -27370,22 +27761,24 @@ module Aws::RDS
|
|
|
27370
27761
|
end
|
|
27371
27762
|
|
|
27372
27763
|
# Specifies any Aurora Serverless v2 properties or limits that differ
|
|
27373
|
-
# between Aurora engine versions. You can test the
|
|
27374
|
-
# attribute when deciding which Aurora version to use in
|
|
27375
|
-
# upgraded DB cluster. You can also retrieve the version of an
|
|
27376
|
-
# DB cluster and check whether that version supports certain
|
|
27377
|
-
# Serverless v2 features before you attempt to use those
|
|
27764
|
+
# between Aurora engine versions and platform versions. You can test the
|
|
27765
|
+
# values of this attribute when deciding which Aurora version to use in
|
|
27766
|
+
# a new or upgraded DB cluster. You can also retrieve the version of an
|
|
27767
|
+
# existing DB cluster and check whether that version supports certain
|
|
27768
|
+
# Aurora Serverless v2 features before you attempt to use those
|
|
27769
|
+
# features.
|
|
27378
27770
|
#
|
|
27379
27771
|
# @!attribute [rw] min_capacity
|
|
27380
|
-
# If the minimum capacity is 0 ACUs, the engine version
|
|
27381
|
-
# automatic pause/resume feature of Aurora
|
|
27772
|
+
# If the minimum capacity is 0 ACUs, the engine version or platform
|
|
27773
|
+
# version supports the automatic pause/resume feature of Aurora
|
|
27774
|
+
# Serverless v2.
|
|
27382
27775
|
# @return [Float]
|
|
27383
27776
|
#
|
|
27384
27777
|
# @!attribute [rw] max_capacity
|
|
27385
27778
|
# Specifies the upper Aurora Serverless v2 capacity limit for a
|
|
27386
|
-
# particular engine version. Depending on the
|
|
27387
|
-
# maximum capacity for an Aurora Serverless v2
|
|
27388
|
-
# or `128`.
|
|
27779
|
+
# particular engine version or platform version. Depending on the
|
|
27780
|
+
# engine version, the maximum capacity for an Aurora Serverless v2
|
|
27781
|
+
# cluster might be `256` or `128`.
|
|
27389
27782
|
# @return [Float]
|
|
27390
27783
|
#
|
|
27391
27784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2FeaturesSupport AWS API Documentation
|
|
@@ -27422,7 +27815,9 @@ module Aws::RDS
|
|
|
27422
27815
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
|
27423
27816
|
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
|
27424
27817
|
# value that you can use is 256 for recent Aurora versions, or 128 for
|
|
27425
|
-
# older versions.
|
|
27818
|
+
# older versions. You can check the attributes of your engine version
|
|
27819
|
+
# or platform version to determine the specific maximum capacity
|
|
27820
|
+
# supported.
|
|
27426
27821
|
# @return [Float]
|
|
27427
27822
|
#
|
|
27428
27823
|
# @!attribute [rw] seconds_until_auto_pause
|
|
@@ -27467,7 +27862,9 @@ module Aws::RDS
|
|
|
27467
27862
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
|
27468
27863
|
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
|
27469
27864
|
# value that you can use is 256 for recent Aurora versions, or 128 for
|
|
27470
|
-
# older versions.
|
|
27865
|
+
# older versions. You can check the attributes of your engine version
|
|
27866
|
+
# or platform version to determine the specific maximum capacity
|
|
27867
|
+
# supported.
|
|
27471
27868
|
# @return [Float]
|
|
27472
27869
|
#
|
|
27473
27870
|
# @!attribute [rw] seconds_until_auto_pause
|
|
@@ -27643,17 +28040,17 @@ module Aws::RDS
|
|
|
27643
28040
|
# The mode of the database activity stream.
|
|
27644
28041
|
# @return [String]
|
|
27645
28042
|
#
|
|
28043
|
+
# @!attribute [rw] engine_native_audit_fields_included
|
|
28044
|
+
# Indicates whether engine-native audit fields are included in the
|
|
28045
|
+
# database activity stream.
|
|
28046
|
+
# @return [Boolean]
|
|
28047
|
+
#
|
|
27646
28048
|
# @!attribute [rw] apply_immediately
|
|
27647
28049
|
# Indicates whether or not the database activity stream will start as
|
|
27648
28050
|
# soon as possible, regardless of the maintenance window for the
|
|
27649
28051
|
# database.
|
|
27650
28052
|
# @return [Boolean]
|
|
27651
28053
|
#
|
|
27652
|
-
# @!attribute [rw] engine_native_audit_fields_included
|
|
27653
|
-
# Indicates whether engine-native audit fields are included in the
|
|
27654
|
-
# database activity stream.
|
|
27655
|
-
# @return [Boolean]
|
|
27656
|
-
#
|
|
27657
28054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamResponse AWS API Documentation
|
|
27658
28055
|
#
|
|
27659
28056
|
class StartActivityStreamResponse < Struct.new(
|
|
@@ -27661,8 +28058,8 @@ module Aws::RDS
|
|
|
27661
28058
|
:kinesis_stream_name,
|
|
27662
28059
|
:status,
|
|
27663
28060
|
:mode,
|
|
27664
|
-
:
|
|
27665
|
-
:
|
|
28061
|
+
:engine_native_audit_fields_included,
|
|
28062
|
+
:apply_immediately)
|
|
27666
28063
|
SENSITIVE = []
|
|
27667
28064
|
include Aws::Structure
|
|
27668
28065
|
end
|
|
@@ -27782,7 +28179,7 @@ module Aws::RDS
|
|
|
27782
28179
|
:kms_key_id,
|
|
27783
28180
|
:pre_signed_url,
|
|
27784
28181
|
:source_region)
|
|
27785
|
-
SENSITIVE = []
|
|
28182
|
+
SENSITIVE = [:pre_signed_url]
|
|
27786
28183
|
include Aws::Structure
|
|
27787
28184
|
end
|
|
27788
28185
|
|
|
@@ -28932,11 +29329,6 @@ module Aws::RDS
|
|
|
28932
29329
|
# be between 3 and 10 times storage.
|
|
28933
29330
|
# @return [Array<Types::DoubleRange>]
|
|
28934
29331
|
#
|
|
28935
|
-
# @!attribute [rw] supports_storage_autoscaling
|
|
28936
|
-
# Indicates whether or not Amazon RDS can automatically scale storage
|
|
28937
|
-
# for DB instances that use the new instance class.
|
|
28938
|
-
# @return [Boolean]
|
|
28939
|
-
#
|
|
28940
29332
|
# @!attribute [rw] provisioned_storage_throughput
|
|
28941
29333
|
# The valid range of provisioned storage throughput. For example,
|
|
28942
29334
|
# 500-4,000 mebibytes per second (MiBps).
|
|
@@ -28947,6 +29339,11 @@ module Aws::RDS
|
|
|
28947
29339
|
# For example, 0-0.25.
|
|
28948
29340
|
# @return [Array<Types::DoubleRange>]
|
|
28949
29341
|
#
|
|
29342
|
+
# @!attribute [rw] supports_storage_autoscaling
|
|
29343
|
+
# Indicates whether or not Amazon RDS can automatically scale storage
|
|
29344
|
+
# for DB instances that use the new instance class.
|
|
29345
|
+
# @return [Boolean]
|
|
29346
|
+
#
|
|
28950
29347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidStorageOptions AWS API Documentation
|
|
28951
29348
|
#
|
|
28952
29349
|
class ValidStorageOptions < Struct.new(
|
|
@@ -28954,13 +29351,22 @@ module Aws::RDS
|
|
|
28954
29351
|
:storage_size,
|
|
28955
29352
|
:provisioned_iops,
|
|
28956
29353
|
:iops_to_storage_ratio,
|
|
28957
|
-
:supports_storage_autoscaling,
|
|
28958
29354
|
:provisioned_storage_throughput,
|
|
28959
|
-
:storage_throughput_to_iops_ratio
|
|
29355
|
+
:storage_throughput_to_iops_ratio,
|
|
29356
|
+
:supports_storage_autoscaling)
|
|
28960
29357
|
SENSITIVE = []
|
|
28961
29358
|
include Aws::Structure
|
|
28962
29359
|
end
|
|
28963
29360
|
|
|
29361
|
+
# The operation violates VPC encryption control settings. Make sure that
|
|
29362
|
+
# your DB instance type supports the Nitro encryption-in-transit
|
|
29363
|
+
# capability, or modify your VPC's encryption controls to not enforce
|
|
29364
|
+
# encryption-in-transit.
|
|
29365
|
+
#
|
|
29366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpcEncryptionControlViolationException AWS API Documentation
|
|
29367
|
+
#
|
|
29368
|
+
class VpcEncryptionControlViolationException < Aws::EmptyStructure; end
|
|
29369
|
+
|
|
28964
29370
|
# This data type is used as a response element for queries on VPC
|
|
28965
29371
|
# security group membership.
|
|
28966
29372
|
#
|