aws-sdk-rds 1.80.0 → 1.81.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/account_quota.rb +13 -11
- data/lib/aws-sdk-rds/certificate.rb +13 -11
- data/lib/aws-sdk-rds/client.rb +231 -136
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +6 -3
- data/lib/aws-sdk-rds/db_cluster.rb +41 -24
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +13 -11
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +14 -12
- data/lib/aws-sdk-rds/db_engine.rb +13 -11
- data/lib/aws-sdk-rds/db_engine_version.rb +20 -12
- data/lib/aws-sdk-rds/db_instance.rb +98 -76
- data/lib/aws-sdk-rds/db_log_file.rb +13 -11
- data/lib/aws-sdk-rds/db_parameter_group.rb +13 -11
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +13 -11
- data/lib/aws-sdk-rds/db_security_group.rb +13 -11
- data/lib/aws-sdk-rds/db_snapshot.rb +13 -11
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +13 -11
- data/lib/aws-sdk-rds/db_subnet_group.rb +13 -11
- data/lib/aws-sdk-rds/event.rb +13 -11
- data/lib/aws-sdk-rds/event_category_map.rb +13 -11
- data/lib/aws-sdk-rds/event_subscription.rb +13 -11
- data/lib/aws-sdk-rds/option_group.rb +13 -11
- data/lib/aws-sdk-rds/option_group_option.rb +13 -11
- data/lib/aws-sdk-rds/parameter.rb +13 -11
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +13 -11
- data/lib/aws-sdk-rds/reserved_db_instance.rb +13 -11
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +13 -11
- data/lib/aws-sdk-rds/resource.rb +29 -20
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +13 -11
- data/lib/aws-sdk-rds/types.rb +174 -118
- data/lib/aws-sdk-rds/waiters.rb +66 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4e8c606af17f5430ae114d3187bbb3d6765745451dc86490217f274558eaa114
|
4
|
+
data.tar.gz: daaf09a3da9ccb76ceb98890d9af229a4fab4e190706924b353553b21252dbac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d190c2df3961e67639b40e375d7be5834460c7e13da6fb0169b83080fc81fdfceae46afb8d1931025785d1c678304234eaa27c0a3d916d2b36d0829668a3cdc
|
7
|
+
data.tar.gz: 91414fa46e4c6d1abf085f83c568146f191374df33867893bf7e91fe77996343f731f463a7f6373b979418bee32e19aeb0b5f94252943c69f53ae07c14888477
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,8 @@ module Aws::RDS
|
|
80
80
|
# Waiter polls an API operation until a resource enters a desired
|
81
81
|
# state.
|
82
82
|
#
|
83
|
-
# @note The waiting operation is performed on a copy. The original resource
|
83
|
+
# @note The waiting operation is performed on a copy. The original resource
|
84
|
+
# remains unchanged.
|
84
85
|
#
|
85
86
|
# ## Basic Usage
|
86
87
|
#
|
@@ -93,13 +94,15 @@ module Aws::RDS
|
|
93
94
|
#
|
94
95
|
# ## Example
|
95
96
|
#
|
96
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
97
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
98
|
+
# instance.state.name == 'running'
|
99
|
+
# end
|
97
100
|
#
|
98
101
|
# ## Configuration
|
99
102
|
#
|
100
103
|
# You can configure the maximum number of polling attempts, and the
|
101
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
102
|
-
# by passing a block to {#wait_until}:
|
104
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
105
|
+
# set by passing a block to {#wait_until}:
|
103
106
|
#
|
104
107
|
# # poll for ~25 seconds
|
105
108
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -130,17 +133,16 @@ module Aws::RDS
|
|
130
133
|
# # resource did not enter the desired state in time
|
131
134
|
# end
|
132
135
|
#
|
136
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
133
137
|
#
|
134
|
-
# @
|
135
|
-
#
|
136
|
-
#
|
137
|
-
# because the waiter has entered a state that it will not transition
|
138
|
-
# out of, preventing success.
|
138
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
139
|
+
# terminates because the waiter has entered a state that it will not
|
140
|
+
# transition out of, preventing success.
|
139
141
|
#
|
140
142
|
# yet successful.
|
141
143
|
#
|
142
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
143
|
-
# while polling for a resource that is not expected.
|
144
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
145
|
+
# encountered while polling for a resource that is not expected.
|
144
146
|
#
|
145
147
|
# @raise [NotImplementedError] Raised when the resource does not
|
146
148
|
#
|
@@ -116,7 +116,8 @@ module Aws::RDS
|
|
116
116
|
# Waiter polls an API operation until a resource enters a desired
|
117
117
|
# state.
|
118
118
|
#
|
119
|
-
# @note The waiting operation is performed on a copy. The original resource
|
119
|
+
# @note The waiting operation is performed on a copy. The original resource
|
120
|
+
# remains unchanged.
|
120
121
|
#
|
121
122
|
# ## Basic Usage
|
122
123
|
#
|
@@ -129,13 +130,15 @@ module Aws::RDS
|
|
129
130
|
#
|
130
131
|
# ## Example
|
131
132
|
#
|
132
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
133
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
134
|
+
# instance.state.name == 'running'
|
135
|
+
# end
|
133
136
|
#
|
134
137
|
# ## Configuration
|
135
138
|
#
|
136
139
|
# You can configure the maximum number of polling attempts, and the
|
137
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
138
|
-
# by passing a block to {#wait_until}:
|
140
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
141
|
+
# set by passing a block to {#wait_until}:
|
139
142
|
#
|
140
143
|
# # poll for ~25 seconds
|
141
144
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -166,17 +169,16 @@ module Aws::RDS
|
|
166
169
|
# # resource did not enter the desired state in time
|
167
170
|
# end
|
168
171
|
#
|
172
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
169
173
|
#
|
170
|
-
# @
|
171
|
-
#
|
172
|
-
#
|
173
|
-
# because the waiter has entered a state that it will not transition
|
174
|
-
# out of, preventing success.
|
174
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
175
|
+
# terminates because the waiter has entered a state that it will not
|
176
|
+
# transition out of, preventing success.
|
175
177
|
#
|
176
178
|
# yet successful.
|
177
179
|
#
|
178
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
179
|
-
# while polling for a resource that is not expected.
|
180
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
181
|
+
# encountered while polling for a resource that is not expected.
|
180
182
|
#
|
181
183
|
# @raise [NotImplementedError] Raised when the resource does not
|
182
184
|
#
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -271,8 +271,7 @@ module Aws::RDS
|
|
271
271
|
#
|
272
272
|
# @option options [Integer] :http_read_timeout (60) The default
|
273
273
|
# number of seconds to wait for response data. This value can
|
274
|
-
# safely be set
|
275
|
-
# per-request on the session yielded by {#session_for}.
|
274
|
+
# safely be set per-request on the session.
|
276
275
|
#
|
277
276
|
# @option options [Float] :http_idle_timeout (5) The number of
|
278
277
|
# seconds a connection is allowed to sit idle before it is
|
@@ -284,7 +283,7 @@ module Aws::RDS
|
|
284
283
|
# request body. This option has no effect unless the request has
|
285
284
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
286
285
|
# disables this behaviour. This value can safely be set per
|
287
|
-
# request on the session
|
286
|
+
# request on the session.
|
288
287
|
#
|
289
288
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
290
289
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1140,7 +1139,7 @@ module Aws::RDS
|
|
1140
1139
|
# encrypted DB cluster snapshot in the same AWS Region.
|
1141
1140
|
#
|
1142
1141
|
# The pre-signed URL must be a valid request for the
|
1143
|
-
# `
|
1142
|
+
# `CopyDBClusterSnapshot` API action that can be executed in the source
|
1144
1143
|
# AWS Region that contains the encrypted DB cluster snapshot to be
|
1145
1144
|
# copied. The pre-signed URL request must contain the following
|
1146
1145
|
# parameter values:
|
@@ -1804,7 +1803,7 @@ module Aws::RDS
|
|
1804
1803
|
# Creates a new Amazon Aurora DB cluster.
|
1805
1804
|
#
|
1806
1805
|
# You can use the `ReplicationSourceIdentifier` parameter to create the
|
1807
|
-
# DB cluster as a
|
1806
|
+
# DB cluster as a read replica of another DB cluster or Amazon RDS MySQL
|
1808
1807
|
# DB instance. For cross-region replication where the DB cluster
|
1809
1808
|
# identified by `ReplicationSourceIdentifier` is encrypted, you must
|
1810
1809
|
# also specify the `PreSignedUrl` parameter.
|
@@ -2001,7 +2000,7 @@ module Aws::RDS
|
|
2001
2000
|
#
|
2002
2001
|
# @option params [String] :replication_source_identifier
|
2003
2002
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
2004
|
-
# if this DB cluster is created as a
|
2003
|
+
# if this DB cluster is created as a read replica.
|
2005
2004
|
#
|
2006
2005
|
# @option params [Array<Types::Tag>] :tags
|
2007
2006
|
# Tags to assign to the DB cluster.
|
@@ -2032,9 +2031,9 @@ module Aws::RDS
|
|
2032
2031
|
# AWS account has a different default encryption key for each AWS
|
2033
2032
|
# Region.
|
2034
2033
|
#
|
2035
|
-
# If you create a
|
2034
|
+
# If you create a read replica of an encrypted DB cluster in another AWS
|
2036
2035
|
# Region, you must set `KmsKeyId` to a KMS key ID that is valid in the
|
2037
|
-
# destination AWS Region. This key is used to encrypt the
|
2036
|
+
# destination AWS Region. This key is used to encrypt the read replica
|
2038
2037
|
# in that AWS Region.
|
2039
2038
|
#
|
2040
2039
|
# @option params [String] :pre_signed_url
|
@@ -2057,8 +2056,8 @@ module Aws::RDS
|
|
2057
2056
|
# action that is called in the destination AWS Region, and the action
|
2058
2057
|
# contained in the pre-signed URL.
|
2059
2058
|
#
|
2060
|
-
# * `DestinationRegion` - The name of the AWS Region that Aurora
|
2061
|
-
#
|
2059
|
+
# * `DestinationRegion` - The name of the AWS Region that Aurora read
|
2060
|
+
# replica will be created in.
|
2062
2061
|
#
|
2063
2062
|
# * `ReplicationSourceIdentifier` - The DB cluster identifier for the
|
2064
2063
|
# encrypted DB cluster to be copied. This identifier must be in the
|
@@ -2124,6 +2123,12 @@ module Aws::RDS
|
|
2124
2123
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
2125
2124
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2126
2125
|
#
|
2126
|
+
# <note markdown="1"> `global` engine mode only applies for global database clusters created
|
2127
|
+
# with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions,
|
2128
|
+
# the clusters in a global database use `provisioned` engine mode.
|
2129
|
+
#
|
2130
|
+
# </note>
|
2131
|
+
#
|
2127
2132
|
# Limitations and requirements apply to some DB engine modes. For more
|
2128
2133
|
# information, see the following sections in the *Amazon Aurora User
|
2129
2134
|
# Guide*\:
|
@@ -2182,12 +2187,12 @@ module Aws::RDS
|
|
2182
2187
|
#
|
2183
2188
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
2184
2189
|
# Authentication to authenticate users that connect to the DB cluster.
|
2185
|
-
# For more information, see [
|
2186
|
-
#
|
2190
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
2191
|
+
# Aurora User Guide*.
|
2187
2192
|
#
|
2188
2193
|
#
|
2189
2194
|
#
|
2190
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
2195
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
2191
2196
|
#
|
2192
2197
|
# @option params [String] :domain_iam_role_name
|
2193
2198
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -3096,7 +3101,7 @@ module Aws::RDS
|
|
3096
3101
|
#
|
3097
3102
|
# * Must be a value from 0 to 35
|
3098
3103
|
#
|
3099
|
-
# * Can't be set to 0 if the DB instance is a source to
|
3104
|
+
# * Can't be set to 0 if the DB instance is a source to read replicas
|
3100
3105
|
#
|
3101
3106
|
# @option params [String] :preferred_backup_window
|
3102
3107
|
# The daily time range during which automated backups are created if
|
@@ -3136,7 +3141,7 @@ module Aws::RDS
|
|
3136
3141
|
#
|
3137
3142
|
# Default: `3306`
|
3138
3143
|
#
|
3139
|
-
# Valid
|
3144
|
+
# Valid values: `1150-65535`
|
3140
3145
|
#
|
3141
3146
|
# Type: Integer
|
3142
3147
|
#
|
@@ -3144,7 +3149,7 @@ module Aws::RDS
|
|
3144
3149
|
#
|
3145
3150
|
# Default: `3306`
|
3146
3151
|
#
|
3147
|
-
# Valid
|
3152
|
+
# Valid values: `1150-65535`
|
3148
3153
|
#
|
3149
3154
|
# Type: Integer
|
3150
3155
|
#
|
@@ -3152,7 +3157,7 @@ module Aws::RDS
|
|
3152
3157
|
#
|
3153
3158
|
# Default: `5432`
|
3154
3159
|
#
|
3155
|
-
# Valid
|
3160
|
+
# Valid values: `1150-65535`
|
3156
3161
|
#
|
3157
3162
|
# Type: Integer
|
3158
3163
|
#
|
@@ -3160,20 +3165,20 @@ module Aws::RDS
|
|
3160
3165
|
#
|
3161
3166
|
# Default: `1521`
|
3162
3167
|
#
|
3163
|
-
# Valid
|
3168
|
+
# Valid values: `1150-65535`
|
3164
3169
|
#
|
3165
3170
|
# **SQL Server**
|
3166
3171
|
#
|
3167
3172
|
# Default: `1433`
|
3168
3173
|
#
|
3169
|
-
# Valid
|
3170
|
-
# `
|
3174
|
+
# Valid values: `1150-65535` except `1234`, `1434`, `3260`, `3343`,
|
3175
|
+
# `3389`, `47001`, and `49152-49156`.
|
3171
3176
|
#
|
3172
3177
|
# **Amazon Aurora**
|
3173
3178
|
#
|
3174
3179
|
# Default: `3306`
|
3175
3180
|
#
|
3176
|
-
# Valid
|
3181
|
+
# Valid values: `1150-65535`
|
3177
3182
|
#
|
3178
3183
|
# Type: Integer
|
3179
3184
|
#
|
@@ -3366,15 +3371,13 @@ module Aws::RDS
|
|
3366
3371
|
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
3367
3372
|
# RDS User Guide*.
|
3368
3373
|
#
|
3369
|
-
# For Oracle DB
|
3374
|
+
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
3370
3375
|
# authenticate users that connect to the DB instance. For more
|
3371
3376
|
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
3372
3377
|
# Oracle][2] in the *Amazon RDS User Guide*.
|
3373
3378
|
#
|
3374
3379
|
#
|
3375
3380
|
#
|
3376
|
-
#
|
3377
|
-
#
|
3378
3381
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
3379
3382
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
3380
3383
|
#
|
@@ -3745,19 +3748,20 @@ module Aws::RDS
|
|
3745
3748
|
req.send_request(options)
|
3746
3749
|
end
|
3747
3750
|
|
3748
|
-
# Creates a new DB instance that acts as a
|
3749
|
-
# source DB instance. You can create a
|
3750
|
-
# running MySQL, MariaDB, Oracle, or
|
3751
|
-
# see [Working with Read Replicas][1] in the *Amazon RDS
|
3751
|
+
# Creates a new DB instance that acts as a read replica for an existing
|
3752
|
+
# source DB instance. You can create a read replica for a DB instance
|
3753
|
+
# running MySQL, MariaDB, Oracle, PostgreSQL, or SQL Server. For more
|
3754
|
+
# information, see [Working with Read Replicas][1] in the *Amazon RDS
|
3755
|
+
# User Guide*.
|
3752
3756
|
#
|
3753
|
-
# Amazon Aurora doesn't support this action.
|
3757
|
+
# Amazon Aurora doesn't support this action. Call the
|
3754
3758
|
# `CreateDBInstance` action to create a DB instance for an Aurora DB
|
3755
3759
|
# cluster.
|
3756
3760
|
#
|
3757
|
-
# All
|
3761
|
+
# All read replica DB instances are created with backups disabled. All
|
3758
3762
|
# other DB instance attributes (including DB security groups and DB
|
3759
3763
|
# parameter groups) are inherited from the source DB instance, except as
|
3760
|
-
# specified
|
3764
|
+
# specified.
|
3761
3765
|
#
|
3762
3766
|
# Your source DB instance must have backup retention enabled.
|
3763
3767
|
#
|
@@ -3766,47 +3770,53 @@ module Aws::RDS
|
|
3766
3770
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html
|
3767
3771
|
#
|
3768
3772
|
# @option params [required, String] :db_instance_identifier
|
3769
|
-
# The DB instance identifier of the
|
3773
|
+
# The DB instance identifier of the read replica. This identifier is the
|
3770
3774
|
# unique key that identifies a DB instance. This parameter is stored as
|
3771
3775
|
# a lowercase string.
|
3772
3776
|
#
|
3773
3777
|
# @option params [required, String] :source_db_instance_identifier
|
3774
3778
|
# The identifier of the DB instance that will act as the source for the
|
3775
|
-
#
|
3779
|
+
# read replica. Each DB instance can have up to five read replicas.
|
3776
3780
|
#
|
3777
3781
|
# Constraints:
|
3778
3782
|
#
|
3779
|
-
# * Must be the identifier of an existing MySQL, MariaDB, Oracle,
|
3780
|
-
# PostgreSQL DB instance.
|
3783
|
+
# * Must be the identifier of an existing MySQL, MariaDB, Oracle,
|
3784
|
+
# PostgreSQL, or SQL Server DB instance.
|
3781
3785
|
#
|
3782
|
-
# * Can specify a DB instance that is a MySQL
|
3786
|
+
# * Can specify a DB instance that is a MySQL read replica only if the
|
3783
3787
|
# source is running MySQL 5.6 or later.
|
3784
3788
|
#
|
3785
|
-
# * For the limitations of Oracle
|
3789
|
+
# * For the limitations of Oracle read replicas, see [Read Replica
|
3786
3790
|
# Limitations with Oracle][1] in the *Amazon RDS User Guide*.
|
3787
3791
|
#
|
3788
|
-
# *
|
3789
|
-
#
|
3790
|
-
#
|
3792
|
+
# * For the limitations of SQL Server read replicas, see [Read Replica
|
3793
|
+
# Limitations with Microsoft SQL Server][2] in the *Amazon RDS User
|
3794
|
+
# Guide*.
|
3791
3795
|
#
|
3792
|
-
# *
|
3793
|
-
#
|
3796
|
+
# * Can specify a PostgreSQL DB instance only if the source is running
|
3797
|
+
# PostgreSQL 9.3.5 or later (9.4.7 and higher for cross-region
|
3798
|
+
# replication).
|
3794
3799
|
#
|
3795
|
-
# *
|
3796
|
-
#
|
3800
|
+
# * The specified DB instance must have automatic backups enabled, that
|
3801
|
+
# is, its backup retention period must be greater than 0.
|
3797
3802
|
#
|
3798
|
-
# * If the source DB instance is in
|
3799
|
-
#
|
3800
|
-
#
|
3801
|
-
#
|
3803
|
+
# * If the source DB instance is in the same AWS Region as the read
|
3804
|
+
# replica, specify a valid DB instance identifier.
|
3805
|
+
#
|
3806
|
+
# * If the source DB instance is in a different AWS Region from the read
|
3807
|
+
# replica, specify a valid DB instance ARN. For more information, see
|
3808
|
+
# [Constructing an ARN for Amazon RDS][3] in the *Amazon RDS User
|
3809
|
+
# Guide*. This doesn't apply to SQL Server, which doesn't support
|
3810
|
+
# cross-region replicas.
|
3802
3811
|
#
|
3803
3812
|
#
|
3804
3813
|
#
|
3805
3814
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
3806
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3815
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.Limitations.html
|
3816
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
3807
3817
|
#
|
3808
3818
|
# @option params [String] :db_instance_class
|
3809
|
-
# The compute and memory capacity of the
|
3819
|
+
# The compute and memory capacity of the read replica, for example,
|
3810
3820
|
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
3811
3821
|
# Regions, or for all database engines. For the full list of DB instance
|
3812
3822
|
# classes, and availability for your engine, see [DB Instance Class][1]
|
@@ -3819,7 +3829,7 @@ module Aws::RDS
|
|
3819
3829
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
3820
3830
|
#
|
3821
3831
|
# @option params [String] :availability_zone
|
3822
|
-
# The Availability Zone (AZ) where the
|
3832
|
+
# The Availability Zone (AZ) where the read replica will be created.
|
3823
3833
|
#
|
3824
3834
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
3825
3835
|
# AWS Region.
|
@@ -3834,18 +3844,18 @@ module Aws::RDS
|
|
3834
3844
|
# Valid Values: `1150-65535`
|
3835
3845
|
#
|
3836
3846
|
# @option params [Boolean] :multi_az
|
3837
|
-
# A value that indicates whether the
|
3847
|
+
# A value that indicates whether the read replica is in a Multi-AZ
|
3838
3848
|
# deployment.
|
3839
3849
|
#
|
3840
|
-
# You can create a
|
3850
|
+
# You can create a read replica as a Multi-AZ DB instance. RDS creates a
|
3841
3851
|
# standby of your replica in another Availability Zone for failover
|
3842
|
-
# support for the replica. Creating your
|
3852
|
+
# support for the replica. Creating your read replica as a Multi-AZ DB
|
3843
3853
|
# instance is independent of whether the source database is a Multi-AZ
|
3844
3854
|
# DB instance.
|
3845
3855
|
#
|
3846
3856
|
# @option params [Boolean] :auto_minor_version_upgrade
|
3847
3857
|
# A value that indicates whether minor engine upgrades are applied
|
3848
|
-
# automatically to the
|
3858
|
+
# automatically to the read replica during the maintenance window.
|
3849
3859
|
#
|
3850
3860
|
# Default: Inherits from the source DB instance
|
3851
3861
|
#
|
@@ -3857,13 +3867,18 @@ module Aws::RDS
|
|
3857
3867
|
# The option group the DB instance is associated with. If omitted, the
|
3858
3868
|
# option group associated with the source instance is used.
|
3859
3869
|
#
|
3870
|
+
# <note markdown="1"> For SQL Server, you must use the option group associated with the
|
3871
|
+
# source instance.
|
3872
|
+
#
|
3873
|
+
# </note>
|
3874
|
+
#
|
3860
3875
|
# @option params [String] :db_parameter_group_name
|
3861
3876
|
# The name of the DB parameter group to associate with this DB instance.
|
3862
3877
|
#
|
3863
3878
|
# If you do not specify a value for `DBParameterGroupName`, then Amazon
|
3864
3879
|
# RDS uses the `DBParameterGroup` of source DB instance for a same
|
3865
|
-
# region
|
3866
|
-
# specified DB engine for a cross region
|
3880
|
+
# region read replica, or the default `DBParameterGroup` for the
|
3881
|
+
# specified DB engine for a cross region read replica.
|
3867
3882
|
#
|
3868
3883
|
# <note markdown="1"> Currently, specifying a parameter group for this operation is only
|
3869
3884
|
# supported for Oracle DB instances.
|
@@ -3910,25 +3925,25 @@ module Aws::RDS
|
|
3910
3925
|
# * The specified DB subnet group must be in the same AWS Region in
|
3911
3926
|
# which the operation is running.
|
3912
3927
|
#
|
3913
|
-
# * All
|
3928
|
+
# * All read replicas in one AWS Region that are created from the same
|
3914
3929
|
# source DB instance must either:>
|
3915
3930
|
#
|
3916
|
-
# * Specify DB subnet groups from the same VPC. All these
|
3917
|
-
#
|
3931
|
+
# * Specify DB subnet groups from the same VPC. All these read
|
3932
|
+
# replicas are created in the same VPC.
|
3918
3933
|
#
|
3919
|
-
# * Not specify a DB subnet group. All these
|
3934
|
+
# * Not specify a DB subnet group. All these read replicas are created
|
3920
3935
|
# outside of any VPC.
|
3921
3936
|
#
|
3922
3937
|
# Example: `mySubnetgroup`
|
3923
3938
|
#
|
3924
3939
|
# @option params [Array<String>] :vpc_security_group_ids
|
3925
|
-
# A list of EC2 VPC security groups to associate with the
|
3940
|
+
# A list of EC2 VPC security groups to associate with the read replica.
|
3926
3941
|
#
|
3927
3942
|
# Default: The default EC2 VPC security group for the DB subnet group's
|
3928
3943
|
# VPC.
|
3929
3944
|
#
|
3930
3945
|
# @option params [String] :storage_type
|
3931
|
-
# Specifies the storage type to be associated with the
|
3946
|
+
# Specifies the storage type to be associated with the read replica.
|
3932
3947
|
#
|
3933
3948
|
# Valid values: `standard | gp2 | io1`
|
3934
3949
|
#
|
@@ -3938,12 +3953,12 @@ module Aws::RDS
|
|
3938
3953
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
3939
3954
|
#
|
3940
3955
|
# @option params [Boolean] :copy_tags_to_snapshot
|
3941
|
-
# A value that indicates whether to copy all tags from the
|
3942
|
-
# to snapshots of the
|
3956
|
+
# A value that indicates whether to copy all tags from the read replica
|
3957
|
+
# to snapshots of the read replica. By default, tags are not copied.
|
3943
3958
|
#
|
3944
3959
|
# @option params [Integer] :monitoring_interval
|
3945
3960
|
# The interval, in seconds, between points when Enhanced Monitoring
|
3946
|
-
# metrics are collected for the
|
3961
|
+
# metrics are collected for the read replica. To disable collecting
|
3947
3962
|
# Enhanced Monitoring metrics, specify 0. The default is 0.
|
3948
3963
|
#
|
3949
3964
|
# If `MonitoringRoleArn` is specified, then you must also set
|
@@ -3966,22 +3981,22 @@ module Aws::RDS
|
|
3966
3981
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
3967
3982
|
#
|
3968
3983
|
# @option params [String] :kms_key_id
|
3969
|
-
# The AWS KMS key ID for an encrypted
|
3984
|
+
# The AWS KMS key ID for an encrypted read replica. The KMS key ID is
|
3970
3985
|
# the Amazon Resource Name (ARN), KMS key identifier, or the KMS key
|
3971
3986
|
# alias for the KMS encryption key.
|
3972
3987
|
#
|
3973
|
-
# If you create an encrypted
|
3988
|
+
# If you create an encrypted read replica in the same AWS Region as the
|
3974
3989
|
# source DB instance, then you do not have to specify a value for this
|
3975
|
-
# parameter. The
|
3990
|
+
# parameter. The read replica is encrypted with the same KMS key as the
|
3976
3991
|
# source DB instance.
|
3977
3992
|
#
|
3978
|
-
# If you create an encrypted
|
3993
|
+
# If you create an encrypted read replica in a different AWS Region,
|
3979
3994
|
# then you must specify a KMS key for the destination AWS Region. KMS
|
3980
3995
|
# encryption keys are specific to the AWS Region that they are created
|
3981
3996
|
# in, and you can't use encryption keys from one AWS Region in another
|
3982
3997
|
# AWS Region.
|
3983
3998
|
#
|
3984
|
-
# You can't create an encrypted
|
3999
|
+
# You can't create an encrypted read replica from an unencrypted DB
|
3985
4000
|
# instance.
|
3986
4001
|
#
|
3987
4002
|
# @option params [String] :pre_signed_url
|
@@ -3989,9 +4004,9 @@ module Aws::RDS
|
|
3989
4004
|
# `CreateDBInstanceReadReplica` API action in the source AWS Region that
|
3990
4005
|
# contains the source DB instance.
|
3991
4006
|
#
|
3992
|
-
# You must specify this parameter when you create an encrypted
|
3993
|
-
#
|
3994
|
-
# specify `PreSignedUrl` when you are creating an encrypted
|
4007
|
+
# You must specify this parameter when you create an encrypted read
|
4008
|
+
# replica from another AWS Region by using the Amazon RDS API. Don't
|
4009
|
+
# specify `PreSignedUrl` when you are creating an encrypted read replica
|
3995
4010
|
# in the same AWS Region.
|
3996
4011
|
#
|
3997
4012
|
# The presigned URL must be a valid request for the
|
@@ -3999,7 +4014,7 @@ module Aws::RDS
|
|
3999
4014
|
# source AWS Region that contains the encrypted source DB instance. The
|
4000
4015
|
# presigned URL request must contain the following parameter values:
|
4001
4016
|
#
|
4002
|
-
# * `DestinationRegion` - The AWS Region that the encrypted
|
4017
|
+
# * `DestinationRegion` - The AWS Region that the encrypted read replica
|
4003
4018
|
# is created in. This AWS Region is the same one where the
|
4004
4019
|
# `CreateDBInstanceReadReplica` action is called that contains this
|
4005
4020
|
# presigned URL.
|
@@ -4013,7 +4028,7 @@ module Aws::RDS
|
|
4013
4028
|
# presigned URL must be set to the us-east-1 AWS Region.
|
4014
4029
|
#
|
4015
4030
|
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
4016
|
-
# encrypt the
|
4031
|
+
# encrypt the read replica in the destination AWS Region. This is the
|
4017
4032
|
# same identifier for both the `CreateDBInstanceReadReplica` action
|
4018
4033
|
# that is called in the destination AWS Region, and the action
|
4019
4034
|
# contained in the presigned URL.
|
@@ -4021,7 +4036,7 @@ module Aws::RDS
|
|
4021
4036
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
4022
4037
|
# encrypted DB instance to be replicated. This identifier must be in
|
4023
4038
|
# the Amazon Resource Name (ARN) format for the source AWS Region. For
|
4024
|
-
# example, if you are creating an encrypted
|
4039
|
+
# example, if you are creating an encrypted read replica from a DB
|
4025
4040
|
# instance in the us-west-2 AWS Region, then your
|
4026
4041
|
# `SourceDBInstanceIdentifier` looks like the following example:
|
4027
4042
|
# `arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115`.
|
@@ -4033,9 +4048,12 @@ module Aws::RDS
|
|
4033
4048
|
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
4034
4049
|
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
4035
4050
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
4036
|
-
# autogenerates a
|
4051
|
+
# autogenerates a presigned URL that is a valid request for the
|
4037
4052
|
# operation that can be executed in the source AWS Region.
|
4038
4053
|
#
|
4054
|
+
# `SourceRegion` isn't supported for SQL Server, because SQL Server on
|
4055
|
+
# Amazon RDS doesn't support cross-region read replicas.
|
4056
|
+
#
|
4039
4057
|
# </note>
|
4040
4058
|
#
|
4041
4059
|
#
|
@@ -4059,7 +4077,7 @@ module Aws::RDS
|
|
4059
4077
|
#
|
4060
4078
|
# @option params [Boolean] :enable_performance_insights
|
4061
4079
|
# A value that indicates whether to enable Performance Insights for the
|
4062
|
-
#
|
4080
|
+
# read replica.
|
4063
4081
|
#
|
4064
4082
|
# For more information, see [Using Amazon Performance Insights][1] in
|
4065
4083
|
# the *Amazon RDS User Guide*.
|
@@ -4118,9 +4136,16 @@ module Aws::RDS
|
|
4118
4136
|
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
4119
4137
|
# Oracle][1] in the *Amazon RDS User Guide*.
|
4120
4138
|
#
|
4139
|
+
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
4140
|
+
# Authentication to authenticate users that connect to the DB instance.
|
4141
|
+
# For more information, see [ Using Windows Authentication with an
|
4142
|
+
# Amazon RDS DB Instance Running Microsoft SQL Server][2] in the *Amazon
|
4143
|
+
# RDS User Guide*.
|
4144
|
+
#
|
4121
4145
|
#
|
4122
4146
|
#
|
4123
4147
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
4148
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
4124
4149
|
#
|
4125
4150
|
# @option params [String] :domain_iam_role_name
|
4126
4151
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -5631,14 +5656,14 @@ module Aws::RDS
|
|
5631
5656
|
# you can't delete the DB instance if both of the following conditions
|
5632
5657
|
# are true:
|
5633
5658
|
#
|
5634
|
-
# * The DB cluster is a
|
5659
|
+
# * The DB cluster is a read replica of another Amazon Aurora DB
|
5635
5660
|
# cluster.
|
5636
5661
|
#
|
5637
5662
|
# * The DB instance is the only instance in the DB cluster.
|
5638
5663
|
#
|
5639
5664
|
# To delete a DB instance in this case, first call the
|
5640
5665
|
# `PromoteReadReplicaDBCluster` API action to promote the DB cluster so
|
5641
|
-
# it's no longer a
|
5666
|
+
# it's no longer a read replica. After the promotion completes, then
|
5642
5667
|
# call the `DeleteDBInstance` API action to delete the final instance in
|
5643
5668
|
# the DB cluster.
|
5644
5669
|
#
|
@@ -5663,7 +5688,7 @@ module Aws::RDS
|
|
5663
5688
|
# 'failed', 'incompatible-restore', or 'incompatible-network', it
|
5664
5689
|
# can only be deleted when skip is specified.
|
5665
5690
|
#
|
5666
|
-
# Specify skip when deleting a
|
5691
|
+
# Specify skip when deleting a read replica.
|
5667
5692
|
#
|
5668
5693
|
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip
|
5669
5694
|
# isn't specified.
|
@@ -5687,7 +5712,7 @@ module Aws::RDS
|
|
5687
5712
|
#
|
5688
5713
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
5689
5714
|
#
|
5690
|
-
# * Can't be specified when deleting a
|
5715
|
+
# * Can't be specified when deleting a read replica.
|
5691
5716
|
#
|
5692
5717
|
# @option params [Boolean] :delete_automated_backups
|
5693
5718
|
# A value that indicates whether to remove automated backups immediately
|
@@ -6559,6 +6584,8 @@ module Aws::RDS
|
|
6559
6584
|
# * {Types::CustomAvailabilityZoneMessage#marker #marker} => String
|
6560
6585
|
# * {Types::CustomAvailabilityZoneMessage#custom_availability_zones #custom_availability_zones} => Array<Types::CustomAvailabilityZone>
|
6561
6586
|
#
|
6587
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6588
|
+
#
|
6562
6589
|
# @example Request syntax with placeholder values
|
6563
6590
|
#
|
6564
6591
|
# resp = client.describe_custom_availability_zones({
|
@@ -7254,6 +7281,12 @@ module Aws::RDS
|
|
7254
7281
|
# resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
|
7255
7282
|
# resp.db_cluster_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
7256
7283
|
#
|
7284
|
+
#
|
7285
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
7286
|
+
#
|
7287
|
+
# * db_cluster_snapshot_available
|
7288
|
+
# * db_cluster_snapshot_deleted
|
7289
|
+
#
|
7257
7290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshots AWS API Documentation
|
7258
7291
|
#
|
7259
7292
|
# @overload describe_db_cluster_snapshots(params = {})
|
@@ -7325,6 +7358,8 @@ module Aws::RDS
|
|
7325
7358
|
# * {Types::DBClusterMessage#marker #marker} => String
|
7326
7359
|
# * {Types::DBClusterMessage#db_clusters #db_clusters} => Array<Types::DBCluster>
|
7327
7360
|
#
|
7361
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7362
|
+
#
|
7328
7363
|
#
|
7329
7364
|
# @example Example: To list DB clusters
|
7330
7365
|
#
|
@@ -7510,6 +7545,8 @@ module Aws::RDS
|
|
7510
7545
|
# * {Types::DBEngineVersionMessage#marker #marker} => String
|
7511
7546
|
# * {Types::DBEngineVersionMessage#db_engine_versions #db_engine_versions} => Array<Types::DBEngineVersion>
|
7512
7547
|
#
|
7548
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7549
|
+
#
|
7513
7550
|
#
|
7514
7551
|
# @example Example: To list DB engine version settings
|
7515
7552
|
#
|
@@ -7650,6 +7687,8 @@ module Aws::RDS
|
|
7650
7687
|
# * {Types::DBInstanceAutomatedBackupMessage#marker #marker} => String
|
7651
7688
|
# * {Types::DBInstanceAutomatedBackupMessage#db_instance_automated_backups #db_instance_automated_backups} => Array<Types::DBInstanceAutomatedBackup>
|
7652
7689
|
#
|
7690
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7691
|
+
#
|
7653
7692
|
# @example Request syntax with placeholder values
|
7654
7693
|
#
|
7655
7694
|
# resp = client.describe_db_instance_automated_backups({
|
@@ -7768,6 +7807,8 @@ module Aws::RDS
|
|
7768
7807
|
# * {Types::DBInstanceMessage#marker #marker} => String
|
7769
7808
|
# * {Types::DBInstanceMessage#db_instances #db_instances} => Array<Types::DBInstance>
|
7770
7809
|
#
|
7810
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7811
|
+
#
|
7771
7812
|
#
|
7772
7813
|
# @example Example: To list DB instance settings
|
7773
7814
|
#
|
@@ -7913,6 +7954,12 @@ module Aws::RDS
|
|
7913
7954
|
# resp.db_instances[0].listener_endpoint.hosted_zone_id #=> String
|
7914
7955
|
# resp.db_instances[0].max_allocated_storage #=> Integer
|
7915
7956
|
#
|
7957
|
+
#
|
7958
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
7959
|
+
#
|
7960
|
+
# * db_instance_available
|
7961
|
+
# * db_instance_deleted
|
7962
|
+
#
|
7916
7963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstances AWS API Documentation
|
7917
7964
|
#
|
7918
7965
|
# @overload describe_db_instances(params = {})
|
@@ -7965,6 +8012,8 @@ module Aws::RDS
|
|
7965
8012
|
# * {Types::DescribeDBLogFilesResponse#describe_db_log_files #describe_db_log_files} => Array<Types::DescribeDBLogFilesDetails>
|
7966
8013
|
# * {Types::DescribeDBLogFilesResponse#marker #marker} => String
|
7967
8014
|
#
|
8015
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8016
|
+
#
|
7968
8017
|
#
|
7969
8018
|
# @example Example: To list DB log file names
|
7970
8019
|
#
|
@@ -8054,6 +8103,8 @@ module Aws::RDS
|
|
8054
8103
|
# * {Types::DBParameterGroupsMessage#marker #marker} => String
|
8055
8104
|
# * {Types::DBParameterGroupsMessage#db_parameter_groups #db_parameter_groups} => Array<Types::DBParameterGroup>
|
8056
8105
|
#
|
8106
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8107
|
+
#
|
8057
8108
|
#
|
8058
8109
|
# @example Example: To list information about DB parameter groups
|
8059
8110
|
#
|
@@ -8142,6 +8193,8 @@ module Aws::RDS
|
|
8142
8193
|
# * {Types::DBParameterGroupDetails#parameters #parameters} => Array<Types::Parameter>
|
8143
8194
|
# * {Types::DBParameterGroupDetails#marker #marker} => String
|
8144
8195
|
#
|
8196
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8197
|
+
#
|
8145
8198
|
#
|
8146
8199
|
# @example Example: To list information about DB parameters
|
8147
8200
|
#
|
@@ -8231,6 +8284,8 @@ module Aws::RDS
|
|
8231
8284
|
# * {Types::DescribeDBProxiesResponse#db_proxies #db_proxies} => Array<Types::DBProxy>
|
8232
8285
|
# * {Types::DescribeDBProxiesResponse#marker #marker} => String
|
8233
8286
|
#
|
8287
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8288
|
+
#
|
8234
8289
|
# @example Request syntax with placeholder values
|
8235
8290
|
#
|
8236
8291
|
# resp = client.describe_db_proxies({
|
@@ -8317,6 +8372,8 @@ module Aws::RDS
|
|
8317
8372
|
# * {Types::DescribeDBProxyTargetGroupsResponse#target_groups #target_groups} => Array<Types::DBProxyTargetGroup>
|
8318
8373
|
# * {Types::DescribeDBProxyTargetGroupsResponse#marker #marker} => String
|
8319
8374
|
#
|
8375
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8376
|
+
#
|
8320
8377
|
# @example Request syntax with placeholder values
|
8321
8378
|
#
|
8322
8379
|
# resp = client.describe_db_proxy_target_groups({
|
@@ -8396,6 +8453,8 @@ module Aws::RDS
|
|
8396
8453
|
# * {Types::DescribeDBProxyTargetsResponse#targets #targets} => Array<Types::DBProxyTarget>
|
8397
8454
|
# * {Types::DescribeDBProxyTargetsResponse#marker #marker} => String
|
8398
8455
|
#
|
8456
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8457
|
+
#
|
8399
8458
|
# @example Request syntax with placeholder values
|
8400
8459
|
#
|
8401
8460
|
# resp = client.describe_db_proxy_targets({
|
@@ -8462,6 +8521,8 @@ module Aws::RDS
|
|
8462
8521
|
# * {Types::DBSecurityGroupMessage#marker #marker} => String
|
8463
8522
|
# * {Types::DBSecurityGroupMessage#db_security_groups #db_security_groups} => Array<Types::DBSecurityGroup>
|
8464
8523
|
#
|
8524
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8525
|
+
#
|
8465
8526
|
#
|
8466
8527
|
# @example Example: To list DB security group settings
|
8467
8528
|
#
|
@@ -8699,6 +8760,8 @@ module Aws::RDS
|
|
8699
8760
|
# * {Types::DBSnapshotMessage#marker #marker} => String
|
8700
8761
|
# * {Types::DBSnapshotMessage#db_snapshots #db_snapshots} => Array<Types::DBSnapshot>
|
8701
8762
|
#
|
8763
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8764
|
+
#
|
8702
8765
|
#
|
8703
8766
|
# @example Example: To list DB snapshot attributes
|
8704
8767
|
#
|
@@ -8769,6 +8832,12 @@ module Aws::RDS
|
|
8769
8832
|
# resp.db_snapshots[0].processor_features[0].value #=> String
|
8770
8833
|
# resp.db_snapshots[0].dbi_resource_id #=> String
|
8771
8834
|
#
|
8835
|
+
#
|
8836
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
8837
|
+
#
|
8838
|
+
# * db_snapshot_available
|
8839
|
+
# * db_snapshot_deleted
|
8840
|
+
#
|
8772
8841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshots AWS API Documentation
|
8773
8842
|
#
|
8774
8843
|
# @overload describe_db_snapshots(params = {})
|
@@ -8815,6 +8884,8 @@ module Aws::RDS
|
|
8815
8884
|
# * {Types::DBSubnetGroupMessage#marker #marker} => String
|
8816
8885
|
# * {Types::DBSubnetGroupMessage#db_subnet_groups #db_subnet_groups} => Array<Types::DBSubnetGroup>
|
8817
8886
|
#
|
8887
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8888
|
+
#
|
8818
8889
|
#
|
8819
8890
|
# @example Example: To list information about DB subnet groups
|
8820
8891
|
#
|
@@ -8987,6 +9058,8 @@ module Aws::RDS
|
|
8987
9058
|
#
|
8988
9059
|
# * {Types::DescribeEngineDefaultParametersResult#engine_defaults #engine_defaults} => Types::EngineDefaults
|
8989
9060
|
#
|
9061
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9062
|
+
#
|
8990
9063
|
#
|
8991
9064
|
# @example Example: To list default parameters for a DB engine
|
8992
9065
|
#
|
@@ -9141,6 +9214,8 @@ module Aws::RDS
|
|
9141
9214
|
# * {Types::EventSubscriptionsMessage#marker #marker} => String
|
9142
9215
|
# * {Types::EventSubscriptionsMessage#event_subscriptions_list #event_subscriptions_list} => Array<Types::EventSubscription>
|
9143
9216
|
#
|
9217
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9218
|
+
#
|
9144
9219
|
#
|
9145
9220
|
# @example Example: To list information about DB event notification subscriptions
|
9146
9221
|
#
|
@@ -9280,6 +9355,8 @@ module Aws::RDS
|
|
9280
9355
|
# * {Types::EventsMessage#marker #marker} => String
|
9281
9356
|
# * {Types::EventsMessage#events #events} => Array<Types::Event>
|
9282
9357
|
#
|
9358
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9359
|
+
#
|
9283
9360
|
#
|
9284
9361
|
# @example Example: To list information about events
|
9285
9362
|
#
|
@@ -9386,6 +9463,8 @@ module Aws::RDS
|
|
9386
9463
|
# * {Types::ExportTasksMessage#marker #marker} => String
|
9387
9464
|
# * {Types::ExportTasksMessage#export_tasks #export_tasks} => Array<Types::ExportTask>
|
9388
9465
|
#
|
9466
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9467
|
+
#
|
9389
9468
|
# @example Request syntax with placeholder values
|
9390
9469
|
#
|
9391
9470
|
# resp = client.describe_export_tasks({
|
@@ -9488,6 +9567,8 @@ module Aws::RDS
|
|
9488
9567
|
# * {Types::GlobalClustersMessage#marker #marker} => String
|
9489
9568
|
# * {Types::GlobalClustersMessage#global_clusters #global_clusters} => Array<Types::GlobalCluster>
|
9490
9569
|
#
|
9570
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9571
|
+
#
|
9491
9572
|
# @example Request syntax with placeholder values
|
9492
9573
|
#
|
9493
9574
|
# resp = client.describe_global_clusters({
|
@@ -9568,6 +9649,8 @@ module Aws::RDS
|
|
9568
9649
|
# * {Types::InstallationMediaMessage#marker #marker} => String
|
9569
9650
|
# * {Types::InstallationMediaMessage#installation_media #installation_media} => Array<Types::InstallationMedia>
|
9570
9651
|
#
|
9652
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9653
|
+
#
|
9571
9654
|
# @example Request syntax with placeholder values
|
9572
9655
|
#
|
9573
9656
|
# resp = client.describe_installation_media({
|
@@ -9637,6 +9720,8 @@ module Aws::RDS
|
|
9637
9720
|
# * {Types::OptionGroupOptionsMessage#option_group_options #option_group_options} => Array<Types::OptionGroupOption>
|
9638
9721
|
# * {Types::OptionGroupOptionsMessage#marker #marker} => String
|
9639
9722
|
#
|
9723
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9724
|
+
#
|
9640
9725
|
#
|
9641
9726
|
# @example Example: To list information about DB option group options
|
9642
9727
|
#
|
@@ -9749,6 +9834,8 @@ module Aws::RDS
|
|
9749
9834
|
# * {Types::OptionGroups#option_groups_list #option_groups_list} => Array<Types::OptionGroup>
|
9750
9835
|
# * {Types::OptionGroups#marker #marker} => String
|
9751
9836
|
#
|
9837
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9838
|
+
#
|
9752
9839
|
#
|
9753
9840
|
# @example Example: To list information about DB option groups
|
9754
9841
|
#
|
@@ -9868,6 +9955,8 @@ module Aws::RDS
|
|
9868
9955
|
# * {Types::OrderableDBInstanceOptionsMessage#orderable_db_instance_options #orderable_db_instance_options} => Array<Types::OrderableDBInstanceOption>
|
9869
9956
|
# * {Types::OrderableDBInstanceOptionsMessage#marker #marker} => String
|
9870
9957
|
#
|
9958
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9959
|
+
#
|
9871
9960
|
#
|
9872
9961
|
# @example Example: To list information about orderable DB instance options
|
9873
9962
|
#
|
@@ -10107,6 +10196,8 @@ module Aws::RDS
|
|
10107
10196
|
# * {Types::ReservedDBInstanceMessage#marker #marker} => String
|
10108
10197
|
# * {Types::ReservedDBInstanceMessage#reserved_db_instances #reserved_db_instances} => Array<Types::ReservedDBInstance>
|
10109
10198
|
#
|
10199
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10200
|
+
#
|
10110
10201
|
#
|
10111
10202
|
# @example Example: To list information about reserved DB instances
|
10112
10203
|
#
|
@@ -10239,6 +10330,8 @@ module Aws::RDS
|
|
10239
10330
|
# * {Types::ReservedDBInstancesOfferingMessage#marker #marker} => String
|
10240
10331
|
# * {Types::ReservedDBInstancesOfferingMessage#reserved_db_instances_offerings #reserved_db_instances_offerings} => Array<Types::ReservedDBInstancesOffering>
|
10241
10332
|
#
|
10333
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10334
|
+
#
|
10242
10335
|
#
|
10243
10336
|
# @example Example: To list information about reserved DB instance offerings
|
10244
10337
|
#
|
@@ -10303,7 +10396,7 @@ module Aws::RDS
|
|
10303
10396
|
end
|
10304
10397
|
|
10305
10398
|
# Returns a list of the source AWS Regions where the current AWS Region
|
10306
|
-
# can create a
|
10399
|
+
# can create a read replica or copy a DB snapshot from. This API action
|
10307
10400
|
# supports pagination.
|
10308
10401
|
#
|
10309
10402
|
# @option params [String] :region_name
|
@@ -10534,6 +10627,8 @@ module Aws::RDS
|
|
10534
10627
|
# * {Types::DownloadDBLogFilePortionDetails#marker #marker} => String
|
10535
10628
|
# * {Types::DownloadDBLogFilePortionDetails#additional_data_pending #additional_data_pending} => Boolean
|
10536
10629
|
#
|
10630
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10631
|
+
#
|
10537
10632
|
#
|
10538
10633
|
# @example Example: To list information about DB log files
|
10539
10634
|
#
|
@@ -11956,13 +12051,13 @@ module Aws::RDS
|
|
11956
12051
|
#
|
11957
12052
|
# * Must be a value from 0 to 35
|
11958
12053
|
#
|
11959
|
-
# * Can be specified for a MySQL
|
12054
|
+
# * Can be specified for a MySQL read replica only if the source is
|
11960
12055
|
# running MySQL 5.6 or later
|
11961
12056
|
#
|
11962
|
-
# * Can be specified for a PostgreSQL
|
12057
|
+
# * Can be specified for a PostgreSQL read replica only if the source is
|
11963
12058
|
# running PostgreSQL 9.3.5
|
11964
12059
|
#
|
11965
|
-
# * Can't be set to 0 if the DB instance is a source to
|
12060
|
+
# * Can't be set to 0 if the DB instance is a source to read replicas
|
11966
12061
|
#
|
11967
12062
|
# @option params [String] :preferred_backup_window
|
11968
12063
|
# The daily time range during which automated backups are created if
|
@@ -12073,7 +12168,7 @@ module Aws::RDS
|
|
12073
12168
|
# performance degradation. While the migration takes place, nightly
|
12074
12169
|
# backups for the instance are suspended. No other Amazon RDS operations
|
12075
12170
|
# can take place for the instance, including modifying the instance,
|
12076
|
-
# rebooting the instance, deleting the instance, creating a
|
12171
|
+
# rebooting the instance, deleting the instance, creating a read replica
|
12077
12172
|
# for the instance, and creating a DB snapshot of the instance.
|
12078
12173
|
#
|
12079
12174
|
# Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL, the value
|
@@ -12133,7 +12228,7 @@ module Aws::RDS
|
|
12133
12228
|
# performance degradation. While the migration takes place, nightly
|
12134
12229
|
# backups for the instance are suspended. No other Amazon RDS operations
|
12135
12230
|
# can take place for the instance, including modifying the instance,
|
12136
|
-
# rebooting the instance, deleting the instance, creating a
|
12231
|
+
# rebooting the instance, deleting the instance, creating a read replica
|
12137
12232
|
# for the instance, and creating a DB snapshot of the instance.
|
12138
12233
|
#
|
12139
12234
|
# Valid values: `standard | gp2 | io1`
|
@@ -12209,19 +12304,19 @@ module Aws::RDS
|
|
12209
12304
|
#
|
12210
12305
|
# Default: `3306`
|
12211
12306
|
#
|
12212
|
-
# Valid
|
12307
|
+
# Valid values: `1150-65535`
|
12213
12308
|
#
|
12214
12309
|
# **MariaDB**
|
12215
12310
|
#
|
12216
12311
|
# Default: `3306`
|
12217
12312
|
#
|
12218
|
-
# Valid
|
12313
|
+
# Valid values: `1150-65535`
|
12219
12314
|
#
|
12220
12315
|
# **PostgreSQL**
|
12221
12316
|
#
|
12222
12317
|
# Default: `5432`
|
12223
12318
|
#
|
12224
|
-
# Valid
|
12319
|
+
# Valid values: `1150-65535`
|
12225
12320
|
#
|
12226
12321
|
# Type: Integer
|
12227
12322
|
#
|
@@ -12229,20 +12324,20 @@ module Aws::RDS
|
|
12229
12324
|
#
|
12230
12325
|
# Default: `1521`
|
12231
12326
|
#
|
12232
|
-
# Valid
|
12327
|
+
# Valid values: `1150-65535`
|
12233
12328
|
#
|
12234
12329
|
# **SQL Server**
|
12235
12330
|
#
|
12236
12331
|
# Default: `1433`
|
12237
12332
|
#
|
12238
|
-
# Valid
|
12239
|
-
# `
|
12333
|
+
# Valid values: `1150-65535` except `1234`, `1434`, `3260`, `3343`,
|
12334
|
+
# `3389`, `47001`, and `49152-49156`.
|
12240
12335
|
#
|
12241
12336
|
# **Amazon Aurora**
|
12242
12337
|
#
|
12243
12338
|
# Default: `3306`
|
12244
12339
|
#
|
12245
|
-
# Valid
|
12340
|
+
# Valid values: `1150-65535`
|
12246
12341
|
#
|
12247
12342
|
# @option params [Boolean] :publicly_accessible
|
12248
12343
|
# A value that indicates whether the DB instance is publicly accessible.
|
@@ -12874,8 +12969,8 @@ module Aws::RDS
|
|
12874
12969
|
req.send_request(options)
|
12875
12970
|
end
|
12876
12971
|
|
12877
|
-
# Updates a manual DB snapshot
|
12878
|
-
#
|
12972
|
+
# Updates a manual DB snapshot with a new engine version. The snapshot
|
12973
|
+
# can be encrypted or unencrypted, but not shared or public.
|
12879
12974
|
#
|
12880
12975
|
# Amazon RDS supports upgrading DB snapshots for MySQL, Oracle, and
|
12881
12976
|
# PostgreSQL.
|
@@ -13454,16 +13549,16 @@ module Aws::RDS
|
|
13454
13549
|
req.send_request(options)
|
13455
13550
|
end
|
13456
13551
|
|
13457
|
-
# Promotes a
|
13552
|
+
# Promotes a read replica DB instance to a standalone DB instance.
|
13458
13553
|
#
|
13459
13554
|
# <note markdown="1"> * Backup duration is a function of the amount of changes to the
|
13460
|
-
# database since the previous backup. If you plan to promote a
|
13461
|
-
#
|
13555
|
+
# database since the previous backup. If you plan to promote a read
|
13556
|
+
# replica to a standalone instance, we recommend that you enable
|
13462
13557
|
# backups and complete at least one backup prior to promotion. In
|
13463
|
-
# addition, a
|
13558
|
+
# addition, a read replica cannot be promoted to a standalone instance
|
13464
13559
|
# when it is in the `backing-up` status. If you have enabled backups
|
13465
|
-
# on your
|
13466
|
-
# daily backups do not interfere with
|
13560
|
+
# on your read replica, configure the automated backup window so that
|
13561
|
+
# daily backups do not interfere with read replica promotion.
|
13467
13562
|
#
|
13468
13563
|
# * This command doesn't apply to Aurora MySQL and Aurora PostgreSQL.
|
13469
13564
|
#
|
@@ -13475,7 +13570,7 @@ module Aws::RDS
|
|
13475
13570
|
#
|
13476
13571
|
# Constraints:
|
13477
13572
|
#
|
13478
|
-
# * Must match the identifier of an existing
|
13573
|
+
# * Must match the identifier of an existing read replica DB instance.
|
13479
13574
|
#
|
13480
13575
|
# ^
|
13481
13576
|
#
|
@@ -13492,7 +13587,7 @@ module Aws::RDS
|
|
13492
13587
|
#
|
13493
13588
|
# * Must be a value from 0 to 35.
|
13494
13589
|
#
|
13495
|
-
# * Can't be set to 0 if the DB instance is a source to
|
13590
|
+
# * Can't be set to 0 if the DB instance is a source to read replicas.
|
13496
13591
|
#
|
13497
13592
|
# @option params [String] :preferred_backup_window
|
13498
13593
|
# The daily time range during which automated backups are created if
|
@@ -13672,19 +13767,19 @@ module Aws::RDS
|
|
13672
13767
|
req.send_request(options)
|
13673
13768
|
end
|
13674
13769
|
|
13675
|
-
# Promotes a
|
13770
|
+
# Promotes a read replica DB cluster to a standalone DB cluster.
|
13676
13771
|
#
|
13677
13772
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
13678
13773
|
#
|
13679
13774
|
# </note>
|
13680
13775
|
#
|
13681
13776
|
# @option params [required, String] :db_cluster_identifier
|
13682
|
-
# The identifier of the DB cluster
|
13777
|
+
# The identifier of the DB cluster read replica to promote. This
|
13683
13778
|
# parameter isn't case-sensitive.
|
13684
13779
|
#
|
13685
13780
|
# Constraints:
|
13686
13781
|
#
|
13687
|
-
# * Must match the identifier of an existing
|
13782
|
+
# * Must match the identifier of an existing DB cluster read replica.
|
13688
13783
|
#
|
13689
13784
|
# ^
|
13690
13785
|
#
|
@@ -14846,12 +14941,12 @@ module Aws::RDS
|
|
14846
14941
|
#
|
14847
14942
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
14848
14943
|
# Authentication to authenticate users that connect to the DB cluster.
|
14849
|
-
# For more information, see [
|
14850
|
-
#
|
14944
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
14945
|
+
# Aurora User Guide*.
|
14851
14946
|
#
|
14852
14947
|
#
|
14853
14948
|
#
|
14854
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
14949
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
14855
14950
|
#
|
14856
14951
|
# @option params [String] :domain_iam_role_name
|
14857
14952
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -14990,24 +15085,24 @@ module Aws::RDS
|
|
14990
15085
|
end
|
14991
15086
|
|
14992
15087
|
# Creates a new DB cluster from a DB snapshot or DB cluster snapshot.
|
15088
|
+
# This action only applies to Aurora DB clusters.
|
14993
15089
|
#
|
14994
|
-
#
|
14995
|
-
#
|
14996
|
-
# security group.
|
15090
|
+
# The target DB cluster is created from the source snapshot with a
|
15091
|
+
# default configuration. If you don't specify a security group, the new
|
15092
|
+
# DB cluster is associated with the default security group.
|
14997
15093
|
#
|
14998
|
-
#
|
14999
|
-
#
|
15000
|
-
#
|
15001
|
-
#
|
15002
|
-
#
|
15094
|
+
# <note markdown="1"> This action only restores the DB cluster, not the DB instances for
|
15095
|
+
# that DB cluster. You must invoke the `CreateDBInstance` action to
|
15096
|
+
# create DB instances for the restored DB cluster, specifying the
|
15097
|
+
# identifier of the restored DB cluster in `DBClusterIdentifier`. You
|
15098
|
+
# can create DB instances only after the `RestoreDBClusterFromSnapshot`
|
15099
|
+
# action has completed and the DB cluster is available.
|
15100
|
+
#
|
15101
|
+
# </note>
|
15003
15102
|
#
|
15004
15103
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
15005
15104
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
15006
15105
|
#
|
15007
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
15008
|
-
#
|
15009
|
-
# </note>
|
15010
|
-
#
|
15011
15106
|
#
|
15012
15107
|
#
|
15013
15108
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -15572,12 +15667,12 @@ module Aws::RDS
|
|
15572
15667
|
#
|
15573
15668
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
15574
15669
|
# Authentication to authenticate users that connect to the DB cluster.
|
15575
|
-
# For more information, see [
|
15576
|
-
#
|
15670
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
15671
|
+
# Aurora User Guide*.
|
15577
15672
|
#
|
15578
15673
|
#
|
15579
15674
|
#
|
15580
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
15675
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
15581
15676
|
#
|
15582
15677
|
# @option params [String] :domain_iam_role_name
|
15583
15678
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -18284,7 +18379,7 @@ module Aws::RDS
|
|
18284
18379
|
params: params,
|
18285
18380
|
config: config)
|
18286
18381
|
context[:gem_name] = 'aws-sdk-rds'
|
18287
|
-
context[:gem_version] = '1.
|
18382
|
+
context[:gem_version] = '1.81.0'
|
18288
18383
|
Seahorse::Client::Request.new(handlers, context)
|
18289
18384
|
end
|
18290
18385
|
|
@@ -18350,14 +18445,14 @@ module Aws::RDS
|
|
18350
18445
|
# The following table lists the valid waiter names, the operations they call,
|
18351
18446
|
# and the default `:delay` and `:max_attempts` values.
|
18352
18447
|
#
|
18353
|
-
# | waiter_name | params
|
18354
|
-
# | ----------------------------- |
|
18355
|
-
# | db_cluster_snapshot_available | {#describe_db_cluster_snapshots} | 30 | 60 |
|
18356
|
-
# | db_cluster_snapshot_deleted | {#describe_db_cluster_snapshots} | 30 | 60 |
|
18357
|
-
# | db_instance_available | {#describe_db_instances} | 30 | 60 |
|
18358
|
-
# | db_instance_deleted | {#describe_db_instances} | 30 | 60 |
|
18359
|
-
# | db_snapshot_available | {#describe_db_snapshots} | 30 | 60 |
|
18360
|
-
# | db_snapshot_deleted | {#describe_db_snapshots} | 30 | 60 |
|
18448
|
+
# | waiter_name | params | :delay | :max_attempts |
|
18449
|
+
# | ----------------------------- | -------------------------------------- | -------- | ------------- |
|
18450
|
+
# | db_cluster_snapshot_available | {Client#describe_db_cluster_snapshots} | 30 | 60 |
|
18451
|
+
# | db_cluster_snapshot_deleted | {Client#describe_db_cluster_snapshots} | 30 | 60 |
|
18452
|
+
# | db_instance_available | {Client#describe_db_instances} | 30 | 60 |
|
18453
|
+
# | db_instance_deleted | {Client#describe_db_instances} | 30 | 60 |
|
18454
|
+
# | db_snapshot_available | {Client#describe_db_snapshots} | 30 | 60 |
|
18455
|
+
# | db_snapshot_deleted | {Client#describe_db_snapshots} | 30 | 60 |
|
18361
18456
|
#
|
18362
18457
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
18363
18458
|
# because the waiter has entered a state that it will not transition
|