aws-sdk-rds 1.94.0 → 1.99.0
Sign up to get free protection for your applications and to get access to all the features.
- 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 +4 -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/event_subscription.rb +35 -22
- data/lib/aws-sdk-rds/resource.rb +74 -35
- data/lib/aws-sdk-rds/types.rb +267 -141
- metadata +2 -2
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
@@ -85,9 +85,13 @@ module Aws::RDS
|
|
85
85
|
# account. The used value is the count of the event subscriptions in
|
86
86
|
# the account.
|
87
87
|
#
|
88
|
-
# * `
|
89
|
-
# The used value is the count of the manual DB
|
90
|
-
# account.
|
88
|
+
# * `ManualClusterSnapshots` - The number of manual DB cluster snapshots
|
89
|
+
# per account. The used value is the count of the manual DB cluster
|
90
|
+
# snapshots in the account.
|
91
|
+
#
|
92
|
+
# * `ManualSnapshots` - The number of manual DB instance snapshots per
|
93
|
+
# account. The used value is the count of the manual DB instance
|
94
|
+
# snapshots in the account.
|
91
95
|
#
|
92
96
|
# * `OptionGroups` - The number of DB option groups per account,
|
93
97
|
# excluding default option groups. The used value is the count of
|
@@ -226,17 +230,23 @@ module Aws::RDS
|
|
226
230
|
#
|
227
231
|
# Constraints:
|
228
232
|
#
|
229
|
-
# * If the source type is a DB instance,
|
230
|
-
# must be supplied.
|
233
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier`
|
234
|
+
# value must be supplied.
|
231
235
|
#
|
232
|
-
# * If the source type is a DB
|
236
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
233
237
|
# must be supplied.
|
234
238
|
#
|
235
239
|
# * If the source type is a DB parameter group, a
|
236
|
-
# `DBParameterGroupName` must be supplied.
|
240
|
+
# `DBParameterGroupName` value must be supplied.
|
237
241
|
#
|
238
|
-
# * If the source type is a DB
|
239
|
-
# be supplied.
|
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.
|
247
|
+
#
|
248
|
+
# * If the source type is a DB cluster snapshot, a
|
249
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
240
250
|
# @return [String]
|
241
251
|
#
|
242
252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddSourceIdentifierToSubscriptionMessage AWS API Documentation
|
@@ -2053,6 +2063,14 @@ module Aws::RDS
|
|
2053
2063
|
# being used. For more information, see [Publishing Database Logs to
|
2054
2064
|
# Amazon CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
2055
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
|
+
#
|
2056
2074
|
#
|
2057
2075
|
#
|
2058
2076
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -2446,6 +2464,9 @@ module Aws::RDS
|
|
2446
2464
|
#
|
2447
2465
|
# * Must contain 1 to 64 letters or numbers.
|
2448
2466
|
#
|
2467
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2468
|
+
# underscores, or digits (0-9).
|
2469
|
+
#
|
2449
2470
|
# * Can't be a word reserved by the specified database engine
|
2450
2471
|
#
|
2451
2472
|
# **MariaDB**
|
@@ -2458,6 +2479,9 @@ module Aws::RDS
|
|
2458
2479
|
#
|
2459
2480
|
# * Must contain 1 to 64 letters or numbers.
|
2460
2481
|
#
|
2482
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2483
|
+
# underscores, or digits (0-9).
|
2484
|
+
#
|
2461
2485
|
# * Can't be a word reserved by the specified database engine
|
2462
2486
|
#
|
2463
2487
|
# **PostgreSQL**
|
@@ -2470,8 +2494,8 @@ module Aws::RDS
|
|
2470
2494
|
#
|
2471
2495
|
# * Must contain 1 to 63 letters, numbers, or underscores.
|
2472
2496
|
#
|
2473
|
-
# * Must begin with a letter
|
2474
|
-
#
|
2497
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2498
|
+
# underscores, or digits (0-9).
|
2475
2499
|
#
|
2476
2500
|
# * Can't be a word reserved by the specified database engine
|
2477
2501
|
#
|
@@ -3147,24 +3171,15 @@ module Aws::RDS
|
|
3147
3171
|
#
|
3148
3172
|
# @!attribute [rw] domain
|
3149
3173
|
# The Active Directory directory ID to create the DB instance in.
|
3150
|
-
# Currently, only Microsoft SQL Server
|
3151
|
-
# created in an Active Directory Domain.
|
3152
|
-
#
|
3153
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
3154
|
-
# Authentication to authenticate users that connect to the DB
|
3155
|
-
# instance. For more information, see [ Using Windows Authentication
|
3156
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
3157
|
-
# the *Amazon RDS User Guide*.
|
3174
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
3175
|
+
# DB instances can be created in an Active Directory Domain.
|
3158
3176
|
#
|
3159
|
-
# For
|
3160
|
-
#
|
3161
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
3162
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
3177
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
3178
|
+
# *Amazon RDS User Guide*.
|
3163
3179
|
#
|
3164
3180
|
#
|
3165
3181
|
#
|
3166
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3167
|
-
# [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
|
3168
3183
|
# @return [String]
|
3169
3184
|
#
|
3170
3185
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -3305,6 +3320,26 @@ module Aws::RDS
|
|
3305
3320
|
# Amazon CloudWatch Logs ][1] in the *Amazon Relational Database
|
3306
3321
|
# Service User Guide*.
|
3307
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
|
+
#
|
3308
3343
|
#
|
3309
3344
|
#
|
3310
3345
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -3435,6 +3470,7 @@ module Aws::RDS
|
|
3435
3470
|
# deletion_protection: false,
|
3436
3471
|
# domain: "String",
|
3437
3472
|
# domain_iam_role_name: "String",
|
3473
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
3438
3474
|
# source_region: "String",
|
3439
3475
|
# }
|
3440
3476
|
#
|
@@ -3840,22 +3876,15 @@ module Aws::RDS
|
|
3840
3876
|
#
|
3841
3877
|
# @!attribute [rw] domain
|
3842
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.
|
3843
3881
|
#
|
3844
|
-
# For
|
3845
|
-
#
|
3846
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
3847
|
-
# Oracle][1] in the *Amazon RDS User Guide*.
|
3848
|
-
#
|
3849
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
3850
|
-
# Authentication to authenticate users that connect to the DB
|
3851
|
-
# instance. For more information, see [ Using Windows Authentication
|
3852
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][2] in
|
3853
|
-
# the *Amazon RDS User Guide*.
|
3882
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
3883
|
+
# *Amazon RDS User Guide*.
|
3854
3884
|
#
|
3855
3885
|
#
|
3856
3886
|
#
|
3857
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3858
|
-
# [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
|
3859
3888
|
# @return [String]
|
3860
3889
|
#
|
3861
3890
|
# @!attribute [rw] domain_iam_role_name
|
@@ -3863,6 +3892,30 @@ module Aws::RDS
|
|
3863
3892
|
# the Directory Service.
|
3864
3893
|
# @return [String]
|
3865
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
|
+
#
|
3866
3919
|
# @!attribute [rw] destination_region
|
3867
3920
|
# @return [String]
|
3868
3921
|
#
|
@@ -3904,6 +3957,7 @@ module Aws::RDS
|
|
3904
3957
|
:deletion_protection,
|
3905
3958
|
:domain,
|
3906
3959
|
:domain_iam_role_name,
|
3960
|
+
:replica_mode,
|
3907
3961
|
:destination_region,
|
3908
3962
|
:source_region)
|
3909
3963
|
SENSITIVE = []
|
@@ -4376,18 +4430,18 @@ module Aws::RDS
|
|
4376
4430
|
# @!attribute [rw] source_type
|
4377
4431
|
# The type of source that is generating the events. For example, if
|
4378
4432
|
# you want to be notified of events generated by a DB instance, you
|
4379
|
-
#
|
4380
|
-
#
|
4433
|
+
# set this parameter to `db-instance`. If this value isn't specified,
|
4434
|
+
# all events are returned.
|
4381
4435
|
#
|
4382
4436
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
4383
4437
|
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
4384
4438
|
# @return [String]
|
4385
4439
|
#
|
4386
4440
|
# @!attribute [rw] event_categories
|
4387
|
-
# A list of event categories for a
|
4388
|
-
# subscribe to. You can see a list of
|
4389
|
-
#
|
4390
|
-
# 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.
|
4391
4445
|
#
|
4392
4446
|
#
|
4393
4447
|
#
|
@@ -4403,19 +4457,26 @@ module Aws::RDS
|
|
4403
4457
|
#
|
4404
4458
|
# Constraints:
|
4405
4459
|
#
|
4406
|
-
# * If SourceIds
|
4460
|
+
# * If a `SourceIds` value is supplied, `SourceType` must also be
|
4461
|
+
# provided.
|
4407
4462
|
#
|
4408
|
-
# * If the source type is a DB instance,
|
4409
|
-
# must be supplied.
|
4463
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier`
|
4464
|
+
# value must be supplied.
|
4410
4465
|
#
|
4411
|
-
# * If the source type is a DB
|
4466
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
4412
4467
|
# must be supplied.
|
4413
4468
|
#
|
4414
4469
|
# * If the source type is a DB parameter group, a
|
4415
|
-
# `DBParameterGroupName` must be supplied.
|
4470
|
+
# `DBParameterGroupName` value must be supplied.
|
4416
4471
|
#
|
4417
|
-
# * If the source type is a DB
|
4418
|
-
# be supplied.
|
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.
|
4477
|
+
#
|
4478
|
+
# * If the source type is a DB cluster snapshot, a
|
4479
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
4419
4480
|
# @return [Array<String>]
|
4420
4481
|
#
|
4421
4482
|
# @!attribute [rw] enabled
|
@@ -4483,8 +4544,7 @@ module Aws::RDS
|
|
4483
4544
|
# @return [String]
|
4484
4545
|
#
|
4485
4546
|
# @!attribute [rw] engine
|
4486
|
-
#
|
4487
|
-
# cluster.
|
4547
|
+
# The name of the database engine to be used for this DB cluster.
|
4488
4548
|
# @return [String]
|
4489
4549
|
#
|
4490
4550
|
# @!attribute [rw] engine_version
|
@@ -4780,8 +4840,7 @@ module Aws::RDS
|
|
4780
4840
|
# @return [Boolean]
|
4781
4841
|
#
|
4782
4842
|
# @!attribute [rw] engine
|
4783
|
-
#
|
4784
|
-
# cluster.
|
4843
|
+
# The name of the database engine to be used for this DB cluster.
|
4785
4844
|
# @return [String]
|
4786
4845
|
#
|
4787
4846
|
# @!attribute [rw] engine_version
|
@@ -5238,7 +5297,10 @@ module Aws::RDS
|
|
5238
5297
|
#
|
5239
5298
|
# @!attribute [rw] status
|
5240
5299
|
# The current status of the endpoint. One of: `creating`, `available`,
|
5241
|
-
# `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.
|
5242
5304
|
# @return [String]
|
5243
5305
|
#
|
5244
5306
|
# @!attribute [rw] endpoint_type
|
@@ -5413,12 +5475,12 @@ module Aws::RDS
|
|
5413
5475
|
# `DescribeDBClusterParameterGroups` action.
|
5414
5476
|
#
|
5415
5477
|
# @!attribute [rw] db_cluster_parameter_group_name
|
5416
|
-
#
|
5478
|
+
# The name of the DB cluster parameter group.
|
5417
5479
|
# @return [String]
|
5418
5480
|
#
|
5419
5481
|
# @!attribute [rw] db_parameter_group_family
|
5420
|
-
#
|
5421
|
-
#
|
5482
|
+
# The name of the DB parameter group family that this DB cluster
|
5483
|
+
# parameter group is compatible with.
|
5422
5484
|
# @return [String]
|
5423
5485
|
#
|
5424
5486
|
# @!attribute [rw] description
|
@@ -5958,8 +6020,7 @@ module Aws::RDS
|
|
5958
6020
|
# @return [String]
|
5959
6021
|
#
|
5960
6022
|
# @!attribute [rw] engine
|
5961
|
-
#
|
5962
|
-
# instance.
|
6023
|
+
# The name of the database engine to be used for this DB instance.
|
5963
6024
|
# @return [String]
|
5964
6025
|
#
|
5965
6026
|
# @!attribute [rw] db_instance_status
|
@@ -6098,6 +6159,20 @@ module Aws::RDS
|
|
6098
6159
|
# </note>
|
6099
6160
|
# @return [Array<String>]
|
6100
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
|
+
#
|
6101
6176
|
# @!attribute [rw] license_model
|
6102
6177
|
# License model information for this DB instance.
|
6103
6178
|
# @return [String]
|
@@ -6334,6 +6409,7 @@ module Aws::RDS
|
|
6334
6409
|
:read_replica_source_db_instance_identifier,
|
6335
6410
|
:read_replica_db_instance_identifiers,
|
6336
6411
|
:read_replica_db_cluster_identifiers,
|
6412
|
+
:replica_mode,
|
6337
6413
|
:license_model,
|
6338
6414
|
:iops,
|
6339
6415
|
:option_group_memberships,
|
@@ -6698,12 +6774,12 @@ module Aws::RDS
|
|
6698
6774
|
# `DescribeDBParameterGroups` action.
|
6699
6775
|
#
|
6700
6776
|
# @!attribute [rw] db_parameter_group_name
|
6701
|
-
#
|
6777
|
+
# The name of the DB parameter group.
|
6702
6778
|
# @return [String]
|
6703
6779
|
#
|
6704
6780
|
# @!attribute [rw] db_parameter_group_family
|
6705
|
-
#
|
6706
|
-
#
|
6781
|
+
# The name of the DB parameter group family that this DB parameter
|
6782
|
+
# group is compatible with.
|
6707
6783
|
# @return [String]
|
6708
6784
|
#
|
6709
6785
|
# @!attribute [rw] description
|
@@ -6758,7 +6834,7 @@ module Aws::RDS
|
|
6758
6834
|
# `ModifyDBParameterGroup` or `ResetDBParameterGroup` action.
|
6759
6835
|
#
|
6760
6836
|
# @!attribute [rw] db_parameter_group_name
|
6761
|
-
#
|
6837
|
+
# The name of the DB parameter group.
|
6762
6838
|
# @return [String]
|
6763
6839
|
#
|
6764
6840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBParameterGroupNameMessage AWS API Documentation
|
@@ -8498,7 +8574,7 @@ module Aws::RDS
|
|
8498
8574
|
# `db-cluster-endpoint-custom-type` filter can be one or more of:
|
8499
8575
|
# `reader`, `any`. `Values` for the `db-cluster-endpoint-status`
|
8500
8576
|
# filter can be one or more of: `available`, `creating`, `deleting`,
|
8501
|
-
# `modifying`.
|
8577
|
+
# `inactive`, `modifying`.
|
8502
8578
|
# @return [Array<Types::Filter>]
|
8503
8579
|
#
|
8504
8580
|
# @!attribute [rw] max_records
|
@@ -10113,8 +10189,8 @@ module Aws::RDS
|
|
10113
10189
|
# @!attribute [rw] source_type
|
10114
10190
|
# The type of source that is generating the events.
|
10115
10191
|
#
|
10116
|
-
# Valid values: db-instance \| db-
|
10117
|
-
# \| db-snapshot
|
10192
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
10193
|
+
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
10118
10194
|
# @return [String]
|
10119
10195
|
#
|
10120
10196
|
# @!attribute [rw] filters
|
@@ -10209,19 +10285,26 @@ module Aws::RDS
|
|
10209
10285
|
#
|
10210
10286
|
# Constraints:
|
10211
10287
|
#
|
10212
|
-
# * If SourceIdentifier is supplied, SourceType must also be
|
10288
|
+
# * If `SourceIdentifier` is supplied, `SourceType` must also be
|
10289
|
+
# provided.
|
10213
10290
|
#
|
10214
|
-
# * If the source type is
|
10215
|
-
# must be supplied.
|
10291
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier`
|
10292
|
+
# value must be supplied.
|
10216
10293
|
#
|
10217
|
-
# * If the source type is
|
10294
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
10218
10295
|
# must be supplied.
|
10219
10296
|
#
|
10220
|
-
# * If the source type is
|
10221
|
-
# 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.
|
10222
10302
|
#
|
10223
|
-
# * If the source type is
|
10224
|
-
# be supplied.
|
10303
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier`
|
10304
|
+
# value must be supplied.
|
10305
|
+
#
|
10306
|
+
# * If the source type is a DB cluster snapshot, a
|
10307
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
10225
10308
|
#
|
10226
10309
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
10227
10310
|
# @return [String]
|
@@ -10332,7 +10415,7 @@ module Aws::RDS
|
|
10332
10415
|
# @!attribute [rw] filters
|
10333
10416
|
# Filters specify one or more snapshot exports to describe. The
|
10334
10417
|
# filters are specified as name-value pairs that define what to
|
10335
|
-
# include in the output.
|
10418
|
+
# include in the output. Filter names and values are case-sensitive.
|
10336
10419
|
#
|
10337
10420
|
# Supported filters include the following:
|
10338
10421
|
#
|
@@ -10344,7 +10427,8 @@ module Aws::RDS
|
|
10344
10427
|
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
10345
10428
|
# exported to Amazon S3
|
10346
10429
|
#
|
10347
|
-
# * `status` - The status of the export task.
|
10430
|
+
# * `status` - The status of the export task. Must be lowercase, for
|
10431
|
+
# example, `complete`.
|
10348
10432
|
# @return [Array<Types::Filter>]
|
10349
10433
|
#
|
10350
10434
|
# @!attribute [rw] marker
|
@@ -11389,7 +11473,7 @@ module Aws::RDS
|
|
11389
11473
|
end
|
11390
11474
|
|
11391
11475
|
# Contains the results of a successful invocation of the
|
11392
|
-
# `DescribeEventCategories`
|
11476
|
+
# `DescribeEventCategories` operation.
|
11393
11477
|
#
|
11394
11478
|
# @!attribute [rw] source_type
|
11395
11479
|
# The source type that the returned categories belong to
|
@@ -11408,7 +11492,7 @@ module Aws::RDS
|
|
11408
11492
|
include Aws::Structure
|
11409
11493
|
end
|
11410
11494
|
|
11411
|
-
# Data returned from the
|
11495
|
+
# Data returned from the `DescribeEventCategories` operation.
|
11412
11496
|
#
|
11413
11497
|
# @!attribute [rw] event_categories_map_list
|
11414
11498
|
# A list of EventCategoriesMap data types.
|
@@ -12799,6 +12883,13 @@ module Aws::RDS
|
|
12799
12883
|
# The Active Directory directory ID to move the DB cluster to. Specify
|
12800
12884
|
# `none` to remove the cluster from its current domain. The domain
|
12801
12885
|
# must be created prior to this operation.
|
12886
|
+
#
|
12887
|
+
# For more information, see [Kerberos Authentication][1] in the
|
12888
|
+
# *Amazon Aurora User Guide*.
|
12889
|
+
#
|
12890
|
+
#
|
12891
|
+
#
|
12892
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
12802
12893
|
# @return [String]
|
12803
12894
|
#
|
12804
12895
|
# @!attribute [rw] domain_iam_role_name
|
@@ -13069,6 +13160,7 @@ module Aws::RDS
|
|
13069
13160
|
# deletion_protection: false,
|
13070
13161
|
# max_allocated_storage: 1,
|
13071
13162
|
# certificate_rotation_restart: false,
|
13163
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
13072
13164
|
# }
|
13073
13165
|
#
|
13074
13166
|
# @!attribute [rw] db_instance_identifier
|
@@ -13485,24 +13577,15 @@ module Aws::RDS
|
|
13485
13577
|
# The Active Directory directory ID to move the DB instance to.
|
13486
13578
|
# Specify `none` to remove the instance from its current domain. The
|
13487
13579
|
# domain must be created prior to this operation. Currently, only
|
13488
|
-
# Microsoft SQL Server and
|
13489
|
-
# Active Directory Domain.
|
13580
|
+
# MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can
|
13581
|
+
# be created in an Active Directory Domain.
|
13490
13582
|
#
|
13491
|
-
# For
|
13492
|
-
#
|
13493
|
-
# instance. For more information, see [ Using Windows Authentication
|
13494
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
13495
|
-
# the *Amazon RDS User Guide*.
|
13496
|
-
#
|
13497
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos authentication
|
13498
|
-
# to authenticate users that connect to the DB instance. For more
|
13499
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
13500
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
13583
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
13584
|
+
# *Amazon RDS User Guide*.
|
13501
13585
|
#
|
13502
13586
|
#
|
13503
13587
|
#
|
13504
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
13505
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
13588
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
13506
13589
|
# @return [String]
|
13507
13590
|
#
|
13508
13591
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -13743,6 +13826,27 @@ module Aws::RDS
|
|
13743
13826
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
13744
13827
|
# @return [Boolean]
|
13745
13828
|
#
|
13829
|
+
# @!attribute [rw] replica_mode
|
13830
|
+
# A value that sets the open mode of a replica database to either
|
13831
|
+
# mounted or read-only.
|
13832
|
+
#
|
13833
|
+
# <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
|
13834
|
+
#
|
13835
|
+
# </note>
|
13836
|
+
#
|
13837
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
13838
|
+
# main use case for mounted replicas is cross-Region disaster
|
13839
|
+
# recovery. The primary database doesn't use Active Data Guard to
|
13840
|
+
# transmit information to the mounted replica. Because it doesn't
|
13841
|
+
# accept user connections, a mounted replica can't serve a read-only
|
13842
|
+
# workload. For more information, see [Working with Oracle Read
|
13843
|
+
# Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
|
13844
|
+
#
|
13845
|
+
#
|
13846
|
+
#
|
13847
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
13848
|
+
# @return [String]
|
13849
|
+
#
|
13746
13850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
13747
13851
|
#
|
13748
13852
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -13787,7 +13891,8 @@ module Aws::RDS
|
|
13787
13891
|
:use_default_processor_features,
|
13788
13892
|
:deletion_protection,
|
13789
13893
|
:max_allocated_storage,
|
13790
|
-
:certificate_rotation_restart
|
13894
|
+
:certificate_rotation_restart,
|
13895
|
+
:replica_mode)
|
13791
13896
|
SENSITIVE = []
|
13792
13897
|
include Aws::Structure
|
13793
13898
|
end
|
@@ -14260,15 +14365,15 @@ module Aws::RDS
|
|
14260
14365
|
# would set this parameter to db-instance. If this value isn't
|
14261
14366
|
# specified, all events are returned.
|
14262
14367
|
#
|
14263
|
-
# Valid values: db-instance \| db-
|
14264
|
-
# \| db-snapshot
|
14368
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
14369
|
+
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
14265
14370
|
# @return [String]
|
14266
14371
|
#
|
14267
14372
|
# @!attribute [rw] event_categories
|
14268
|
-
# A list of event categories for a SourceType that you
|
14269
|
-
# subscribe to. You can see a list of the categories for a
|
14270
|
-
#
|
14271
|
-
#
|
14373
|
+
# A list of event categories for a source type (`SourceType`) that you
|
14374
|
+
# want to subscribe to. You can see a list of the categories for a
|
14375
|
+
# given source type in [Events][1] in the *Amazon RDS User Guide* or
|
14376
|
+
# by using the `DescribeEventCategories` operation.
|
14272
14377
|
#
|
14273
14378
|
#
|
14274
14379
|
#
|
@@ -15489,6 +15594,17 @@ module Aws::RDS
|
|
15489
15594
|
#
|
15490
15595
|
# * `DescribeValidDBInstanceModifications`
|
15491
15596
|
#
|
15597
|
+
# If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
|
15598
|
+
# values only if the following conditions are met:
|
15599
|
+
#
|
15600
|
+
# * You are accessing an Oracle DB instance.
|
15601
|
+
#
|
15602
|
+
# * Your Oracle DB instance class supports configuring the number of CPU
|
15603
|
+
# cores and threads per core.
|
15604
|
+
#
|
15605
|
+
# * The current number CPU cores and threads is set to a non-default
|
15606
|
+
# value.
|
15607
|
+
#
|
15492
15608
|
# For more information, see [Configuring the Processor of the DB
|
15493
15609
|
# Instance Class][1] in the <i>Amazon RDS User Guide. </i>
|
15494
15610
|
#
|
@@ -16548,10 +16664,11 @@ module Aws::RDS
|
|
16548
16664
|
# @return [String]
|
16549
16665
|
#
|
16550
16666
|
# @!attribute [rw] engine
|
16551
|
-
# The name of the database engine to be used for
|
16552
|
-
# cluster.
|
16667
|
+
# The name of the database engine to be used for this DB cluster.
|
16553
16668
|
#
|
16554
|
-
# Valid Values: `aurora
|
16669
|
+
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora),
|
16670
|
+
# `aurora-mysql` (for MySQL 5.7-compatible Aurora), and
|
16671
|
+
# `aurora-postgresql`
|
16555
16672
|
# @return [String]
|
16556
16673
|
#
|
16557
16674
|
# @!attribute [rw] engine_version
|
@@ -16719,7 +16836,7 @@ module Aws::RDS
|
|
16719
16836
|
#
|
16720
16837
|
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
16721
16838
|
#
|
16722
|
-
# Example: `5.6.40`
|
16839
|
+
# Example: `5.6.40`, `5.7.28`
|
16723
16840
|
# @return [String]
|
16724
16841
|
#
|
16725
16842
|
# @!attribute [rw] s3_bucket_name
|
@@ -17110,7 +17227,16 @@ module Aws::RDS
|
|
17110
17227
|
#
|
17111
17228
|
# @!attribute [rw] domain
|
17112
17229
|
# Specify the Active Directory directory ID to restore the DB cluster
|
17113
|
-
# in. The domain must be created prior to this operation.
|
17230
|
+
# in. The domain must be created prior to this operation. Currently,
|
17231
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
17232
|
+
# instances can be created in an Active Directory Domain.
|
17233
|
+
#
|
17234
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
17235
|
+
# *Amazon RDS User Guide*.
|
17236
|
+
#
|
17237
|
+
#
|
17238
|
+
#
|
17239
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
17114
17240
|
# @return [String]
|
17115
17241
|
#
|
17116
17242
|
# @!attribute [rw] domain_iam_role_name
|
@@ -17721,24 +17847,15 @@ module Aws::RDS
|
|
17721
17847
|
# @!attribute [rw] domain
|
17722
17848
|
# Specify the Active Directory directory ID to restore the DB instance
|
17723
17849
|
# in. The domain must be created prior to this operation. Currently,
|
17724
|
-
# only Microsoft SQL Server and
|
17725
|
-
# an Active Directory Domain.
|
17850
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
17851
|
+
# instances can be created in an Active Directory Domain.
|
17726
17852
|
#
|
17727
|
-
# For
|
17728
|
-
#
|
17729
|
-
# instance. For more information, see [ Using Windows Authentication
|
17730
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
17731
|
-
# the *Amazon RDS User Guide*.
|
17732
|
-
#
|
17733
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos authentication
|
17734
|
-
# to authenticate users that connect to the DB instance. For more
|
17735
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
17736
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
17853
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
17854
|
+
# *Amazon RDS User Guide*.
|
17737
17855
|
#
|
17738
17856
|
#
|
17739
17857
|
#
|
17740
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
17741
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
17858
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
17742
17859
|
# @return [String]
|
17743
17860
|
#
|
17744
17861
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -18682,24 +18799,15 @@ module Aws::RDS
|
|
18682
18799
|
# @!attribute [rw] domain
|
18683
18800
|
# Specify the Active Directory directory ID to restore the DB instance
|
18684
18801
|
# in. The domain must be created prior to this operation. Currently,
|
18685
|
-
# only Microsoft SQL Server and
|
18686
|
-
# an Active Directory Domain.
|
18802
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
18803
|
+
# instances can be created in an Active Directory Domain.
|
18687
18804
|
#
|
18688
|
-
# For
|
18689
|
-
#
|
18690
|
-
# instance. For more information, see [ Using Windows Authentication
|
18691
|
-
# with an Amazon RDS DB Instance Running Microsoft SQL Server][1] in
|
18692
|
-
# the *Amazon RDS User Guide*.
|
18693
|
-
#
|
18694
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos authentication
|
18695
|
-
# to authenticate users that connect to the DB instance. For more
|
18696
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
18697
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
18805
|
+
# For more information, see [ Kerberos Authentication][1] in the
|
18806
|
+
# *Amazon RDS User Guide*.
|
18698
18807
|
#
|
18699
18808
|
#
|
18700
18809
|
#
|
18701
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
18702
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
18810
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
18703
18811
|
# @return [String]
|
18704
18812
|
#
|
18705
18813
|
# @!attribute [rw] domain_iam_role_name
|
@@ -19343,8 +19451,26 @@ module Aws::RDS
|
|
19343
19451
|
# The ID of the AWS KMS key to use to encrypt the snapshot exported to
|
19344
19452
|
# Amazon S3. The KMS key ID is the Amazon Resource Name (ARN), the KMS
|
19345
19453
|
# key identifier, or the KMS key alias for the KMS encryption key. The
|
19346
|
-
#
|
19347
|
-
#
|
19454
|
+
# caller of this operation must be authorized to execute the following
|
19455
|
+
# operations. These can be set in the KMS key policy:
|
19456
|
+
#
|
19457
|
+
# * GrantOperation.Encrypt
|
19458
|
+
#
|
19459
|
+
# * GrantOperation.Decrypt
|
19460
|
+
#
|
19461
|
+
# * GrantOperation.GenerateDataKey
|
19462
|
+
#
|
19463
|
+
# * GrantOperation.GenerateDataKeyWithoutPlaintext
|
19464
|
+
#
|
19465
|
+
# * GrantOperation.ReEncryptFrom
|
19466
|
+
#
|
19467
|
+
# * GrantOperation.ReEncryptTo
|
19468
|
+
#
|
19469
|
+
# * GrantOperation.CreateGrant
|
19470
|
+
#
|
19471
|
+
# * GrantOperation.DescribeKey
|
19472
|
+
#
|
19473
|
+
# * GrantOperation.RetireGrant
|
19348
19474
|
# @return [String]
|
19349
19475
|
#
|
19350
19476
|
# @!attribute [rw] s3_prefix
|
@@ -19609,18 +19735,18 @@ module Aws::RDS
|
|
19609
19735
|
# A key is the required name of the tag. The string value can be from
|
19610
19736
|
# 1 to 128 Unicode characters in length and can't be prefixed with
|
19611
19737
|
# "aws:" or "rds:". The string can only contain only the set of
|
19612
|
-
# Unicode letters, digits, white-space, '\_', '.', '
|
19613
|
-
# '+', '-' (Java regex:
|
19614
|
-
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_
|
19738
|
+
# Unicode letters, digits, white-space, '\_', '.', ':', '/',
|
19739
|
+
# '=', '+', '-', '@' (Java regex:
|
19740
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
19615
19741
|
# @return [String]
|
19616
19742
|
#
|
19617
19743
|
# @!attribute [rw] value
|
19618
19744
|
# A value is the optional value of the tag. The string value can be
|
19619
19745
|
# from 1 to 256 Unicode characters in length and can't be prefixed
|
19620
19746
|
# with "aws:" or "rds:". The string can only contain only the set
|
19621
|
-
# of Unicode letters, digits, white-space, '\_', '.', '
|
19622
|
-
# '=', '+', '-' (Java regex:
|
19623
|
-
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_
|
19747
|
+
# of Unicode letters, digits, white-space, '\_', '.', ':',
|
19748
|
+
# '/', '=', '+', '-', '@' (Java regex:
|
19749
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
19624
19750
|
# @return [String]
|
19625
19751
|
#
|
19626
19752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Tag AWS API Documentation
|