aws-sdk-rds 1.80.0 → 1.85.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 +280 -151
- data/lib/aws-sdk-rds/client_api.rb +18 -1
- 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 +261 -143
- data/lib/aws-sdk-rds/waiters.rb +66 -0
- metadata +3 -3
@@ -140,7 +140,8 @@ module Aws::RDS
|
|
140
140
|
# Waiter polls an API operation until a resource enters a desired
|
141
141
|
# state.
|
142
142
|
#
|
143
|
-
# @note The waiting operation is performed on a copy. The original resource
|
143
|
+
# @note The waiting operation is performed on a copy. The original resource
|
144
|
+
# remains unchanged.
|
144
145
|
#
|
145
146
|
# ## Basic Usage
|
146
147
|
#
|
@@ -153,13 +154,15 @@ module Aws::RDS
|
|
153
154
|
#
|
154
155
|
# ## Example
|
155
156
|
#
|
156
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
157
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
158
|
+
# instance.state.name == 'running'
|
159
|
+
# end
|
157
160
|
#
|
158
161
|
# ## Configuration
|
159
162
|
#
|
160
163
|
# You can configure the maximum number of polling attempts, and the
|
161
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
162
|
-
# by passing a block to {#wait_until}:
|
164
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
165
|
+
# set by passing a block to {#wait_until}:
|
163
166
|
#
|
164
167
|
# # poll for ~25 seconds
|
165
168
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -190,17 +193,16 @@ module Aws::RDS
|
|
190
193
|
# # resource did not enter the desired state in time
|
191
194
|
# end
|
192
195
|
#
|
196
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
193
197
|
#
|
194
|
-
# @
|
195
|
-
#
|
196
|
-
#
|
197
|
-
# because the waiter has entered a state that it will not transition
|
198
|
-
# out of, preventing success.
|
198
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
199
|
+
# terminates because the waiter has entered a state that it will not
|
200
|
+
# transition out of, preventing success.
|
199
201
|
#
|
200
202
|
# yet successful.
|
201
203
|
#
|
202
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
203
|
-
# while polling for a resource that is not expected.
|
204
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
205
|
+
# encountered while polling for a resource that is not expected.
|
204
206
|
#
|
205
207
|
# @raise [NotImplementedError] Raised when the resource does not
|
206
208
|
#
|
@@ -123,7 +123,8 @@ module Aws::RDS
|
|
123
123
|
# Waiter polls an API operation until a resource enters a desired
|
124
124
|
# state.
|
125
125
|
#
|
126
|
-
# @note The waiting operation is performed on a copy. The original resource
|
126
|
+
# @note The waiting operation is performed on a copy. The original resource
|
127
|
+
# remains unchanged.
|
127
128
|
#
|
128
129
|
# ## Basic Usage
|
129
130
|
#
|
@@ -136,13 +137,15 @@ module Aws::RDS
|
|
136
137
|
#
|
137
138
|
# ## Example
|
138
139
|
#
|
139
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
140
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
141
|
+
# instance.state.name == 'running'
|
142
|
+
# end
|
140
143
|
#
|
141
144
|
# ## Configuration
|
142
145
|
#
|
143
146
|
# You can configure the maximum number of polling attempts, and the
|
144
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
145
|
-
# by passing a block to {#wait_until}:
|
147
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
148
|
+
# set by passing a block to {#wait_until}:
|
146
149
|
#
|
147
150
|
# # poll for ~25 seconds
|
148
151
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -173,17 +176,16 @@ module Aws::RDS
|
|
173
176
|
# # resource did not enter the desired state in time
|
174
177
|
# end
|
175
178
|
#
|
179
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
176
180
|
#
|
177
|
-
# @
|
178
|
-
#
|
179
|
-
#
|
180
|
-
# because the waiter has entered a state that it will not transition
|
181
|
-
# out of, preventing success.
|
181
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
182
|
+
# terminates because the waiter has entered a state that it will not
|
183
|
+
# transition out of, preventing success.
|
182
184
|
#
|
183
185
|
# yet successful.
|
184
186
|
#
|
185
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
186
|
-
# while polling for a resource that is not expected.
|
187
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
188
|
+
# encountered while polling for a resource that is not expected.
|
187
189
|
#
|
188
190
|
# @raise [NotImplementedError] Raised when the resource does not
|
189
191
|
#
|
@@ -170,7 +170,8 @@ module Aws::RDS
|
|
170
170
|
# Waiter polls an API operation until a resource enters a desired
|
171
171
|
# state.
|
172
172
|
#
|
173
|
-
# @note The waiting operation is performed on a copy. The original resource
|
173
|
+
# @note The waiting operation is performed on a copy. The original resource
|
174
|
+
# remains unchanged.
|
174
175
|
#
|
175
176
|
# ## Basic Usage
|
176
177
|
#
|
@@ -183,13 +184,15 @@ module Aws::RDS
|
|
183
184
|
#
|
184
185
|
# ## Example
|
185
186
|
#
|
186
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
187
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
188
|
+
# instance.state.name == 'running'
|
189
|
+
# end
|
187
190
|
#
|
188
191
|
# ## Configuration
|
189
192
|
#
|
190
193
|
# You can configure the maximum number of polling attempts, and the
|
191
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
192
|
-
# by passing a block to {#wait_until}:
|
194
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
195
|
+
# set by passing a block to {#wait_until}:
|
193
196
|
#
|
194
197
|
# # poll for ~25 seconds
|
195
198
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -220,17 +223,16 @@ module Aws::RDS
|
|
220
223
|
# # resource did not enter the desired state in time
|
221
224
|
# end
|
222
225
|
#
|
226
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
223
227
|
#
|
224
|
-
# @
|
225
|
-
#
|
226
|
-
#
|
227
|
-
# because the waiter has entered a state that it will not transition
|
228
|
-
# out of, preventing success.
|
228
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
229
|
+
# terminates because the waiter has entered a state that it will not
|
230
|
+
# transition out of, preventing success.
|
229
231
|
#
|
230
232
|
# yet successful.
|
231
233
|
#
|
232
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
233
|
-
# while polling for a resource that is not expected.
|
234
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
235
|
+
# encountered while polling for a resource that is not expected.
|
234
236
|
#
|
235
237
|
# @raise [NotImplementedError] Raised when the resource does not
|
236
238
|
#
|
@@ -130,7 +130,8 @@ module Aws::RDS
|
|
130
130
|
# Waiter polls an API operation until a resource enters a desired
|
131
131
|
# state.
|
132
132
|
#
|
133
|
-
# @note The waiting operation is performed on a copy. The original resource
|
133
|
+
# @note The waiting operation is performed on a copy. The original resource
|
134
|
+
# remains unchanged.
|
134
135
|
#
|
135
136
|
# ## Basic Usage
|
136
137
|
#
|
@@ -143,13 +144,15 @@ module Aws::RDS
|
|
143
144
|
#
|
144
145
|
# ## Example
|
145
146
|
#
|
146
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
147
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
148
|
+
# instance.state.name == 'running'
|
149
|
+
# end
|
147
150
|
#
|
148
151
|
# ## Configuration
|
149
152
|
#
|
150
153
|
# You can configure the maximum number of polling attempts, and the
|
151
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
152
|
-
# by passing a block to {#wait_until}:
|
154
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
155
|
+
# set by passing a block to {#wait_until}:
|
153
156
|
#
|
154
157
|
# # poll for ~25 seconds
|
155
158
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -180,17 +183,16 @@ module Aws::RDS
|
|
180
183
|
# # resource did not enter the desired state in time
|
181
184
|
# end
|
182
185
|
#
|
186
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
183
187
|
#
|
184
|
-
# @
|
185
|
-
#
|
186
|
-
#
|
187
|
-
# because the waiter has entered a state that it will not transition
|
188
|
-
# out of, preventing success.
|
188
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
189
|
+
# terminates because the waiter has entered a state that it will not
|
190
|
+
# transition out of, preventing success.
|
189
191
|
#
|
190
192
|
# yet successful.
|
191
193
|
#
|
192
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
193
|
-
# while polling for a resource that is not expected.
|
194
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
195
|
+
# encountered while polling for a resource that is not expected.
|
194
196
|
#
|
195
197
|
# @raise [NotImplementedError] Raised when the resource does not
|
196
198
|
#
|
@@ -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
|
#
|
@@ -169,7 +169,8 @@ module Aws::RDS
|
|
169
169
|
# Waiter polls an API operation until a resource enters a desired
|
170
170
|
# state.
|
171
171
|
#
|
172
|
-
# @note The waiting operation is performed on a copy. The original resource
|
172
|
+
# @note The waiting operation is performed on a copy. The original resource
|
173
|
+
# remains unchanged.
|
173
174
|
#
|
174
175
|
# ## Basic Usage
|
175
176
|
#
|
@@ -182,13 +183,15 @@ module Aws::RDS
|
|
182
183
|
#
|
183
184
|
# ## Example
|
184
185
|
#
|
185
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
186
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
187
|
+
# instance.state.name == 'running'
|
188
|
+
# end
|
186
189
|
#
|
187
190
|
# ## Configuration
|
188
191
|
#
|
189
192
|
# You can configure the maximum number of polling attempts, and the
|
190
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
191
|
-
# by passing a block to {#wait_until}:
|
193
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
194
|
+
# set by passing a block to {#wait_until}:
|
192
195
|
#
|
193
196
|
# # poll for ~25 seconds
|
194
197
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -219,17 +222,16 @@ module Aws::RDS
|
|
219
222
|
# # resource did not enter the desired state in time
|
220
223
|
# end
|
221
224
|
#
|
225
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
222
226
|
#
|
223
|
-
# @
|
224
|
-
#
|
225
|
-
#
|
226
|
-
# because the waiter has entered a state that it will not transition
|
227
|
-
# out of, preventing success.
|
227
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
228
|
+
# terminates because the waiter has entered a state that it will not
|
229
|
+
# transition out of, preventing success.
|
228
230
|
#
|
229
231
|
# yet successful.
|
230
232
|
#
|
231
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
232
|
-
# while polling for a resource that is not expected.
|
233
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
234
|
+
# encountered while polling for a resource that is not expected.
|
233
235
|
#
|
234
236
|
# @raise [NotImplementedError] Raised when the resource does not
|
235
237
|
#
|
@@ -127,7 +127,8 @@ module Aws::RDS
|
|
127
127
|
# Waiter polls an API operation until a resource enters a desired
|
128
128
|
# state.
|
129
129
|
#
|
130
|
-
# @note The waiting operation is performed on a copy. The original resource
|
130
|
+
# @note The waiting operation is performed on a copy. The original resource
|
131
|
+
# remains unchanged.
|
131
132
|
#
|
132
133
|
# ## Basic Usage
|
133
134
|
#
|
@@ -140,13 +141,15 @@ module Aws::RDS
|
|
140
141
|
#
|
141
142
|
# ## Example
|
142
143
|
#
|
143
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
144
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
145
|
+
# instance.state.name == 'running'
|
146
|
+
# end
|
144
147
|
#
|
145
148
|
# ## Configuration
|
146
149
|
#
|
147
150
|
# You can configure the maximum number of polling attempts, and the
|
148
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
149
|
-
# by passing a block to {#wait_until}:
|
151
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
152
|
+
# set by passing a block to {#wait_until}:
|
150
153
|
#
|
151
154
|
# # poll for ~25 seconds
|
152
155
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -177,17 +180,16 @@ module Aws::RDS
|
|
177
180
|
# # resource did not enter the desired state in time
|
178
181
|
# end
|
179
182
|
#
|
183
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
180
184
|
#
|
181
|
-
# @
|
182
|
-
#
|
183
|
-
#
|
184
|
-
# because the waiter has entered a state that it will not transition
|
185
|
-
# out of, preventing success.
|
185
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
186
|
+
# terminates because the waiter has entered a state that it will not
|
187
|
+
# transition out of, preventing success.
|
186
188
|
#
|
187
189
|
# yet successful.
|
188
190
|
#
|
189
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
190
|
-
# while polling for a resource that is not expected.
|
191
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
192
|
+
# encountered while polling for a resource that is not expected.
|
191
193
|
#
|
192
194
|
# @raise [NotImplementedError] Raised when the resource does not
|
193
195
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -6,13 +6,18 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::RDS
|
9
|
+
|
9
10
|
# This class provides a resource oriented interface for RDS.
|
10
11
|
# To create a resource object:
|
12
|
+
#
|
11
13
|
# resource = Aws::RDS::Resource.new(region: 'us-west-2')
|
14
|
+
#
|
12
15
|
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass
|
16
|
+
# If you do not pass `:client`, a default client will be constructed.
|
17
|
+
#
|
14
18
|
# client = Aws::RDS::Client.new(region: 'us-west-2')
|
15
19
|
# resource = Aws::RDS::Resource.new(client: client)
|
20
|
+
#
|
16
21
|
class Resource
|
17
22
|
|
18
23
|
# @param options ({})
|
@@ -242,7 +247,7 @@ module Aws::RDS
|
|
242
247
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
243
248
|
# @option options [String] :replication_source_identifier
|
244
249
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
245
|
-
# if this DB cluster is created as a
|
250
|
+
# if this DB cluster is created as a read replica.
|
246
251
|
# @option options [Array<Types::Tag>] :tags
|
247
252
|
# Tags to assign to the DB cluster.
|
248
253
|
# @option options [Boolean] :storage_encrypted
|
@@ -270,9 +275,9 @@ module Aws::RDS
|
|
270
275
|
# AWS account has a different default encryption key for each AWS
|
271
276
|
# Region.
|
272
277
|
#
|
273
|
-
# If you create a
|
278
|
+
# If you create a read replica of an encrypted DB cluster in another AWS
|
274
279
|
# Region, you must set `KmsKeyId` to a KMS key ID that is valid in the
|
275
|
-
# destination AWS Region. This key is used to encrypt the
|
280
|
+
# destination AWS Region. This key is used to encrypt the read replica
|
276
281
|
# in that AWS Region.
|
277
282
|
# @option options [String] :pre_signed_url
|
278
283
|
# A URL that contains a Signature Version 4 signed request for the
|
@@ -294,8 +299,8 @@ module Aws::RDS
|
|
294
299
|
# action that is called in the destination AWS Region, and the action
|
295
300
|
# contained in the pre-signed URL.
|
296
301
|
#
|
297
|
-
# * `DestinationRegion` - The name of the AWS Region that Aurora
|
298
|
-
#
|
302
|
+
# * `DestinationRegion` - The name of the AWS Region that Aurora read
|
303
|
+
# replica will be created in.
|
299
304
|
#
|
300
305
|
# * `ReplicationSourceIdentifier` - The DB cluster identifier for the
|
301
306
|
# encrypted DB cluster to be copied. This identifier must be in the
|
@@ -357,6 +362,12 @@ module Aws::RDS
|
|
357
362
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
358
363
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
359
364
|
#
|
365
|
+
# <note markdown="1"> `global` engine mode only applies for global database clusters created
|
366
|
+
# with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions,
|
367
|
+
# the clusters in a global database use `provisioned` engine mode.
|
368
|
+
#
|
369
|
+
# </note>
|
370
|
+
#
|
360
371
|
# Limitations and requirements apply to some DB engine modes. For more
|
361
372
|
# information, see the following sections in the *Amazon Aurora User
|
362
373
|
# Guide*\:
|
@@ -409,12 +420,12 @@ module Aws::RDS
|
|
409
420
|
#
|
410
421
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
411
422
|
# Authentication to authenticate users that connect to the DB cluster.
|
412
|
-
# For more information, see [
|
413
|
-
#
|
423
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
424
|
+
# Aurora User Guide*.
|
414
425
|
#
|
415
426
|
#
|
416
427
|
#
|
417
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
428
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
418
429
|
# @option options [String] :domain_iam_role_name
|
419
430
|
# Specify the name of the IAM role to be used when making API calls to
|
420
431
|
# the Directory Service.
|
@@ -949,7 +960,7 @@ module Aws::RDS
|
|
949
960
|
#
|
950
961
|
# * Must be a value from 0 to 35
|
951
962
|
#
|
952
|
-
# * Can't be set to 0 if the DB instance is a source to
|
963
|
+
# * Can't be set to 0 if the DB instance is a source to read replicas
|
953
964
|
# @option options [String] :preferred_backup_window
|
954
965
|
# The daily time range during which automated backups are created if
|
955
966
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
@@ -987,7 +998,7 @@ module Aws::RDS
|
|
987
998
|
#
|
988
999
|
# Default: `3306`
|
989
1000
|
#
|
990
|
-
# Valid
|
1001
|
+
# Valid values: `1150-65535`
|
991
1002
|
#
|
992
1003
|
# Type: Integer
|
993
1004
|
#
|
@@ -995,7 +1006,7 @@ module Aws::RDS
|
|
995
1006
|
#
|
996
1007
|
# Default: `3306`
|
997
1008
|
#
|
998
|
-
# Valid
|
1009
|
+
# Valid values: `1150-65535`
|
999
1010
|
#
|
1000
1011
|
# Type: Integer
|
1001
1012
|
#
|
@@ -1003,7 +1014,7 @@ module Aws::RDS
|
|
1003
1014
|
#
|
1004
1015
|
# Default: `5432`
|
1005
1016
|
#
|
1006
|
-
# Valid
|
1017
|
+
# Valid values: `1150-65535`
|
1007
1018
|
#
|
1008
1019
|
# Type: Integer
|
1009
1020
|
#
|
@@ -1011,20 +1022,20 @@ module Aws::RDS
|
|
1011
1022
|
#
|
1012
1023
|
# Default: `1521`
|
1013
1024
|
#
|
1014
|
-
# Valid
|
1025
|
+
# Valid values: `1150-65535`
|
1015
1026
|
#
|
1016
1027
|
# **SQL Server**
|
1017
1028
|
#
|
1018
1029
|
# Default: `1433`
|
1019
1030
|
#
|
1020
|
-
# Valid
|
1021
|
-
# `
|
1031
|
+
# Valid values: `1150-65535` except `1234`, `1434`, `3260`, `3343`,
|
1032
|
+
# `3389`, `47001`, and `49152-49156`.
|
1022
1033
|
#
|
1023
1034
|
# **Amazon Aurora**
|
1024
1035
|
#
|
1025
1036
|
# Default: `3306`
|
1026
1037
|
#
|
1027
|
-
# Valid
|
1038
|
+
# Valid values: `1150-65535`
|
1028
1039
|
#
|
1029
1040
|
# Type: Integer
|
1030
1041
|
# @option options [Boolean] :multi_az
|
@@ -1201,15 +1212,13 @@ module Aws::RDS
|
|
1201
1212
|
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
1202
1213
|
# RDS User Guide*.
|
1203
1214
|
#
|
1204
|
-
# For Oracle DB
|
1215
|
+
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
1205
1216
|
# authenticate users that connect to the DB instance. For more
|
1206
1217
|
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
1207
1218
|
# Oracle][2] in the *Amazon RDS User Guide*.
|
1208
1219
|
#
|
1209
1220
|
#
|
1210
1221
|
#
|
1211
|
-
#
|
1212
|
-
#
|
1213
1222
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
1214
1223
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
1215
1224
|
# @option options [Boolean] :copy_tags_to_snapshot
|