aws-sdk-rds 1.129.0 → 1.133.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1518 -358
- data/lib/aws-sdk-rds/client_api.rb +65 -0
- data/lib/aws-sdk-rds/db_cluster.rb +727 -65
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +12 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +166 -14
- data/lib/aws-sdk-rds/db_instance.rb +113 -118
- data/lib/aws-sdk-rds/db_snapshot.rb +33 -11
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +5 -1
- data/lib/aws-sdk-rds/resource.rb +361 -106
- data/lib/aws-sdk-rds/types.rb +1731 -313
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +4 -4
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -121,7 +121,9 @@ module Aws::RDS
|
|
121
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
122
122
|
# are very aggressive. Construct and pass an instance of
|
123
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
124
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
125
127
|
#
|
126
128
|
# @option options [required, String] :region
|
127
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -277,6 +279,15 @@ module Aws::RDS
|
|
277
279
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
278
280
|
# requests are made, and retries are disabled.
|
279
281
|
#
|
282
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
283
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
284
|
+
# will be used if available.
|
285
|
+
#
|
286
|
+
# @option options [Boolean] :use_fips_endpoint
|
287
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
288
|
+
# When a `fips` region is used, the region is normalized and this config
|
289
|
+
# is set to `true`.
|
290
|
+
#
|
280
291
|
# @option options [Boolean] :validate_params (true)
|
281
292
|
# When `true`, request parameters are validated before
|
282
293
|
# sending the request.
|
@@ -329,25 +340,15 @@ module Aws::RDS
|
|
329
340
|
|
330
341
|
# @!group API Operations
|
331
342
|
|
332
|
-
# Associates an Identity and Access Management (IAM) role
|
333
|
-
#
|
334
|
-
# Aurora MySQL to Access Other Amazon Web Services Services on Your
|
335
|
-
# Behalf][1] in the *Amazon Aurora User Guide*.
|
336
|
-
#
|
337
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
338
|
-
#
|
339
|
-
# </note>
|
340
|
-
#
|
341
|
-
#
|
342
|
-
#
|
343
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html
|
343
|
+
# Associates an Identity and Access Management (IAM) role with a DB
|
344
|
+
# cluster.
|
344
345
|
#
|
345
346
|
# @option params [required, String] :db_cluster_identifier
|
346
347
|
# The name of the DB cluster to associate the IAM role with.
|
347
348
|
#
|
348
349
|
# @option params [required, String] :role_arn
|
349
350
|
# The Amazon Resource Name (ARN) of the IAM role to associate with the
|
350
|
-
# Aurora DB cluster, for example
|
351
|
+
# Aurora DB cluster, for example
|
351
352
|
# `arn:aws:iam::123456789012:role/AuroraAccessRole`.
|
352
353
|
#
|
353
354
|
# @option params [String] :feature_name
|
@@ -643,7 +644,7 @@ module Aws::RDS
|
|
643
644
|
# authorization. First, EC2 or VPC security groups can be added to the
|
644
645
|
# DBSecurityGroup if the application using the database is running on
|
645
646
|
# EC2 or VPC instances. Second, IP ranges are available if the
|
646
|
-
# application accessing your database is running on the
|
647
|
+
# application accessing your database is running on the internet.
|
647
648
|
# Required parameters for this API are one of CIDR range,
|
648
649
|
# EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either
|
649
650
|
# EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).
|
@@ -902,10 +903,6 @@ module Aws::RDS
|
|
902
903
|
|
903
904
|
# Copies the specified DB cluster parameter group.
|
904
905
|
#
|
905
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
906
|
-
#
|
907
|
-
# </note>
|
908
|
-
#
|
909
906
|
# @option params [required, String] :source_db_cluster_parameter_group_identifier
|
910
907
|
# The identifier or Amazon Resource Name (ARN) for the source DB cluster
|
911
908
|
# parameter group. For information about creating an ARN, see [
|
@@ -1075,14 +1072,19 @@ module Aws::RDS
|
|
1075
1072
|
# DB cluster snapshot identified by `TargetDBClusterSnapshotIdentifier`
|
1076
1073
|
# while that DB cluster snapshot is in "copying" status.
|
1077
1074
|
#
|
1078
|
-
# For more information on copying encrypted DB cluster
|
1079
|
-
# one Amazon Web Services Region to another, see [
|
1080
|
-
# Snapshot][3] in the *Amazon Aurora User Guide.*
|
1075
|
+
# For more information on copying encrypted Amazon Aurora DB cluster
|
1076
|
+
# snapshots from one Amazon Web Services Region to another, see [
|
1077
|
+
# Copying a Snapshot][3] in the *Amazon Aurora User Guide.*
|
1081
1078
|
#
|
1082
|
-
# For more information on Amazon Aurora, see [ What
|
1083
|
-
# Aurora?][4] in the *Amazon Aurora User Guide.*
|
1079
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
1080
|
+
# Amazon Aurora?][4] in the *Amazon Aurora User Guide.*
|
1084
1081
|
#
|
1085
|
-
#
|
1082
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
1083
|
+
# deployments with two readable standby DB instances][5] in the *Amazon
|
1084
|
+
# RDS User Guide.*
|
1085
|
+
#
|
1086
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
1087
|
+
# change.
|
1086
1088
|
#
|
1087
1089
|
# </note>
|
1088
1090
|
#
|
@@ -1092,6 +1094,7 @@ module Aws::RDS
|
|
1092
1094
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1093
1095
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html
|
1094
1096
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
1097
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
1095
1098
|
#
|
1096
1099
|
# @option params [required, String] :source_db_cluster_snapshot_identifier
|
1097
1100
|
# The identifier of the DB cluster snapshot to copy. This parameter
|
@@ -1657,6 +1660,7 @@ module Aws::RDS
|
|
1657
1660
|
# resp.db_snapshot.tag_list[0].key #=> String
|
1658
1661
|
# resp.db_snapshot.tag_list[0].value #=> String
|
1659
1662
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
1663
|
+
# resp.db_snapshot.snapshot_target #=> String
|
1660
1664
|
#
|
1661
1665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1662
1666
|
#
|
@@ -1849,15 +1853,13 @@ module Aws::RDS
|
|
1849
1853
|
# Creates a custom DB engine version (CEV). A CEV is a binary volume
|
1850
1854
|
# snapshot of a database engine and specific AMI. The only supported
|
1851
1855
|
# engine is Oracle Database 19c Enterprise Edition with the January 2021
|
1852
|
-
# or later RU/RUR.
|
1853
|
-
# requirements and limitations][1] in the *Amazon RDS User Guide*.
|
1856
|
+
# or later RU/RUR.
|
1854
1857
|
#
|
1855
1858
|
# Amazon RDS, which is a fully managed service, supplies the Amazon
|
1856
1859
|
# Machine Image (AMI) and database software. The Amazon RDS database
|
1857
1860
|
# software is preinstalled, so you need only select a DB engine and
|
1858
1861
|
# version, and create your database. With Amazon RDS Custom, you upload
|
1859
|
-
# your database installation files in Amazon S3.
|
1860
|
-
# see [ Preparing to create a CEV][2] in the *Amazon RDS User Guide*.
|
1862
|
+
# your database installation files in Amazon S3.
|
1861
1863
|
#
|
1862
1864
|
# When you create a custom engine version, you specify the files in a
|
1863
1865
|
# JSON document called a CEV manifest. This document describes
|
@@ -1885,14 +1887,12 @@ module Aws::RDS
|
|
1885
1887
|
#
|
1886
1888
|
# </note>
|
1887
1889
|
#
|
1888
|
-
# For more information, see [ Creating a CEV][
|
1890
|
+
# For more information, see [ Creating a CEV][1] in the *Amazon RDS User
|
1889
1891
|
# Guide*.
|
1890
1892
|
#
|
1891
1893
|
#
|
1892
1894
|
#
|
1893
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.
|
1894
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.html#custom-cev.preparing
|
1895
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.create
|
1895
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.create
|
1896
1896
|
#
|
1897
1897
|
# @option params [required, String] :engine
|
1898
1898
|
# The database engine to use for your custom engine version (CEV). The
|
@@ -2082,30 +2082,41 @@ module Aws::RDS
|
|
2082
2082
|
req.send_request(options)
|
2083
2083
|
end
|
2084
2084
|
|
2085
|
-
# Creates a new Amazon Aurora DB cluster.
|
2085
|
+
# Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.
|
2086
2086
|
#
|
2087
|
-
# You can use the `ReplicationSourceIdentifier` parameter to create
|
2088
|
-
# DB cluster as a read replica of another DB cluster or
|
2089
|
-
# or PostgreSQL DB instance. For cross-
|
2090
|
-
#
|
2091
|
-
#
|
2087
|
+
# You can use the `ReplicationSourceIdentifier` parameter to create an
|
2088
|
+
# Amazon Aurora DB cluster as a read replica of another DB cluster or
|
2089
|
+
# Amazon RDS MySQL or PostgreSQL DB instance. For cross-Region
|
2090
|
+
# replication where the DB cluster identified by
|
2091
|
+
# `ReplicationSourceIdentifier` is encrypted, also specify the
|
2092
|
+
# `PreSignedUrl` parameter.
|
2092
2093
|
#
|
2093
|
-
# For more information on Amazon Aurora, see [ What
|
2094
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
2094
2095
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
2095
2096
|
#
|
2096
|
-
#
|
2097
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
2098
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
2099
|
+
# RDS User Guide.*
|
2100
|
+
#
|
2101
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
2102
|
+
# change.
|
2097
2103
|
#
|
2098
2104
|
# </note>
|
2099
2105
|
#
|
2100
2106
|
#
|
2101
2107
|
#
|
2102
2108
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
2109
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
2103
2110
|
#
|
2104
2111
|
# @option params [Array<String>] :availability_zones
|
2105
|
-
# A list of Availability Zones (AZs) where instances in the DB
|
2106
|
-
# can be created.
|
2107
|
-
#
|
2108
|
-
#
|
2112
|
+
# A list of Availability Zones (AZs) where DB instances in the DB
|
2113
|
+
# cluster can be created.
|
2114
|
+
#
|
2115
|
+
# For information on Amazon Web Services Regions and Availability Zones,
|
2116
|
+
# see [Choosing the Regions and Availability Zones][1] in the *Amazon
|
2117
|
+
# Aurora User Guide*.
|
2118
|
+
#
|
2119
|
+
# Valid for: Aurora DB clusters only
|
2109
2120
|
#
|
2110
2121
|
#
|
2111
2122
|
#
|
@@ -2122,15 +2133,21 @@ module Aws::RDS
|
|
2122
2133
|
#
|
2123
2134
|
# ^
|
2124
2135
|
#
|
2136
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2137
|
+
#
|
2125
2138
|
# @option params [String] :character_set_name
|
2126
2139
|
# A value that indicates that the DB cluster should be associated with
|
2127
2140
|
# the specified CharacterSet.
|
2128
2141
|
#
|
2142
|
+
# Valid for: Aurora DB clusters only
|
2143
|
+
#
|
2129
2144
|
# @option params [String] :database_name
|
2130
2145
|
# The name for your database of up to 64 alphanumeric characters. If you
|
2131
2146
|
# do not provide a name, Amazon RDS doesn't create a database in the DB
|
2132
2147
|
# cluster you are creating.
|
2133
2148
|
#
|
2149
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2150
|
+
#
|
2134
2151
|
# @option params [required, String] :db_cluster_identifier
|
2135
2152
|
# The DB cluster identifier. This parameter is stored as a lowercase
|
2136
2153
|
# string.
|
@@ -2145,6 +2162,8 @@ module Aws::RDS
|
|
2145
2162
|
#
|
2146
2163
|
# Example: `my-cluster1`
|
2147
2164
|
#
|
2165
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2166
|
+
#
|
2148
2167
|
# @option params [String] :db_cluster_parameter_group_name
|
2149
2168
|
# The name of the DB cluster parameter group to associate with this DB
|
2150
2169
|
# cluster. If you do not specify a value, then the default DB cluster
|
@@ -2157,60 +2176,121 @@ module Aws::RDS
|
|
2157
2176
|
#
|
2158
2177
|
# ^
|
2159
2178
|
#
|
2179
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2180
|
+
#
|
2160
2181
|
# @option params [Array<String>] :vpc_security_group_ids
|
2161
2182
|
# A list of EC2 VPC security groups to associate with this DB cluster.
|
2162
2183
|
#
|
2184
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2185
|
+
#
|
2163
2186
|
# @option params [String] :db_subnet_group_name
|
2164
2187
|
# A DB subnet group to associate with this DB cluster.
|
2165
2188
|
#
|
2189
|
+
# This setting is required to create a Multi-AZ DB cluster.
|
2190
|
+
#
|
2166
2191
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
2167
2192
|
# not be default.
|
2168
2193
|
#
|
2169
2194
|
# Example: `mySubnetgroup`
|
2170
2195
|
#
|
2196
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2197
|
+
#
|
2171
2198
|
# @option params [required, String] :engine
|
2172
2199
|
# The name of the database engine to be used for this DB cluster.
|
2173
2200
|
#
|
2174
|
-
# Valid Values:
|
2175
|
-
#
|
2176
|
-
# `aurora-
|
2201
|
+
# Valid Values:
|
2202
|
+
#
|
2203
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
2204
|
+
#
|
2205
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
2206
|
+
#
|
2207
|
+
# * `aurora-postgresql`
|
2208
|
+
#
|
2209
|
+
# * `mysql`
|
2210
|
+
#
|
2211
|
+
# * `postgres`
|
2212
|
+
#
|
2213
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2177
2214
|
#
|
2178
2215
|
# @option params [String] :engine_version
|
2179
2216
|
# The version number of the database engine to use.
|
2180
2217
|
#
|
2181
|
-
# To list all of the available engine versions for
|
2182
|
-
#
|
2218
|
+
# To list all of the available engine versions for MySQL 5.6-compatible
|
2219
|
+
# Aurora, use the following command:
|
2183
2220
|
#
|
2184
2221
|
# `aws rds describe-db-engine-versions --engine aurora --query
|
2185
2222
|
# "DBEngineVersions[].EngineVersion"`
|
2186
2223
|
#
|
2187
|
-
# To list all of the available engine versions for
|
2188
|
-
#
|
2224
|
+
# To list all of the available engine versions for MySQL 5.7-compatible
|
2225
|
+
# Aurora, use the following command:
|
2189
2226
|
#
|
2190
2227
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
2191
2228
|
# "DBEngineVersions[].EngineVersion"`
|
2192
2229
|
#
|
2193
|
-
# To list all of the available engine versions for
|
2230
|
+
# To list all of the available engine versions for Aurora PostgreSQL,
|
2194
2231
|
# use the following command:
|
2195
2232
|
#
|
2196
2233
|
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
2197
2234
|
# --query "DBEngineVersions[].EngineVersion"`
|
2198
2235
|
#
|
2236
|
+
# To list all of the available engine versions for RDS for MySQL, use
|
2237
|
+
# the following command:
|
2238
|
+
#
|
2239
|
+
# `aws rds describe-db-engine-versions --engine mysql --query
|
2240
|
+
# "DBEngineVersions[].EngineVersion"`
|
2241
|
+
#
|
2242
|
+
# To list all of the available engine versions for RDS for PostgreSQL,
|
2243
|
+
# use the following command:
|
2244
|
+
#
|
2245
|
+
# `aws rds describe-db-engine-versions --engine postgres --query
|
2246
|
+
# "DBEngineVersions[].EngineVersion"`
|
2247
|
+
#
|
2199
2248
|
# **Aurora MySQL**
|
2200
2249
|
#
|
2201
|
-
#
|
2202
|
-
#
|
2250
|
+
# For information, see [MySQL on Amazon RDS Versions][1] in the *Amazon
|
2251
|
+
# Aurora User Guide.*
|
2203
2252
|
#
|
2204
2253
|
# **Aurora PostgreSQL**
|
2205
2254
|
#
|
2206
|
-
#
|
2255
|
+
# For information, see [Amazon Aurora PostgreSQL releases and engine
|
2256
|
+
# versions][2] in the *Amazon Aurora User Guide.*
|
2257
|
+
#
|
2258
|
+
# **MySQL**
|
2259
|
+
#
|
2260
|
+
# For information, see [MySQL on Amazon RDS Versions][3] in the *Amazon
|
2261
|
+
# RDS User Guide.*
|
2262
|
+
#
|
2263
|
+
# **PostgreSQL**
|
2264
|
+
#
|
2265
|
+
# For information, see [Amazon RDS for PostgreSQL versions and
|
2266
|
+
# extensions][4] in the *Amazon RDS User Guide.*
|
2267
|
+
#
|
2268
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2269
|
+
#
|
2270
|
+
#
|
2271
|
+
#
|
2272
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html
|
2273
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html
|
2274
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
2275
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
2207
2276
|
#
|
2208
2277
|
# @option params [Integer] :port
|
2209
2278
|
# The port number on which the instances in the DB cluster accept
|
2210
2279
|
# connections.
|
2211
2280
|
#
|
2212
|
-
#
|
2213
|
-
#
|
2281
|
+
# **RDS for MySQL and Aurora MySQL**
|
2282
|
+
#
|
2283
|
+
# Default: `3306`
|
2284
|
+
#
|
2285
|
+
# Valid values: `1150-65535`
|
2286
|
+
#
|
2287
|
+
# **RDS for PostgreSQL and Aurora PostgreSQL**
|
2288
|
+
#
|
2289
|
+
# Default: `5432`
|
2290
|
+
#
|
2291
|
+
# Valid values: `1150-65535`
|
2292
|
+
#
|
2293
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2214
2294
|
#
|
2215
2295
|
# @option params [String] :master_username
|
2216
2296
|
# The name of the master user for the DB cluster.
|
@@ -2223,19 +2303,22 @@ module Aws::RDS
|
|
2223
2303
|
#
|
2224
2304
|
# * Can't be a reserved word for the chosen database engine.
|
2225
2305
|
#
|
2306
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2307
|
+
#
|
2226
2308
|
# @option params [String] :master_user_password
|
2227
2309
|
# The password for the master database user. This password can contain
|
2228
2310
|
# any printable ASCII character except "/", """, or "@".
|
2229
2311
|
#
|
2230
2312
|
# Constraints: Must contain from 8 to 41 characters.
|
2231
2313
|
#
|
2314
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2315
|
+
#
|
2232
2316
|
# @option params [String] :option_group_name
|
2233
2317
|
# A value that indicates that the DB cluster should be associated with
|
2234
2318
|
# the specified option group.
|
2235
2319
|
#
|
2236
|
-
#
|
2237
|
-
#
|
2238
|
-
# DB cluster.
|
2320
|
+
# DB clusters are associated with a default option group that can't be
|
2321
|
+
# modified.
|
2239
2322
|
#
|
2240
2323
|
# @option params [String] :preferred_backup_window
|
2241
2324
|
# The daily time range during which automated backups are created if
|
@@ -2257,6 +2340,8 @@ module Aws::RDS
|
|
2257
2340
|
#
|
2258
2341
|
# * Must be at least 30 minutes.
|
2259
2342
|
#
|
2343
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2344
|
+
#
|
2260
2345
|
#
|
2261
2346
|
#
|
2262
2347
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
@@ -2277,6 +2362,8 @@ module Aws::RDS
|
|
2277
2362
|
#
|
2278
2363
|
# Constraints: Minimum 30-minute window.
|
2279
2364
|
#
|
2365
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2366
|
+
#
|
2280
2367
|
#
|
2281
2368
|
#
|
2282
2369
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
@@ -2285,12 +2372,18 @@ module Aws::RDS
|
|
2285
2372
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
2286
2373
|
# if this DB cluster is created as a read replica.
|
2287
2374
|
#
|
2375
|
+
# Valid for: Aurora DB clusters only
|
2376
|
+
#
|
2288
2377
|
# @option params [Array<Types::Tag>] :tags
|
2289
2378
|
# Tags to assign to the DB cluster.
|
2290
2379
|
#
|
2380
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2381
|
+
#
|
2291
2382
|
# @option params [Boolean] :storage_encrypted
|
2292
2383
|
# A value that indicates whether the DB cluster is encrypted.
|
2293
2384
|
#
|
2385
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2386
|
+
#
|
2294
2387
|
# @option params [String] :kms_key_id
|
2295
2388
|
# The Amazon Web Services KMS key identifier for an encrypted DB
|
2296
2389
|
# cluster.
|
@@ -2320,12 +2413,14 @@ module Aws::RDS
|
|
2320
2413
|
# Region. This KMS key is used to encrypt the read replica in that
|
2321
2414
|
# Amazon Web Services Region.
|
2322
2415
|
#
|
2416
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2417
|
+
#
|
2323
2418
|
# @option params [String] :pre_signed_url
|
2324
2419
|
# A URL that contains a Signature Version 4 signed request for the
|
2325
2420
|
# `CreateDBCluster` action to be called in the source Amazon Web
|
2326
|
-
# Services Region where the DB cluster is replicated from.
|
2327
|
-
#
|
2328
|
-
#
|
2421
|
+
# Services Region where the DB cluster is replicated from. Specify
|
2422
|
+
# `PreSignedUrl` only when you are performing cross-Region replication
|
2423
|
+
# from an encrypted DB cluster.
|
2329
2424
|
#
|
2330
2425
|
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
2331
2426
|
# API action that can be executed in the source Amazon Web Services
|
@@ -2366,6 +2461,8 @@ module Aws::RDS
|
|
2366
2461
|
#
|
2367
2462
|
# </note>
|
2368
2463
|
#
|
2464
|
+
# Valid for: Aurora DB clusters only
|
2465
|
+
#
|
2369
2466
|
#
|
2370
2467
|
#
|
2371
2468
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -2374,11 +2471,13 @@ module Aws::RDS
|
|
2374
2471
|
# @option params [Boolean] :enable_iam_database_authentication
|
2375
2472
|
# A value that indicates whether to enable mapping of Amazon Web
|
2376
2473
|
# Services Identity and Access Management (IAM) accounts to database
|
2377
|
-
# accounts. By default, mapping
|
2474
|
+
# accounts. By default, mapping isn't enabled.
|
2378
2475
|
#
|
2379
2476
|
# For more information, see [ IAM Database Authentication][1] in the
|
2380
2477
|
# *Amazon Aurora User Guide.*
|
2381
2478
|
#
|
2479
|
+
# Valid for: Aurora DB clusters only
|
2480
|
+
#
|
2382
2481
|
#
|
2383
2482
|
#
|
2384
2483
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -2387,10 +2486,6 @@ module Aws::RDS
|
|
2387
2486
|
# The target backtrack window, in seconds. To disable backtracking, set
|
2388
2487
|
# this value to 0.
|
2389
2488
|
#
|
2390
|
-
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
2391
|
-
#
|
2392
|
-
# </note>
|
2393
|
-
#
|
2394
2489
|
# Default: 0
|
2395
2490
|
#
|
2396
2491
|
# Constraints:
|
@@ -2400,6 +2495,8 @@ module Aws::RDS
|
|
2400
2495
|
#
|
2401
2496
|
# ^
|
2402
2497
|
#
|
2498
|
+
# Valid for: Aurora MySQL DB clusters only
|
2499
|
+
#
|
2403
2500
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
2404
2501
|
# The list of log types that need to be enabled for exporting to
|
2405
2502
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
@@ -2414,6 +2511,8 @@ module Aws::RDS
|
|
2414
2511
|
#
|
2415
2512
|
# Possible value is `postgresql`.
|
2416
2513
|
#
|
2514
|
+
# Valid for: Aurora DB clusters only
|
2515
|
+
#
|
2417
2516
|
#
|
2418
2517
|
#
|
2419
2518
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -2449,6 +2548,8 @@ module Aws::RDS
|
|
2449
2548
|
#
|
2450
2549
|
# * [ Limitations of Multi-Master Clusters][4]
|
2451
2550
|
#
|
2551
|
+
# Valid for: Aurora DB clusters only
|
2552
|
+
#
|
2452
2553
|
#
|
2453
2554
|
#
|
2454
2555
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
@@ -2460,15 +2561,21 @@ module Aws::RDS
|
|
2460
2561
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
2461
2562
|
# of the DB cluster.
|
2462
2563
|
#
|
2564
|
+
# Valid for: Aurora DB clusters only
|
2565
|
+
#
|
2463
2566
|
# @option params [Boolean] :deletion_protection
|
2464
2567
|
# A value that indicates whether the DB cluster has deletion protection
|
2465
2568
|
# enabled. The database can't be deleted when deletion protection is
|
2466
|
-
# enabled. By default, deletion protection
|
2569
|
+
# enabled. By default, deletion protection isn't enabled.
|
2570
|
+
#
|
2571
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2467
2572
|
#
|
2468
2573
|
# @option params [String] :global_cluster_identifier
|
2469
2574
|
# The global cluster ID of an Aurora cluster that becomes the primary
|
2470
2575
|
# cluster in the new global database cluster.
|
2471
2576
|
#
|
2577
|
+
# Valid for: Aurora DB clusters only
|
2578
|
+
#
|
2472
2579
|
# @option params [Boolean] :enable_http_endpoint
|
2473
2580
|
# A value that indicates whether to enable the HTTP endpoint for an
|
2474
2581
|
# Aurora Serverless DB cluster. By default, the HTTP endpoint is
|
@@ -2482,6 +2589,8 @@ module Aws::RDS
|
|
2482
2589
|
# For more information, see [Using the Data API for Aurora
|
2483
2590
|
# Serverless][1] in the *Amazon Aurora User Guide*.
|
2484
2591
|
#
|
2592
|
+
# Valid for: Aurora DB clusters only
|
2593
|
+
#
|
2485
2594
|
#
|
2486
2595
|
#
|
2487
2596
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
@@ -2490,14 +2599,19 @@ module Aws::RDS
|
|
2490
2599
|
# A value that indicates whether to copy all tags from the DB cluster to
|
2491
2600
|
# snapshots of the DB cluster. The default is not to copy them.
|
2492
2601
|
#
|
2602
|
+
# Valid for: Aurora DB clusters only
|
2603
|
+
#
|
2493
2604
|
# @option params [String] :domain
|
2494
2605
|
# The Active Directory directory ID to create the DB cluster in.
|
2495
2606
|
#
|
2496
2607
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
2497
|
-
#
|
2498
|
-
#
|
2608
|
+
# authentication to authenticate users that connect to the DB cluster.
|
2609
|
+
#
|
2610
|
+
# For more information, see [Kerberos authentication][1] in the *Amazon
|
2499
2611
|
# Aurora User Guide*.
|
2500
2612
|
#
|
2613
|
+
# Valid for: Aurora DB clusters only
|
2614
|
+
#
|
2501
2615
|
#
|
2502
2616
|
#
|
2503
2617
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
@@ -2506,6 +2620,8 @@ module Aws::RDS
|
|
2506
2620
|
# Specify the name of the IAM role to be used when making API calls to
|
2507
2621
|
# the Directory Service.
|
2508
2622
|
#
|
2623
|
+
# Valid for: Aurora DB clusters only
|
2624
|
+
#
|
2509
2625
|
# @option params [Boolean] :enable_global_write_forwarding
|
2510
2626
|
# A value that indicates whether to enable this DB cluster to forward
|
2511
2627
|
# write operations to the primary cluster of an Aurora global database
|
@@ -2521,6 +2637,171 @@ module Aws::RDS
|
|
2521
2637
|
# immediately if the primary is demoted by the FailoverGlobalCluster API
|
2522
2638
|
# operation, but it does nothing until then.
|
2523
2639
|
#
|
2640
|
+
# Valid for: Aurora DB clusters only
|
2641
|
+
#
|
2642
|
+
# @option params [String] :db_cluster_instance_class
|
2643
|
+
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
2644
|
+
# cluster, for example db.m6g.xlarge. Not all DB instance classes are
|
2645
|
+
# available in all Amazon Web Services Regions, or for all database
|
2646
|
+
# engines.
|
2647
|
+
#
|
2648
|
+
# For the full list of DB instance classes and availability for your
|
2649
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide.*
|
2650
|
+
#
|
2651
|
+
# This setting is required to create a Multi-AZ DB cluster.
|
2652
|
+
#
|
2653
|
+
# Valid for: Multi-AZ DB clusters only
|
2654
|
+
#
|
2655
|
+
#
|
2656
|
+
#
|
2657
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2658
|
+
#
|
2659
|
+
# @option params [Integer] :allocated_storage
|
2660
|
+
# The amount of storage in gibibytes (GiB) to allocate to each DB
|
2661
|
+
# instance in the Multi-AZ DB cluster.
|
2662
|
+
#
|
2663
|
+
# This setting is required to create a Multi-AZ DB cluster.
|
2664
|
+
#
|
2665
|
+
# Valid for: Multi-AZ DB clusters only
|
2666
|
+
#
|
2667
|
+
# @option params [String] :storage_type
|
2668
|
+
# Specifies the storage type to be associated with the DB cluster.
|
2669
|
+
#
|
2670
|
+
# This setting is required to create a Multi-AZ DB cluster.
|
2671
|
+
#
|
2672
|
+
# Valid values: `standard | gp2 | io1`
|
2673
|
+
#
|
2674
|
+
# If you specify `io1`, also include a value for the `Iops` parameter.
|
2675
|
+
#
|
2676
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
2677
|
+
#
|
2678
|
+
# Valid for: Multi-AZ DB clusters only
|
2679
|
+
#
|
2680
|
+
# @option params [Integer] :iops
|
2681
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
2682
|
+
# be initially allocated for each DB instance in the Multi-AZ DB
|
2683
|
+
# cluster.
|
2684
|
+
#
|
2685
|
+
# For information about valid `Iops` values, see [Amazon RDS Provisioned
|
2686
|
+
# IOPS storage to improve performance][1] in the *Amazon RDS User
|
2687
|
+
# Guide*.
|
2688
|
+
#
|
2689
|
+
# This setting is required to create a Multi-AZ DB cluster.
|
2690
|
+
#
|
2691
|
+
# Constraints: Must be a multiple between .5 and 50 of the storage
|
2692
|
+
# amount for the DB cluster.
|
2693
|
+
#
|
2694
|
+
# Valid for: Multi-AZ DB clusters only
|
2695
|
+
#
|
2696
|
+
#
|
2697
|
+
#
|
2698
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
2699
|
+
#
|
2700
|
+
# @option params [Boolean] :publicly_accessible
|
2701
|
+
# A value that indicates whether the DB cluster is publicly accessible.
|
2702
|
+
#
|
2703
|
+
# When the DB cluster is publicly accessible, its Domain Name System
|
2704
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
2705
|
+
# cluster's virtual private cloud (VPC). It resolves to the public IP
|
2706
|
+
# address from outside of the DB cluster's VPC. Access to the DB
|
2707
|
+
# cluster is ultimately controlled by the security group it uses. That
|
2708
|
+
# public access isn't permitted if the security group assigned to the
|
2709
|
+
# DB cluster doesn't permit it.
|
2710
|
+
#
|
2711
|
+
# When the DB cluster isn't publicly accessible, it is an internal DB
|
2712
|
+
# cluster with a DNS name that resolves to a private IP address.
|
2713
|
+
#
|
2714
|
+
# Default: The default behavior varies depending on whether
|
2715
|
+
# `DBSubnetGroupName` is specified.
|
2716
|
+
#
|
2717
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
2718
|
+
# isn't specified, the following applies:
|
2719
|
+
#
|
2720
|
+
# * If the default VPC in the target Region doesn’t have an internet
|
2721
|
+
# gateway attached to it, the DB cluster is private.
|
2722
|
+
#
|
2723
|
+
# * If the default VPC in the target Region has an internet gateway
|
2724
|
+
# attached to it, the DB cluster is public.
|
2725
|
+
#
|
2726
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
2727
|
+
# specified, the following applies:
|
2728
|
+
#
|
2729
|
+
# * If the subnets are part of a VPC that doesn’t have an internet
|
2730
|
+
# gateway attached to it, the DB cluster is private.
|
2731
|
+
#
|
2732
|
+
# * If the subnets are part of a VPC that has an internet gateway
|
2733
|
+
# attached to it, the DB cluster is public.
|
2734
|
+
#
|
2735
|
+
# Valid for: Multi-AZ DB clusters only
|
2736
|
+
#
|
2737
|
+
# @option params [Boolean] :auto_minor_version_upgrade
|
2738
|
+
# A value that indicates whether minor engine upgrades are applied
|
2739
|
+
# automatically to the DB cluster during the maintenance window. By
|
2740
|
+
# default, minor engine upgrades are applied automatically.
|
2741
|
+
#
|
2742
|
+
# Valid for: Multi-AZ DB clusters only
|
2743
|
+
#
|
2744
|
+
# @option params [Integer] :monitoring_interval
|
2745
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
2746
|
+
# metrics are collected for the DB cluster. To turn off collecting
|
2747
|
+
# Enhanced Monitoring metrics, specify 0. The default is 0.
|
2748
|
+
#
|
2749
|
+
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval` to
|
2750
|
+
# a value other than 0.
|
2751
|
+
#
|
2752
|
+
# Valid Values: `0, 1, 5, 10, 15, 30, 60`
|
2753
|
+
#
|
2754
|
+
# Valid for: Multi-AZ DB clusters only
|
2755
|
+
#
|
2756
|
+
# @option params [String] :monitoring_role_arn
|
2757
|
+
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
2758
|
+
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example
|
2759
|
+
# is `arn:aws:iam:123456789012:role/emaccess`. For information on
|
2760
|
+
# creating a monitoring role, see [Setting up and enabling Enhanced
|
2761
|
+
# Monitoring][1] in the *Amazon RDS User Guide*.
|
2762
|
+
#
|
2763
|
+
# If `MonitoringInterval` is set to a value other than 0, supply a
|
2764
|
+
# `MonitoringRoleArn` value.
|
2765
|
+
#
|
2766
|
+
# Valid for: Multi-AZ DB clusters only
|
2767
|
+
#
|
2768
|
+
#
|
2769
|
+
#
|
2770
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
2771
|
+
#
|
2772
|
+
# @option params [Boolean] :enable_performance_insights
|
2773
|
+
# A value that indicates whether to turn on Performance Insights for the
|
2774
|
+
# DB cluster.
|
2775
|
+
#
|
2776
|
+
# For more information, see [ Using Amazon Performance Insights][1] in
|
2777
|
+
# the *Amazon RDS User Guide*.
|
2778
|
+
#
|
2779
|
+
# Valid for: Multi-AZ DB clusters only
|
2780
|
+
#
|
2781
|
+
#
|
2782
|
+
#
|
2783
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
2784
|
+
#
|
2785
|
+
# @option params [String] :performance_insights_kms_key_id
|
2786
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
2787
|
+
# Performance Insights data.
|
2788
|
+
#
|
2789
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
2790
|
+
# alias ARN, or alias name for the KMS key.
|
2791
|
+
#
|
2792
|
+
# If you don't specify a value for `PerformanceInsightsKMSKeyId`, then
|
2793
|
+
# Amazon RDS uses your default KMS key. There is a default KMS key for
|
2794
|
+
# your Amazon Web Services account. Your Amazon Web Services account has
|
2795
|
+
# a different default KMS key for each Amazon Web Services Region.
|
2796
|
+
#
|
2797
|
+
# Valid for: Multi-AZ DB clusters only
|
2798
|
+
#
|
2799
|
+
# @option params [Integer] :performance_insights_retention_period
|
2800
|
+
# The amount of time, in days, to retain Performance Insights data.
|
2801
|
+
# Valid values are 7 or 731 (2 years).
|
2802
|
+
#
|
2803
|
+
# Valid for: Multi-AZ DB clusters only
|
2804
|
+
#
|
2524
2805
|
# @option params [String] :source_region
|
2525
2806
|
# The source region of the snapshot. This is only needed when the
|
2526
2807
|
# shapshot is encrypted and in a different region.
|
@@ -2604,6 +2885,17 @@ module Aws::RDS
|
|
2604
2885
|
# domain: "String",
|
2605
2886
|
# domain_iam_role_name: "String",
|
2606
2887
|
# enable_global_write_forwarding: false,
|
2888
|
+
# db_cluster_instance_class: "String",
|
2889
|
+
# allocated_storage: 1,
|
2890
|
+
# storage_type: "String",
|
2891
|
+
# iops: 1,
|
2892
|
+
# publicly_accessible: false,
|
2893
|
+
# auto_minor_version_upgrade: false,
|
2894
|
+
# monitoring_interval: 1,
|
2895
|
+
# monitoring_role_arn: "String",
|
2896
|
+
# enable_performance_insights: false,
|
2897
|
+
# performance_insights_kms_key_id: "String",
|
2898
|
+
# performance_insights_retention_period: 1,
|
2607
2899
|
# source_region: "String",
|
2608
2900
|
# })
|
2609
2901
|
#
|
@@ -2699,6 +2991,16 @@ module Aws::RDS
|
|
2699
2991
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
2700
2992
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
2701
2993
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
2994
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
2995
|
+
# resp.db_cluster.storage_type #=> String
|
2996
|
+
# resp.db_cluster.iops #=> Integer
|
2997
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
2998
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
2999
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
3000
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
3001
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
3002
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
3003
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
2702
3004
|
#
|
2703
3005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
2704
3006
|
#
|
@@ -2725,7 +3027,7 @@ module Aws::RDS
|
|
2725
3027
|
# as a lowercase string.
|
2726
3028
|
#
|
2727
3029
|
# @option params [required, String] :endpoint_type
|
2728
|
-
# The type of the endpoint
|
3030
|
+
# The type of the endpoint, one of: `READER`, `WRITER`, `ANY`.
|
2729
3031
|
#
|
2730
3032
|
# @option params [Array<String>] :static_members
|
2731
3033
|
# List of DB instance identifiers that are part of the custom endpoint
|
@@ -2734,7 +3036,8 @@ module Aws::RDS
|
|
2734
3036
|
# @option params [Array<String>] :excluded_members
|
2735
3037
|
# List of DB instance identifiers that aren't part of the custom
|
2736
3038
|
# endpoint group. All other eligible instances are reachable through the
|
2737
|
-
# custom endpoint.
|
3039
|
+
# custom endpoint. This parameter is relevant only if the list of static
|
3040
|
+
# members is empty.
|
2738
3041
|
#
|
2739
3042
|
# @option params [Array<Types::Tag>] :tags
|
2740
3043
|
# The tags to be assigned to the Amazon RDS resource.
|
@@ -2803,10 +3106,16 @@ module Aws::RDS
|
|
2803
3106
|
# modify the group after creating it using
|
2804
3107
|
# `ModifyDBClusterParameterGroup`. Once you've created a DB cluster
|
2805
3108
|
# parameter group, you need to associate it with your DB cluster using
|
2806
|
-
# `ModifyDBCluster`.
|
2807
|
-
#
|
2808
|
-
#
|
2809
|
-
#
|
3109
|
+
# `ModifyDBCluster`.
|
3110
|
+
#
|
3111
|
+
# When you associate a new DB cluster parameter group with a running
|
3112
|
+
# Aurora DB cluster, reboot the DB instances in the DB cluster without
|
3113
|
+
# failover for the new DB cluster parameter group and associated
|
3114
|
+
# settings to take effect.
|
3115
|
+
#
|
3116
|
+
# When you associate a new DB cluster parameter group with a running
|
3117
|
+
# Multi-AZ DB cluster, reboot the DB cluster without failover for the
|
3118
|
+
# new DB cluster parameter group and associated settings to take effect.
|
2810
3119
|
#
|
2811
3120
|
# After you create a DB cluster parameter group, you should wait at
|
2812
3121
|
# least 5 minutes before creating your first DB cluster that uses that
|
@@ -2820,10 +3129,15 @@ module Aws::RDS
|
|
2820
3129
|
# RDS console][1] or the `DescribeDBClusterParameters` action to verify
|
2821
3130
|
# that your DB cluster parameter group has been created or modified.
|
2822
3131
|
#
|
2823
|
-
# For more information on Amazon Aurora, see [ What
|
3132
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
2824
3133
|
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
2825
3134
|
#
|
2826
|
-
#
|
3135
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
3136
|
+
# deployments with two readable standby DB instances][3] in the *Amazon
|
3137
|
+
# RDS User Guide.*
|
3138
|
+
#
|
3139
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
3140
|
+
# change.
|
2827
3141
|
#
|
2828
3142
|
# </note>
|
2829
3143
|
#
|
@@ -2831,13 +3145,14 @@ module Aws::RDS
|
|
2831
3145
|
#
|
2832
3146
|
# [1]: https://console.aws.amazon.com/rds/
|
2833
3147
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
3148
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
2834
3149
|
#
|
2835
3150
|
# @option params [required, String] :db_cluster_parameter_group_name
|
2836
3151
|
# The name of the DB cluster parameter group.
|
2837
3152
|
#
|
2838
3153
|
# Constraints:
|
2839
3154
|
#
|
2840
|
-
# * Must match the name of an existing DB cluster parameter group.
|
3155
|
+
# * Must not match the name of an existing DB cluster parameter group.
|
2841
3156
|
#
|
2842
3157
|
# ^
|
2843
3158
|
#
|
@@ -2860,6 +3175,14 @@ module Aws::RDS
|
|
2860
3175
|
#
|
2861
3176
|
# Example: `aurora-postgresql9.6`
|
2862
3177
|
#
|
3178
|
+
# **RDS for MySQL**
|
3179
|
+
#
|
3180
|
+
# Example: `mysql8.0`
|
3181
|
+
#
|
3182
|
+
# **RDS for PostgreSQL**
|
3183
|
+
#
|
3184
|
+
# Example: `postgres12`
|
3185
|
+
#
|
2863
3186
|
# To list all of the available parameter group families for a DB engine,
|
2864
3187
|
# use the following command:
|
2865
3188
|
#
|
@@ -2885,6 +3208,10 @@ module Aws::RDS
|
|
2885
3208
|
#
|
2886
3209
|
# * `aurora-postgresql`
|
2887
3210
|
#
|
3211
|
+
# * `mysql`
|
3212
|
+
#
|
3213
|
+
# * `postgres`
|
3214
|
+
#
|
2888
3215
|
# @option params [required, String] :description
|
2889
3216
|
# The description for the DB cluster parameter group.
|
2890
3217
|
#
|
@@ -2942,17 +3269,24 @@ module Aws::RDS
|
|
2942
3269
|
req.send_request(options)
|
2943
3270
|
end
|
2944
3271
|
|
2945
|
-
# Creates a snapshot of a DB cluster.
|
2946
|
-
# Aurora, see [ What Is Amazon Aurora?][1] in the *Amazon Aurora User
|
2947
|
-
# Guide.*
|
3272
|
+
# Creates a snapshot of a DB cluster.
|
2948
3273
|
#
|
2949
|
-
#
|
3274
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
3275
|
+
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
3276
|
+
#
|
3277
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
3278
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
3279
|
+
# RDS User Guide.*
|
3280
|
+
#
|
3281
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
3282
|
+
# change.
|
2950
3283
|
#
|
2951
3284
|
# </note>
|
2952
3285
|
#
|
2953
3286
|
#
|
2954
3287
|
#
|
2955
3288
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
3289
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
2956
3290
|
#
|
2957
3291
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
2958
3292
|
# The identifier of the DB cluster snapshot. This parameter is stored as
|
@@ -3281,8 +3615,8 @@ module Aws::RDS
|
|
3281
3615
|
# * Web and Express editions: Must be an integer from 20 to 1024.
|
3282
3616
|
#
|
3283
3617
|
# @option params [required, String] :db_instance_class
|
3284
|
-
# The compute and memory capacity of the DB instance, for example
|
3285
|
-
#
|
3618
|
+
# The compute and memory capacity of the DB instance, for example
|
3619
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
3286
3620
|
# Web Services Regions, or for all database engines. For the full list
|
3287
3621
|
# of DB instance classes, and availability for your engine, see [DB
|
3288
3622
|
# Instance Class][1] in the *Amazon RDS User Guide.*
|
@@ -3337,59 +3671,13 @@ module Aws::RDS
|
|
3337
3671
|
# Not applicable. The name for the master user is managed by the DB
|
3338
3672
|
# cluster.
|
3339
3673
|
#
|
3340
|
-
# **
|
3341
|
-
#
|
3342
|
-
# Constraints:
|
3343
|
-
#
|
3344
|
-
# * Required for MariaDB.
|
3345
|
-
#
|
3346
|
-
# * Must be 1 to 16 letters or numbers.
|
3347
|
-
#
|
3348
|
-
# * Can't be a reserved word for the chosen database engine.
|
3349
|
-
#
|
3350
|
-
# **Microsoft SQL Server**
|
3351
|
-
#
|
3352
|
-
# Constraints:
|
3353
|
-
#
|
3354
|
-
# * Required for SQL Server.
|
3355
|
-
#
|
3356
|
-
# * Must be 1 to 128 letters or numbers.
|
3357
|
-
#
|
3358
|
-
# * The first character must be a letter.
|
3359
|
-
#
|
3360
|
-
# * Can't be a reserved word for the chosen database engine.
|
3361
|
-
#
|
3362
|
-
# **MySQL**
|
3363
|
-
#
|
3364
|
-
# Constraints:
|
3365
|
-
#
|
3366
|
-
# * Required for MySQL.
|
3367
|
-
#
|
3368
|
-
# * Must be 1 to 16 letters or numbers.
|
3369
|
-
#
|
3370
|
-
# * First character must be a letter.
|
3371
|
-
#
|
3372
|
-
# * Can't be a reserved word for the chosen database engine.
|
3373
|
-
#
|
3374
|
-
# **Oracle**
|
3375
|
-
#
|
3376
|
-
# Constraints:
|
3377
|
-
#
|
3378
|
-
# * Required for Oracle.
|
3379
|
-
#
|
3380
|
-
# * Must be 1 to 30 letters or numbers.
|
3381
|
-
#
|
3382
|
-
# * First character must be a letter.
|
3383
|
-
#
|
3384
|
-
# * Can't be a reserved word for the chosen database engine.
|
3385
|
-
#
|
3386
|
-
# **PostgreSQL**
|
3674
|
+
# **Amazon RDS**
|
3387
3675
|
#
|
3388
3676
|
# Constraints:
|
3389
3677
|
#
|
3390
|
-
# * Required
|
3678
|
+
# * Required.
|
3391
3679
|
#
|
3392
|
-
# * Must be 1 to
|
3680
|
+
# * Must be 1 to 16 letters, numbers, or underscores.
|
3393
3681
|
#
|
3394
3682
|
# * First character must be a letter.
|
3395
3683
|
#
|
@@ -3636,27 +3924,28 @@ module Aws::RDS
|
|
3636
3924
|
#
|
3637
3925
|
# **MariaDB**
|
3638
3926
|
#
|
3639
|
-
#
|
3640
|
-
# Guide.*
|
3927
|
+
# For information, see [MariaDB on Amazon RDS Versions][2] in the
|
3928
|
+
# *Amazon RDS User Guide.*
|
3641
3929
|
#
|
3642
3930
|
# **Microsoft SQL Server**
|
3643
3931
|
#
|
3644
|
-
#
|
3645
|
-
# RDS User Guide.*
|
3932
|
+
# For information, see [Microsoft SQL Server Versions on Amazon RDS][3]
|
3933
|
+
# in the *Amazon RDS User Guide.*
|
3646
3934
|
#
|
3647
3935
|
# **MySQL**
|
3648
3936
|
#
|
3649
|
-
#
|
3937
|
+
# For information, see [MySQL on Amazon RDS Versions][4] in the *Amazon
|
3938
|
+
# RDS User Guide.*
|
3650
3939
|
#
|
3651
3940
|
# **Oracle**
|
3652
3941
|
#
|
3653
|
-
#
|
3654
|
-
# Guide.*
|
3942
|
+
# For information, see [Oracle Database Engine Release Notes][5] in the
|
3943
|
+
# *Amazon RDS User Guide.*
|
3655
3944
|
#
|
3656
3945
|
# **PostgreSQL**
|
3657
3946
|
#
|
3658
|
-
#
|
3659
|
-
# *Amazon RDS User Guide.*
|
3947
|
+
# For information, see [Amazon RDS for PostgreSQL versions and
|
3948
|
+
# extensions][6] in the *Amazon RDS User Guide.*
|
3660
3949
|
#
|
3661
3950
|
#
|
3662
3951
|
#
|
@@ -3686,8 +3975,8 @@ module Aws::RDS
|
|
3686
3975
|
# @option params [Integer] :iops
|
3687
3976
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
3688
3977
|
# be initially allocated for the DB instance. For information about
|
3689
|
-
# valid Iops values, see [Amazon RDS Provisioned IOPS
|
3690
|
-
#
|
3978
|
+
# valid `Iops` values, see [Amazon RDS Provisioned IOPS storage to
|
3979
|
+
# improve performance][1] in the *Amazon RDS User Guide*.
|
3691
3980
|
#
|
3692
3981
|
# Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB instances,
|
3693
3982
|
# must be a multiple between .5 and 50 of the storage amount for the DB
|
@@ -3729,12 +4018,13 @@ module Aws::RDS
|
|
3729
4018
|
# @option params [Boolean] :publicly_accessible
|
3730
4019
|
# A value that indicates whether the DB instance is publicly accessible.
|
3731
4020
|
#
|
3732
|
-
# When the DB instance is publicly accessible, its
|
3733
|
-
# to the private IP address from within the DB
|
3734
|
-
#
|
3735
|
-
#
|
3736
|
-
#
|
3737
|
-
#
|
4021
|
+
# When the DB instance is publicly accessible, its Domain Name System
|
4022
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
4023
|
+
# instance's virtual private cloud (VPC). It resolves to the public IP
|
4024
|
+
# address from outside of the DB instance's VPC. Access to the DB
|
4025
|
+
# instance is ultimately controlled by the security group it uses. That
|
4026
|
+
# public access is not permitted if the security group assigned to the
|
4027
|
+
# DB instance doesn't permit it.
|
3738
4028
|
#
|
3739
4029
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
3740
4030
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -3745,19 +4035,19 @@ module Aws::RDS
|
|
3745
4035
|
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
3746
4036
|
# isn't specified, the following applies:
|
3747
4037
|
#
|
3748
|
-
# * If the default VPC in the target
|
4038
|
+
# * If the default VPC in the target Region doesn’t have an internet
|
3749
4039
|
# gateway attached to it, the DB instance is private.
|
3750
4040
|
#
|
3751
|
-
# * If the default VPC in the target
|
4041
|
+
# * If the default VPC in the target Region has an internet gateway
|
3752
4042
|
# attached to it, the DB instance is public.
|
3753
4043
|
#
|
3754
4044
|
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
3755
4045
|
# specified, the following applies:
|
3756
4046
|
#
|
3757
|
-
# * If the subnets are part of a VPC that doesn’t have an
|
4047
|
+
# * If the subnets are part of a VPC that doesn’t have an internet
|
3758
4048
|
# gateway attached to it, the DB instance is private.
|
3759
4049
|
#
|
3760
|
-
# * If the subnets are part of a VPC that has an
|
4050
|
+
# * If the subnets are part of a VPC that has an internet gateway
|
3761
4051
|
# attached to it, the DB instance is public.
|
3762
4052
|
#
|
3763
4053
|
# @option params [Array<Types::Tag>] :tags
|
@@ -3916,7 +4206,7 @@ module Aws::RDS
|
|
3916
4206
|
# @option params [Boolean] :enable_iam_database_authentication
|
3917
4207
|
# A value that indicates whether to enable mapping of Amazon Web
|
3918
4208
|
# Services Identity and Access Management (IAM) accounts to database
|
3919
|
-
# accounts. By default, mapping
|
4209
|
+
# accounts. By default, mapping isn't enabled.
|
3920
4210
|
#
|
3921
4211
|
# This setting doesn't apply to RDS Custom or Amazon Aurora. In Aurora,
|
3922
4212
|
# mapping Amazon Web Services IAM accounts to database accounts is
|
@@ -4008,7 +4298,7 @@ module Aws::RDS
|
|
4008
4298
|
# @option params [Boolean] :deletion_protection
|
4009
4299
|
# A value that indicates whether the DB instance has deletion protection
|
4010
4300
|
# enabled. The database can't be deleted when deletion protection is
|
4011
|
-
# enabled. By default, deletion protection
|
4301
|
+
# enabled. By default, deletion protection isn't enabled. For more
|
4012
4302
|
# information, see [ Deleting a DB Instance][1].
|
4013
4303
|
#
|
4014
4304
|
# **Amazon Aurora**
|
@@ -4080,6 +4370,19 @@ module Aws::RDS
|
|
4080
4370
|
#
|
4081
4371
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
4082
4372
|
#
|
4373
|
+
# @option params [String] :backup_target
|
4374
|
+
# Specifies where automated backups and manual snapshots are stored.
|
4375
|
+
#
|
4376
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
4377
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
4378
|
+
#
|
4379
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
4380
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
4381
|
+
#
|
4382
|
+
#
|
4383
|
+
#
|
4384
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4385
|
+
#
|
4083
4386
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4084
4387
|
#
|
4085
4388
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -4166,6 +4469,7 @@ module Aws::RDS
|
|
4166
4469
|
# max_allocated_storage: 1,
|
4167
4470
|
# enable_customer_owned_ip: false,
|
4168
4471
|
# custom_iam_instance_profile: "String",
|
4472
|
+
# backup_target: "String",
|
4169
4473
|
# })
|
4170
4474
|
#
|
4171
4475
|
# @example Response structure
|
@@ -4305,6 +4609,7 @@ module Aws::RDS
|
|
4305
4609
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
4306
4610
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
4307
4611
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
4612
|
+
# resp.db_instance.backup_target #=> String
|
4308
4613
|
#
|
4309
4614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
4310
4615
|
#
|
@@ -4361,7 +4666,7 @@ module Aws::RDS
|
|
4361
4666
|
# Guide*.
|
4362
4667
|
#
|
4363
4668
|
# * Can specify a PostgreSQL DB instance only if the source is running
|
4364
|
-
# PostgreSQL 9.3.5 or later (9.4.7 and higher for cross-
|
4669
|
+
# PostgreSQL 9.3.5 or later (9.4.7 and higher for cross-Region
|
4365
4670
|
# replication).
|
4366
4671
|
#
|
4367
4672
|
# * The specified DB instance must have automatic backups enabled, that
|
@@ -4383,8 +4688,8 @@ module Aws::RDS
|
|
4383
4688
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
4384
4689
|
#
|
4385
4690
|
# @option params [String] :db_instance_class
|
4386
|
-
# The compute and memory capacity of the read replica, for example
|
4387
|
-
#
|
4691
|
+
# The compute and memory capacity of the read replica, for example
|
4692
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
4388
4693
|
# Web Services Regions, or for all database engines. For the full list
|
4389
4694
|
# of DB instance classes, and availability for your engine, see [DB
|
4390
4695
|
# Instance Class][1] in the *Amazon RDS User Guide.*
|
@@ -4450,8 +4755,8 @@ module Aws::RDS
|
|
4450
4755
|
#
|
4451
4756
|
# If you do not specify a value for `DBParameterGroupName`, then Amazon
|
4452
4757
|
# RDS uses the `DBParameterGroup` of source DB instance for a same
|
4453
|
-
#
|
4454
|
-
# specified DB engine for a cross
|
4758
|
+
# Region read replica, or the default `DBParameterGroup` for the
|
4759
|
+
# specified DB engine for a cross-Region read replica.
|
4455
4760
|
#
|
4456
4761
|
# Specifying a parameter group for this operation is only supported for
|
4457
4762
|
# Oracle DB instances. It isn't supported for RDS Custom.
|
@@ -4467,12 +4772,13 @@ module Aws::RDS
|
|
4467
4772
|
# @option params [Boolean] :publicly_accessible
|
4468
4773
|
# A value that indicates whether the DB instance is publicly accessible.
|
4469
4774
|
#
|
4470
|
-
# When the DB
|
4471
|
-
# to the private IP address from within the DB
|
4472
|
-
#
|
4473
|
-
#
|
4474
|
-
#
|
4475
|
-
#
|
4775
|
+
# When the DB cluster is publicly accessible, its Domain Name System
|
4776
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
4777
|
+
# cluster's virtual private cloud (VPC). It resolves to the public IP
|
4778
|
+
# address from outside of the DB cluster's VPC. Access to the DB
|
4779
|
+
# cluster is ultimately controlled by the security group it uses. That
|
4780
|
+
# public access isn't permitted if the security group assigned to the
|
4781
|
+
# DB cluster doesn't permit it.
|
4476
4782
|
#
|
4477
4783
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
4478
4784
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -4650,7 +4956,7 @@ module Aws::RDS
|
|
4650
4956
|
# Region.
|
4651
4957
|
#
|
4652
4958
|
# `SourceRegion` isn't supported for SQL Server, because SQL Server on
|
4653
|
-
# Amazon RDS doesn't support cross-
|
4959
|
+
# Amazon RDS doesn't support cross-Region read replicas.
|
4654
4960
|
#
|
4655
4961
|
# </note>
|
4656
4962
|
#
|
@@ -4664,7 +4970,7 @@ module Aws::RDS
|
|
4664
4970
|
# @option params [Boolean] :enable_iam_database_authentication
|
4665
4971
|
# A value that indicates whether to enable mapping of Amazon Web
|
4666
4972
|
# Services Identity and Access Management (IAM) accounts to database
|
4667
|
-
# accounts. By default, mapping
|
4973
|
+
# accounts. By default, mapping isn't enabled.
|
4668
4974
|
#
|
4669
4975
|
# For more information about IAM database authentication, see [ IAM
|
4670
4976
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -4736,7 +5042,7 @@ module Aws::RDS
|
|
4736
5042
|
# @option params [Boolean] :deletion_protection
|
4737
5043
|
# A value that indicates whether the DB instance has deletion protection
|
4738
5044
|
# enabled. The database can't be deleted when deletion protection is
|
4739
|
-
# enabled. By default, deletion protection
|
5045
|
+
# enabled. By default, deletion protection isn't enabled. For more
|
4740
5046
|
# information, see [ Deleting a DB Instance][1].
|
4741
5047
|
#
|
4742
5048
|
#
|
@@ -5046,6 +5352,7 @@ module Aws::RDS
|
|
5046
5352
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
5047
5353
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
5048
5354
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
5355
|
+
# resp.db_instance.backup_target #=> String
|
5049
5356
|
#
|
5050
5357
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
5051
5358
|
#
|
@@ -5600,6 +5907,7 @@ module Aws::RDS
|
|
5600
5907
|
# resp.db_snapshot.tag_list[0].key #=> String
|
5601
5908
|
# resp.db_snapshot.tag_list[0].value #=> String
|
5602
5909
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
5910
|
+
# resp.db_snapshot.snapshot_target #=> String
|
5603
5911
|
#
|
5604
5912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
5605
5913
|
#
|
@@ -6261,18 +6569,22 @@ module Aws::RDS
|
|
6261
6569
|
# DB cluster are deleted and can't be recovered. Manual DB cluster
|
6262
6570
|
# snapshots of the specified DB cluster are not deleted.
|
6263
6571
|
#
|
6264
|
-
#
|
6265
|
-
#
|
6266
|
-
# For more information on Amazon Aurora, see [ What Is Amazon
|
6572
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
6267
6573
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6268
6574
|
#
|
6269
|
-
#
|
6575
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
6576
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
6577
|
+
# RDS User Guide.*
|
6578
|
+
#
|
6579
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
6580
|
+
# change.
|
6270
6581
|
#
|
6271
6582
|
# </note>
|
6272
6583
|
#
|
6273
6584
|
#
|
6274
6585
|
#
|
6275
6586
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
6587
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
6276
6588
|
#
|
6277
6589
|
# @option params [required, String] :db_cluster_identifier
|
6278
6590
|
# The DB cluster identifier for the DB cluster to be deleted. This
|
@@ -6435,6 +6747,16 @@ module Aws::RDS
|
|
6435
6747
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
6436
6748
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
6437
6749
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
6750
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
6751
|
+
# resp.db_cluster.storage_type #=> String
|
6752
|
+
# resp.db_cluster.iops #=> Integer
|
6753
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
6754
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
6755
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
6756
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
6757
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
6758
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
6759
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
6438
6760
|
#
|
6439
6761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
6440
6762
|
#
|
@@ -6503,16 +6825,22 @@ module Aws::RDS
|
|
6503
6825
|
# parameter group to be deleted can't be associated with any DB
|
6504
6826
|
# clusters.
|
6505
6827
|
#
|
6506
|
-
# For more information on Amazon Aurora, see [ What
|
6828
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
6507
6829
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6508
6830
|
#
|
6509
|
-
#
|
6831
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
6832
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
6833
|
+
# RDS User Guide.*
|
6834
|
+
#
|
6835
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
6836
|
+
# change.
|
6510
6837
|
#
|
6511
6838
|
# </note>
|
6512
6839
|
#
|
6513
6840
|
#
|
6514
6841
|
#
|
6515
6842
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
6843
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
6516
6844
|
#
|
6517
6845
|
# @option params [required, String] :db_cluster_parameter_group_name
|
6518
6846
|
# The name of the DB cluster parameter group.
|
@@ -6559,16 +6887,22 @@ module Aws::RDS
|
|
6559
6887
|
#
|
6560
6888
|
# </note>
|
6561
6889
|
#
|
6562
|
-
# For more information on Amazon Aurora, see [ What
|
6890
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
6563
6891
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6564
6892
|
#
|
6565
|
-
#
|
6893
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
6894
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
6895
|
+
# RDS User Guide.*
|
6896
|
+
#
|
6897
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
6898
|
+
# change.
|
6566
6899
|
#
|
6567
6900
|
# </note>
|
6568
6901
|
#
|
6569
6902
|
#
|
6570
6903
|
#
|
6571
6904
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
6905
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
6572
6906
|
#
|
6573
6907
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
6574
6908
|
# The identifier of the DB cluster snapshot to delete.
|
@@ -6894,6 +7228,7 @@ module Aws::RDS
|
|
6894
7228
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
6895
7229
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
6896
7230
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
7231
|
+
# resp.db_instance.backup_target #=> String
|
6897
7232
|
#
|
6898
7233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
6899
7234
|
#
|
@@ -6960,6 +7295,7 @@ module Aws::RDS
|
|
6960
7295
|
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
6961
7296
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
6962
7297
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
7298
|
+
# resp.db_instance_automated_backup.backup_target #=> String
|
6963
7299
|
#
|
6964
7300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
6965
7301
|
#
|
@@ -7227,6 +7563,7 @@ module Aws::RDS
|
|
7227
7563
|
# resp.db_snapshot.tag_list[0].key #=> String
|
7228
7564
|
# resp.db_snapshot.tag_list[0].value #=> String
|
7229
7565
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
7566
|
+
# resp.db_snapshot.snapshot_target #=> String
|
7230
7567
|
#
|
7231
7568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
7232
7569
|
#
|
@@ -7713,7 +8050,7 @@ module Aws::RDS
|
|
7713
8050
|
|
7714
8051
|
# Returns information about backtracks for a DB cluster.
|
7715
8052
|
#
|
7716
|
-
# For more information on Amazon Aurora, see [ What
|
8053
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
7717
8054
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
7718
8055
|
#
|
7719
8056
|
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
@@ -7932,16 +8269,22 @@ module Aws::RDS
|
|
7932
8269
|
# contain only the description of the specified DB cluster parameter
|
7933
8270
|
# group.
|
7934
8271
|
#
|
7935
|
-
# For more information on Amazon Aurora, see [ What
|
8272
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
7936
8273
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
7937
8274
|
#
|
7938
|
-
#
|
8275
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
8276
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
8277
|
+
# RDS User Guide.*
|
8278
|
+
#
|
8279
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8280
|
+
# change.
|
7939
8281
|
#
|
7940
8282
|
# </note>
|
7941
8283
|
#
|
7942
8284
|
#
|
7943
8285
|
#
|
7944
8286
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
8287
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
7945
8288
|
#
|
7946
8289
|
# @option params [String] :db_cluster_parameter_group_name
|
7947
8290
|
# The name of a specific DB cluster parameter group to return details
|
@@ -8028,16 +8371,22 @@ module Aws::RDS
|
|
8028
8371
|
# Returns the detailed parameter list for a particular DB cluster
|
8029
8372
|
# parameter group.
|
8030
8373
|
#
|
8031
|
-
# For more information on Amazon Aurora, see [ What
|
8374
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
8032
8375
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
8033
8376
|
#
|
8034
|
-
#
|
8377
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
8378
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
8379
|
+
# RDS User Guide.*
|
8380
|
+
#
|
8381
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8382
|
+
# change.
|
8035
8383
|
#
|
8036
8384
|
# </note>
|
8037
8385
|
#
|
8038
8386
|
#
|
8039
8387
|
#
|
8040
8388
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
8389
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
8041
8390
|
#
|
8042
8391
|
# @option params [required, String] :db_cluster_parameter_group_name
|
8043
8392
|
# The name of a specific DB cluster parameter group to return parameter
|
@@ -8151,10 +8500,6 @@ module Aws::RDS
|
|
8151
8500
|
# snapshot public or private, use the `ModifyDBClusterSnapshotAttribute`
|
8152
8501
|
# API action.
|
8153
8502
|
#
|
8154
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
8155
|
-
#
|
8156
|
-
# </note>
|
8157
|
-
#
|
8158
8503
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
8159
8504
|
# The identifier for the DB cluster snapshot to describe the attributes
|
8160
8505
|
# for.
|
@@ -8204,16 +8549,22 @@ module Aws::RDS
|
|
8204
8549
|
# Returns information about DB cluster snapshots. This API action
|
8205
8550
|
# supports pagination.
|
8206
8551
|
#
|
8207
|
-
# For more information on Amazon Aurora, see [ What
|
8208
|
-
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
8552
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
8553
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
8209
8554
|
#
|
8210
|
-
#
|
8555
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
8556
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
8557
|
+
# RDS User Guide.*
|
8558
|
+
#
|
8559
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8560
|
+
# change.
|
8211
8561
|
#
|
8212
8562
|
# </note>
|
8213
8563
|
#
|
8214
8564
|
#
|
8215
8565
|
#
|
8216
8566
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
8567
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
8217
8568
|
#
|
8218
8569
|
# @option params [String] :db_cluster_identifier
|
8219
8570
|
# The ID of the DB cluster to retrieve the list of DB cluster snapshots
|
@@ -8401,20 +8752,28 @@ module Aws::RDS
|
|
8401
8752
|
req.send_request(options)
|
8402
8753
|
end
|
8403
8754
|
|
8404
|
-
# Returns information about
|
8405
|
-
# supports pagination.
|
8755
|
+
# Returns information about Amazon Aurora DB clusters and Multi-AZ DB
|
8756
|
+
# clusters. This API supports pagination.
|
8757
|
+
#
|
8758
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
8759
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
8406
8760
|
#
|
8407
|
-
# For more information on
|
8408
|
-
#
|
8761
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
8762
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
8763
|
+
# RDS User Guide.*
|
8409
8764
|
#
|
8410
|
-
# <note markdown="1">
|
8411
|
-
#
|
8765
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8766
|
+
# change.
|
8412
8767
|
#
|
8413
8768
|
# </note>
|
8414
8769
|
#
|
8770
|
+
# This operation can also return information for Amazon Neptune DB
|
8771
|
+
# instances and Amazon DocumentDB instances.
|
8772
|
+
#
|
8415
8773
|
#
|
8416
8774
|
#
|
8417
8775
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
8776
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
8418
8777
|
#
|
8419
8778
|
# @option params [String] :db_cluster_identifier
|
8420
8779
|
# The user-supplied DB cluster identifier. If this parameter is
|
@@ -8597,6 +8956,16 @@ module Aws::RDS
|
|
8597
8956
|
# resp.db_clusters[0].pending_modified_values.master_user_password #=> String
|
8598
8957
|
# resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
8599
8958
|
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
8959
|
+
# resp.db_clusters[0].db_cluster_instance_class #=> String
|
8960
|
+
# resp.db_clusters[0].storage_type #=> String
|
8961
|
+
# resp.db_clusters[0].iops #=> Integer
|
8962
|
+
# resp.db_clusters[0].publicly_accessible #=> Boolean
|
8963
|
+
# resp.db_clusters[0].auto_minor_version_upgrade #=> Boolean
|
8964
|
+
# resp.db_clusters[0].monitoring_interval #=> Integer
|
8965
|
+
# resp.db_clusters[0].monitoring_role_arn #=> String
|
8966
|
+
# resp.db_clusters[0].performance_insights_enabled #=> Boolean
|
8967
|
+
# resp.db_clusters[0].performance_insights_kms_key_id #=> String
|
8968
|
+
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
8600
8969
|
#
|
8601
8970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
8602
8971
|
#
|
@@ -8929,6 +9298,7 @@ module Aws::RDS
|
|
8929
9298
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_arn #=> String
|
8930
9299
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications #=> Array
|
8931
9300
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
9301
|
+
# resp.db_instance_automated_backups[0].backup_target #=> String
|
8932
9302
|
#
|
8933
9303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
8934
9304
|
#
|
@@ -9172,6 +9542,7 @@ module Aws::RDS
|
|
9172
9542
|
# resp.db_instances[0].automation_mode #=> String, one of "full", "all-paused"
|
9173
9543
|
# resp.db_instances[0].resume_full_automation_mode_time #=> Time
|
9174
9544
|
# resp.db_instances[0].custom_iam_instance_profile #=> String
|
9545
|
+
# resp.db_instances[0].backup_target #=> String
|
9175
9546
|
#
|
9176
9547
|
#
|
9177
9548
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10132,6 +10503,7 @@ module Aws::RDS
|
|
10132
10503
|
# resp.db_snapshots[0].tag_list[0].key #=> String
|
10133
10504
|
# resp.db_snapshots[0].tag_list[0].value #=> String
|
10134
10505
|
# resp.db_snapshots[0].original_snapshot_create_time #=> Time
|
10506
|
+
# resp.db_snapshots[0].snapshot_target #=> String
|
10135
10507
|
#
|
10136
10508
|
#
|
10137
10509
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10241,7 +10613,7 @@ module Aws::RDS
|
|
10241
10613
|
# Returns the default engine and system parameter information for the
|
10242
10614
|
# cluster database engine.
|
10243
10615
|
#
|
10244
|
-
# For more information on Amazon Aurora, see [ What
|
10616
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
10245
10617
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
10246
10618
|
#
|
10247
10619
|
#
|
@@ -10766,6 +11138,8 @@ module Aws::RDS
|
|
10766
11138
|
#
|
10767
11139
|
# * `failed`
|
10768
11140
|
#
|
11141
|
+
# * `in_progress`
|
11142
|
+
#
|
10769
11143
|
# * `starting`
|
10770
11144
|
#
|
10771
11145
|
# @option params [String] :marker
|
@@ -10839,7 +11213,7 @@ module Aws::RDS
|
|
10839
11213
|
# Returns information about Aurora global database clusters. This API
|
10840
11214
|
# supports pagination.
|
10841
11215
|
#
|
10842
|
-
# For more information on Amazon Aurora, see [ What
|
11216
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
10843
11217
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
10844
11218
|
#
|
10845
11219
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
@@ -11280,8 +11654,8 @@ module Aws::RDS
|
|
11280
11654
|
req.send_request(options)
|
11281
11655
|
end
|
11282
11656
|
|
11283
|
-
# Returns a list of orderable DB instance options for the specified
|
11284
|
-
# engine.
|
11657
|
+
# Returns a list of orderable DB instance options for the specified DB
|
11658
|
+
# engine, DB engine version, and DB instance class.
|
11285
11659
|
#
|
11286
11660
|
# @option params [required, String] :engine
|
11287
11661
|
# The name of the engine to retrieve DB instance options for.
|
@@ -11447,6 +11821,7 @@ module Aws::RDS
|
|
11447
11821
|
# resp.orderable_db_instance_options[0].supported_activity_stream_modes #=> Array
|
11448
11822
|
# resp.orderable_db_instance_options[0].supported_activity_stream_modes[0] #=> String
|
11449
11823
|
# resp.orderable_db_instance_options[0].supports_global_databases #=> Boolean
|
11824
|
+
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
11450
11825
|
# resp.marker #=> String
|
11451
11826
|
#
|
11452
11827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -12101,27 +12476,41 @@ module Aws::RDS
|
|
12101
12476
|
|
12102
12477
|
# Forces a failover for a DB cluster.
|
12103
12478
|
#
|
12104
|
-
#
|
12105
|
-
# (read-only instances) in the DB cluster to be the
|
12106
|
-
# (the cluster writer).
|
12479
|
+
# For an Aurora DB cluster, failover for a DB cluster promotes one of
|
12480
|
+
# the Aurora Replicas (read-only instances) in the DB cluster to be the
|
12481
|
+
# primary DB instance (the cluster writer).
|
12107
12482
|
#
|
12108
|
-
#
|
12109
|
-
#
|
12110
|
-
#
|
12111
|
-
# Because each instance in a DB cluster has its own endpoint address,
|
12112
|
-
# you will need to clean up and re-establish any existing connections
|
12113
|
-
# that use those endpoint addresses when the failover is complete.
|
12483
|
+
# For a Multi-AZ DB cluster, failover for a DB cluster promotes one of
|
12484
|
+
# the readable standby DB instances (read-only instances) in the DB
|
12485
|
+
# cluster to be the primary DB instance (the cluster writer).
|
12114
12486
|
#
|
12115
|
-
#
|
12116
|
-
#
|
12487
|
+
# An Amazon Aurora DB cluster automatically fails over to an Aurora
|
12488
|
+
# Replica, if one exists, when the primary DB instance fails. A Multi-AZ
|
12489
|
+
# DB cluster automatically fails over to a readbable standby DB instance
|
12490
|
+
# when the primary DB instance fails.
|
12117
12491
|
#
|
12118
|
-
#
|
12492
|
+
# To simulate a failure of a primary instance for testing, you can force
|
12493
|
+
# a failover. Because each instance in a DB cluster has its own endpoint
|
12494
|
+
# address, make sure to clean up and re-establish any existing
|
12495
|
+
# connections that use those endpoint addresses when the failover is
|
12496
|
+
# complete.
|
12497
|
+
#
|
12498
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
12499
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
12500
|
+
#
|
12501
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
12502
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
12503
|
+
# RDS User Guide.*
|
12504
|
+
#
|
12505
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
12506
|
+
# change.
|
12119
12507
|
#
|
12120
12508
|
# </note>
|
12121
12509
|
#
|
12122
12510
|
#
|
12123
12511
|
#
|
12124
12512
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
12513
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
12125
12514
|
#
|
12126
12515
|
# @option params [required, String] :db_cluster_identifier
|
12127
12516
|
# A DB cluster identifier to force a failover for. This parameter isn't
|
@@ -12134,10 +12523,13 @@ module Aws::RDS
|
|
12134
12523
|
# ^
|
12135
12524
|
#
|
12136
12525
|
# @option params [String] :target_db_instance_identifier
|
12137
|
-
# The name of the instance to promote to the primary instance.
|
12526
|
+
# The name of the DB instance to promote to the primary DB instance.
|
12527
|
+
#
|
12528
|
+
# Specify the DB instance identifier for an Aurora Replica or a Multi-AZ
|
12529
|
+
# readable standby in the DB cluster, for example
|
12530
|
+
# `mydbcluster-replica1`.
|
12138
12531
|
#
|
12139
|
-
#
|
12140
|
-
# DB cluster. For example, `mydbcluster-replica1`.
|
12532
|
+
# This setting isn't supported for RDS for MySQL Multi-AZ DB clusters.
|
12141
12533
|
#
|
12142
12534
|
# @return [Types::FailoverDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12143
12535
|
#
|
@@ -12258,6 +12650,16 @@ module Aws::RDS
|
|
12258
12650
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
12259
12651
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
12260
12652
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
12653
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
12654
|
+
# resp.db_cluster.storage_type #=> String
|
12655
|
+
# resp.db_cluster.iops #=> Integer
|
12656
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
12657
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
12658
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
12659
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
12660
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
12661
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
12662
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
12261
12663
|
#
|
12262
12664
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
12263
12665
|
#
|
@@ -12718,7 +13120,7 @@ module Aws::RDS
|
|
12718
13120
|
#
|
12719
13121
|
#
|
12720
13122
|
#
|
12721
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.
|
13123
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify
|
12722
13124
|
#
|
12723
13125
|
# @option params [required, String] :engine
|
12724
13126
|
# The DB engine. The only supported value is `custom-oracle-ee`.
|
@@ -12848,19 +13250,26 @@ module Aws::RDS
|
|
12848
13250
|
req.send_request(options)
|
12849
13251
|
end
|
12850
13252
|
|
12851
|
-
# Modify
|
12852
|
-
# or more
|
12853
|
-
# parameters and the new values in the request.
|
12854
|
-
# Amazon Aurora, see [ What Is Amazon Aurora?][1] in the *Amazon Aurora
|
12855
|
-
# User Guide.*
|
13253
|
+
# Modify the settings for an Amazon Aurora DB cluster or a Multi-AZ DB
|
13254
|
+
# cluster. You can change one or more settings by specifying these
|
13255
|
+
# parameters and the new values in the request.
|
12856
13256
|
#
|
12857
|
-
#
|
13257
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
13258
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
13259
|
+
#
|
13260
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
13261
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
13262
|
+
# RDS User Guide.*
|
13263
|
+
#
|
13264
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
13265
|
+
# change.
|
12858
13266
|
#
|
12859
13267
|
# </note>
|
12860
13268
|
#
|
12861
13269
|
#
|
12862
13270
|
#
|
12863
13271
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
13272
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
12864
13273
|
#
|
12865
13274
|
# @option params [required, String] :db_cluster_identifier
|
12866
13275
|
# The DB cluster identifier for the cluster being modified. This
|
@@ -12869,6 +13278,8 @@ module Aws::RDS
|
|
12869
13278
|
# Constraints: This identifier must match the identifier of an existing
|
12870
13279
|
# DB cluster.
|
12871
13280
|
#
|
13281
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13282
|
+
#
|
12872
13283
|
# @option params [String] :new_db_cluster_identifier
|
12873
13284
|
# The new DB cluster identifier for the DB cluster when renaming a DB
|
12874
13285
|
# cluster. This value is stored as a lowercase string.
|
@@ -12883,6 +13294,8 @@ module Aws::RDS
|
|
12883
13294
|
#
|
12884
13295
|
# Example: `my-cluster2`
|
12885
13296
|
#
|
13297
|
+
# Valid for: Aurora DB clusters only
|
13298
|
+
#
|
12886
13299
|
# @option params [Boolean] :apply_immediately
|
12887
13300
|
# A value that indicates whether the modifications in this request and
|
12888
13301
|
# any pending modifications are asynchronously applied as soon as
|
@@ -12901,9 +13314,11 @@ module Aws::RDS
|
|
12901
13314
|
#
|
12902
13315
|
# By default, this parameter is disabled.
|
12903
13316
|
#
|
13317
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13318
|
+
#
|
12904
13319
|
# @option params [Integer] :backup_retention_period
|
12905
|
-
# The number of days for which automated backups are retained.
|
12906
|
-
#
|
13320
|
+
# The number of days for which automated backups are retained. Specify a
|
13321
|
+
# minimum value of 1.
|
12907
13322
|
#
|
12908
13323
|
# Default: 1
|
12909
13324
|
#
|
@@ -12913,12 +13328,18 @@ module Aws::RDS
|
|
12913
13328
|
#
|
12914
13329
|
# ^
|
12915
13330
|
#
|
13331
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13332
|
+
#
|
12916
13333
|
# @option params [String] :db_cluster_parameter_group_name
|
12917
13334
|
# The name of the DB cluster parameter group to use for the DB cluster.
|
12918
13335
|
#
|
13336
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13337
|
+
#
|
12919
13338
|
# @option params [Array<String>] :vpc_security_group_ids
|
12920
13339
|
# A list of VPC security groups that the DB cluster will belong to.
|
12921
13340
|
#
|
13341
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13342
|
+
#
|
12922
13343
|
# @option params [Integer] :port
|
12923
13344
|
# The port number on which the DB cluster accepts connections.
|
12924
13345
|
#
|
@@ -12926,25 +13347,22 @@ module Aws::RDS
|
|
12926
13347
|
#
|
12927
13348
|
# Default: The same port as the original DB cluster.
|
12928
13349
|
#
|
13350
|
+
# Valid for: Aurora DB clusters only
|
13351
|
+
#
|
12929
13352
|
# @option params [String] :master_user_password
|
12930
13353
|
# The new password for the master database user. This password can
|
12931
13354
|
# contain any printable ASCII character except "/", """, or "@".
|
12932
13355
|
#
|
12933
13356
|
# Constraints: Must contain from 8 to 41 characters.
|
12934
13357
|
#
|
13358
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13359
|
+
#
|
12935
13360
|
# @option params [String] :option_group_name
|
12936
13361
|
# A value that indicates that the DB cluster should be associated with
|
12937
|
-
# the specified option group.
|
12938
|
-
#
|
12939
|
-
#
|
12940
|
-
#
|
12941
|
-
# group that enables OEM, this change can cause a brief (sub-second)
|
12942
|
-
# period during which new connections are rejected but existing
|
12943
|
-
# connections are not interrupted.
|
12944
|
-
#
|
12945
|
-
# Permanent options can't be removed from an option group. The option
|
12946
|
-
# group can't be removed from a DB cluster once it is associated with a
|
12947
|
-
# DB cluster.
|
13362
|
+
# the specified option group.
|
13363
|
+
#
|
13364
|
+
# DB clusters are associated with a default option group that can't be
|
13365
|
+
# modified.
|
12948
13366
|
#
|
12949
13367
|
# @option params [String] :preferred_backup_window
|
12950
13368
|
# The daily time range during which automated backups are created if
|
@@ -12966,6 +13384,8 @@ module Aws::RDS
|
|
12966
13384
|
#
|
12967
13385
|
# * Must be at least 30 minutes.
|
12968
13386
|
#
|
13387
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13388
|
+
#
|
12969
13389
|
#
|
12970
13390
|
#
|
12971
13391
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
@@ -12986,6 +13406,8 @@ module Aws::RDS
|
|
12986
13406
|
#
|
12987
13407
|
# Constraints: Minimum 30-minute window.
|
12988
13408
|
#
|
13409
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13410
|
+
#
|
12989
13411
|
#
|
12990
13412
|
#
|
12991
13413
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
@@ -12993,11 +13415,13 @@ module Aws::RDS
|
|
12993
13415
|
# @option params [Boolean] :enable_iam_database_authentication
|
12994
13416
|
# A value that indicates whether to enable mapping of Amazon Web
|
12995
13417
|
# Services Identity and Access Management (IAM) accounts to database
|
12996
|
-
# accounts. By default, mapping
|
13418
|
+
# accounts. By default, mapping isn't enabled.
|
12997
13419
|
#
|
12998
13420
|
# For more information, see [ IAM Database Authentication][1] in the
|
12999
13421
|
# *Amazon Aurora User Guide.*
|
13000
13422
|
#
|
13423
|
+
# Valid for: Aurora DB clusters only
|
13424
|
+
#
|
13001
13425
|
#
|
13002
13426
|
#
|
13003
13427
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -13006,10 +13430,6 @@ module Aws::RDS
|
|
13006
13430
|
# The target backtrack window, in seconds. To disable backtracking, set
|
13007
13431
|
# this value to 0.
|
13008
13432
|
#
|
13009
|
-
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
13010
|
-
#
|
13011
|
-
# </note>
|
13012
|
-
#
|
13013
13433
|
# Default: 0
|
13014
13434
|
#
|
13015
13435
|
# Constraints:
|
@@ -13019,34 +13439,52 @@ module Aws::RDS
|
|
13019
13439
|
#
|
13020
13440
|
# ^
|
13021
13441
|
#
|
13442
|
+
# Valid for: Aurora MySQL DB clusters only
|
13443
|
+
#
|
13022
13444
|
# @option params [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
|
13023
13445
|
# The configuration setting for the log types to be enabled for export
|
13024
13446
|
# to CloudWatch Logs for a specific DB cluster.
|
13025
13447
|
#
|
13448
|
+
# Valid for: Aurora DB clusters only
|
13449
|
+
#
|
13026
13450
|
# @option params [String] :engine_version
|
13027
13451
|
# The version number of the database engine to which you want to
|
13028
13452
|
# upgrade. Changing this parameter results in an outage. The change is
|
13029
13453
|
# applied during the next maintenance window unless `ApplyImmediately`
|
13030
13454
|
# is enabled.
|
13031
13455
|
#
|
13032
|
-
# To list all of the available engine versions for
|
13033
|
-
#
|
13456
|
+
# To list all of the available engine versions for MySQL 5.6-compatible
|
13457
|
+
# Aurora, use the following command:
|
13034
13458
|
#
|
13035
13459
|
# `aws rds describe-db-engine-versions --engine aurora --query
|
13036
13460
|
# "DBEngineVersions[].EngineVersion"`
|
13037
13461
|
#
|
13038
|
-
# To list all of the available engine versions for
|
13039
|
-
#
|
13462
|
+
# To list all of the available engine versions for MySQL 5.7-compatible
|
13463
|
+
# Aurora, use the following command:
|
13040
13464
|
#
|
13041
13465
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
13042
13466
|
# "DBEngineVersions[].EngineVersion"`
|
13043
13467
|
#
|
13044
|
-
# To list all of the available engine versions for
|
13468
|
+
# To list all of the available engine versions for Aurora PostgreSQL,
|
13045
13469
|
# use the following command:
|
13046
13470
|
#
|
13047
13471
|
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
13048
13472
|
# --query "DBEngineVersions[].EngineVersion"`
|
13049
13473
|
#
|
13474
|
+
# To list all of the available engine versions for RDS for MySQL, use
|
13475
|
+
# the following command:
|
13476
|
+
#
|
13477
|
+
# `aws rds describe-db-engine-versions --engine mysql --query
|
13478
|
+
# "DBEngineVersions[].EngineVersion"`
|
13479
|
+
#
|
13480
|
+
# To list all of the available engine versions for RDS for PostgreSQL,
|
13481
|
+
# use the following command:
|
13482
|
+
#
|
13483
|
+
# `aws rds describe-db-engine-versions --engine postgres --query
|
13484
|
+
# "DBEngineVersions[].EngineVersion"`
|
13485
|
+
#
|
13486
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13487
|
+
#
|
13050
13488
|
# @option params [Boolean] :allow_major_version_upgrade
|
13051
13489
|
# A value that indicates whether major version upgrades are allowed.
|
13052
13490
|
#
|
@@ -13054,6 +13492,8 @@ module Aws::RDS
|
|
13054
13492
|
# value for the `EngineVersion` parameter that is a different major
|
13055
13493
|
# version than the DB cluster's current version.
|
13056
13494
|
#
|
13495
|
+
# Valid for: Aurora DB clusters only
|
13496
|
+
#
|
13057
13497
|
# @option params [String] :db_instance_parameter_group_name
|
13058
13498
|
# The name of the DB parameter group to apply to all instances of the DB
|
13059
13499
|
# cluster.
|
@@ -13075,6 +13515,8 @@ module Aws::RDS
|
|
13075
13515
|
# * The `DBInstanceParameterGroupName` parameter is only valid in
|
13076
13516
|
# combination with the `AllowMajorVersionUpgrade` parameter.
|
13077
13517
|
#
|
13518
|
+
# Valid for: Aurora DB clusters only
|
13519
|
+
#
|
13078
13520
|
# @option params [String] :domain
|
13079
13521
|
# The Active Directory directory ID to move the DB cluster to. Specify
|
13080
13522
|
# `none` to remove the cluster from its current domain. The domain must
|
@@ -13083,6 +13525,8 @@ module Aws::RDS
|
|
13083
13525
|
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
13084
13526
|
# Aurora User Guide*.
|
13085
13527
|
#
|
13528
|
+
# Valid for: Aurora DB clusters only
|
13529
|
+
#
|
13086
13530
|
#
|
13087
13531
|
#
|
13088
13532
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
@@ -13091,14 +13535,20 @@ module Aws::RDS
|
|
13091
13535
|
# Specify the name of the IAM role to be used when making API calls to
|
13092
13536
|
# the Directory Service.
|
13093
13537
|
#
|
13538
|
+
# Valid for: Aurora DB clusters only
|
13539
|
+
#
|
13094
13540
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
13095
13541
|
# The scaling properties of the DB cluster. You can only modify scaling
|
13096
13542
|
# properties for DB clusters in `serverless` DB engine mode.
|
13097
13543
|
#
|
13544
|
+
# Valid for: Aurora DB clusters only
|
13545
|
+
#
|
13098
13546
|
# @option params [Boolean] :deletion_protection
|
13099
13547
|
# A value that indicates whether the DB cluster has deletion protection
|
13100
13548
|
# enabled. The database can't be deleted when deletion protection is
|
13101
|
-
# enabled. By default, deletion protection
|
13549
|
+
# enabled. By default, deletion protection isn't enabled.
|
13550
|
+
#
|
13551
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13102
13552
|
#
|
13103
13553
|
# @option params [Boolean] :enable_http_endpoint
|
13104
13554
|
# A value that indicates whether to enable the HTTP endpoint for an
|
@@ -13113,6 +13563,8 @@ module Aws::RDS
|
|
13113
13563
|
# For more information, see [Using the Data API for Aurora
|
13114
13564
|
# Serverless][1] in the *Amazon Aurora User Guide*.
|
13115
13565
|
#
|
13566
|
+
# Valid for: Aurora DB clusters only
|
13567
|
+
#
|
13116
13568
|
#
|
13117
13569
|
#
|
13118
13570
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
@@ -13121,6 +13573,8 @@ module Aws::RDS
|
|
13121
13573
|
# A value that indicates whether to copy all tags from the DB cluster to
|
13122
13574
|
# snapshots of the DB cluster. The default is not to copy them.
|
13123
13575
|
#
|
13576
|
+
# Valid for: Aurora DB clusters only
|
13577
|
+
#
|
13124
13578
|
# @option params [Boolean] :enable_global_write_forwarding
|
13125
13579
|
# A value that indicates whether to enable this DB cluster to forward
|
13126
13580
|
# write operations to the primary cluster of an Aurora global database
|
@@ -13136,6 +13590,129 @@ module Aws::RDS
|
|
13136
13590
|
# immediately if the primary is demoted by the FailoverGlobalCluster API
|
13137
13591
|
# operation, but it does nothing until then.
|
13138
13592
|
#
|
13593
|
+
# Valid for: Aurora DB clusters only
|
13594
|
+
#
|
13595
|
+
# @option params [String] :db_cluster_instance_class
|
13596
|
+
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
13597
|
+
# cluster, for example db.m6g.xlarge. Not all DB instance classes are
|
13598
|
+
# available in all Amazon Web Services Regions, or for all database
|
13599
|
+
# engines.
|
13600
|
+
#
|
13601
|
+
# For the full list of DB instance classes and availability for your
|
13602
|
+
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
13603
|
+
#
|
13604
|
+
# Valid for: Multi-AZ DB clusters only
|
13605
|
+
#
|
13606
|
+
#
|
13607
|
+
#
|
13608
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
13609
|
+
#
|
13610
|
+
# @option params [Integer] :allocated_storage
|
13611
|
+
# The amount of storage in gibibytes (GiB) to allocate to each DB
|
13612
|
+
# instance in the Multi-AZ DB cluster.
|
13613
|
+
#
|
13614
|
+
# Type: Integer
|
13615
|
+
#
|
13616
|
+
# Valid for: Multi-AZ DB clusters only
|
13617
|
+
#
|
13618
|
+
# @option params [String] :storage_type
|
13619
|
+
# Specifies the storage type to be associated with the DB cluster.
|
13620
|
+
#
|
13621
|
+
# Valid values: `standard | gp2 | io1`
|
13622
|
+
#
|
13623
|
+
# If you specify `io1`, you must also include a value for the `Iops`
|
13624
|
+
# parameter.
|
13625
|
+
#
|
13626
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
13627
|
+
#
|
13628
|
+
# Valid for: Multi-AZ DB clusters only
|
13629
|
+
#
|
13630
|
+
# @option params [Integer] :iops
|
13631
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
13632
|
+
# be initially allocated for each DB instance in the Multi-AZ DB
|
13633
|
+
# cluster.
|
13634
|
+
#
|
13635
|
+
# For information about valid Iops values, see [Amazon RDS Provisioned
|
13636
|
+
# IOPS Storage to Improve Performance][1] in the *Amazon RDS User
|
13637
|
+
# Guide*.
|
13638
|
+
#
|
13639
|
+
# Constraints: Must be a multiple between .5 and 50 of the storage
|
13640
|
+
# amount for the DB cluster.
|
13641
|
+
#
|
13642
|
+
# Valid for: Multi-AZ DB clusters only
|
13643
|
+
#
|
13644
|
+
#
|
13645
|
+
#
|
13646
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
13647
|
+
#
|
13648
|
+
# @option params [Boolean] :auto_minor_version_upgrade
|
13649
|
+
# A value that indicates whether minor engine upgrades are applied
|
13650
|
+
# automatically to the DB cluster during the maintenance window. By
|
13651
|
+
# default, minor engine upgrades are applied automatically.
|
13652
|
+
#
|
13653
|
+
# Valid for: Multi-AZ DB clusters only
|
13654
|
+
#
|
13655
|
+
# @option params [Integer] :monitoring_interval
|
13656
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
13657
|
+
# metrics are collected for the DB cluster. To turn off collecting
|
13658
|
+
# Enhanced Monitoring metrics, specify 0. The default is 0.
|
13659
|
+
#
|
13660
|
+
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval` to
|
13661
|
+
# a value other than 0.
|
13662
|
+
#
|
13663
|
+
# Valid Values: `0, 1, 5, 10, 15, 30, 60`
|
13664
|
+
#
|
13665
|
+
# Valid for: Multi-AZ DB clusters only
|
13666
|
+
#
|
13667
|
+
# @option params [String] :monitoring_role_arn
|
13668
|
+
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
13669
|
+
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example
|
13670
|
+
# is `arn:aws:iam:123456789012:role/emaccess`. For information on
|
13671
|
+
# creating a monitoring role, see [To create an IAM role for Amazon RDS
|
13672
|
+
# Enhanced Monitoring][1] in the *Amazon RDS User Guide.*
|
13673
|
+
#
|
13674
|
+
# If `MonitoringInterval` is set to a value other than 0, supply a
|
13675
|
+
# `MonitoringRoleArn` value.
|
13676
|
+
#
|
13677
|
+
# Valid for: Multi-AZ DB clusters only
|
13678
|
+
#
|
13679
|
+
#
|
13680
|
+
#
|
13681
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
13682
|
+
#
|
13683
|
+
# @option params [Boolean] :enable_performance_insights
|
13684
|
+
# A value that indicates whether to turn on Performance Insights for the
|
13685
|
+
# DB cluster.
|
13686
|
+
#
|
13687
|
+
# For more information, see [ Using Amazon Performance Insights][1] in
|
13688
|
+
# the *Amazon RDS User Guide*.
|
13689
|
+
#
|
13690
|
+
# Valid for: Multi-AZ DB clusters only
|
13691
|
+
#
|
13692
|
+
#
|
13693
|
+
#
|
13694
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
13695
|
+
#
|
13696
|
+
# @option params [String] :performance_insights_kms_key_id
|
13697
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
13698
|
+
# Performance Insights data.
|
13699
|
+
#
|
13700
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
13701
|
+
# alias ARN, or alias name for the KMS key.
|
13702
|
+
#
|
13703
|
+
# If you don't specify a value for `PerformanceInsightsKMSKeyId`, then
|
13704
|
+
# Amazon RDS uses your default KMS key. There is a default KMS key for
|
13705
|
+
# your Amazon Web Services account. Your Amazon Web Services account has
|
13706
|
+
# a different default KMS key for each Amazon Web Services Region.
|
13707
|
+
#
|
13708
|
+
# Valid for: Multi-AZ DB clusters only
|
13709
|
+
#
|
13710
|
+
# @option params [Integer] :performance_insights_retention_period
|
13711
|
+
# The amount of time, in days, to retain Performance Insights data.
|
13712
|
+
# Valid values are 7 or 731 (2 years).
|
13713
|
+
#
|
13714
|
+
# Valid for: Multi-AZ DB clusters only
|
13715
|
+
#
|
13139
13716
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13140
13717
|
#
|
13141
13718
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -13197,6 +13774,16 @@ module Aws::RDS
|
|
13197
13774
|
# enable_http_endpoint: false,
|
13198
13775
|
# copy_tags_to_snapshot: false,
|
13199
13776
|
# enable_global_write_forwarding: false,
|
13777
|
+
# db_cluster_instance_class: "String",
|
13778
|
+
# allocated_storage: 1,
|
13779
|
+
# storage_type: "String",
|
13780
|
+
# iops: 1,
|
13781
|
+
# auto_minor_version_upgrade: false,
|
13782
|
+
# monitoring_interval: 1,
|
13783
|
+
# monitoring_role_arn: "String",
|
13784
|
+
# enable_performance_insights: false,
|
13785
|
+
# performance_insights_kms_key_id: "String",
|
13786
|
+
# performance_insights_retention_period: 1,
|
13200
13787
|
# })
|
13201
13788
|
#
|
13202
13789
|
# @example Response structure
|
@@ -13291,6 +13878,16 @@ module Aws::RDS
|
|
13291
13878
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
13292
13879
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
13293
13880
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
13881
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
13882
|
+
# resp.db_cluster.storage_type #=> String
|
13883
|
+
# resp.db_cluster.iops #=> Integer
|
13884
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
13885
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
13886
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
13887
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
13888
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
13889
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
13890
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
13294
13891
|
#
|
13295
13892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
13296
13893
|
#
|
@@ -13374,9 +13971,6 @@ module Aws::RDS
|
|
13374
13971
|
# `ParameterName`, `ParameterValue`, and `ApplyMethod`. A maximum of 20
|
13375
13972
|
# parameters can be modified in a single request.
|
13376
13973
|
#
|
13377
|
-
# For more information on Amazon Aurora, see [ What Is Amazon
|
13378
|
-
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
13379
|
-
#
|
13380
13974
|
# After you create a DB cluster parameter group, you should wait at
|
13381
13975
|
# least 5 minutes before creating your first DB cluster that uses that
|
13382
13976
|
# DB cluster parameter group as the default parameter group. This allows
|
@@ -13385,7 +13979,7 @@ module Aws::RDS
|
|
13385
13979
|
# important for parameters that are critical when creating the default
|
13386
13980
|
# database for a DB cluster, such as the character set for the default
|
13387
13981
|
# database defined by the `character_set_database` parameter. You can
|
13388
|
-
# use the *Parameter Groups* option of the [Amazon RDS console][
|
13982
|
+
# use the *Parameter Groups* option of the [Amazon RDS console][1] or
|
13389
13983
|
# the `DescribeDBClusterParameters` action to verify that your DB
|
13390
13984
|
# cluster parameter group has been created or modified.
|
13391
13985
|
#
|
@@ -13395,14 +13989,23 @@ module Aws::RDS
|
|
13395
13989
|
# must reopen any connections and retry any transactions that were
|
13396
13990
|
# active when the parameter changes took effect.
|
13397
13991
|
#
|
13398
|
-
#
|
13992
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
13993
|
+
# Amazon Aurora?][2] in the *Amazon Aurora User Guide.*
|
13994
|
+
#
|
13995
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
13996
|
+
# deployments with two readable standby DB instances][3] in the *Amazon
|
13997
|
+
# RDS User Guide.*
|
13998
|
+
#
|
13999
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
14000
|
+
# change.
|
13399
14001
|
#
|
13400
14002
|
# </note>
|
13401
14003
|
#
|
13402
14004
|
#
|
13403
14005
|
#
|
13404
|
-
# [1]: https://
|
13405
|
-
# [2]: https://
|
14006
|
+
# [1]: https://console.aws.amazon.com/rds/
|
14007
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
14008
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
13406
14009
|
#
|
13407
14010
|
# @option params [required, String] :db_cluster_parameter_group_name
|
13408
14011
|
# The name of the DB cluster parameter group to modify.
|
@@ -13512,10 +14115,6 @@ module Aws::RDS
|
|
13512
14115
|
# DescribeDBClusterSnapshotAttributes API action. The accounts are
|
13513
14116
|
# returned as values for the `restore` attribute.
|
13514
14117
|
#
|
13515
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
13516
|
-
#
|
13517
|
-
# </note>
|
13518
|
-
#
|
13519
14118
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
13520
14119
|
# The identifier for the DB cluster snapshot to modify the attributes
|
13521
14120
|
# for.
|
@@ -13638,8 +14237,8 @@ module Aws::RDS
|
|
13638
14237
|
# `CreateDBInstance`.
|
13639
14238
|
#
|
13640
14239
|
# @option params [String] :db_instance_class
|
13641
|
-
# The new compute and memory capacity of the DB instance, for example
|
13642
|
-
#
|
14240
|
+
# The new compute and memory capacity of the DB instance, for example
|
14241
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
13643
14242
|
# Web Services Regions, or for all database engines. For the full list
|
13644
14243
|
# of DB instance classes, and availability for your engine, see [DB
|
13645
14244
|
# Instance Class][1] in the *Amazon RDS User Guide*.
|
@@ -14151,12 +14750,13 @@ module Aws::RDS
|
|
14151
14750
|
# @option params [Boolean] :publicly_accessible
|
14152
14751
|
# A value that indicates whether the DB instance is publicly accessible.
|
14153
14752
|
#
|
14154
|
-
# When the DB
|
14155
|
-
# to the private IP address from within the DB
|
14156
|
-
#
|
14157
|
-
#
|
14158
|
-
#
|
14159
|
-
#
|
14753
|
+
# When the DB cluster is publicly accessible, its Domain Name System
|
14754
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
14755
|
+
# cluster's virtual private cloud (VPC). It resolves to the public IP
|
14756
|
+
# address from outside of the DB cluster's VPC. Access to the DB
|
14757
|
+
# cluster is ultimately controlled by the security group it uses. That
|
14758
|
+
# public access isn't permitted if the security group assigned to the
|
14759
|
+
# DB cluster doesn't permit it.
|
14160
14760
|
#
|
14161
14761
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
14162
14762
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -14211,7 +14811,7 @@ module Aws::RDS
|
|
14211
14811
|
# @option params [Boolean] :enable_iam_database_authentication
|
14212
14812
|
# A value that indicates whether to enable mapping of Amazon Web
|
14213
14813
|
# Services Identity and Access Management (IAM) accounts to database
|
14214
|
-
# accounts. By default, mapping
|
14814
|
+
# accounts. By default, mapping isn't enabled.
|
14215
14815
|
#
|
14216
14816
|
# This setting doesn't apply to Amazon Aurora. Mapping Amazon Web
|
14217
14817
|
# Services IAM accounts to database accounts is managed by the DB
|
@@ -14285,7 +14885,7 @@ module Aws::RDS
|
|
14285
14885
|
# @option params [Boolean] :deletion_protection
|
14286
14886
|
# A value that indicates whether the DB instance has deletion protection
|
14287
14887
|
# enabled. The database can't be deleted when deletion protection is
|
14288
|
-
# enabled. By default, deletion protection
|
14888
|
+
# enabled. By default, deletion protection isn't enabled. For more
|
14289
14889
|
# information, see [ Deleting a DB Instance][1].
|
14290
14890
|
#
|
14291
14891
|
#
|
@@ -14619,6 +15219,7 @@ module Aws::RDS
|
|
14619
15219
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
14620
15220
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
14621
15221
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
15222
|
+
# resp.db_instance.backup_target #=> String
|
14622
15223
|
#
|
14623
15224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
14624
15225
|
#
|
@@ -15054,6 +15655,7 @@ module Aws::RDS
|
|
15054
15655
|
# resp.db_snapshot.tag_list[0].key #=> String
|
15055
15656
|
# resp.db_snapshot.tag_list[0].value #=> String
|
15056
15657
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
15658
|
+
# resp.db_snapshot.snapshot_target #=> String
|
15057
15659
|
#
|
15058
15660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
15059
15661
|
#
|
@@ -15354,7 +15956,7 @@ module Aws::RDS
|
|
15354
15956
|
# Modify a setting for an Amazon Aurora global cluster. You can change
|
15355
15957
|
# one or more database configuration parameters by specifying these
|
15356
15958
|
# parameters and the new values in the request. For more information on
|
15357
|
-
# Amazon Aurora, see [ What
|
15959
|
+
# Amazon Aurora, see [ What is Amazon Aurora?][1] in the *Amazon Aurora
|
15358
15960
|
# User Guide.*
|
15359
15961
|
#
|
15360
15962
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
@@ -15829,6 +16431,7 @@ module Aws::RDS
|
|
15829
16431
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
15830
16432
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
15831
16433
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
16434
|
+
# resp.db_instance.backup_target #=> String
|
15832
16435
|
#
|
15833
16436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
15834
16437
|
#
|
@@ -15841,10 +16444,6 @@ module Aws::RDS
|
|
15841
16444
|
|
15842
16445
|
# Promotes a read replica DB cluster to a standalone DB cluster.
|
15843
16446
|
#
|
15844
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
15845
|
-
#
|
15846
|
-
# </note>
|
15847
|
-
#
|
15848
16447
|
# @option params [required, String] :db_cluster_identifier
|
15849
16448
|
# The identifier of the DB cluster read replica to promote. This
|
15850
16449
|
# parameter isn't case-sensitive.
|
@@ -15959,6 +16558,16 @@ module Aws::RDS
|
|
15959
16558
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
15960
16559
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
15961
16560
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
16561
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
16562
|
+
# resp.db_cluster.storage_type #=> String
|
16563
|
+
# resp.db_cluster.iops #=> Integer
|
16564
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
16565
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
16566
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
16567
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
16568
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
16569
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
16570
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
15962
16571
|
#
|
15963
16572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
15964
16573
|
#
|
@@ -16053,8 +16662,160 @@ module Aws::RDS
|
|
16053
16662
|
#
|
16054
16663
|
# @overload purchase_reserved_db_instances_offering(params = {})
|
16055
16664
|
# @param [Hash] params ({})
|
16056
|
-
def purchase_reserved_db_instances_offering(params = {}, options = {})
|
16057
|
-
req = build_request(:purchase_reserved_db_instances_offering, params)
|
16665
|
+
def purchase_reserved_db_instances_offering(params = {}, options = {})
|
16666
|
+
req = build_request(:purchase_reserved_db_instances_offering, params)
|
16667
|
+
req.send_request(options)
|
16668
|
+
end
|
16669
|
+
|
16670
|
+
# You might need to reboot your DB cluster, usually for maintenance
|
16671
|
+
# reasons. For example, if you make certain modifications, or if you
|
16672
|
+
# change the DB cluster parameter group associated with the DB cluster,
|
16673
|
+
# reboot the DB cluster for the changes to take effect.
|
16674
|
+
#
|
16675
|
+
# Rebooting a DB cluster restarts the database engine service. Rebooting
|
16676
|
+
# a DB cluster results in a momentary outage, during which the DB
|
16677
|
+
# cluster status is set to rebooting.
|
16678
|
+
#
|
16679
|
+
# Use this operation only for a non-Aurora Multi-AZ DB cluster. The
|
16680
|
+
# Multi-AZ DB clusters feature is in preview and is subject to change.
|
16681
|
+
#
|
16682
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
16683
|
+
# deployments with two readable standby DB instances][1] in the *Amazon
|
16684
|
+
# RDS User Guide.*
|
16685
|
+
#
|
16686
|
+
#
|
16687
|
+
#
|
16688
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
16689
|
+
#
|
16690
|
+
# @option params [required, String] :db_cluster_identifier
|
16691
|
+
# The DB cluster identifier. This parameter is stored as a lowercase
|
16692
|
+
# string.
|
16693
|
+
#
|
16694
|
+
# Constraints:
|
16695
|
+
#
|
16696
|
+
# * Must match the identifier of an existing DBCluster.
|
16697
|
+
#
|
16698
|
+
# ^
|
16699
|
+
#
|
16700
|
+
# @return [Types::RebootDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16701
|
+
#
|
16702
|
+
# * {Types::RebootDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
16703
|
+
#
|
16704
|
+
# @example Request syntax with placeholder values
|
16705
|
+
#
|
16706
|
+
# resp = client.reboot_db_cluster({
|
16707
|
+
# db_cluster_identifier: "String", # required
|
16708
|
+
# })
|
16709
|
+
#
|
16710
|
+
# @example Response structure
|
16711
|
+
#
|
16712
|
+
# resp.db_cluster.allocated_storage #=> Integer
|
16713
|
+
# resp.db_cluster.availability_zones #=> Array
|
16714
|
+
# resp.db_cluster.availability_zones[0] #=> String
|
16715
|
+
# resp.db_cluster.backup_retention_period #=> Integer
|
16716
|
+
# resp.db_cluster.character_set_name #=> String
|
16717
|
+
# resp.db_cluster.database_name #=> String
|
16718
|
+
# resp.db_cluster.db_cluster_identifier #=> String
|
16719
|
+
# resp.db_cluster.db_cluster_parameter_group #=> String
|
16720
|
+
# resp.db_cluster.db_subnet_group #=> String
|
16721
|
+
# resp.db_cluster.status #=> String
|
16722
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
16723
|
+
# resp.db_cluster.percent_progress #=> String
|
16724
|
+
# resp.db_cluster.earliest_restorable_time #=> Time
|
16725
|
+
# resp.db_cluster.endpoint #=> String
|
16726
|
+
# resp.db_cluster.reader_endpoint #=> String
|
16727
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
16728
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
16729
|
+
# resp.db_cluster.multi_az #=> Boolean
|
16730
|
+
# resp.db_cluster.engine #=> String
|
16731
|
+
# resp.db_cluster.engine_version #=> String
|
16732
|
+
# resp.db_cluster.latest_restorable_time #=> Time
|
16733
|
+
# resp.db_cluster.port #=> Integer
|
16734
|
+
# resp.db_cluster.master_username #=> String
|
16735
|
+
# resp.db_cluster.db_cluster_option_group_memberships #=> Array
|
16736
|
+
# resp.db_cluster.db_cluster_option_group_memberships[0].db_cluster_option_group_name #=> String
|
16737
|
+
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
16738
|
+
# resp.db_cluster.preferred_backup_window #=> String
|
16739
|
+
# resp.db_cluster.preferred_maintenance_window #=> String
|
16740
|
+
# resp.db_cluster.replication_source_identifier #=> String
|
16741
|
+
# resp.db_cluster.read_replica_identifiers #=> Array
|
16742
|
+
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
16743
|
+
# resp.db_cluster.db_cluster_members #=> Array
|
16744
|
+
# resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
|
16745
|
+
# resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
|
16746
|
+
# resp.db_cluster.db_cluster_members[0].db_cluster_parameter_group_status #=> String
|
16747
|
+
# resp.db_cluster.db_cluster_members[0].promotion_tier #=> Integer
|
16748
|
+
# resp.db_cluster.vpc_security_groups #=> Array
|
16749
|
+
# resp.db_cluster.vpc_security_groups[0].vpc_security_group_id #=> String
|
16750
|
+
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
16751
|
+
# resp.db_cluster.hosted_zone_id #=> String
|
16752
|
+
# resp.db_cluster.storage_encrypted #=> Boolean
|
16753
|
+
# resp.db_cluster.kms_key_id #=> String
|
16754
|
+
# resp.db_cluster.db_cluster_resource_id #=> String
|
16755
|
+
# resp.db_cluster.db_cluster_arn #=> String
|
16756
|
+
# resp.db_cluster.associated_roles #=> Array
|
16757
|
+
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
16758
|
+
# resp.db_cluster.associated_roles[0].status #=> String
|
16759
|
+
# resp.db_cluster.associated_roles[0].feature_name #=> String
|
16760
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
16761
|
+
# resp.db_cluster.clone_group_id #=> String
|
16762
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
16763
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
16764
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
16765
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
16766
|
+
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
16767
|
+
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
16768
|
+
# resp.db_cluster.capacity #=> Integer
|
16769
|
+
# resp.db_cluster.engine_mode #=> String
|
16770
|
+
# resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
|
16771
|
+
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
16772
|
+
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
16773
|
+
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
16774
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
16775
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
16776
|
+
# resp.db_cluster.deletion_protection #=> Boolean
|
16777
|
+
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
16778
|
+
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
16779
|
+
# resp.db_cluster.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
16780
|
+
# resp.db_cluster.activity_stream_kms_key_id #=> String
|
16781
|
+
# resp.db_cluster.activity_stream_kinesis_stream_name #=> String
|
16782
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
16783
|
+
# resp.db_cluster.cross_account_clone #=> Boolean
|
16784
|
+
# resp.db_cluster.domain_memberships #=> Array
|
16785
|
+
# resp.db_cluster.domain_memberships[0].domain #=> String
|
16786
|
+
# resp.db_cluster.domain_memberships[0].status #=> String
|
16787
|
+
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
16788
|
+
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
16789
|
+
# resp.db_cluster.tag_list #=> Array
|
16790
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
16791
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
16792
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
16793
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
16794
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
16795
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
16796
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
16797
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
16798
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
16799
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
16800
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
16801
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
16802
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
16803
|
+
# resp.db_cluster.storage_type #=> String
|
16804
|
+
# resp.db_cluster.iops #=> Integer
|
16805
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
16806
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
16807
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
16808
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
16809
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
16810
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
16811
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
16812
|
+
#
|
16813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
16814
|
+
#
|
16815
|
+
# @overload reboot_db_cluster(params = {})
|
16816
|
+
# @param [Hash] params ({})
|
16817
|
+
def reboot_db_cluster(params = {}, options = {})
|
16818
|
+
req = build_request(:reboot_db_cluster, params)
|
16058
16819
|
req.send_request(options)
|
16059
16820
|
end
|
16060
16821
|
|
@@ -16257,6 +17018,7 @@ module Aws::RDS
|
|
16257
17018
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
16258
17019
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
16259
17020
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
17021
|
+
# resp.db_instance.backup_target #=> String
|
16260
17022
|
#
|
16261
17023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
16262
17024
|
#
|
@@ -16322,7 +17084,7 @@ module Aws::RDS
|
|
16322
17084
|
# Detaches an Aurora secondary cluster from an Aurora global database
|
16323
17085
|
# cluster. The cluster becomes a standalone cluster with read-write
|
16324
17086
|
# capability instead of being read-only and receiving data from a
|
16325
|
-
# primary cluster in a different
|
17087
|
+
# primary cluster in a different Region.
|
16326
17088
|
#
|
16327
17089
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
16328
17090
|
#
|
@@ -16377,18 +17139,25 @@ module Aws::RDS
|
|
16377
17139
|
req.send_request(options)
|
16378
17140
|
end
|
16379
17141
|
|
16380
|
-
#
|
16381
|
-
# (IAM) role from
|
16382
|
-
# [Authorizing Amazon Aurora MySQL to Access Other Amazon Web Services
|
16383
|
-
# Services on Your Behalf ][1] in the *Amazon Aurora User Guide*.
|
17142
|
+
# Removes the asssociation of an Amazon Web Services Identity and Access
|
17143
|
+
# Management (IAM) role from a DB cluster.
|
16384
17144
|
#
|
16385
|
-
#
|
17145
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
17146
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
17147
|
+
#
|
17148
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
17149
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
17150
|
+
# RDS User Guide.*
|
17151
|
+
#
|
17152
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
17153
|
+
# change.
|
16386
17154
|
#
|
16387
17155
|
# </note>
|
16388
17156
|
#
|
16389
17157
|
#
|
16390
17158
|
#
|
16391
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
17159
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
17160
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
16392
17161
|
#
|
16393
17162
|
# @option params [required, String] :db_cluster_identifier
|
16394
17163
|
# The name of the DB cluster to disassociate the IAM role from.
|
@@ -16584,16 +17353,22 @@ module Aws::RDS
|
|
16584
17353
|
# You must call `RebootDBInstance` for every DB instance in your DB
|
16585
17354
|
# cluster that you want the updated static parameter to apply to.
|
16586
17355
|
#
|
16587
|
-
# For more information on Amazon Aurora, see [ What
|
16588
|
-
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
17356
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
17357
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
16589
17358
|
#
|
16590
|
-
#
|
17359
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
17360
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
17361
|
+
# RDS User Guide.*
|
17362
|
+
#
|
17363
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
17364
|
+
# change.
|
16591
17365
|
#
|
16592
17366
|
# </note>
|
16593
17367
|
#
|
16594
17368
|
#
|
16595
17369
|
#
|
16596
17370
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
17371
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
16597
17372
|
#
|
16598
17373
|
# @option params [required, String] :db_cluster_parameter_group_name
|
16599
17374
|
# The name of the DB cluster parameter group to reset.
|
@@ -16780,7 +17555,7 @@ module Aws::RDS
|
|
16780
17555
|
#
|
16781
17556
|
# </note>
|
16782
17557
|
#
|
16783
|
-
# For more information on Amazon Aurora, see [ What
|
17558
|
+
# For more information on Amazon Aurora, see [ What is Amazon
|
16784
17559
|
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
16785
17560
|
#
|
16786
17561
|
# <note markdown="1"> This action only applies to Aurora DB clusters. The source DB engine
|
@@ -16995,7 +17770,7 @@ module Aws::RDS
|
|
16995
17770
|
# @option params [Boolean] :enable_iam_database_authentication
|
16996
17771
|
# A value that indicates whether to enable mapping of Amazon Web
|
16997
17772
|
# Services Identity and Access Management (IAM) accounts to database
|
16998
|
-
# accounts. By default, mapping
|
17773
|
+
# accounts. By default, mapping isn't enabled.
|
16999
17774
|
#
|
17000
17775
|
# For more information, see [ IAM Database Authentication][1] in the
|
17001
17776
|
# *Amazon Aurora User Guide.*
|
@@ -17062,7 +17837,7 @@ module Aws::RDS
|
|
17062
17837
|
# @option params [Boolean] :deletion_protection
|
17063
17838
|
# A value that indicates whether the DB cluster has deletion protection
|
17064
17839
|
# enabled. The database can't be deleted when deletion protection is
|
17065
|
-
# enabled. By default, deletion protection
|
17840
|
+
# enabled. By default, deletion protection isn't enabled.
|
17066
17841
|
#
|
17067
17842
|
# @option params [Boolean] :copy_tags_to_snapshot
|
17068
17843
|
# A value that indicates whether to copy all tags from the restored DB
|
@@ -17223,6 +17998,16 @@ module Aws::RDS
|
|
17223
17998
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
17224
17999
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
17225
18000
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
18001
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
18002
|
+
# resp.db_cluster.storage_type #=> String
|
18003
|
+
# resp.db_cluster.iops #=> Integer
|
18004
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
18005
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
18006
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
18007
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
18008
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
18009
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
18010
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
17226
18011
|
#
|
17227
18012
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
17228
18013
|
#
|
@@ -17234,7 +18019,6 @@ module Aws::RDS
|
|
17234
18019
|
end
|
17235
18020
|
|
17236
18021
|
# Creates a new DB cluster from a DB snapshot or DB cluster snapshot.
|
17237
|
-
# This action only applies to Aurora DB clusters.
|
17238
18022
|
#
|
17239
18023
|
# The target DB cluster is created from the source snapshot with a
|
17240
18024
|
# default configuration. If you don't specify a security group, the new
|
@@ -17249,21 +18033,29 @@ module Aws::RDS
|
|
17249
18033
|
#
|
17250
18034
|
# </note>
|
17251
18035
|
#
|
17252
|
-
# For more information on Amazon Aurora, see [ What
|
17253
|
-
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
18036
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
18037
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
17254
18038
|
#
|
17255
|
-
#
|
18039
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
18040
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
18041
|
+
# RDS User Guide.*
|
18042
|
+
#
|
18043
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
18044
|
+
# change.
|
17256
18045
|
#
|
17257
18046
|
# </note>
|
17258
18047
|
#
|
17259
18048
|
#
|
17260
18049
|
#
|
17261
18050
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
18051
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
17262
18052
|
#
|
17263
18053
|
# @option params [Array<String>] :availability_zones
|
17264
18054
|
# Provides the list of Availability Zones (AZs) where instances in the
|
17265
18055
|
# restored DB cluster can be created.
|
17266
18056
|
#
|
18057
|
+
# Valid for: Aurora DB clusters only
|
18058
|
+
#
|
17267
18059
|
# @option params [required, String] :db_cluster_identifier
|
17268
18060
|
# The name of the DB cluster to create from the DB snapshot or DB
|
17269
18061
|
# cluster snapshot. This parameter isn't case-sensitive.
|
@@ -17278,6 +18070,8 @@ module Aws::RDS
|
|
17278
18070
|
#
|
17279
18071
|
# Example: `my-snapshot-id`
|
17280
18072
|
#
|
18073
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18074
|
+
#
|
17281
18075
|
# @option params [required, String] :snapshot_identifier
|
17282
18076
|
# The identifier for the DB snapshot or DB cluster snapshot to restore
|
17283
18077
|
# from.
|
@@ -17292,6 +18086,8 @@ module Aws::RDS
|
|
17292
18086
|
#
|
17293
18087
|
# ^
|
17294
18088
|
#
|
18089
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18090
|
+
#
|
17295
18091
|
# @option params [required, String] :engine
|
17296
18092
|
# The database engine to use for the new DB cluster.
|
17297
18093
|
#
|
@@ -17299,40 +18095,68 @@ module Aws::RDS
|
|
17299
18095
|
#
|
17300
18096
|
# Constraint: Must be compatible with the engine of the source
|
17301
18097
|
#
|
18098
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18099
|
+
#
|
17302
18100
|
# @option params [String] :engine_version
|
17303
18101
|
# The version of the database engine to use for the new DB cluster.
|
17304
18102
|
#
|
17305
|
-
# To list all of the available engine versions for
|
17306
|
-
#
|
18103
|
+
# To list all of the available engine versions for MySQL 5.6-compatible
|
18104
|
+
# Aurora, use the following command:
|
17307
18105
|
#
|
17308
18106
|
# `aws rds describe-db-engine-versions --engine aurora --query
|
17309
18107
|
# "DBEngineVersions[].EngineVersion"`
|
17310
18108
|
#
|
17311
|
-
# To list all of the available engine versions for
|
17312
|
-
#
|
18109
|
+
# To list all of the available engine versions for MySQL 5.7-compatible
|
18110
|
+
# Aurora, use the following command:
|
17313
18111
|
#
|
17314
18112
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
17315
18113
|
# "DBEngineVersions[].EngineVersion"`
|
17316
18114
|
#
|
17317
|
-
# To list all of the available engine versions for
|
18115
|
+
# To list all of the available engine versions for Aurora PostgreSQL,
|
17318
18116
|
# use the following command:
|
17319
18117
|
#
|
17320
18118
|
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
17321
18119
|
# --query "DBEngineVersions[].EngineVersion"`
|
17322
18120
|
#
|
17323
|
-
#
|
17324
|
-
# the
|
18121
|
+
# To list all of the available engine versions for RDS for MySQL, use
|
18122
|
+
# the following command:
|
17325
18123
|
#
|
17326
|
-
#
|
18124
|
+
# `aws rds describe-db-engine-versions --engine mysql --query
|
18125
|
+
# "DBEngineVersions[].EngineVersion"`
|
18126
|
+
#
|
18127
|
+
# To list all of the available engine versions for RDS for PostgreSQL,
|
18128
|
+
# use the following command:
|
18129
|
+
#
|
18130
|
+
# `aws rds describe-db-engine-versions --engine postgres --query
|
18131
|
+
# "DBEngineVersions[].EngineVersion"`
|
17327
18132
|
#
|
17328
18133
|
# **Aurora MySQL**
|
17329
18134
|
#
|
17330
|
-
#
|
17331
|
-
#
|
18135
|
+
# See [MySQL on Amazon RDS Versions][1] in the *Amazon Aurora User
|
18136
|
+
# Guide.*
|
17332
18137
|
#
|
17333
18138
|
# **Aurora PostgreSQL**
|
17334
18139
|
#
|
17335
|
-
#
|
18140
|
+
# See [Amazon Aurora PostgreSQL releases and engine versions][2] in the
|
18141
|
+
# *Amazon Aurora User Guide.*
|
18142
|
+
#
|
18143
|
+
# **MySQL**
|
18144
|
+
#
|
18145
|
+
# See [MySQL on Amazon RDS Versions][3] in the *Amazon RDS User Guide.*
|
18146
|
+
#
|
18147
|
+
# **PostgreSQL**
|
18148
|
+
#
|
18149
|
+
# See [Amazon RDS for PostgreSQL versions and extensions][4] in the
|
18150
|
+
# *Amazon RDS User Guide.*
|
18151
|
+
#
|
18152
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18153
|
+
#
|
18154
|
+
#
|
18155
|
+
#
|
18156
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html
|
18157
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html
|
18158
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
18159
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
17336
18160
|
#
|
17337
18161
|
# @option params [Integer] :port
|
17338
18162
|
# The port number on which the new DB cluster accepts connections.
|
@@ -17341,6 +18165,8 @@ module Aws::RDS
|
|
17341
18165
|
#
|
17342
18166
|
# Default: The same port as the original DB cluster.
|
17343
18167
|
#
|
18168
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18169
|
+
#
|
17344
18170
|
# @option params [String] :db_subnet_group_name
|
17345
18171
|
# The name of the DB subnet group to use for the new DB cluster.
|
17346
18172
|
#
|
@@ -17349,18 +18175,29 @@ module Aws::RDS
|
|
17349
18175
|
#
|
17350
18176
|
# Example: `mySubnetgroup`
|
17351
18177
|
#
|
18178
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18179
|
+
#
|
17352
18180
|
# @option params [String] :database_name
|
17353
18181
|
# The database name for the restored DB cluster.
|
17354
18182
|
#
|
18183
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18184
|
+
#
|
17355
18185
|
# @option params [String] :option_group_name
|
17356
18186
|
# The name of the option group to use for the restored DB cluster.
|
17357
18187
|
#
|
18188
|
+
# DB clusters are associated with a default option group that can't be
|
18189
|
+
# modified.
|
18190
|
+
#
|
17358
18191
|
# @option params [Array<String>] :vpc_security_group_ids
|
17359
18192
|
# A list of VPC security groups that the new DB cluster will belong to.
|
17360
18193
|
#
|
18194
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18195
|
+
#
|
17361
18196
|
# @option params [Array<Types::Tag>] :tags
|
17362
18197
|
# The tags to be assigned to the restored DB cluster.
|
17363
18198
|
#
|
18199
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18200
|
+
#
|
17364
18201
|
# @option params [String] :kms_key_id
|
17365
18202
|
# The Amazon Web Services KMS key identifier to use when restoring an
|
17366
18203
|
# encrypted DB cluster from a DB snapshot or DB cluster snapshot.
|
@@ -17380,14 +18217,18 @@ module Aws::RDS
|
|
17380
18217
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
17381
18218
|
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
17382
18219
|
#
|
18220
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18221
|
+
#
|
17383
18222
|
# @option params [Boolean] :enable_iam_database_authentication
|
17384
18223
|
# A value that indicates whether to enable mapping of Amazon Web
|
17385
18224
|
# Services Identity and Access Management (IAM) accounts to database
|
17386
|
-
# accounts. By default, mapping
|
18225
|
+
# accounts. By default, mapping isn't enabled.
|
17387
18226
|
#
|
17388
18227
|
# For more information, see [ IAM Database Authentication][1] in the
|
17389
18228
|
# *Amazon Aurora User Guide.*
|
17390
18229
|
#
|
18230
|
+
# Valid for: Aurora DB clusters only
|
18231
|
+
#
|
17391
18232
|
#
|
17392
18233
|
#
|
17393
18234
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -17409,12 +18250,18 @@ module Aws::RDS
|
|
17409
18250
|
#
|
17410
18251
|
# ^
|
17411
18252
|
#
|
18253
|
+
# Valid for: Aurora DB clusters only
|
18254
|
+
#
|
17412
18255
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
17413
18256
|
# The list of logs that the restored DB cluster is to export to Amazon
|
17414
18257
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
17415
|
-
# used.
|
18258
|
+
# used.
|
18259
|
+
#
|
18260
|
+
# For more information, see [Publishing Database Logs to Amazon
|
17416
18261
|
# CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
|
17417
18262
|
#
|
18263
|
+
# Valid for: Aurora DB clusters only
|
18264
|
+
#
|
17418
18265
|
#
|
17419
18266
|
#
|
17420
18267
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -17425,6 +18272,8 @@ module Aws::RDS
|
|
17425
18272
|
#
|
17426
18273
|
# For more information, see [ CreateDBCluster][1].
|
17427
18274
|
#
|
18275
|
+
# Valid for: Aurora DB clusters only
|
18276
|
+
#
|
17428
18277
|
#
|
17429
18278
|
#
|
17430
18279
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
@@ -17433,6 +18282,8 @@ module Aws::RDS
|
|
17433
18282
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
17434
18283
|
# of the DB cluster.
|
17435
18284
|
#
|
18285
|
+
# Valid for: Aurora DB clusters only
|
18286
|
+
#
|
17436
18287
|
# @option params [String] :db_cluster_parameter_group_name
|
17437
18288
|
# The name of the DB cluster parameter group to associate with this DB
|
17438
18289
|
# cluster. If this argument is omitted, the default DB cluster parameter
|
@@ -17449,16 +18300,22 @@ module Aws::RDS
|
|
17449
18300
|
#
|
17450
18301
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
17451
18302
|
#
|
18303
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18304
|
+
#
|
17452
18305
|
# @option params [Boolean] :deletion_protection
|
17453
18306
|
# A value that indicates whether the DB cluster has deletion protection
|
17454
18307
|
# enabled. The database can't be deleted when deletion protection is
|
17455
|
-
# enabled. By default, deletion protection
|
18308
|
+
# enabled. By default, deletion protection isn't enabled.
|
18309
|
+
#
|
18310
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
17456
18311
|
#
|
17457
18312
|
# @option params [Boolean] :copy_tags_to_snapshot
|
17458
18313
|
# A value that indicates whether to copy all tags from the restored DB
|
17459
18314
|
# cluster to snapshots of the restored DB cluster. The default is not to
|
17460
18315
|
# copy them.
|
17461
18316
|
#
|
18317
|
+
# Valid for: Aurora DB clusters only
|
18318
|
+
#
|
17462
18319
|
# @option params [String] :domain
|
17463
18320
|
# Specify the Active Directory directory ID to restore the DB cluster
|
17464
18321
|
# in. The domain must be created prior to this operation. Currently,
|
@@ -17468,6 +18325,8 @@ module Aws::RDS
|
|
17468
18325
|
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
17469
18326
|
# RDS User Guide*.
|
17470
18327
|
#
|
18328
|
+
# Valid for: Aurora DB clusters only
|
18329
|
+
#
|
17471
18330
|
#
|
17472
18331
|
#
|
17473
18332
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
@@ -17476,6 +18335,91 @@ module Aws::RDS
|
|
17476
18335
|
# Specify the name of the IAM role to be used when making API calls to
|
17477
18336
|
# the Directory Service.
|
17478
18337
|
#
|
18338
|
+
# Valid for: Aurora DB clusters only
|
18339
|
+
#
|
18340
|
+
# @option params [String] :db_cluster_instance_class
|
18341
|
+
# The compute and memory capacity of the each DB instance in the
|
18342
|
+
# Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
|
18343
|
+
# classes are available in all Amazon Web Services Regions, or for all
|
18344
|
+
# database engines.
|
18345
|
+
#
|
18346
|
+
# For the full list of DB instance classes, and availability for your
|
18347
|
+
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
18348
|
+
#
|
18349
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18350
|
+
#
|
18351
|
+
#
|
18352
|
+
#
|
18353
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
18354
|
+
#
|
18355
|
+
# @option params [String] :storage_type
|
18356
|
+
# Specifies the storage type to be associated with the each DB instance
|
18357
|
+
# in the Multi-AZ DB cluster.
|
18358
|
+
#
|
18359
|
+
# Valid values: `standard | gp2 | io1`
|
18360
|
+
#
|
18361
|
+
# If you specify `io1`, you must also include a value for the `Iops`
|
18362
|
+
# parameter.
|
18363
|
+
#
|
18364
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
18365
|
+
#
|
18366
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18367
|
+
#
|
18368
|
+
# @option params [Integer] :iops
|
18369
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
18370
|
+
# be initially allocated for each DB instance in the Multi-AZ DB
|
18371
|
+
# cluster.
|
18372
|
+
#
|
18373
|
+
# For information about valid Iops values, see [Amazon RDS Provisioned
|
18374
|
+
# IOPS Storage to Improve Performance][1] in the *Amazon RDS User
|
18375
|
+
# Guide*.
|
18376
|
+
#
|
18377
|
+
# Constraints: Must be a multiple between .5 and 50 of the storage
|
18378
|
+
# amount for the DB instance.
|
18379
|
+
#
|
18380
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18381
|
+
#
|
18382
|
+
#
|
18383
|
+
#
|
18384
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
18385
|
+
#
|
18386
|
+
# @option params [Boolean] :publicly_accessible
|
18387
|
+
# A value that indicates whether the DB cluster is publicly accessible.
|
18388
|
+
#
|
18389
|
+
# When the DB cluster is publicly accessible, its Domain Name System
|
18390
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
18391
|
+
# cluster's virtual private cloud (VPC). It resolves to the public IP
|
18392
|
+
# address from outside of the DB cluster's VPC. Access to the DB
|
18393
|
+
# cluster is ultimately controlled by the security group it uses. That
|
18394
|
+
# public access is not permitted if the security group assigned to the
|
18395
|
+
# DB cluster doesn't permit it.
|
18396
|
+
#
|
18397
|
+
# When the DB cluster isn't publicly accessible, it is an internal DB
|
18398
|
+
# cluster with a DNS name that resolves to a private IP address.
|
18399
|
+
#
|
18400
|
+
# Default: The default behavior varies depending on whether
|
18401
|
+
# `DBSubnetGroupName` is specified.
|
18402
|
+
#
|
18403
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
18404
|
+
# isn't specified, the following applies:
|
18405
|
+
#
|
18406
|
+
# * If the default VPC in the target Region doesn’t have an internet
|
18407
|
+
# gateway attached to it, the DB cluster is private.
|
18408
|
+
#
|
18409
|
+
# * If the default VPC in the target Region has an internet gateway
|
18410
|
+
# attached to it, the DB cluster is public.
|
18411
|
+
#
|
18412
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
18413
|
+
# specified, the following applies:
|
18414
|
+
#
|
18415
|
+
# * If the subnets are part of a VPC that doesn’t have an internet
|
18416
|
+
# gateway attached to it, the DB cluster is private.
|
18417
|
+
#
|
18418
|
+
# * If the subnets are part of a VPC that has an internet gateway
|
18419
|
+
# attached to it, the DB cluster is public.
|
18420
|
+
#
|
18421
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18422
|
+
#
|
17479
18423
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17480
18424
|
#
|
17481
18425
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -17534,6 +18478,10 @@ module Aws::RDS
|
|
17534
18478
|
# copy_tags_to_snapshot: false,
|
17535
18479
|
# domain: "String",
|
17536
18480
|
# domain_iam_role_name: "String",
|
18481
|
+
# db_cluster_instance_class: "String",
|
18482
|
+
# storage_type: "String",
|
18483
|
+
# iops: 1,
|
18484
|
+
# publicly_accessible: false,
|
17537
18485
|
# })
|
17538
18486
|
#
|
17539
18487
|
# @example Response structure
|
@@ -17628,6 +18576,16 @@ module Aws::RDS
|
|
17628
18576
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
17629
18577
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
17630
18578
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
18579
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
18580
|
+
# resp.db_cluster.storage_type #=> String
|
18581
|
+
# resp.db_cluster.iops #=> Integer
|
18582
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
18583
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
18584
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
18585
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
18586
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
18587
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
18588
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
17631
18589
|
#
|
17632
18590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
17633
18591
|
#
|
@@ -17645,25 +18603,32 @@ module Aws::RDS
|
|
17645
18603
|
# cluster, except that the new DB cluster is created with the default DB
|
17646
18604
|
# security group.
|
17647
18605
|
#
|
17648
|
-
# <note markdown="1">
|
17649
|
-
# that DB cluster. You must invoke the `CreateDBInstance`
|
17650
|
-
# create DB instances for the restored DB cluster, specifying
|
17651
|
-
# identifier of the restored DB cluster in `DBClusterIdentifier`.
|
17652
|
-
# can create DB instances only after the
|
17653
|
-
# action has completed and the DB
|
18606
|
+
# <note markdown="1"> For Aurora, this action only restores the DB cluster, not the DB
|
18607
|
+
# instances for that DB cluster. You must invoke the `CreateDBInstance`
|
18608
|
+
# action to create DB instances for the restored DB cluster, specifying
|
18609
|
+
# the identifier of the restored DB cluster in `DBClusterIdentifier`.
|
18610
|
+
# You can create DB instances only after the
|
18611
|
+
# `RestoreDBClusterToPointInTime` action has completed and the DB
|
18612
|
+
# cluster is available.
|
17654
18613
|
#
|
17655
18614
|
# </note>
|
17656
18615
|
#
|
17657
|
-
# For more information on Amazon Aurora, see [ What
|
17658
|
-
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
18616
|
+
# For more information on Amazon Aurora DB clusters, see [ What is
|
18617
|
+
# Amazon Aurora?][1] in the *Amazon Aurora User Guide.*
|
17659
18618
|
#
|
17660
|
-
#
|
18619
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
18620
|
+
# deployments with two readable standby DB instances][2] in the *Amazon
|
18621
|
+
# RDS User Guide.*
|
18622
|
+
#
|
18623
|
+
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
18624
|
+
# change.
|
17661
18625
|
#
|
17662
18626
|
# </note>
|
17663
18627
|
#
|
17664
18628
|
#
|
17665
18629
|
#
|
17666
18630
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
18631
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
17667
18632
|
#
|
17668
18633
|
# @option params [required, String] :db_cluster_identifier
|
17669
18634
|
# The name of the new DB cluster to be created.
|
@@ -17676,6 +18641,8 @@ module Aws::RDS
|
|
17676
18641
|
#
|
17677
18642
|
# * Can't end with a hyphen or contain two consecutive hyphens
|
17678
18643
|
#
|
18644
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18645
|
+
#
|
17679
18646
|
# @option params [String] :restore_type
|
17680
18647
|
# The type of restore to be performed. You can specify one of the
|
17681
18648
|
# following values:
|
@@ -17692,6 +18659,8 @@ module Aws::RDS
|
|
17692
18659
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
17693
18660
|
# is restored as a full copy of the source DB cluster.
|
17694
18661
|
#
|
18662
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18663
|
+
#
|
17695
18664
|
# @option params [required, String] :source_db_cluster_identifier
|
17696
18665
|
# The identifier of the source DB cluster from which to restore.
|
17697
18666
|
#
|
@@ -17701,6 +18670,8 @@ module Aws::RDS
|
|
17701
18670
|
#
|
17702
18671
|
# ^
|
17703
18672
|
#
|
18673
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18674
|
+
#
|
17704
18675
|
# @option params [Time,DateTime,Date,Integer,String] :restore_to_time
|
17705
18676
|
# The date and time to restore the DB cluster to.
|
17706
18677
|
#
|
@@ -17722,6 +18693,8 @@ module Aws::RDS
|
|
17722
18693
|
#
|
17723
18694
|
# Example: `2015-03-07T23:45:00Z`
|
17724
18695
|
#
|
18696
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18697
|
+
#
|
17725
18698
|
# @option params [Boolean] :use_latest_restorable_time
|
17726
18699
|
# A value that indicates whether to restore the DB cluster to the latest
|
17727
18700
|
# restorable backup time. By default, the DB cluster isn't restored to
|
@@ -17730,6 +18703,8 @@ module Aws::RDS
|
|
17730
18703
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
17731
18704
|
# provided.
|
17732
18705
|
#
|
18706
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18707
|
+
#
|
17733
18708
|
# @option params [Integer] :port
|
17734
18709
|
# The port number on which the new DB cluster accepts connections.
|
17735
18710
|
#
|
@@ -17737,6 +18712,8 @@ module Aws::RDS
|
|
17737
18712
|
#
|
17738
18713
|
# Default: The default port for the engine.
|
17739
18714
|
#
|
18715
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18716
|
+
#
|
17740
18717
|
# @option params [String] :db_subnet_group_name
|
17741
18718
|
# The DB subnet group name to use for the new DB cluster.
|
17742
18719
|
#
|
@@ -17745,12 +18722,19 @@ module Aws::RDS
|
|
17745
18722
|
#
|
17746
18723
|
# Example: `mySubnetgroup`
|
17747
18724
|
#
|
18725
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18726
|
+
#
|
17748
18727
|
# @option params [String] :option_group_name
|
17749
18728
|
# The name of the option group for the new DB cluster.
|
17750
18729
|
#
|
18730
|
+
# DB clusters are associated with a default option group that can't be
|
18731
|
+
# modified.
|
18732
|
+
#
|
17751
18733
|
# @option params [Array<String>] :vpc_security_group_ids
|
17752
18734
|
# A list of VPC security groups that the new DB cluster belongs to.
|
17753
18735
|
#
|
18736
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18737
|
+
#
|
17754
18738
|
# @option params [Array<Types::Tag>] :tags
|
17755
18739
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
17756
18740
|
# Resources][1] in the *Amazon RDS User Guide.*
|
@@ -17786,14 +18770,18 @@ module Aws::RDS
|
|
17786
18770
|
# If `DBClusterIdentifier` refers to a DB cluster that isn't encrypted,
|
17787
18771
|
# then the restore request is rejected.
|
17788
18772
|
#
|
18773
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18774
|
+
#
|
17789
18775
|
# @option params [Boolean] :enable_iam_database_authentication
|
17790
18776
|
# A value that indicates whether to enable mapping of Amazon Web
|
17791
18777
|
# Services Identity and Access Management (IAM) accounts to database
|
17792
|
-
# accounts. By default, mapping
|
18778
|
+
# accounts. By default, mapping isn't enabled.
|
17793
18779
|
#
|
17794
18780
|
# For more information, see [ IAM Database Authentication][1] in the
|
17795
18781
|
# *Amazon Aurora User Guide.*
|
17796
18782
|
#
|
18783
|
+
# Valid for: Aurora DB clusters only
|
18784
|
+
#
|
17797
18785
|
#
|
17798
18786
|
#
|
17799
18787
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -17802,10 +18790,6 @@ module Aws::RDS
|
|
17802
18790
|
# The target backtrack window, in seconds. To disable backtracking, set
|
17803
18791
|
# this value to 0.
|
17804
18792
|
#
|
17805
|
-
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
17806
|
-
#
|
17807
|
-
# </note>
|
17808
|
-
#
|
17809
18793
|
# Default: 0
|
17810
18794
|
#
|
17811
18795
|
# Constraints:
|
@@ -17815,12 +18799,18 @@ module Aws::RDS
|
|
17815
18799
|
#
|
17816
18800
|
# ^
|
17817
18801
|
#
|
18802
|
+
# Valid for: Aurora MySQL DB clusters only
|
18803
|
+
#
|
17818
18804
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
17819
18805
|
# The list of logs that the restored DB cluster is to export to
|
17820
18806
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
17821
|
-
# used.
|
18807
|
+
# used.
|
18808
|
+
#
|
18809
|
+
# For more information, see [Publishing Database Logs to Amazon
|
17822
18810
|
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
17823
18811
|
#
|
18812
|
+
# Valid for: Aurora DB clusters only
|
18813
|
+
#
|
17824
18814
|
#
|
17825
18815
|
#
|
17826
18816
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -17841,16 +18831,22 @@ module Aws::RDS
|
|
17841
18831
|
#
|
17842
18832
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
17843
18833
|
#
|
18834
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18835
|
+
#
|
17844
18836
|
# @option params [Boolean] :deletion_protection
|
17845
18837
|
# A value that indicates whether the DB cluster has deletion protection
|
17846
18838
|
# enabled. The database can't be deleted when deletion protection is
|
17847
|
-
# enabled. By default, deletion protection
|
18839
|
+
# enabled. By default, deletion protection isn't enabled.
|
18840
|
+
#
|
18841
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
17848
18842
|
#
|
17849
18843
|
# @option params [Boolean] :copy_tags_to_snapshot
|
17850
18844
|
# A value that indicates whether to copy all tags from the restored DB
|
17851
18845
|
# cluster to snapshots of the restored DB cluster. The default is not to
|
17852
18846
|
# copy them.
|
17853
18847
|
#
|
18848
|
+
# Valid for: Aurora DB clusters only
|
18849
|
+
#
|
17854
18850
|
# @option params [String] :domain
|
17855
18851
|
# Specify the Active Directory directory ID to restore the DB cluster
|
17856
18852
|
# in. The domain must be created prior to this operation.
|
@@ -17860,6 +18856,8 @@ module Aws::RDS
|
|
17860
18856
|
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
17861
18857
|
# Aurora User Guide*.
|
17862
18858
|
#
|
18859
|
+
# Valid for: Aurora DB clusters only
|
18860
|
+
#
|
17863
18861
|
#
|
17864
18862
|
#
|
17865
18863
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
@@ -17868,10 +18866,14 @@ module Aws::RDS
|
|
17868
18866
|
# Specify the name of the IAM role to be used when making API calls to
|
17869
18867
|
# the Directory Service.
|
17870
18868
|
#
|
18869
|
+
# Valid for: Aurora DB clusters only
|
18870
|
+
#
|
17871
18871
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
17872
18872
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
17873
18873
|
# of the DB cluster.
|
17874
18874
|
#
|
18875
|
+
# Valid for: Aurora DB clusters only
|
18876
|
+
#
|
17875
18877
|
# @option params [String] :engine_mode
|
17876
18878
|
# The engine mode of the new cluster. Specify `provisioned` or
|
17877
18879
|
# `serverless`, depending on the type of the cluster you are creating.
|
@@ -17880,6 +18882,90 @@ module Aws::RDS
|
|
17880
18882
|
# clone that is an Aurora Serverless cluster, the original cluster must
|
17881
18883
|
# be an Aurora Serverless cluster or an encrypted provisioned cluster.
|
17882
18884
|
#
|
18885
|
+
# Valid for: Aurora DB clusters only
|
18886
|
+
#
|
18887
|
+
# @option params [String] :db_cluster_instance_class
|
18888
|
+
# The compute and memory capacity of the each DB instance in the
|
18889
|
+
# Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
|
18890
|
+
# classes are available in all Amazon Web Services Regions, or for all
|
18891
|
+
# database engines.
|
18892
|
+
#
|
18893
|
+
# For the full list of DB instance classes, and availability for your
|
18894
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide.*
|
18895
|
+
#
|
18896
|
+
# Valid for: Multi-AZ DB clusters only
|
18897
|
+
#
|
18898
|
+
#
|
18899
|
+
#
|
18900
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
18901
|
+
#
|
18902
|
+
# @option params [String] :storage_type
|
18903
|
+
# Specifies the storage type to be associated with the each DB instance
|
18904
|
+
# in the Multi-AZ DB cluster.
|
18905
|
+
#
|
18906
|
+
# Valid values: `standard | gp2 | io1`
|
18907
|
+
#
|
18908
|
+
# If you specify `io1`, also include a value for the `Iops` parameter.
|
18909
|
+
#
|
18910
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
18911
|
+
#
|
18912
|
+
# Valid for: Multi-AZ DB clusters only
|
18913
|
+
#
|
18914
|
+
# @option params [Boolean] :publicly_accessible
|
18915
|
+
# A value that indicates whether the DB cluster is publicly accessible.
|
18916
|
+
#
|
18917
|
+
# When the DB cluster is publicly accessible, its Domain Name System
|
18918
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
18919
|
+
# cluster's virtual private cloud (VPC). It resolves to the public IP
|
18920
|
+
# address from outside of the DB cluster's VPC. Access to the DB
|
18921
|
+
# cluster is ultimately controlled by the security group it uses. That
|
18922
|
+
# public access is not permitted if the security group assigned to the
|
18923
|
+
# DB cluster doesn't permit it.
|
18924
|
+
#
|
18925
|
+
# When the DB cluster isn't publicly accessible, it is an internal DB
|
18926
|
+
# cluster with a DNS name that resolves to a private IP address.
|
18927
|
+
#
|
18928
|
+
# Default: The default behavior varies depending on whether
|
18929
|
+
# `DBSubnetGroupName` is specified.
|
18930
|
+
#
|
18931
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
18932
|
+
# isn't specified, the following applies:
|
18933
|
+
#
|
18934
|
+
# * If the default VPC in the target Region doesn’t have an internet
|
18935
|
+
# gateway attached to it, the DB cluster is private.
|
18936
|
+
#
|
18937
|
+
# * If the default VPC in the target Region has an internet gateway
|
18938
|
+
# attached to it, the DB cluster is public.
|
18939
|
+
#
|
18940
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
18941
|
+
# specified, the following applies:
|
18942
|
+
#
|
18943
|
+
# * If the subnets are part of a VPC that doesn’t have an internet
|
18944
|
+
# gateway attached to it, the DB cluster is private.
|
18945
|
+
#
|
18946
|
+
# * If the subnets are part of a VPC that has an internet gateway
|
18947
|
+
# attached to it, the DB cluster is public.
|
18948
|
+
#
|
18949
|
+
# Valid for: Multi-AZ DB clusters only
|
18950
|
+
#
|
18951
|
+
# @option params [Integer] :iops
|
18952
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
18953
|
+
# be initially allocated for each DB instance in the Multi-AZ DB
|
18954
|
+
# cluster.
|
18955
|
+
#
|
18956
|
+
# For information about valid `Iops` values, see [Amazon RDS Provisioned
|
18957
|
+
# IOPS storage to improve performance][1] in the *Amazon RDS User
|
18958
|
+
# Guide*.
|
18959
|
+
#
|
18960
|
+
# Constraints: Must be a multiple between .5 and 50 of the storage
|
18961
|
+
# amount for the DB instance.
|
18962
|
+
#
|
18963
|
+
# Valid for: Multi-AZ DB clusters only
|
18964
|
+
#
|
18965
|
+
#
|
18966
|
+
#
|
18967
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
18968
|
+
#
|
17883
18969
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17884
18970
|
#
|
17885
18971
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -17937,6 +19023,10 @@ module Aws::RDS
|
|
17937
19023
|
# seconds_before_timeout: 1,
|
17938
19024
|
# },
|
17939
19025
|
# engine_mode: "String",
|
19026
|
+
# db_cluster_instance_class: "String",
|
19027
|
+
# storage_type: "String",
|
19028
|
+
# publicly_accessible: false,
|
19029
|
+
# iops: 1,
|
17940
19030
|
# })
|
17941
19031
|
#
|
17942
19032
|
# @example Response structure
|
@@ -18031,6 +19121,16 @@ module Aws::RDS
|
|
18031
19121
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
18032
19122
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
18033
19123
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
19124
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
19125
|
+
# resp.db_cluster.storage_type #=> String
|
19126
|
+
# resp.db_cluster.iops #=> Integer
|
19127
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
19128
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
19129
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
19130
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
19131
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
19132
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
19133
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
18034
19134
|
#
|
18035
19135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
18036
19136
|
#
|
@@ -18094,10 +19194,10 @@ module Aws::RDS
|
|
18094
19194
|
#
|
18095
19195
|
# @option params [String] :db_instance_class
|
18096
19196
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
18097
|
-
# example
|
18098
|
-
#
|
18099
|
-
#
|
18100
|
-
#
|
19197
|
+
# example db.m4.large. Not all DB instance classes are available in all
|
19198
|
+
# Amazon Web Services Regions, or for all database engines. For the full
|
19199
|
+
# list of DB instance classes, and availability for your engine, see [DB
|
19200
|
+
# Instance Class][1] in the *Amazon RDS User Guide.*
|
18101
19201
|
#
|
18102
19202
|
# Default: The same DBInstanceClass as the original DB instance.
|
18103
19203
|
#
|
@@ -18142,12 +19242,13 @@ module Aws::RDS
|
|
18142
19242
|
# @option params [Boolean] :publicly_accessible
|
18143
19243
|
# A value that indicates whether the DB instance is publicly accessible.
|
18144
19244
|
#
|
18145
|
-
# When the DB instance is publicly accessible, its
|
18146
|
-
# to the private IP address from within the DB
|
18147
|
-
#
|
18148
|
-
#
|
18149
|
-
#
|
18150
|
-
#
|
19245
|
+
# When the DB instance is publicly accessible, its Domain Name System
|
19246
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
19247
|
+
# instance's virtual private cloud (VPC). It resolves to the public IP
|
19248
|
+
# address from outside of the DB instance's VPC. Access to the DB
|
19249
|
+
# instance is ultimately controlled by the security group it uses. That
|
19250
|
+
# public access is not permitted if the security group assigned to the
|
19251
|
+
# DB instance doesn't permit it.
|
18151
19252
|
#
|
18152
19253
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
18153
19254
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -18363,7 +19464,7 @@ module Aws::RDS
|
|
18363
19464
|
# @option params [Boolean] :deletion_protection
|
18364
19465
|
# A value that indicates whether the DB instance has deletion protection
|
18365
19466
|
# enabled. The database can't be deleted when deletion protection is
|
18366
|
-
# enabled. By default, deletion protection
|
19467
|
+
# enabled. By default, deletion protection isn't enabled. For more
|
18367
19468
|
# information, see [ Deleting a DB Instance][1].
|
18368
19469
|
#
|
18369
19470
|
#
|
@@ -18416,6 +19517,20 @@ module Aws::RDS
|
|
18416
19517
|
#
|
18417
19518
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
18418
19519
|
#
|
19520
|
+
# @option params [String] :backup_target
|
19521
|
+
# Specifies where automated backups and manual snapshots are stored for
|
19522
|
+
# the restored DB instance.
|
19523
|
+
#
|
19524
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
19525
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
19526
|
+
#
|
19527
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
19528
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
19529
|
+
#
|
19530
|
+
#
|
19531
|
+
#
|
19532
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
19533
|
+
#
|
18419
19534
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18420
19535
|
#
|
18421
19536
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -18558,6 +19673,7 @@ module Aws::RDS
|
|
18558
19673
|
# deletion_protection: false,
|
18559
19674
|
# enable_customer_owned_ip: false,
|
18560
19675
|
# custom_iam_instance_profile: "String",
|
19676
|
+
# backup_target: "String",
|
18561
19677
|
# })
|
18562
19678
|
#
|
18563
19679
|
# @example Response structure
|
@@ -18697,6 +19813,7 @@ module Aws::RDS
|
|
18697
19813
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
18698
19814
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
18699
19815
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
19816
|
+
# resp.db_instance.backup_target #=> String
|
18700
19817
|
#
|
18701
19818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
18702
19819
|
#
|
@@ -18749,8 +19866,8 @@ module Aws::RDS
|
|
18749
19866
|
# </note>
|
18750
19867
|
#
|
18751
19868
|
# @option params [required, String] :db_instance_class
|
18752
|
-
# The compute and memory capacity of the DB instance, for example
|
18753
|
-
#
|
19869
|
+
# The compute and memory capacity of the DB instance, for example
|
19870
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
18754
19871
|
# Web Services Regions, or for all database engines. For the full list
|
18755
19872
|
# of DB instance classes, and availability for your engine, see [DB
|
18756
19873
|
# Instance Class][1] in the *Amazon RDS User Guide.*
|
@@ -18911,12 +20028,13 @@ module Aws::RDS
|
|
18911
20028
|
# @option params [Boolean] :publicly_accessible
|
18912
20029
|
# A value that indicates whether the DB instance is publicly accessible.
|
18913
20030
|
#
|
18914
|
-
# When the DB instance is publicly accessible, its
|
18915
|
-
# to the private IP address from within the DB
|
18916
|
-
#
|
18917
|
-
#
|
18918
|
-
#
|
18919
|
-
#
|
20031
|
+
# When the DB instance is publicly accessible, its Domain Name System
|
20032
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
20033
|
+
# instance's virtual private cloud (VPC). It resolves to the public IP
|
20034
|
+
# address from outside of the DB instance's VPC. Access to the DB
|
20035
|
+
# instance is ultimately controlled by the security group it uses. That
|
20036
|
+
# public access is not permitted if the security group assigned to the
|
20037
|
+
# DB instance doesn't permit it.
|
18920
20038
|
#
|
18921
20039
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
18922
20040
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -18994,7 +20112,7 @@ module Aws::RDS
|
|
18994
20112
|
# @option params [Boolean] :enable_iam_database_authentication
|
18995
20113
|
# A value that indicates whether to enable mapping of Amazon Web
|
18996
20114
|
# Services Identity and Access Management (IAM) accounts to database
|
18997
|
-
# accounts. By default, mapping
|
20115
|
+
# accounts. By default, mapping isn't enabled.
|
18998
20116
|
#
|
18999
20117
|
# For more information about IAM database authentication, see [ IAM
|
19000
20118
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -19075,7 +20193,7 @@ module Aws::RDS
|
|
19075
20193
|
# @option params [Boolean] :deletion_protection
|
19076
20194
|
# A value that indicates whether the DB instance has deletion protection
|
19077
20195
|
# enabled. The database can't be deleted when deletion protection is
|
19078
|
-
# enabled. By default, deletion protection
|
20196
|
+
# enabled. By default, deletion protection isn't enabled. For more
|
19079
20197
|
# information, see [ Deleting a DB Instance][1].
|
19080
20198
|
#
|
19081
20199
|
#
|
@@ -19294,6 +20412,7 @@ module Aws::RDS
|
|
19294
20412
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
19295
20413
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
19296
20414
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
20415
|
+
# resp.db_instance.backup_target #=> String
|
19297
20416
|
#
|
19298
20417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
19299
20418
|
#
|
@@ -19368,10 +20487,10 @@ module Aws::RDS
|
|
19368
20487
|
#
|
19369
20488
|
# @option params [String] :db_instance_class
|
19370
20489
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
19371
|
-
# example
|
19372
|
-
#
|
19373
|
-
#
|
19374
|
-
#
|
20490
|
+
# example db.m4.large. Not all DB instance classes are available in all
|
20491
|
+
# Amazon Web Services Regions, or for all database engines. For the full
|
20492
|
+
# list of DB instance classes, and availability for your engine, see [DB
|
20493
|
+
# Instance Class][1] in the *Amazon RDS User Guide.*
|
19375
20494
|
#
|
19376
20495
|
# Default: The same DBInstanceClass as the original DB instance.
|
19377
20496
|
#
|
@@ -19416,12 +20535,13 @@ module Aws::RDS
|
|
19416
20535
|
# @option params [Boolean] :publicly_accessible
|
19417
20536
|
# A value that indicates whether the DB instance is publicly accessible.
|
19418
20537
|
#
|
19419
|
-
# When the DB
|
19420
|
-
# to the private IP address from within the DB
|
19421
|
-
#
|
19422
|
-
#
|
19423
|
-
#
|
19424
|
-
#
|
20538
|
+
# When the DB cluster is publicly accessible, its Domain Name System
|
20539
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
20540
|
+
# cluster's virtual private cloud (VPC). It resolves to the public IP
|
20541
|
+
# address from outside of the DB cluster's VPC. Access to the DB
|
20542
|
+
# cluster is ultimately controlled by the security group it uses. That
|
20543
|
+
# public access isn't permitted if the security group assigned to the
|
20544
|
+
# DB cluster doesn't permit it.
|
19425
20545
|
#
|
19426
20546
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
19427
20547
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -19571,7 +20691,7 @@ module Aws::RDS
|
|
19571
20691
|
# @option params [Boolean] :enable_iam_database_authentication
|
19572
20692
|
# A value that indicates whether to enable mapping of Amazon Web
|
19573
20693
|
# Services Identity and Access Management (IAM) accounts to database
|
19574
|
-
# accounts. By default, mapping
|
20694
|
+
# accounts. By default, mapping isn't enabled.
|
19575
20695
|
#
|
19576
20696
|
# This setting doesn't apply to RDS Custom.
|
19577
20697
|
#
|
@@ -19628,7 +20748,7 @@ module Aws::RDS
|
|
19628
20748
|
# @option params [Boolean] :deletion_protection
|
19629
20749
|
# A value that indicates whether the DB instance has deletion protection
|
19630
20750
|
# enabled. The database can't be deleted when deletion protection is
|
19631
|
-
# enabled. By default, deletion protection
|
20751
|
+
# enabled. By default, deletion protection isn't enabled. For more
|
19632
20752
|
# information, see [ Deleting a DB Instance][1].
|
19633
20753
|
#
|
19634
20754
|
#
|
@@ -19705,6 +20825,20 @@ module Aws::RDS
|
|
19705
20825
|
#
|
19706
20826
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
19707
20827
|
#
|
20828
|
+
# @option params [String] :backup_target
|
20829
|
+
# Specifies where automated backups and manual snapshots are stored for
|
20830
|
+
# the restored DB instance.
|
20831
|
+
#
|
20832
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
20833
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
20834
|
+
#
|
20835
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
20836
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
20837
|
+
#
|
20838
|
+
#
|
20839
|
+
#
|
20840
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
20841
|
+
#
|
19708
20842
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19709
20843
|
#
|
19710
20844
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -19853,6 +20987,7 @@ module Aws::RDS
|
|
19853
20987
|
# source_db_instance_automated_backups_arn: "String",
|
19854
20988
|
# enable_customer_owned_ip: false,
|
19855
20989
|
# custom_iam_instance_profile: "String",
|
20990
|
+
# backup_target: "String",
|
19856
20991
|
# })
|
19857
20992
|
#
|
19858
20993
|
# @example Response structure
|
@@ -19992,6 +21127,7 @@ module Aws::RDS
|
|
19992
21127
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
19993
21128
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
19994
21129
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
21130
|
+
# resp.db_instance.backup_target #=> String
|
19995
21131
|
#
|
19996
21132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
19997
21133
|
#
|
@@ -20283,6 +21419,16 @@ module Aws::RDS
|
|
20283
21419
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
20284
21420
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
20285
21421
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
21422
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
21423
|
+
# resp.db_cluster.storage_type #=> String
|
21424
|
+
# resp.db_cluster.iops #=> Integer
|
21425
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
21426
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
21427
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
21428
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
21429
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
21430
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
21431
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
20286
21432
|
#
|
20287
21433
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
20288
21434
|
#
|
@@ -20459,6 +21605,7 @@ module Aws::RDS
|
|
20459
21605
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
20460
21606
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
20461
21607
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
21608
|
+
# resp.db_instance.backup_target #=> String
|
20462
21609
|
#
|
20463
21610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
20464
21611
|
#
|
@@ -20553,6 +21700,7 @@ module Aws::RDS
|
|
20553
21700
|
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
20554
21701
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
20555
21702
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
21703
|
+
# resp.db_instance_automated_backup.backup_target #=> String
|
20556
21704
|
#
|
20557
21705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
20558
21706
|
#
|
@@ -20861,6 +22009,16 @@ module Aws::RDS
|
|
20861
22009
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
20862
22010
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
20863
22011
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
22012
|
+
# resp.db_cluster.db_cluster_instance_class #=> String
|
22013
|
+
# resp.db_cluster.storage_type #=> String
|
22014
|
+
# resp.db_cluster.iops #=> Integer
|
22015
|
+
# resp.db_cluster.publicly_accessible #=> Boolean
|
22016
|
+
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
22017
|
+
# resp.db_cluster.monitoring_interval #=> Integer
|
22018
|
+
# resp.db_cluster.monitoring_role_arn #=> String
|
22019
|
+
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
22020
|
+
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
22021
|
+
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
20864
22022
|
#
|
20865
22023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
20866
22024
|
#
|
@@ -21044,6 +22202,7 @@ module Aws::RDS
|
|
21044
22202
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
21045
22203
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
21046
22204
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
22205
|
+
# resp.db_instance.backup_target #=> String
|
21047
22206
|
#
|
21048
22207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
21049
22208
|
#
|
@@ -21110,6 +22269,7 @@ module Aws::RDS
|
|
21110
22269
|
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
21111
22270
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
21112
22271
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
22272
|
+
# resp.db_instance_automated_backup.backup_target #=> String
|
21113
22273
|
#
|
21114
22274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
21115
22275
|
#
|
@@ -21133,7 +22293,7 @@ module Aws::RDS
|
|
21133
22293
|
params: params,
|
21134
22294
|
config: config)
|
21135
22295
|
context[:gem_name] = 'aws-sdk-rds'
|
21136
|
-
context[:gem_version] = '1.
|
22296
|
+
context[:gem_version] = '1.133.0'
|
21137
22297
|
Seahorse::Client::Request.new(handlers, context)
|
21138
22298
|
end
|
21139
22299
|
|