aws-sdk-rds 1.95.0 → 1.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +3 -2
- data/lib/aws-sdk-rds/client.rb +280 -155
- data/lib/aws-sdk-rds/client_api.rb +8 -0
- data/lib/aws-sdk-rds/db_cluster.rb +16 -2
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +10 -1
- data/lib/aws-sdk-rds/db_instance.rb +105 -56
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +4 -13
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/event_subscription.rb +35 -22
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +6 -3
- data/lib/aws-sdk-rds/resource.rb +74 -35
- data/lib/aws-sdk-rds/types.rb +275 -141
- metadata +2 -2
@@ -247,17 +247,23 @@ module Aws::RDS
|
|
247
247
|
#
|
248
248
|
# Constraints:
|
249
249
|
#
|
250
|
-
# * If the source type is a DB instance,
|
250
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
251
251
|
# must be supplied.
|
252
252
|
#
|
253
|
-
# * If the source type is a DB
|
253
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
254
254
|
# must be supplied.
|
255
255
|
#
|
256
256
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
257
|
+
# value must be supplied.
|
258
|
+
#
|
259
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
260
|
+
# value must be supplied.
|
261
|
+
#
|
262
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
257
263
|
# must be supplied.
|
258
264
|
#
|
259
|
-
# * If the source type is a DB snapshot, a
|
260
|
-
# be supplied.
|
265
|
+
# * If the source type is a DB cluster snapshot, a
|
266
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
261
267
|
# @return [EventSubscription]
|
262
268
|
def add_subscriber(options = {})
|
263
269
|
options = options.merge(subscription_name: @name)
|
@@ -291,17 +297,17 @@ module Aws::RDS
|
|
291
297
|
# and subscribe to it.
|
292
298
|
# @option options [String] :source_type
|
293
299
|
# The type of source that is generating the events. For example, if you
|
294
|
-
# want to be notified of events generated by a DB instance, you
|
295
|
-
#
|
296
|
-
#
|
300
|
+
# want to be notified of events generated by a DB instance, you set this
|
301
|
+
# parameter to `db-instance`. If this value isn't specified, all events
|
302
|
+
# are returned.
|
297
303
|
#
|
298
304
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
299
305
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
300
306
|
# @option options [Array<String>] :event_categories
|
301
|
-
# A list of event categories for a
|
302
|
-
# to. You can see a list of the categories
|
303
|
-
# [Events][1]
|
304
|
-
#
|
307
|
+
# A list of event categories for a particular source type (`SourceType`)
|
308
|
+
# that you want to subscribe to. You can see a list of the categories
|
309
|
+
# for a given source type in [Events][1] in the *Amazon RDS User Guide*
|
310
|
+
# or by using the `DescribeEventCategories` operation.
|
305
311
|
#
|
306
312
|
#
|
307
313
|
#
|
@@ -315,19 +321,26 @@ module Aws::RDS
|
|
315
321
|
#
|
316
322
|
# Constraints:
|
317
323
|
#
|
318
|
-
# * If SourceIds
|
324
|
+
# * If a `SourceIds` value is supplied, `SourceType` must also be
|
325
|
+
# provided.
|
319
326
|
#
|
320
|
-
# * If the source type is a DB instance,
|
327
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
321
328
|
# must be supplied.
|
322
329
|
#
|
323
|
-
# * If the source type is a DB
|
330
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
324
331
|
# must be supplied.
|
325
332
|
#
|
326
333
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
334
|
+
# value must be supplied.
|
335
|
+
#
|
336
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
337
|
+
# value must be supplied.
|
338
|
+
#
|
339
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
327
340
|
# must be supplied.
|
328
341
|
#
|
329
|
-
# * If the source type is a DB snapshot, a
|
330
|
-
# be supplied.
|
342
|
+
# * If the source type is a DB cluster snapshot, a
|
343
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
331
344
|
# @option options [Boolean] :enabled
|
332
345
|
# A value that indicates whether to activate the subscription. If the
|
333
346
|
# event notification subscription isn't activated, the subscription is
|
@@ -384,13 +397,13 @@ module Aws::RDS
|
|
384
397
|
# set this parameter to db-instance. If this value isn't specified, all
|
385
398
|
# events are returned.
|
386
399
|
#
|
387
|
-
# Valid values: db-instance \| db-
|
388
|
-
# \| db-snapshot
|
400
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
401
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
389
402
|
# @option options [Array<String>] :event_categories
|
390
|
-
# A list of event categories for a SourceType that you
|
391
|
-
# to. You can see a list of the categories for a given
|
392
|
-
# [Events][1]
|
393
|
-
#
|
403
|
+
# A list of event categories for a source type (`SourceType`) that you
|
404
|
+
# want to subscribe to. You can see a list of the categories for a given
|
405
|
+
# source type in [Events][1] in the *Amazon RDS User Guide* or by using
|
406
|
+
# the `DescribeEventCategories` operation.
|
394
407
|
#
|
395
408
|
#
|
396
409
|
#
|
@@ -51,9 +51,12 @@ module Aws::RDS
|
|
51
51
|
data[:auto_applied_after_date]
|
52
52
|
end
|
53
53
|
|
54
|
-
# The date when the maintenance action is automatically applied.
|
55
|
-
#
|
56
|
-
#
|
54
|
+
# The date when the maintenance action is automatically applied.
|
55
|
+
#
|
56
|
+
# On this date, the maintenance action is applied to the resource as
|
57
|
+
# soon as possible, regardless of the maintenance window for the
|
58
|
+
# resource. There might be a delay of one or more days from this date
|
59
|
+
# before the maintenance action is applied.
|
57
60
|
# @return [Time]
|
58
61
|
def forced_apply_date
|
59
62
|
data[:forced_apply_date]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -362,6 +362,14 @@ module Aws::RDS
|
|
362
362
|
# used. For more information, see [Publishing Database Logs to Amazon
|
363
363
|
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
364
364
|
#
|
365
|
+
# **Aurora MySQL**
|
366
|
+
#
|
367
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
368
|
+
#
|
369
|
+
# **Aurora PostgreSQL**
|
370
|
+
#
|
371
|
+
# Possible values are `postgresql` and `upgrade`.
|
372
|
+
#
|
365
373
|
#
|
366
374
|
#
|
367
375
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -586,6 +594,9 @@ module Aws::RDS
|
|
586
594
|
#
|
587
595
|
# * Must contain 1 to 64 letters or numbers.
|
588
596
|
#
|
597
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
598
|
+
# underscores, or digits (0-9).
|
599
|
+
#
|
589
600
|
# * Can't be a word reserved by the specified database engine
|
590
601
|
#
|
591
602
|
# **MariaDB**
|
@@ -598,6 +609,9 @@ module Aws::RDS
|
|
598
609
|
#
|
599
610
|
# * Must contain 1 to 64 letters or numbers.
|
600
611
|
#
|
612
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
613
|
+
# underscores, or digits (0-9).
|
614
|
+
#
|
601
615
|
# * Can't be a word reserved by the specified database engine
|
602
616
|
#
|
603
617
|
# **PostgreSQL**
|
@@ -610,8 +624,8 @@ module Aws::RDS
|
|
610
624
|
#
|
611
625
|
# * Must contain 1 to 63 letters, numbers, or underscores.
|
612
626
|
#
|
613
|
-
# * Must begin with a letter
|
614
|
-
#
|
627
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
628
|
+
# underscores, or digits (0-9).
|
615
629
|
#
|
616
630
|
# * Can't be a word reserved by the specified database engine
|
617
631
|
#
|
@@ -1222,24 +1236,15 @@ module Aws::RDS
|
|
1222
1236
|
# for each AWS Region.
|
1223
1237
|
# @option options [String] :domain
|
1224
1238
|
# The Active Directory directory ID to create the DB instance in.
|
1225
|
-
# Currently, only Microsoft SQL Server and
|
1226
|
-
# created in an Active Directory Domain.
|
1239
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
1240
|
+
# instances can be created in an Active Directory Domain.
|
1227
1241
|
#
|
1228
|
-
# For
|
1229
|
-
# Authentication to authenticate users that connect to the DB instance.
|
1230
|
-
# For more information, see [ Using Windows Authentication with an
|
1231
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
1242
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
1232
1243
|
# RDS User Guide*.
|
1233
1244
|
#
|
1234
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
1235
|
-
# authenticate users that connect to the DB instance. For more
|
1236
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
1237
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
1238
|
-
#
|
1239
1245
|
#
|
1240
1246
|
#
|
1241
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
1242
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
1247
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
1243
1248
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1244
1249
|
# A value that indicates whether to copy tags from the DB instance to
|
1245
1250
|
# snapshots of the DB instance. By default, tags are not copied.
|
@@ -1358,6 +1363,26 @@ module Aws::RDS
|
|
1358
1363
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
1359
1364
|
# Guide*.
|
1360
1365
|
#
|
1366
|
+
# **MariaDB**
|
1367
|
+
#
|
1368
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
1369
|
+
#
|
1370
|
+
# **Microsoft SQL Server**
|
1371
|
+
#
|
1372
|
+
# Possible values are `agent` and `error`.
|
1373
|
+
#
|
1374
|
+
# **MySQL**
|
1375
|
+
#
|
1376
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
1377
|
+
#
|
1378
|
+
# **Oracle**
|
1379
|
+
#
|
1380
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
1381
|
+
#
|
1382
|
+
# **PostgreSQL**
|
1383
|
+
#
|
1384
|
+
# Possible values are `postgresql` and `upgrade`.
|
1385
|
+
#
|
1361
1386
|
#
|
1362
1387
|
#
|
1363
1388
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -1557,17 +1582,17 @@ module Aws::RDS
|
|
1557
1582
|
# and subscribe to it.
|
1558
1583
|
# @option options [String] :source_type
|
1559
1584
|
# The type of source that is generating the events. For example, if you
|
1560
|
-
# want to be notified of events generated by a DB instance, you
|
1561
|
-
#
|
1562
|
-
#
|
1585
|
+
# want to be notified of events generated by a DB instance, you set this
|
1586
|
+
# parameter to `db-instance`. If this value isn't specified, all events
|
1587
|
+
# are returned.
|
1563
1588
|
#
|
1564
1589
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
1565
1590
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
1566
1591
|
# @option options [Array<String>] :event_categories
|
1567
|
-
# A list of event categories for a
|
1568
|
-
# to. You can see a list of the categories
|
1569
|
-
# [Events][1]
|
1570
|
-
#
|
1592
|
+
# A list of event categories for a particular source type (`SourceType`)
|
1593
|
+
# that you want to subscribe to. You can see a list of the categories
|
1594
|
+
# for a given source type in [Events][1] in the *Amazon RDS User Guide*
|
1595
|
+
# or by using the `DescribeEventCategories` operation.
|
1571
1596
|
#
|
1572
1597
|
#
|
1573
1598
|
#
|
@@ -1581,19 +1606,26 @@ module Aws::RDS
|
|
1581
1606
|
#
|
1582
1607
|
# Constraints:
|
1583
1608
|
#
|
1584
|
-
# * If SourceIds
|
1609
|
+
# * If a `SourceIds` value is supplied, `SourceType` must also be
|
1610
|
+
# provided.
|
1585
1611
|
#
|
1586
|
-
# * If the source type is a DB instance,
|
1612
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
1587
1613
|
# must be supplied.
|
1588
1614
|
#
|
1589
|
-
# * If the source type is a DB
|
1615
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
1590
1616
|
# must be supplied.
|
1591
1617
|
#
|
1592
1618
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
1619
|
+
# value must be supplied.
|
1620
|
+
#
|
1621
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
1622
|
+
# value must be supplied.
|
1623
|
+
#
|
1624
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
1593
1625
|
# must be supplied.
|
1594
1626
|
#
|
1595
|
-
# * If the source type is a DB snapshot, a
|
1596
|
-
# be supplied.
|
1627
|
+
# * If the source type is a DB cluster snapshot, a
|
1628
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
1597
1629
|
# @option options [Boolean] :enabled
|
1598
1630
|
# A value that indicates whether to activate the subscription. If the
|
1599
1631
|
# event notification subscription isn't activated, the subscription is
|
@@ -2325,8 +2357,8 @@ module Aws::RDS
|
|
2325
2357
|
# @option options [String] :source_type
|
2326
2358
|
# The type of source that is generating the events.
|
2327
2359
|
#
|
2328
|
-
# Valid values: db-instance \| db-
|
2329
|
-
# \| db-snapshot
|
2360
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
2361
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
2330
2362
|
# @option options [Array<Types::Filter>] :filters
|
2331
2363
|
# This parameter isn't currently supported.
|
2332
2364
|
# @return [EventCategoryMap::Collection]
|
@@ -2414,19 +2446,26 @@ module Aws::RDS
|
|
2414
2446
|
#
|
2415
2447
|
# Constraints:
|
2416
2448
|
#
|
2417
|
-
# * If SourceIdentifier is supplied, SourceType must also be
|
2449
|
+
# * If `SourceIdentifier` is supplied, `SourceType` must also be
|
2450
|
+
# provided.
|
2418
2451
|
#
|
2419
|
-
# * If the source type is
|
2452
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
2420
2453
|
# must be supplied.
|
2421
2454
|
#
|
2422
|
-
# * If the source type is
|
2455
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
2423
2456
|
# must be supplied.
|
2424
2457
|
#
|
2425
|
-
# * If the source type is
|
2458
|
+
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
2459
|
+
# value must be supplied.
|
2460
|
+
#
|
2461
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
2462
|
+
# value must be supplied.
|
2463
|
+
#
|
2464
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
2426
2465
|
# must be supplied.
|
2427
2466
|
#
|
2428
|
-
# * If the source type is
|
2429
|
-
# supplied.
|
2467
|
+
# * If the source type is a DB cluster snapshot, a
|
2468
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
2430
2469
|
#
|
2431
2470
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
2432
2471
|
# @option options [String] :source_type
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -230,17 +230,23 @@ module Aws::RDS
|
|
230
230
|
#
|
231
231
|
# Constraints:
|
232
232
|
#
|
233
|
-
# * If the source type is a DB instance,
|
234
|
-
# must be supplied.
|
233
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier`
|
234
|
+
# value must be supplied.
|
235
235
|
#
|
236
|
-
# * If the source type is a DB
|
236
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
237
237
|
# must be supplied.
|
238
238
|
#
|
239
239
|
# * If the source type is a DB parameter group, a
|
240
|
-
# `DBParameterGroupName` must be supplied.
|
240
|
+
# `DBParameterGroupName` value must be supplied.
|
241
|
+
#
|
242
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
243
|
+
# value must be supplied.
|
244
|
+
#
|
245
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier`
|
246
|
+
# value must be supplied.
|
241
247
|
#
|
242
|
-
# * If the source type is a DB snapshot, a
|
243
|
-
# be supplied.
|
248
|
+
# * If the source type is a DB cluster snapshot, a
|
249
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
244
250
|
# @return [String]
|
245
251
|
#
|
246
252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddSourceIdentifierToSubscriptionMessage AWS API Documentation
|
@@ -2057,6 +2063,14 @@ module Aws::RDS
|
|
2057
2063
|
# being used. For more information, see [Publishing Database Logs to
|
2058
2064
|
# Amazon CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
2059
2065
|
#
|
2066
|
+
# **Aurora MySQL**
|
2067
|
+
#
|
2068
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
2069
|
+
#
|
2070
|
+
# **Aurora PostgreSQL**
|
2071
|
+
#
|
2072
|
+
# Possible values are `postgresql` and `upgrade`.
|
2073
|
+
#
|
2060
2074
|
#
|
2061
2075
|
#
|
2062
2076
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -2450,6 +2464,9 @@ module Aws::RDS
|
|
2450
2464
|
#
|
2451
2465
|
# * Must contain 1 to 64 letters or numbers.
|
2452
2466
|
#
|
2467
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2468
|
+
# underscores, or digits (0-9).
|
2469
|
+
#
|
2453
2470
|
# * Can't be a word reserved by the specified database engine
|
2454
2471
|
#
|
2455
2472
|
# **MariaDB**
|
@@ -2462,6 +2479,9 @@ module Aws::RDS
|
|
2462
2479
|
#
|
2463
2480
|
# * Must contain 1 to 64 letters or numbers.
|
2464
2481
|
#
|
2482
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2483
|
+
# underscores, or digits (0-9).
|
2484
|
+
#
|
2465
2485
|
# * Can't be a word reserved by the specified database engine
|
2466
2486
|
#
|
2467
2487
|
# **PostgreSQL**
|
@@ -2474,8 +2494,8 @@ module Aws::RDS
|
|
2474
2494
|
#
|
2475
2495
|
# * Must contain 1 to 63 letters, numbers, or underscores.
|
2476
2496
|
#
|
2477
|
-
# * Must begin with a letter
|
2478
|
-
#
|
2497
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2498
|
+
# underscores, or digits (0-9).
|
2479
2499
|
#
|
2480
2500
|
# * Can't be a word reserved by the specified database engine
|
2481
2501
|
#
|
@@ -3151,24 +3171,15 @@ module Aws::RDS
|
|
3151
3171
|
#
|
3152
3172
|
# @!attribute [rw] domain
|
3153
3173
|
# The Active Directory directory ID to create the DB instance in.
|
3154
|
-
# Currently, only Microsoft SQL Server
|
3155
|
-
# created in an Active Directory Domain.
|
3174
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
3175
|
+
# DB instances can be created in an Active Directory Domain.
|
3156
3176
|
#
|
3157
|
-
# For
|
3158
|
-
#
|
3159
|
-
# instance. For more information, see [ Using Windows Authentication
|
3160
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
3161
|
-
# the *Amazon RDS User Guide*.
|
3162
|
-
#
|
3163
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication
|
3164
|
-
# to authenticate users that connect to the DB instance. For more
|
3165
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
3166
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
3177
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
3178
|
+
# *Amazon RDS User Guide*.
|
3167
3179
|
#
|
3168
3180
|
#
|
3169
3181
|
#
|
3170
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3171
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
3182
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
3172
3183
|
# @return [String]
|
3173
3184
|
#
|
3174
3185
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -3309,6 +3320,26 @@ module Aws::RDS
|
|
3309
3320
|
# Amazon CloudWatch Logs ][1] in the *Amazon Relational Database
|
3310
3321
|
# Service User Guide*.
|
3311
3322
|
#
|
3323
|
+
# **MariaDB**
|
3324
|
+
#
|
3325
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3326
|
+
#
|
3327
|
+
# **Microsoft SQL Server**
|
3328
|
+
#
|
3329
|
+
# Possible values are `agent` and `error`.
|
3330
|
+
#
|
3331
|
+
# **MySQL**
|
3332
|
+
#
|
3333
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3334
|
+
#
|
3335
|
+
# **Oracle**
|
3336
|
+
#
|
3337
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
3338
|
+
#
|
3339
|
+
# **PostgreSQL**
|
3340
|
+
#
|
3341
|
+
# Possible values are `postgresql` and `upgrade`.
|
3342
|
+
#
|
3312
3343
|
#
|
3313
3344
|
#
|
3314
3345
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -3439,6 +3470,7 @@ module Aws::RDS
|
|
3439
3470
|
# deletion_protection: false,
|
3440
3471
|
# domain: "String",
|
3441
3472
|
# domain_iam_role_name: "String",
|
3473
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
3442
3474
|
# source_region: "String",
|
3443
3475
|
# }
|
3444
3476
|
#
|
@@ -3844,22 +3876,15 @@ module Aws::RDS
|
|
3844
3876
|
#
|
3845
3877
|
# @!attribute [rw] domain
|
3846
3878
|
# The Active Directory directory ID to create the DB instance in.
|
3879
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
3880
|
+
# DB instances can be created in an Active Directory Domain.
|
3847
3881
|
#
|
3848
|
-
# For
|
3849
|
-
#
|
3850
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
3851
|
-
# Oracle][1] in the *Amazon RDS User Guide*.
|
3852
|
-
#
|
3853
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
3854
|
-
# Authentication to authenticate users that connect to the DB
|
3855
|
-
# instance. For more information, see [ Using Windows Authentication
|
3856
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][2] in
|
3857
|
-
# the *Amazon RDS User Guide*.
|
3882
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
3883
|
+
# *Amazon RDS User Guide*.
|
3858
3884
|
#
|
3859
3885
|
#
|
3860
3886
|
#
|
3861
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3862
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
3887
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
3863
3888
|
# @return [String]
|
3864
3889
|
#
|
3865
3890
|
# @!attribute [rw] domain_iam_role_name
|
@@ -3867,6 +3892,30 @@ module Aws::RDS
|
|
3867
3892
|
# the Directory Service.
|
3868
3893
|
# @return [String]
|
3869
3894
|
#
|
3895
|
+
# @!attribute [rw] replica_mode
|
3896
|
+
# The open mode of the replica database: mounted or read-only.
|
3897
|
+
#
|
3898
|
+
# <note markdown="1"> This parameter is only supported for Oracle DB instances.
|
3899
|
+
#
|
3900
|
+
# </note>
|
3901
|
+
#
|
3902
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
3903
|
+
# main use case for mounted replicas is cross-Region disaster
|
3904
|
+
# recovery. The primary database doesn't use Active Data Guard to
|
3905
|
+
# transmit information to the mounted replica. Because it doesn't
|
3906
|
+
# accept user connections, a mounted replica can't serve a read-only
|
3907
|
+
# workload.
|
3908
|
+
#
|
3909
|
+
# You can create a combination of mounted and read-only DB replicas
|
3910
|
+
# for the same primary DB instance. For more information, see [Working
|
3911
|
+
# with Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
|
3912
|
+
# Guide*.
|
3913
|
+
#
|
3914
|
+
#
|
3915
|
+
#
|
3916
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
3917
|
+
# @return [String]
|
3918
|
+
#
|
3870
3919
|
# @!attribute [rw] destination_region
|
3871
3920
|
# @return [String]
|
3872
3921
|
#
|
@@ -3908,6 +3957,7 @@ module Aws::RDS
|
|
3908
3957
|
:deletion_protection,
|
3909
3958
|
:domain,
|
3910
3959
|
:domain_iam_role_name,
|
3960
|
+
:replica_mode,
|
3911
3961
|
:destination_region,
|
3912
3962
|
:source_region)
|
3913
3963
|
SENSITIVE = []
|
@@ -4380,18 +4430,18 @@ module Aws::RDS
|
|
4380
4430
|
# @!attribute [rw] source_type
|
4381
4431
|
# The type of source that is generating the events. For example, if
|
4382
4432
|
# you want to be notified of events generated by a DB instance, you
|
4383
|
-
#
|
4384
|
-
#
|
4433
|
+
# set this parameter to `db-instance`. If this value isn't specified,
|
4434
|
+
# all events are returned.
|
4385
4435
|
#
|
4386
4436
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
4387
4437
|
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
4388
4438
|
# @return [String]
|
4389
4439
|
#
|
4390
4440
|
# @!attribute [rw] event_categories
|
4391
|
-
# A list of event categories for a
|
4392
|
-
# subscribe to. You can see a list of
|
4393
|
-
#
|
4394
|
-
# or by using the
|
4441
|
+
# A list of event categories for a particular source type
|
4442
|
+
# (`SourceType`) that you want to subscribe to. You can see a list of
|
4443
|
+
# the categories for a given source type in [Events][1] in the *Amazon
|
4444
|
+
# RDS User Guide* or by using the `DescribeEventCategories` operation.
|
4395
4445
|
#
|
4396
4446
|
#
|
4397
4447
|
#
|
@@ -4407,19 +4457,26 @@ module Aws::RDS
|
|
4407
4457
|
#
|
4408
4458
|
# Constraints:
|
4409
4459
|
#
|
4410
|
-
# * If SourceIds
|
4460
|
+
# * If a `SourceIds` value is supplied, `SourceType` must also be
|
4461
|
+
# provided.
|
4411
4462
|
#
|
4412
|
-
# * If the source type is a DB instance,
|
4413
|
-
# must be supplied.
|
4463
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier`
|
4464
|
+
# value must be supplied.
|
4414
4465
|
#
|
4415
|
-
# * If the source type is a DB
|
4466
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
4416
4467
|
# must be supplied.
|
4417
4468
|
#
|
4418
4469
|
# * If the source type is a DB parameter group, a
|
4419
|
-
# `DBParameterGroupName` must be supplied.
|
4470
|
+
# `DBParameterGroupName` value must be supplied.
|
4471
|
+
#
|
4472
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
4473
|
+
# value must be supplied.
|
4474
|
+
#
|
4475
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier`
|
4476
|
+
# value must be supplied.
|
4420
4477
|
#
|
4421
|
-
# * If the source type is a DB snapshot, a
|
4422
|
-
# be supplied.
|
4478
|
+
# * If the source type is a DB cluster snapshot, a
|
4479
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
4423
4480
|
# @return [Array<String>]
|
4424
4481
|
#
|
4425
4482
|
# @!attribute [rw] enabled
|
@@ -4487,8 +4544,7 @@ module Aws::RDS
|
|
4487
4544
|
# @return [String]
|
4488
4545
|
#
|
4489
4546
|
# @!attribute [rw] engine
|
4490
|
-
#
|
4491
|
-
# cluster.
|
4547
|
+
# The name of the database engine to be used for this DB cluster.
|
4492
4548
|
# @return [String]
|
4493
4549
|
#
|
4494
4550
|
# @!attribute [rw] engine_version
|
@@ -4784,8 +4840,7 @@ module Aws::RDS
|
|
4784
4840
|
# @return [Boolean]
|
4785
4841
|
#
|
4786
4842
|
# @!attribute [rw] engine
|
4787
|
-
#
|
4788
|
-
# cluster.
|
4843
|
+
# The name of the database engine to be used for this DB cluster.
|
4789
4844
|
# @return [String]
|
4790
4845
|
#
|
4791
4846
|
# @!attribute [rw] engine_version
|
@@ -5242,7 +5297,10 @@ module Aws::RDS
|
|
5242
5297
|
#
|
5243
5298
|
# @!attribute [rw] status
|
5244
5299
|
# The current status of the endpoint. One of: `creating`, `available`,
|
5245
|
-
# `deleting`, `modifying`.
|
5300
|
+
# `deleting`, `inactive`, `modifying`. The `inactive` state applies to
|
5301
|
+
# an endpoint that can't be used for a certain kind of cluster, such
|
5302
|
+
# as a `writer` endpoint for a read-only secondary cluster in a global
|
5303
|
+
# database.
|
5246
5304
|
# @return [String]
|
5247
5305
|
#
|
5248
5306
|
# @!attribute [rw] endpoint_type
|
@@ -5417,12 +5475,12 @@ module Aws::RDS
|
|
5417
5475
|
# `DescribeDBClusterParameterGroups` action.
|
5418
5476
|
#
|
5419
5477
|
# @!attribute [rw] db_cluster_parameter_group_name
|
5420
|
-
#
|
5478
|
+
# The name of the DB cluster parameter group.
|
5421
5479
|
# @return [String]
|
5422
5480
|
#
|
5423
5481
|
# @!attribute [rw] db_parameter_group_family
|
5424
|
-
#
|
5425
|
-
#
|
5482
|
+
# The name of the DB parameter group family that this DB cluster
|
5483
|
+
# parameter group is compatible with.
|
5426
5484
|
# @return [String]
|
5427
5485
|
#
|
5428
5486
|
# @!attribute [rw] description
|
@@ -5962,8 +6020,7 @@ module Aws::RDS
|
|
5962
6020
|
# @return [String]
|
5963
6021
|
#
|
5964
6022
|
# @!attribute [rw] engine
|
5965
|
-
#
|
5966
|
-
# instance.
|
6023
|
+
# The name of the database engine to be used for this DB instance.
|
5967
6024
|
# @return [String]
|
5968
6025
|
#
|
5969
6026
|
# @!attribute [rw] db_instance_status
|
@@ -6102,6 +6159,20 @@ module Aws::RDS
|
|
6102
6159
|
# </note>
|
6103
6160
|
# @return [Array<String>]
|
6104
6161
|
#
|
6162
|
+
# @!attribute [rw] replica_mode
|
6163
|
+
# The open mode of an Oracle read replica. The default is
|
6164
|
+
# `open-read-only`. For more information, see [Working with Oracle
|
6165
|
+
# Read Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
|
6166
|
+
#
|
6167
|
+
# <note markdown="1"> This attribute is only supported in RDS for Oracle.
|
6168
|
+
#
|
6169
|
+
# </note>
|
6170
|
+
#
|
6171
|
+
#
|
6172
|
+
#
|
6173
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
6174
|
+
# @return [String]
|
6175
|
+
#
|
6105
6176
|
# @!attribute [rw] license_model
|
6106
6177
|
# License model information for this DB instance.
|
6107
6178
|
# @return [String]
|
@@ -6338,6 +6409,7 @@ module Aws::RDS
|
|
6338
6409
|
:read_replica_source_db_instance_identifier,
|
6339
6410
|
:read_replica_db_instance_identifiers,
|
6340
6411
|
:read_replica_db_cluster_identifiers,
|
6412
|
+
:replica_mode,
|
6341
6413
|
:license_model,
|
6342
6414
|
:iops,
|
6343
6415
|
:option_group_memberships,
|
@@ -6702,12 +6774,12 @@ module Aws::RDS
|
|
6702
6774
|
# `DescribeDBParameterGroups` action.
|
6703
6775
|
#
|
6704
6776
|
# @!attribute [rw] db_parameter_group_name
|
6705
|
-
#
|
6777
|
+
# The name of the DB parameter group.
|
6706
6778
|
# @return [String]
|
6707
6779
|
#
|
6708
6780
|
# @!attribute [rw] db_parameter_group_family
|
6709
|
-
#
|
6710
|
-
#
|
6781
|
+
# The name of the DB parameter group family that this DB parameter
|
6782
|
+
# group is compatible with.
|
6711
6783
|
# @return [String]
|
6712
6784
|
#
|
6713
6785
|
# @!attribute [rw] description
|
@@ -6762,7 +6834,7 @@ module Aws::RDS
|
|
6762
6834
|
# `ModifyDBParameterGroup` or `ResetDBParameterGroup` action.
|
6763
6835
|
#
|
6764
6836
|
# @!attribute [rw] db_parameter_group_name
|
6765
|
-
#
|
6837
|
+
# The name of the DB parameter group.
|
6766
6838
|
# @return [String]
|
6767
6839
|
#
|
6768
6840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBParameterGroupNameMessage AWS API Documentation
|
@@ -8502,7 +8574,7 @@ module Aws::RDS
|
|
8502
8574
|
# `db-cluster-endpoint-custom-type` filter can be one or more of:
|
8503
8575
|
# `reader`, `any`. `Values` for the `db-cluster-endpoint-status`
|
8504
8576
|
# filter can be one or more of: `available`, `creating`, `deleting`,
|
8505
|
-
# `modifying`.
|
8577
|
+
# `inactive`, `modifying`.
|
8506
8578
|
# @return [Array<Types::Filter>]
|
8507
8579
|
#
|
8508
8580
|
# @!attribute [rw] max_records
|
@@ -10117,8 +10189,8 @@ module Aws::RDS
|
|
10117
10189
|
# @!attribute [rw] source_type
|
10118
10190
|
# The type of source that is generating the events.
|
10119
10191
|
#
|
10120
|
-
# Valid values: db-instance \| db-
|
10121
|
-
# \| db-snapshot
|
10192
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
10193
|
+
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
10122
10194
|
# @return [String]
|
10123
10195
|
#
|
10124
10196
|
# @!attribute [rw] filters
|
@@ -10213,19 +10285,26 @@ module Aws::RDS
|
|
10213
10285
|
#
|
10214
10286
|
# Constraints:
|
10215
10287
|
#
|
10216
|
-
# * If SourceIdentifier is supplied, SourceType must also be
|
10288
|
+
# * If `SourceIdentifier` is supplied, `SourceType` must also be
|
10289
|
+
# provided.
|
10217
10290
|
#
|
10218
|
-
# * If the source type is
|
10219
|
-
# must be supplied.
|
10291
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier`
|
10292
|
+
# value must be supplied.
|
10220
10293
|
#
|
10221
|
-
# * If the source type is
|
10294
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
10222
10295
|
# must be supplied.
|
10223
10296
|
#
|
10224
|
-
# * If the source type is
|
10225
|
-
# must be supplied.
|
10297
|
+
# * If the source type is a DB parameter group, a
|
10298
|
+
# `DBParameterGroupName` value must be supplied.
|
10299
|
+
#
|
10300
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
10301
|
+
# value must be supplied.
|
10302
|
+
#
|
10303
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier`
|
10304
|
+
# value must be supplied.
|
10226
10305
|
#
|
10227
|
-
# * If the source type is
|
10228
|
-
# be supplied.
|
10306
|
+
# * If the source type is a DB cluster snapshot, a
|
10307
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
10229
10308
|
#
|
10230
10309
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
10231
10310
|
# @return [String]
|
@@ -10336,7 +10415,7 @@ module Aws::RDS
|
|
10336
10415
|
# @!attribute [rw] filters
|
10337
10416
|
# Filters specify one or more snapshot exports to describe. The
|
10338
10417
|
# filters are specified as name-value pairs that define what to
|
10339
|
-
# include in the output.
|
10418
|
+
# include in the output. Filter names and values are case-sensitive.
|
10340
10419
|
#
|
10341
10420
|
# Supported filters include the following:
|
10342
10421
|
#
|
@@ -10348,7 +10427,8 @@ module Aws::RDS
|
|
10348
10427
|
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
10349
10428
|
# exported to Amazon S3
|
10350
10429
|
#
|
10351
|
-
# * `status` - The status of the export task.
|
10430
|
+
# * `status` - The status of the export task. Must be lowercase, for
|
10431
|
+
# example, `complete`.
|
10352
10432
|
# @return [Array<Types::Filter>]
|
10353
10433
|
#
|
10354
10434
|
# @!attribute [rw] marker
|
@@ -11393,7 +11473,7 @@ module Aws::RDS
|
|
11393
11473
|
end
|
11394
11474
|
|
11395
11475
|
# Contains the results of a successful invocation of the
|
11396
|
-
# `DescribeEventCategories`
|
11476
|
+
# `DescribeEventCategories` operation.
|
11397
11477
|
#
|
11398
11478
|
# @!attribute [rw] source_type
|
11399
11479
|
# The source type that the returned categories belong to
|
@@ -11412,7 +11492,7 @@ module Aws::RDS
|
|
11412
11492
|
include Aws::Structure
|
11413
11493
|
end
|
11414
11494
|
|
11415
|
-
# Data returned from the
|
11495
|
+
# Data returned from the `DescribeEventCategories` operation.
|
11416
11496
|
#
|
11417
11497
|
# @!attribute [rw] event_categories_map_list
|
11418
11498
|
# A list of EventCategoriesMap data types.
|
@@ -12138,6 +12218,15 @@ module Aws::RDS
|
|
12138
12218
|
#
|
12139
12219
|
class InstanceQuotaExceededFault < Aws::EmptyStructure; end
|
12140
12220
|
|
12221
|
+
# The requested operation can't be performed because there aren't
|
12222
|
+
# enough available IP addresses in the proxy's subnets. Add more CIDR
|
12223
|
+
# blocks to the VPC or remove IP address that aren't required from the
|
12224
|
+
# subnets.
|
12225
|
+
#
|
12226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InsufficientAvailableIPsInSubnetFault AWS API Documentation
|
12227
|
+
#
|
12228
|
+
class InsufficientAvailableIPsInSubnetFault < Aws::EmptyStructure; end
|
12229
|
+
|
12141
12230
|
# The DB cluster doesn't have enough capacity for the current
|
12142
12231
|
# operation.
|
12143
12232
|
#
|
@@ -12803,6 +12892,13 @@ module Aws::RDS
|
|
12803
12892
|
# The Active Directory directory ID to move the DB cluster to. Specify
|
12804
12893
|
# `none` to remove the cluster from its current domain. The domain
|
12805
12894
|
# must be created prior to this operation.
|
12895
|
+
#
|
12896
|
+
# For more information, see [Kerberos Authentication][1] in the
|
12897
|
+
# *Amazon Aurora User Guide*.
|
12898
|
+
#
|
12899
|
+
#
|
12900
|
+
#
|
12901
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
12806
12902
|
# @return [String]
|
12807
12903
|
#
|
12808
12904
|
# @!attribute [rw] domain_iam_role_name
|
@@ -13073,6 +13169,7 @@ module Aws::RDS
|
|
13073
13169
|
# deletion_protection: false,
|
13074
13170
|
# max_allocated_storage: 1,
|
13075
13171
|
# certificate_rotation_restart: false,
|
13172
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
13076
13173
|
# }
|
13077
13174
|
#
|
13078
13175
|
# @!attribute [rw] db_instance_identifier
|
@@ -13489,24 +13586,15 @@ module Aws::RDS
|
|
13489
13586
|
# The Active Directory directory ID to move the DB instance to.
|
13490
13587
|
# Specify `none` to remove the instance from its current domain. The
|
13491
13588
|
# domain must be created prior to this operation. Currently, only
|
13492
|
-
# Microsoft SQL Server and
|
13493
|
-
# Active Directory Domain.
|
13494
|
-
#
|
13495
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
13496
|
-
# Authentication to authenticate users that connect to the DB
|
13497
|
-
# instance. For more information, see [ Using Windows Authentication
|
13498
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
13499
|
-
# the *Amazon RDS User Guide*.
|
13589
|
+
# MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can
|
13590
|
+
# be created in an Active Directory Domain.
|
13500
13591
|
#
|
13501
|
-
# For
|
13502
|
-
#
|
13503
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
13504
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
13592
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
13593
|
+
# *Amazon RDS User Guide*.
|
13505
13594
|
#
|
13506
13595
|
#
|
13507
13596
|
#
|
13508
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
13509
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
13597
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
13510
13598
|
# @return [String]
|
13511
13599
|
#
|
13512
13600
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -13747,6 +13835,27 @@ module Aws::RDS
|
|
13747
13835
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
13748
13836
|
# @return [Boolean]
|
13749
13837
|
#
|
13838
|
+
# @!attribute [rw] replica_mode
|
13839
|
+
# A value that sets the open mode of a replica database to either
|
13840
|
+
# mounted or read-only.
|
13841
|
+
#
|
13842
|
+
# <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
|
13843
|
+
#
|
13844
|
+
# </note>
|
13845
|
+
#
|
13846
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
13847
|
+
# main use case for mounted replicas is cross-Region disaster
|
13848
|
+
# recovery. The primary database doesn't use Active Data Guard to
|
13849
|
+
# transmit information to the mounted replica. Because it doesn't
|
13850
|
+
# accept user connections, a mounted replica can't serve a read-only
|
13851
|
+
# workload. For more information, see [Working with Oracle Read
|
13852
|
+
# Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
|
13853
|
+
#
|
13854
|
+
#
|
13855
|
+
#
|
13856
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
13857
|
+
# @return [String]
|
13858
|
+
#
|
13750
13859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
13751
13860
|
#
|
13752
13861
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -13791,7 +13900,8 @@ module Aws::RDS
|
|
13791
13900
|
:use_default_processor_features,
|
13792
13901
|
:deletion_protection,
|
13793
13902
|
:max_allocated_storage,
|
13794
|
-
:certificate_rotation_restart
|
13903
|
+
:certificate_rotation_restart,
|
13904
|
+
:replica_mode)
|
13795
13905
|
SENSITIVE = []
|
13796
13906
|
include Aws::Structure
|
13797
13907
|
end
|
@@ -14264,15 +14374,15 @@ module Aws::RDS
|
|
14264
14374
|
# would set this parameter to db-instance. If this value isn't
|
14265
14375
|
# specified, all events are returned.
|
14266
14376
|
#
|
14267
|
-
# Valid values: db-instance \| db-
|
14268
|
-
# \| db-snapshot
|
14377
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
14378
|
+
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
14269
14379
|
# @return [String]
|
14270
14380
|
#
|
14271
14381
|
# @!attribute [rw] event_categories
|
14272
|
-
# A list of event categories for a SourceType that you
|
14273
|
-
# subscribe to. You can see a list of the categories for a
|
14274
|
-
#
|
14275
|
-
#
|
14382
|
+
# A list of event categories for a source type (`SourceType`) that you
|
14383
|
+
# want to subscribe to. You can see a list of the categories for a
|
14384
|
+
# given source type in [Events][1] in the *Amazon RDS User Guide* or
|
14385
|
+
# by using the `DescribeEventCategories` operation.
|
14276
14386
|
#
|
14277
14387
|
#
|
14278
14388
|
#
|
@@ -15298,9 +15408,12 @@ module Aws::RDS
|
|
15298
15408
|
# @return [Time]
|
15299
15409
|
#
|
15300
15410
|
# @!attribute [rw] forced_apply_date
|
15301
|
-
# The date when the maintenance action is automatically applied.
|
15302
|
-
#
|
15303
|
-
#
|
15411
|
+
# The date when the maintenance action is automatically applied.
|
15412
|
+
#
|
15413
|
+
# On this date, the maintenance action is applied to the resource as
|
15414
|
+
# soon as possible, regardless of the maintenance window for the
|
15415
|
+
# resource. There might be a delay of one or more days from this date
|
15416
|
+
# before the maintenance action is applied.
|
15304
15417
|
# @return [Time]
|
15305
15418
|
#
|
15306
15419
|
# @!attribute [rw] opt_in_status
|
@@ -15493,6 +15606,17 @@ module Aws::RDS
|
|
15493
15606
|
#
|
15494
15607
|
# * `DescribeValidDBInstanceModifications`
|
15495
15608
|
#
|
15609
|
+
# If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
|
15610
|
+
# values only if the following conditions are met:
|
15611
|
+
#
|
15612
|
+
# * You are accessing an Oracle DB instance.
|
15613
|
+
#
|
15614
|
+
# * Your Oracle DB instance class supports configuring the number of CPU
|
15615
|
+
# cores and threads per core.
|
15616
|
+
#
|
15617
|
+
# * The current number CPU cores and threads is set to a non-default
|
15618
|
+
# value.
|
15619
|
+
#
|
15496
15620
|
# For more information, see [Configuring the Processor of the DB
|
15497
15621
|
# Instance Class][1] in the <i>Amazon RDS User Guide. </i>
|
15498
15622
|
#
|
@@ -16552,10 +16676,11 @@ module Aws::RDS
|
|
16552
16676
|
# @return [String]
|
16553
16677
|
#
|
16554
16678
|
# @!attribute [rw] engine
|
16555
|
-
# The name of the database engine to be used for
|
16556
|
-
# cluster.
|
16679
|
+
# The name of the database engine to be used for this DB cluster.
|
16557
16680
|
#
|
16558
|
-
# Valid Values: `aurora
|
16681
|
+
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora),
|
16682
|
+
# `aurora-mysql` (for MySQL 5.7-compatible Aurora), and
|
16683
|
+
# `aurora-postgresql`
|
16559
16684
|
# @return [String]
|
16560
16685
|
#
|
16561
16686
|
# @!attribute [rw] engine_version
|
@@ -16723,7 +16848,7 @@ module Aws::RDS
|
|
16723
16848
|
#
|
16724
16849
|
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
16725
16850
|
#
|
16726
|
-
# Example: `5.6.40`
|
16851
|
+
# Example: `5.6.40`, `5.7.28`
|
16727
16852
|
# @return [String]
|
16728
16853
|
#
|
16729
16854
|
# @!attribute [rw] s3_bucket_name
|
@@ -17114,7 +17239,16 @@ module Aws::RDS
|
|
17114
17239
|
#
|
17115
17240
|
# @!attribute [rw] domain
|
17116
17241
|
# Specify the Active Directory directory ID to restore the DB cluster
|
17117
|
-
# in. The domain must be created prior to this operation.
|
17242
|
+
# in. The domain must be created prior to this operation. Currently,
|
17243
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
17244
|
+
# instances can be created in an Active Directory Domain.
|
17245
|
+
#
|
17246
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
17247
|
+
# *Amazon RDS User Guide*.
|
17248
|
+
#
|
17249
|
+
#
|
17250
|
+
#
|
17251
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
17118
17252
|
# @return [String]
|
17119
17253
|
#
|
17120
17254
|
# @!attribute [rw] domain_iam_role_name
|
@@ -17725,24 +17859,15 @@ module Aws::RDS
|
|
17725
17859
|
# @!attribute [rw] domain
|
17726
17860
|
# Specify the Active Directory directory ID to restore the DB instance
|
17727
17861
|
# in. The domain must be created prior to this operation. Currently,
|
17728
|
-
# only Microsoft SQL Server and
|
17729
|
-
# an Active Directory Domain.
|
17862
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
17863
|
+
# instances can be created in an Active Directory Domain.
|
17730
17864
|
#
|
17731
|
-
# For
|
17732
|
-
#
|
17733
|
-
# instance. For more information, see [ Using Windows Authentication
|
17734
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
17735
|
-
# the *Amazon RDS User Guide*.
|
17736
|
-
#
|
17737
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos authentication
|
17738
|
-
# to authenticate users that connect to the DB instance. For more
|
17739
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
17740
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
17865
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
17866
|
+
# *Amazon RDS User Guide*.
|
17741
17867
|
#
|
17742
17868
|
#
|
17743
17869
|
#
|
17744
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
17745
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
17870
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
17746
17871
|
# @return [String]
|
17747
17872
|
#
|
17748
17873
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -18686,24 +18811,15 @@ module Aws::RDS
|
|
18686
18811
|
# @!attribute [rw] domain
|
18687
18812
|
# Specify the Active Directory directory ID to restore the DB instance
|
18688
18813
|
# in. The domain must be created prior to this operation. Currently,
|
18689
|
-
# only Microsoft SQL Server and
|
18690
|
-
# an Active Directory Domain.
|
18814
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
18815
|
+
# instances can be created in an Active Directory Domain.
|
18691
18816
|
#
|
18692
|
-
# For
|
18693
|
-
#
|
18694
|
-
# instance. For more information, see [ Using Windows Authentication
|
18695
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
18696
|
-
# the *Amazon RDS User Guide*.
|
18697
|
-
#
|
18698
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos authentication
|
18699
|
-
# to authenticate users that connect to the DB instance. For more
|
18700
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
18701
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
18817
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
18818
|
+
# *Amazon RDS User Guide*.
|
18702
18819
|
#
|
18703
18820
|
#
|
18704
18821
|
#
|
18705
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
18706
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
18822
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
18707
18823
|
# @return [String]
|
18708
18824
|
#
|
18709
18825
|
# @!attribute [rw] domain_iam_role_name
|
@@ -19347,8 +19463,26 @@ module Aws::RDS
|
|
19347
19463
|
# The ID of the AWS KMS key to use to encrypt the snapshot exported to
|
19348
19464
|
# Amazon S3. The KMS key ID is the Amazon Resource Name (ARN), the KMS
|
19349
19465
|
# key identifier, or the KMS key alias for the KMS encryption key. The
|
19350
|
-
#
|
19351
|
-
#
|
19466
|
+
# caller of this operation must be authorized to execute the following
|
19467
|
+
# operations. These can be set in the KMS key policy:
|
19468
|
+
#
|
19469
|
+
# * GrantOperation.Encrypt
|
19470
|
+
#
|
19471
|
+
# * GrantOperation.Decrypt
|
19472
|
+
#
|
19473
|
+
# * GrantOperation.GenerateDataKey
|
19474
|
+
#
|
19475
|
+
# * GrantOperation.GenerateDataKeyWithoutPlaintext
|
19476
|
+
#
|
19477
|
+
# * GrantOperation.ReEncryptFrom
|
19478
|
+
#
|
19479
|
+
# * GrantOperation.ReEncryptTo
|
19480
|
+
#
|
19481
|
+
# * GrantOperation.CreateGrant
|
19482
|
+
#
|
19483
|
+
# * GrantOperation.DescribeKey
|
19484
|
+
#
|
19485
|
+
# * GrantOperation.RetireGrant
|
19352
19486
|
# @return [String]
|
19353
19487
|
#
|
19354
19488
|
# @!attribute [rw] s3_prefix
|
@@ -19613,18 +19747,18 @@ module Aws::RDS
|
|
19613
19747
|
# A key is the required name of the tag. The string value can be from
|
19614
19748
|
# 1 to 128 Unicode characters in length and can't be prefixed with
|
19615
19749
|
# "aws:" or "rds:". The string can only contain only the set of
|
19616
|
-
# Unicode letters, digits, white-space, '\_', '.', '
|
19617
|
-
# '+', '-' (Java regex:
|
19618
|
-
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_
|
19750
|
+
# Unicode letters, digits, white-space, '\_', '.', ':', '/',
|
19751
|
+
# '=', '+', '-', '@' (Java regex:
|
19752
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
19619
19753
|
# @return [String]
|
19620
19754
|
#
|
19621
19755
|
# @!attribute [rw] value
|
19622
19756
|
# A value is the optional value of the tag. The string value can be
|
19623
19757
|
# from 1 to 256 Unicode characters in length and can't be prefixed
|
19624
19758
|
# with "aws:" or "rds:". The string can only contain only the set
|
19625
|
-
# of Unicode letters, digits, white-space, '\_', '.', '
|
19626
|
-
# '=', '+', '-' (Java regex:
|
19627
|
-
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_
|
19759
|
+
# of Unicode letters, digits, white-space, '\_', '.', ':',
|
19760
|
+
# '/', '=', '+', '-', '@' (Java regex:
|
19761
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
19628
19762
|
# @return [String]
|
19629
19763
|
#
|
19630
19764
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Tag AWS API Documentation
|